File: /home4/monicare/monicare_wor7808-1783399019.sql
-- MySQL dump 10.13 Distrib 5.7.44-48, for Linux (x86_64)
--
-- Host: localhost Database: monicare_wor7808
-- ------------------------------------------------------
-- Server version 5.7.44-48
/*!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 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
--
-- Table structure for table `wp_xwml_aps_social_icons`
--
DROP TABLE IF EXISTS `wp_xwml_aps_social_icons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_aps_social_icons` (
`si_id` int(11) NOT NULL AUTO_INCREMENT,
`icon_set_name` varchar(255) DEFAULT NULL,
`icon_display` varchar(255) DEFAULT NULL,
`num_rows` varchar(255) DEFAULT NULL,
`icon_margin` varchar(255) DEFAULT NULL,
`icon_tooltip` int(11) NOT NULL,
`tooltip_background` varchar(255) DEFAULT NULL,
`tooltip_text_color` varchar(255) DEFAULT NULL,
`icon_animation` varchar(255) DEFAULT NULL,
`opacity_hover` varchar(20) DEFAULT NULL,
`icon_details` text,
`icon_extra` text,
PRIMARY KEY (`si_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_aps_social_icons`
--
LOCK TABLES `wp_xwml_aps_social_icons` WRITE;
/*!40000 ALTER TABLE `wp_xwml_aps_social_icons` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_aps_social_icons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_album`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_album`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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,
`modified_date` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_album`
--
LOCK TABLES `wp_xwml_bwg_album` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_album` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_album` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_album_gallery`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_album_gallery`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_album_gallery`
--
LOCK TABLES `wp_xwml_bwg_album_gallery` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_album_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_album_gallery` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_file_paths`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_file_paths`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_bwg_file_paths` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`is_dir` tinyint(1) DEFAULT '0',
`path` mediumtext COLLATE utf8mb4_unicode_520_ci,
`type` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`name` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`filename` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`alt` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`thumb` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`size` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`resolution` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`credit` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`aperture` int(10) DEFAULT NULL,
`camera` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`caption` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`iso` int(10) DEFAULT NULL,
`orientation` int(10) DEFAULT NULL,
`copyright` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`tags` mediumtext COLLATE utf8mb4_unicode_520_ci,
`date_modified` datetime DEFAULT NULL,
`resolution_thumb` varchar(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`author` bigint(20) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_file_paths`
--
LOCK TABLES `wp_xwml_bwg_file_paths` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_file_paths` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_file_paths` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_gallery`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_gallery`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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(256) NOT NULL,
`autogallery_image_number` int(4) NOT NULL,
`update_flag` varchar(32) NOT NULL,
`modified_date` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_gallery`
--
LOCK TABLES `wp_xwml_bwg_gallery` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_gallery` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_image`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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,
`pricelist_id` bigint(20) NOT NULL,
`modified_date` int(10) NOT NULL DEFAULT '0',
`resolution_thumb` varchar(128) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_image`
--
LOCK TABLES `wp_xwml_bwg_image` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_image` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_image_comment`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_image_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_image_comment`
--
LOCK TABLES `wp_xwml_bwg_image_comment` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_image_rate`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_image_rate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_image_rate`
--
LOCK TABLES `wp_xwml_bwg_image_rate` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_rate` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_rate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_image_tag`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_image_tag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_image_tag`
--
LOCK TABLES `wp_xwml_bwg_image_tag` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_image_tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_option`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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,
`ecommerce_icon_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,
`slideshow_effect_duration` int(4) 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,
`popup_enable_ecommerce` tinyint(1) NOT NULL,
`popup_effect_duration` int(4) 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_access_token` varchar(128) 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,
`facebook_app_id` varchar(64) NOT NULL,
`facebook_app_secret` varchar(64) NOT NULL,
`show_tag_box` tinyint(1) NOT NULL,
`show_hide_custom_post` tinyint(1) NOT NULL,
`show_hide_post_meta` tinyint(1) NOT NULL,
`use_inline_stiles_and_scripts` tinyint(1) NOT NULL,
`placeholder` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_option`
--
LOCK TABLES `wp_xwml_bwg_option` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_option` DISABLE KEYS */;
INSERT INTO `wp_xwml_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,'',1,800,500,'fade',5,1,70,1,1,1,0,0,1,0,0,0,0,1,1,1,0,1,'none','bottom-left',90,90,'http://www.monicarenata.com/wp-content/plugins/photo-gallery/images/watermark.png','web-dorado.com','https://web-dorado.com',20,'segoe ui','FFFFFF',30,'none','middle-center',15,'http://www.monicarenata.com/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','','',0,0,0,0,'');
/*!40000 ALTER TABLE `wp_xwml_bwg_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_shortcode`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_shortcode`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_bwg_shortcode` (
`id` bigint(20) NOT NULL,
`tagtext` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_shortcode`
--
LOCK TABLES `wp_xwml_bwg_shortcode` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_shortcode` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_bwg_shortcode` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_bwg_theme`
--
DROP TABLE IF EXISTS `wp_xwml_bwg_theme`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_bwg_theme` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`options` longtext NOT NULL,
`default_theme` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_bwg_theme`
--
LOCK TABLES `wp_xwml_bwg_theme` WRITE;
/*!40000 ALTER TABLE `wp_xwml_bwg_theme` DISABLE KEYS */;
INSERT INTO `wp_xwml_bwg_theme` VALUES (1,'Theme 1','{\"thumb_margin\":4,\"thumb_padding\":0,\"thumb_border_radius\":\"0\",\"thumb_border_width\":0,\"thumb_border_style\":\"none\",\"thumb_border_color\":\"CCCCCC\",\"thumb_bg_color\":\"FFFFFF\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":0,\"thumb_box_shadow\":\"0px 0px 0px #888888\",\"thumb_transparent\":100,\"thumb_align\":\"center\",\"thumb_hover_effect\":\"scale\",\"thumb_hover_effect_value\":\"1.1\",\"thumb_transition\":1,\"thumb_title_font_color\":\"CCCCCC\",\"thumb_title_font_style\":\"segoe ui\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":16,\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"2px\",\"thumb_title_shadow\":\"0px 0px 0px #888888\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":0,\"page_nav_font_size\":12,\"page_nav_font_style\":\"segoe ui\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":1,\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":100,\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":1,\"page_nav_button_text\":0,\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":70,\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_transparent\":100,\"lightbox_ctrl_btn_color\":\"FFFFFF\",\"lightbox_toggle_btn_height\":14,\"lightbox_toggle_btn_width\":100,\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":65,\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_close_btn_transparent\":100,\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":2,\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"FFFFFF\",\"lightbox_close_btn_size\":10,\"lightbox_close_btn_width\":20,\"lightbox_close_btn_height\":20,\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"FFFFFF\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":0,\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"FFFFFF\",\"lightbox_rl_btn_height\":40,\"lightbox_rl_btn_width\":40,\"lightbox_rl_btn_size\":20,\"lightbox_close_rl_btn_hover_color\":\"CCCCCC\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_width\":400,\"lightbox_comment_bg_color\":\"000000\",\"lightbox_comment_font_color\":\"CCCCCC\",\"lightbox_comment_font_style\":\"segoe ui\",\"lightbox_comment_font_size\":12,\"lightbox_comment_button_bg_color\":\"616161\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_radius\":\"3px\",\"lightbox_comment_button_padding\":\"3px 10px\",\"lightbox_comment_input_bg_color\":\"333333\",\"lightbox_comment_input_border_color\":\"666666\",\"lightbox_comment_input_border_width\":1,\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_radius\":\"0\",\"lightbox_comment_input_padding\":\"2px\",\"lightbox_comment_separator_width\":1,\"lightbox_comment_separator_style\":\"solid\",\"lightbox_comment_separator_color\":\"383838\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_date_font_size\":10,\"lightbox_comment_body_font_size\":12,\"lightbox_comment_share_button_color\":\"CCCCCC\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_rl_btn_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"fa-chevron\",\"lightbox_rl_btn_transparent\":80,\"lightbox_bg_transparent\":100,\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"segoe ui\",\"album_compact_back_font_size\":16,\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"CCCCCC\",\"album_compact_title_font_style\":\"segoe ui\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":16,\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":0,\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":0,\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"FFFFFF\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":0,\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":100,\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":0,\"album_extended_thumb_margin\":2,\"album_extended_thumb_padding\":0,\"album_extended_thumb_border_radius\":\"0\",\"album_extended_thumb_border_width\":0,\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_color\":\"CCCCCC\",\"album_extended_thumb_bg_color\":\"FFFFFF\",\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_thumb_bg_transparent\":0,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_transparent\":100,\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_hover_effect\":\"scale\",\"album_extended_thumb_hover_effect_value\":\"1.1\",\"album_extended_thumb_transition\":0,\"album_extended_back_font_color\":\"000000\",\"album_extended_back_font_style\":\"segoe ui\",\"album_extended_back_font_size\":20,\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_div_bg_color\":\"FFFFFF\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"0 0 0 0\",\"album_extended_div_margin\":\"0 0 5px 0\",\"album_extended_div_padding\":10,\"album_extended_div_separator_width\":1,\"album_extended_div_separator_style\":\"solid\",\"album_extended_div_separator_color\":\"E0E0E0\",\"album_extended_thumb_div_bg_color\":\"FFFFFF\",\"album_extended_thumb_div_border_radius\":\"0\",\"album_extended_thumb_div_border_width\":1,\"album_extended_thumb_div_border_style\":\"solid\",\"album_extended_thumb_div_border_color\":\"E8E8E8\",\"album_extended_thumb_div_padding\":\"5px\",\"album_extended_text_div_bg_color\":\"FFFFFF\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_width\":1,\"album_extended_text_div_border_style\":\"solid\",\"album_extended_text_div_border_color\":\"E8E8E8\",\"album_extended_text_div_padding\":\"5px\",\"album_extended_title_span_border_width\":1,\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_style\":\"segoe ui\",\"album_extended_title_font_size\":16,\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":2,\"album_extended_title_padding\":\"2px\",\"album_extended_desc_span_border_width\":1,\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_font_color\":\"000000\",\"album_extended_desc_font_style\":\"segoe ui\",\"album_extended_desc_font_size\":14,\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_padding\":\"2px\",\"album_extended_desc_more_color\":\"F2D22E\",\"album_extended_desc_more_size\":12,\"masonry_thumb_padding\":4,\"masonry_thumb_border_radius\":\"0\",\"masonry_thumb_border_width\":0,\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":0,\"masonry_thumb_transparent\":100,\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":0,\"slideshow_cont_bg_color\":\"000000\",\"slideshow_close_btn_transparent\":100,\"slideshow_rl_btn_bg_color\":\"000000\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_box_shadow\":\"0px 0px 0px #000000\",\"slideshow_rl_btn_color\":\"FFFFFF\",\"slideshow_rl_btn_height\":40,\"slideshow_rl_btn_size\":20,\"slideshow_rl_btn_width\":40,\"slideshow_close_rl_btn_hover_color\":\"CCCCCC\",\"slideshow_filmstrip_pos\":\"top\",\"slideshow_filmstrip_thumb_border_width\":1,\"slideshow_filmstrip_thumb_border_style\":\"solid\",\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_margin\":\"0 1px\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_deactive_transparent\":80,\"slideshow_filmstrip_rl_bg_color\":\"3B3B3B\",\"slideshow_filmstrip_rl_btn_color\":\"FFFFFF\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_title_font_size\":16,\"slideshow_title_font\":\"segoe ui\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_opacity\":70,\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_background_color\":\"000000\",\"slideshow_title_padding\":\"0 0 0 0\",\"slideshow_description_font_size\":14,\"slideshow_description_font\":\"segoe ui\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_opacity\":70,\"slideshow_description_border_radius\":\"0\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_width\":12,\"slideshow_dots_height\":12,\"slideshow_dots_border_radius\":\"5px\",\"slideshow_dots_background_color\":\"F2D22E\",\"slideshow_dots_margin\":3,\"slideshow_dots_active_background_color\":\"FFFFFF\",\"slideshow_dots_active_border_width\":1,\"slideshow_dots_active_border_color\":\"000000\",\"slideshow_play_pause_btn_size\":60,\"slideshow_rl_btn_style\":\"fa-chevron\",\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"0\",\"blog_style_border_radius\":\"0\",\"blog_style_border_width\":1,\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"F5F5F5\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_transparent\":80,\"blog_style_box_shadow\":\"\",\"blog_style_align\":\"center\",\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_img_font_size\":16,\"blog_style_img_font_family\":\"segoe ui\",\"blog_style_img_font_color\":\"000000\",\"blog_style_share_buttons_color\":\"B3AFAF\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_font_size\":20,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_border_radius\":\"0\",\"image_browser_border_width\":1,\"image_browser_border_style\":\"none\",\"image_browser_border_color\":\"F5F5F5\",\"image_browser_bg_color\":\"EBEBEB\",\"image_browser_box_shadow\":\"\",\"image_browser_transparent\":80,\"image_browser_align\":\"center\",\"image_browser_image_description_margin\":\"0px 5px 0px 5px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_bg_color\":\"EBEBEB\",\"image_browser_image_description_align\":\"center\",\"image_browser_img_font_size\":15,\"image_browser_img_font_family\":\"segoe ui\",\"image_browser_img_font_color\":\"000000\",\"image_browser_full_padding\":\"4px\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_width\":2,\"image_browser_full_border_style\":\"none\",\"image_browser_full_border_color\":\"F7F7F7\",\"image_browser_full_bg_color\":\"F5F5F5\",\"image_browser_full_transparent\":90,\"image_browser_image_title_align\":\"top\",\"lightbox_info_pos\":\"top\",\"lightbox_info_align\":\"right\",\"lightbox_info_bg_color\":\"000000\",\"lightbox_info_bg_transparent\":70,\"lightbox_info_border_width\":1,\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"5px\",\"lightbox_info_padding\":\"5px\",\"lightbox_info_margin\":\"15px\",\"lightbox_title_color\":\"FFFFFF\",\"lightbox_title_font_style\":\"segoe ui\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_title_font_size\":18,\"lightbox_description_color\":\"FFFFFF\",\"lightbox_description_font_style\":\"segoe ui\",\"lightbox_description_font_weight\":\"normal\",\"lightbox_description_font_size\":14,\"lightbox_rate_pos\":\"bottom\",\"lightbox_rate_align\":\"right\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_size\":20,\"lightbox_rate_stars_count\":5,\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":70,\"lightbox_hit_border_width\":1,\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_style\":\"segoe ui\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_font_size\":14,\"masonry_description_font_size\":12,\"masonry_description_color\":\"CCCCCC\",\"masonry_description_font_style\":\"segoe ui\",\"album_masonry_back_font_color\":\"000000\",\"album_masonry_back_font_style\":\"segoe ui\",\"album_masonry_back_font_size\":16,\"album_masonry_back_font_weight\":\"bold\",\"album_masonry_back_padding\":\"0\",\"album_masonry_title_font_color\":\"CCCCCC\",\"album_masonry_title_font_style\":\"segoe ui\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"2px\",\"album_masonry_title_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_margin\":4,\"album_masonry_thumb_padding\":0,\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_width\":0,\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_color\":\"CCCCCC\",\"album_masonry_thumb_bg_color\":\"FFFFFF\",\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_thumb_bg_transparent\":0,\"album_masonry_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_masonry_thumb_transparent\":100,\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_hover_effect\":\"scale\",\"album_masonry_thumb_hover_effect_value\":\"1.1\",\"album_masonry_thumb_transition\":0,\"mosaic_thumb_padding\":4,\"mosaic_thumb_border_radius\":\"0\",\"mosaic_thumb_border_width\":0,\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"mosaic_thumb_bg_transparent\":0,\"mosaic_thumb_transparent\":100,\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_hover_effect\":\"scale\",\"mosaic_thumb_hover_effect_value\":\"1.1\",\"mosaic_thumb_title_font_color\":\"CCCCCC\",\"mosaic_thumb_title_font_style\":\"segoe ui\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"0px 0px 0px #888888\",\"mosaic_thumb_title_font_size\":16,\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_close_btn_transparent\":100,\"carousel_rl_btn_bg_color\":\"000000\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_color\":\"FFFFFF\",\"carousel_rl_btn_height\":40,\"carousel_rl_btn_size\":20,\"carousel_play_pause_btn_size\":20,\"carousel_rl_btn_width\":40,\"carousel_close_rl_btn_hover_color\":\"CCCCCC\",\"carousel_rl_btn_style\":\"fa-chevron\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_font_family\":\"segoe ui\",\"carousel_feature_border_width\":2,\"carousel_feature_border_style\":\"solid\",\"carousel_feature_border_color\":\"5D204F\",\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_color\":\"white\",\"carousel_title_opacity\":100,\"carousel_title_border_radius\":\"5px\",\"mosaic_thumb_transition\":1}',1),(2,'Theme 2','{\"thumb_margin\":4,\"thumb_padding\":4,\"thumb_border_radius\":\"0\",\"thumb_border_width\":5,\"thumb_border_style\":\"none\",\"thumb_border_color\":\"FFFFFF\",\"thumb_bg_color\":\"E8E8E8\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":0,\"thumb_box_shadow\":\"0px 0px 0px #888888\",\"thumb_transparent\":100,\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":1,\"thumb_title_font_color\":\"CCCCCC\",\"thumb_title_font_style\":\"segoe ui\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":16,\"thumb_title_font_weight\":\"bold\",\"thumb_title_margin\":\"5px\",\"thumb_title_shadow\":\"\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":0,\"page_nav_font_size\":12,\"page_nav_font_style\":\"segoe ui\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":1,\"page_nav_border_style\":\"none\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FCFCFC\",\"page_nav_button_bg_transparent\":100,\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":1,\"page_nav_button_text\":0,\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":70,\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":20,\"lightbox_ctrl_btn_margin_top\":10,\"lightbox_ctrl_btn_margin_left\":7,\"lightbox_ctrl_btn_transparent\":80,\"lightbox_ctrl_btn_color\":\"FFFFFF\",\"lightbox_toggle_btn_height\":14,\"lightbox_toggle_btn_width\":100,\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":80,\"lightbox_ctrl_cont_border_radius\":4,\"lightbox_close_btn_transparent\":95,\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":0,\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"\",\"lightbox_close_btn_color\":\"FFFFFF\",\"lightbox_close_btn_size\":10,\"lightbox_close_btn_width\":20,\"lightbox_close_btn_height\":20,\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"FFFFFF\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":2,\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"FFFFFF\",\"lightbox_rl_btn_height\":40,\"lightbox_rl_btn_width\":40,\"lightbox_rl_btn_size\":20,\"lightbox_close_rl_btn_hover_color\":\"FFFFFF\",\"lightbox_comment_pos\":\"left\",\"lightbox_comment_width\":400,\"lightbox_comment_bg_color\":\"000000\",\"lightbox_comment_font_color\":\"CCCCCC\",\"lightbox_comment_font_style\":\"segoe ui\",\"lightbox_comment_font_size\":12,\"lightbox_comment_button_bg_color\":\"333333\",\"lightbox_comment_button_border_color\":\"666666\",\"lightbox_comment_button_border_width\":1,\"lightbox_comment_button_border_style\":\"none\",\"lightbox_comment_button_border_radius\":\"3px\",\"lightbox_comment_button_padding\":\"3px 10px\",\"lightbox_comment_input_bg_color\":\"333333\",\"lightbox_comment_input_border_color\":\"666666\",\"lightbox_comment_input_border_width\":1,\"lightbox_comment_input_border_style\":\"none\",\"lightbox_comment_input_border_radius\":\"0\",\"lightbox_comment_input_padding\":\"3px\",\"lightbox_comment_separator_width\":1,\"lightbox_comment_separator_style\":\"solid\",\"lightbox_comment_separator_color\":\"2B2B2B\",\"lightbox_comment_author_font_size\":14,\"lightbox_comment_date_font_size\":10,\"lightbox_comment_body_font_size\":12,\"lightbox_comment_share_button_color\":\"FFFFFF\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"2B2B2B\",\"lightbox_filmstrip_rl_btn_size\":20,\"lightbox_filmstrip_rl_btn_color\":\"FFFFFF\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":1,\"lightbox_filmstrip_thumb_border_style\":\"none\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":80,\"lightbox_filmstrip_thumb_active_border_width\":0,\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"fa-chevron\",\"lightbox_rl_btn_transparent\":80,\"lightbox_bg_transparent\":100,\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"segoe ui\",\"album_compact_back_font_size\":14,\"album_compact_back_font_weight\":\"normal\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"CCCCCC\",\"album_compact_title_font_style\":\"segoe ui\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":16,\"album_compact_title_font_weight\":\"bold\",\"album_compact_title_margin\":\"5px\",\"album_compact_title_shadow\":\"\",\"album_compact_thumb_margin\":4,\"album_compact_thumb_padding\":4,\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":1,\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"000000\",\"album_compact_thumb_bg_color\":\"E8E8E8\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":100,\"album_compact_thumb_box_shadow\":\"\",\"album_compact_thumb_transparent\":100,\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"rotate\",\"album_compact_thumb_hover_effect_value\":\"2deg\",\"album_compact_thumb_transition\":1,\"album_extended_thumb_margin\":2,\"album_extended_thumb_padding\":4,\"album_extended_thumb_border_radius\":\"0\",\"album_extended_thumb_border_width\":4,\"album_extended_thumb_border_style\":\"none\",\"album_extended_thumb_border_color\":\"E8E8E8\",\"album_extended_thumb_bg_color\":\"E8E8E8\",\"album_extended_thumbs_bg_color\":\"FFFFFF\",\"album_extended_thumb_bg_transparent\":100,\"album_extended_thumb_box_shadow\":\"\",\"album_extended_thumb_transparent\":100,\"album_extended_thumb_align\":\"left\",\"album_extended_thumb_hover_effect\":\"rotate\",\"album_extended_thumb_hover_effect_value\":\"2deg\",\"album_extended_thumb_transition\":0,\"album_extended_back_font_color\":\"000000\",\"album_extended_back_font_style\":\"segoe ui\",\"album_extended_back_font_size\":16,\"album_extended_back_font_weight\":\"bold\",\"album_extended_back_padding\":\"0\",\"album_extended_div_bg_color\":\"FFFFFF\",\"album_extended_div_bg_transparent\":0,\"album_extended_div_border_radius\":\"0\",\"album_extended_div_margin\":\"0 0 5px 0\",\"album_extended_div_padding\":10,\"album_extended_div_separator_width\":1,\"album_extended_div_separator_style\":\"none\",\"album_extended_div_separator_color\":\"CCCCCC\",\"album_extended_thumb_div_bg_color\":\"FFFFFF\",\"album_extended_thumb_div_border_radius\":\"0\",\"album_extended_thumb_div_border_width\":0,\"album_extended_thumb_div_border_style\":\"none\",\"album_extended_thumb_div_border_color\":\"CCCCCC\",\"album_extended_thumb_div_padding\":\"0\",\"album_extended_text_div_bg_color\":\"FFFFFF\",\"album_extended_text_div_border_radius\":\"0\",\"album_extended_text_div_border_width\":1,\"album_extended_text_div_border_style\":\"none\",\"album_extended_text_div_border_color\":\"CCCCCC\",\"album_extended_text_div_padding\":\"5px\",\"album_extended_title_span_border_width\":1,\"album_extended_title_span_border_style\":\"none\",\"album_extended_title_span_border_color\":\"CCCCCC\",\"album_extended_title_font_color\":\"000000\",\"album_extended_title_font_style\":\"segoe ui\",\"album_extended_title_font_size\":16,\"album_extended_title_font_weight\":\"bold\",\"album_extended_title_margin_bottom\":2,\"album_extended_title_padding\":\"2px\",\"album_extended_desc_span_border_width\":1,\"album_extended_desc_span_border_style\":\"none\",\"album_extended_desc_span_border_color\":\"CCCCCC\",\"album_extended_desc_font_color\":\"000000\",\"album_extended_desc_font_style\":\"segoe ui\",\"album_extended_desc_font_size\":14,\"album_extended_desc_font_weight\":\"normal\",\"album_extended_desc_padding\":\"2px\",\"album_extended_desc_more_color\":\"FFC933\",\"album_extended_desc_more_size\":12,\"masonry_thumb_padding\":4,\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":1,\"masonry_thumb_border_style\":\"none\",\"masonry_thumb_border_color\":\"CCCCCC\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":0,\"masonry_thumb_transparent\":80,\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"rotate\",\"masonry_thumb_hover_effect_value\":\"2deg\",\"masonry_thumb_transition\":0,\"slideshow_cont_bg_color\":\"000000\",\"slideshow_close_btn_transparent\":100,\"slideshow_rl_btn_bg_color\":\"000000\",\"slideshow_rl_btn_border_radius\":\"20px\",\"slideshow_rl_btn_border_width\":0,\"slideshow_rl_btn_border_style\":\"none\",\"slideshow_rl_btn_border_color\":\"FFFFFF\",\"slideshow_rl_btn_box_shadow\":\"\",\"slideshow_rl_btn_color\":\"FFFFFF\",\"slideshow_rl_btn_height\":40,\"slideshow_rl_btn_size\":20,\"slideshow_rl_btn_width\":40,\"slideshow_close_rl_btn_hover_color\":\"DBDBDB\",\"slideshow_filmstrip_pos\":\"bottom\",\"slideshow_filmstrip_thumb_border_width\":1,\"slideshow_filmstrip_thumb_border_style\":\"none\",\"slideshow_filmstrip_thumb_border_color\":\"000000\",\"slideshow_filmstrip_thumb_border_radius\":\"0\",\"slideshow_filmstrip_thumb_margin\":\"0 1px\",\"slideshow_filmstrip_thumb_active_border_width\":0,\"slideshow_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"slideshow_filmstrip_thumb_deactive_transparent\":80,\"slideshow_filmstrip_rl_bg_color\":\"303030\",\"slideshow_filmstrip_rl_btn_color\":\"FFFFFF\",\"slideshow_filmstrip_rl_btn_size\":20,\"slideshow_title_font_size\":16,\"slideshow_title_font\":\"segoe ui\",\"slideshow_title_color\":\"FFFFFF\",\"slideshow_title_opacity\":70,\"slideshow_title_border_radius\":\"5px\",\"slideshow_title_background_color\":\"000000\",\"slideshow_title_padding\":\"5px 10px 5px 10px\",\"slideshow_description_font_size\":14,\"slideshow_description_font\":\"segoe ui\",\"slideshow_description_color\":\"FFFFFF\",\"slideshow_description_opacity\":70,\"slideshow_description_border_radius\":\"0\",\"slideshow_description_background_color\":\"000000\",\"slideshow_description_padding\":\"5px 10px 5px 10px\",\"slideshow_dots_width\":10,\"slideshow_dots_height\":10,\"slideshow_dots_border_radius\":\"10px\",\"slideshow_dots_background_color\":\"292929\",\"slideshow_dots_margin\":1,\"slideshow_dots_active_background_color\":\"292929\",\"slideshow_dots_active_border_width\":2,\"slideshow_dots_active_border_color\":\"FFC933\",\"slideshow_play_pause_btn_size\":60,\"slideshow_rl_btn_style\":\"fa-chevron\",\"blog_style_margin\":\"2px\",\"blog_style_padding\":\"4px\",\"blog_style_border_radius\":\"0\",\"blog_style_border_width\":1,\"blog_style_border_style\":\"none\",\"blog_style_border_color\":\"CCCCCC\",\"blog_style_bg_color\":\"E8E8E8\",\"blog_style_transparent\":70,\"blog_style_box_shadow\":\"\",\"blog_style_align\":\"center\",\"blog_style_share_buttons_margin\":\"5px auto 10px auto\",\"blog_style_share_buttons_border_radius\":\"0\",\"blog_style_share_buttons_border_width\":0,\"blog_style_share_buttons_border_style\":\"none\",\"blog_style_share_buttons_border_color\":\"000000\",\"blog_style_share_buttons_bg_color\":\"FFFFFF\",\"blog_style_share_buttons_align\":\"right\",\"blog_style_img_font_size\":16,\"blog_style_img_font_family\":\"segoe ui\",\"blog_style_img_font_color\":\"000000\",\"blog_style_share_buttons_color\":\"A1A1A1\",\"blog_style_share_buttons_bg_transparent\":0,\"blog_style_share_buttons_font_size\":20,\"image_browser_margin\":\"2px auto\",\"image_browser_padding\":\"4px\",\"image_browser_border_radius\":\"2px\",\"image_browser_border_width\":1,\"image_browser_border_style\":\"none\",\"image_browser_border_color\":\"E8E8E8\",\"image_browser_bg_color\":\"E8E8E8\",\"image_browser_box_shadow\":\"\",\"image_browser_transparent\":80,\"image_browser_align\":\"center\",\"image_browser_image_description_margin\":\"24px 0px 0px 0px\",\"image_browser_image_description_padding\":\"8px 8px 8px 8px\",\"image_browser_image_description_border_radius\":\"0\",\"image_browser_image_description_border_width\":1,\"image_browser_image_description_border_style\":\"none\",\"image_browser_image_description_border_color\":\"FFFFFF\",\"image_browser_image_description_bg_color\":\"E8E8E8\",\"image_browser_image_description_align\":\"center\",\"image_browser_img_font_size\":14,\"image_browser_img_font_family\":\"segoe ui\",\"image_browser_img_font_color\":\"000000\",\"image_browser_full_padding\":\"4px\",\"image_browser_full_border_radius\":\"0\",\"image_browser_full_border_width\":1,\"image_browser_full_border_style\":\"solid\",\"image_browser_full_border_color\":\"EDEDED\",\"image_browser_full_bg_color\":\"FFFFFF\",\"image_browser_full_transparent\":90,\"image_browser_image_title_align\":\"top\",\"lightbox_info_pos\":\"top\",\"lightbox_info_align\":\"right\",\"lightbox_info_bg_color\":\"000000\",\"lightbox_info_bg_transparent\":70,\"lightbox_info_border_width\":1,\"lightbox_info_border_style\":\"none\",\"lightbox_info_border_color\":\"000000\",\"lightbox_info_border_radius\":\"5px\",\"lightbox_info_padding\":\"5px\",\"lightbox_info_margin\":\"15px\",\"lightbox_title_color\":\"FFFFFF\",\"lightbox_title_font_style\":\"segoe ui\",\"lightbox_title_font_weight\":\"bold\",\"lightbox_title_font_size\":18,\"lightbox_description_color\":\"FFFFFF\",\"lightbox_description_font_style\":\"segoe ui\",\"lightbox_description_font_weight\":\"normal\",\"lightbox_description_font_size\":14,\"lightbox_rate_pos\":\"bottom\",\"lightbox_rate_align\":\"right\",\"lightbox_rate_icon\":\"star\",\"lightbox_rate_color\":\"F9D062\",\"lightbox_rate_size\":20,\"lightbox_rate_stars_count\":5,\"lightbox_rate_padding\":\"15px\",\"lightbox_rate_hover_color\":\"F7B50E\",\"lightbox_hit_pos\":\"bottom\",\"lightbox_hit_align\":\"left\",\"lightbox_hit_bg_color\":\"000000\",\"lightbox_hit_bg_transparent\":70,\"lightbox_hit_border_width\":1,\"lightbox_hit_border_style\":\"none\",\"lightbox_hit_border_color\":\"000000\",\"lightbox_hit_border_radius\":\"5px\",\"lightbox_hit_padding\":\"5px\",\"lightbox_hit_margin\":\"0 5px\",\"lightbox_hit_color\":\"FFFFFF\",\"lightbox_hit_font_style\":\"segoe ui\",\"lightbox_hit_font_weight\":\"normal\",\"lightbox_hit_font_size\":14,\"masonry_description_font_size\":12,\"masonry_description_color\":\"CCCCCC\",\"masonry_description_font_style\":\"segoe ui\",\"album_masonry_back_font_color\":\"000000\",\"album_masonry_back_font_style\":\"segoe ui\",\"album_masonry_back_font_size\":14,\"album_masonry_back_font_weight\":\"normal\",\"album_masonry_back_padding\":\"0\",\"album_masonry_title_font_color\":\"CCCCCC\",\"album_masonry_title_font_style\":\"segoe ui\",\"album_masonry_thumb_title_pos\":\"bottom\",\"album_masonry_title_font_size\":16,\"album_masonry_title_font_weight\":\"bold\",\"album_masonry_title_margin\":\"5px\",\"album_masonry_title_shadow\":\"\",\"album_masonry_thumb_margin\":4,\"album_masonry_thumb_padding\":4,\"album_masonry_thumb_border_radius\":\"0\",\"album_masonry_thumb_border_width\":1,\"album_masonry_thumb_border_style\":\"none\",\"album_masonry_thumb_border_color\":\"000000\",\"album_masonry_thumb_bg_color\":\"E8E8E8\",\"album_masonry_thumbs_bg_color\":\"FFFFFF\",\"album_masonry_thumb_bg_transparent\":100,\"album_masonry_thumb_box_shadow\":\"\",\"album_masonry_thumb_transparent\":100,\"album_masonry_thumb_align\":\"center\",\"album_masonry_thumb_hover_effect\":\"rotate\",\"album_masonry_thumb_hover_effect_value\":\"2deg\",\"album_masonry_thumb_transition\":1,\"mosaic_thumb_padding\":4,\"mosaic_thumb_border_radius\":\"2px\",\"mosaic_thumb_border_width\":1,\"mosaic_thumb_border_style\":\"none\",\"mosaic_thumb_border_color\":\"CCCCCC\",\"mosaic_thumbs_bg_color\":\"FFFFFF\",\"mosaic_thumb_bg_transparent\":0,\"mosaic_thumb_transparent\":80,\"mosaic_thumb_align\":\"center\",\"mosaic_thumb_hover_effect\":\"rotate\",\"mosaic_thumb_hover_effect_value\":\"2deg\",\"mosaic_thumb_title_font_color\":\"CCCCCC\",\"mosaic_thumb_title_font_style\":\"segoe ui\",\"mosaic_thumb_title_font_weight\":\"bold\",\"mosaic_thumb_title_margin\":\"2px\",\"mosaic_thumb_title_shadow\":\"0px 0px 0px #888888\",\"mosaic_thumb_title_font_size\":16,\"carousel_cont_bg_color\":\"000000\",\"carousel_cont_btn_transparent\":0,\"carousel_close_btn_transparent\":100,\"carousel_rl_btn_bg_color\":\"000000\",\"carousel_rl_btn_border_radius\":\"20px\",\"carousel_rl_btn_border_width\":0,\"carousel_rl_btn_border_style\":\"none\",\"carousel_rl_btn_border_color\":\"FFFFFF\",\"carousel_rl_btn_color\":\"FFFFFF\",\"carousel_rl_btn_height\":40,\"carousel_rl_btn_size\":20,\"carousel_play_pause_btn_size\":20,\"carousel_rl_btn_width\":40,\"carousel_close_rl_btn_hover_color\":\"CCCCCC\",\"carousel_rl_btn_style\":\"fa-chevron\",\"carousel_mergin_bottom\":\"0.5\",\"carousel_font_family\":\"segoe ui\",\"carousel_feature_border_width\":2,\"carousel_feature_border_style\":\"solid\",\"carousel_feature_border_color\":\"5D204F\",\"carousel_caption_background_color\":\"000000\",\"carousel_caption_bottom\":0,\"carousel_caption_p_mergin\":0,\"carousel_caption_p_pedding\":5,\"carousel_caption_p_font_weight\":\"bold\",\"carousel_caption_p_font_size\":14,\"carousel_caption_p_color\":\"white\",\"carousel_title_opacity\":100,\"carousel_title_border_radius\":\"5px\",\"mosaic_thumb_transition\":1}',0);
/*!40000 ALTER TABLE `wp_xwml_bwg_theme` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_blogname`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_blogname`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_blogname` (
`id` tinyint(2) unsigned NOT NULL AUTO_INCREMENT,
`blogname` char(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_blogname`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_blogname` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_blogname` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_blogname` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_field_selection`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_field_selection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_field_selection` (
`field_selection_id` int(11) NOT NULL AUTO_INCREMENT,
`cntctfrm_field_id` int(11) NOT NULL,
`message_id` mediumint(6) unsigned NOT NULL,
`field_value` char(50) NOT NULL,
PRIMARY KEY (`field_selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_field_selection`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_field_selection` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_field_selection` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_field_selection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_hosted_site`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_hosted_site`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_hosted_site` (
`id` tinyint(2) unsigned NOT NULL AUTO_INCREMENT,
`site` char(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_hosted_site`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_hosted_site` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_hosted_site` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_hosted_site` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_message`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_message` (
`id` int(6) unsigned NOT NULL AUTO_INCREMENT,
`from_user` char(50) NOT NULL,
`user_email` char(50) NOT NULL,
`user_address` char(120) NOT NULL,
`user_phone` char(15) NOT NULL,
`send_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`subject` tinytext NOT NULL,
`message_text` text NOT NULL,
`was_read` tinyint(1) NOT NULL,
`sent` tinyint(1) NOT NULL,
`dispatch_counter` smallint(5) unsigned NOT NULL,
`status_id` tinyint(2) unsigned NOT NULL,
`to_id` smallint(5) unsigned NOT NULL,
`blogname_id` tinyint(3) unsigned NOT NULL,
`hosted_site_id` tinyint(2) unsigned NOT NULL,
`refer_id` tinyint(2) unsigned NOT NULL,
`attachment_status` int(1) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_message`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_message` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_message_status`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_message_status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_message_status` (
`id` tinyint(2) unsigned NOT NULL AUTO_INCREMENT,
`name` char(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_message_status`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_message_status` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_message_status` DISABLE KEYS */;
INSERT INTO `wp_xwml_cntctfrmtdb_message_status` VALUES (1,'normal'),(2,'spam'),(3,'trash');
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_message_status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_refer`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_refer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_refer` (
`id` tinyint(2) unsigned NOT NULL AUTO_INCREMENT,
`refer` char(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_refer`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_refer` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_refer` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_refer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_cntctfrmtdb_to_email`
--
DROP TABLE IF EXISTS `wp_xwml_cntctfrmtdb_to_email`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_cntctfrmtdb_to_email` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`email` char(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_cntctfrmtdb_to_email`
--
LOCK TABLES `wp_xwml_cntctfrmtdb_to_email` WRITE;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_to_email` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_cntctfrmtdb_to_email` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_commentmeta`
--
DROP TABLE IF EXISTS `wp_xwml_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_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 `disqus_dupecheck` (`meta_key`,`meta_value`(11)),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=404 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_commentmeta`
--
LOCK TABLES `wp_xwml_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_xwml_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_xwml_commentmeta` VALUES (1,2,'blogger_internal','/feeds/64832133018470584/998239175862619319/comments/default/2742998094523348056'),(2,3,'blogger_internal','/feeds/64832133018470584/6935614809905953443/comments/default/1019128180985449726'),(3,4,'blogger_internal','/feeds/64832133018470584/4669874903221380217/comments/default/5508690267407778395'),(4,5,'blogger_internal','/feeds/64832133018470584/6471011434924178796/comments/default/8826459532644700195'),(5,6,'blogger_internal','/feeds/64832133018470584/6471011434924178796/comments/default/4021898665802384832'),(6,7,'blogger_internal','/feeds/64832133018470584/5751030828475797466/comments/default/7802520683891471310'),(7,8,'blogger_internal','/feeds/64832133018470584/7774466046676385601/comments/default/1421200822646972699'),(8,9,'blogger_internal','/feeds/64832133018470584/3169850024330239506/comments/default/9082411637344108419'),(9,10,'blogger_internal','/feeds/64832133018470584/2362039100628437132/comments/default/1761855907267264165'),(10,11,'blogger_internal','/feeds/64832133018470584/8994130695334448243/comments/default/6125121972993525911'),(11,12,'blogger_internal','/feeds/64832133018470584/7993695533260991718/comments/default/4778983262406225351'),(12,13,'blogger_internal','/feeds/64832133018470584/7205152284906119602/comments/default/3194137655418426440'),(13,14,'blogger_internal','/feeds/64832133018470584/7382100755306843401/comments/default/5027218148849818005'),(14,15,'blogger_internal','/feeds/64832133018470584/2707719404903244770/comments/default/6948315116966642822'),(15,16,'blogger_internal','/feeds/64832133018470584/7630406821031379282/comments/default/4068894132729920884'),(16,17,'blogger_internal','/feeds/64832133018470584/4309954208151811125/comments/default/1338174231029556175'),(17,18,'blogger_internal','/feeds/64832133018470584/5355875066214317029/comments/default/2144373232587009876'),(18,19,'blogger_internal','/feeds/64832133018470584/7968360694918584717/comments/default/5020506371456189161'),(19,20,'blogger_internal','/feeds/64832133018470584/8037716734726774956/comments/default/2371322203240190629'),(20,21,'blogger_internal','/feeds/64832133018470584/626948181960114727/comments/default/8341889045472281106'),(21,22,'blogger_internal','/feeds/64832133018470584/1807377814923641522/comments/default/1788830003454349240'),(22,23,'blogger_internal','/feeds/64832133018470584/6941646193790579241/comments/default/1009805240767687447'),(23,24,'blogger_internal','/feeds/64832133018470584/1793196253665496557/comments/default/8699743015963813659'),(24,25,'blogger_internal','/feeds/64832133018470584/1025256244193540107/comments/default/6347252893573371135'),(25,26,'blogger_internal','/feeds/64832133018470584/7598591532982127129/comments/default/7624777901499234275'),(26,27,'blogger_internal','/feeds/64832133018470584/6686933893737046273/comments/default/3875382540048027280'),(27,28,'blogger_internal','/feeds/64832133018470584/6747603558227675668/comments/default/9188022739393396088'),(28,29,'blogger_internal','/feeds/64832133018470584/2975089578696577973/comments/default/8697820432500100502'),(29,30,'blogger_internal','/feeds/64832133018470584/2577616827890461998/comments/default/2467353178184764845'),(30,31,'blogger_internal','/feeds/64832133018470584/5399372472483720547/comments/default/3914091030730849418'),(31,32,'blogger_internal','/feeds/64832133018470584/6935614809905953443/comments/default/7641987877790204667'),(32,33,'blogger_internal','/feeds/64832133018470584/8134492836417740703/comments/default/3957832351041027984'),(33,34,'blogger_internal','/feeds/64832133018470584/8134492836417740703/comments/default/5505241592850052386'),(34,35,'blogger_internal','/feeds/64832133018470584/3864816883882539555/comments/default/4537948109883887337'),(35,36,'blogger_internal','/feeds/64832133018470584/3864816883882539555/comments/default/9026766825887527894'),(36,37,'blogger_internal','/feeds/64832133018470584/6840434293451841436/comments/default/583806954625999260'),(37,38,'blogger_internal','/feeds/64832133018470584/3933558801328176441/comments/default/4854903148490001862'),(130,46,'dsq_parent_post_id',''),(131,46,'dsq_post_id','1560418608'),(132,47,'dsq_parent_post_id','1560418608'),(133,47,'dsq_post_id','1561524205'),(134,48,'dsq_parent_post_id',''),(135,48,'dsq_post_id','1563935581'),(44,1,'dsq_parent_post_id',''),(45,1,'dsq_post_id','1551206809'),(46,4,'dsq_parent_post_id',''),(47,4,'dsq_post_id','1551206813'),(48,13,'dsq_parent_post_id',''),(49,13,'dsq_post_id','1551206814'),(50,38,'dsq_parent_post_id',''),(51,38,'dsq_post_id','1551206823'),(52,35,'dsq_parent_post_id',''),(53,35,'dsq_post_id','1551206827'),(54,36,'dsq_parent_post_id',''),(55,36,'dsq_post_id','1551206828'),(56,23,'dsq_parent_post_id',''),(57,23,'dsq_post_id','1551206833'),(58,33,'dsq_parent_post_id',''),(59,33,'dsq_post_id','1551206836'),(60,24,'dsq_parent_post_id',''),(61,24,'dsq_post_id','1551206838'),(62,25,'dsq_parent_post_id',''),(63,25,'dsq_post_id','1551206839'),(64,26,'dsq_parent_post_id',''),(65,26,'dsq_post_id','1551206841'),(66,15,'dsq_parent_post_id',''),(67,15,'dsq_post_id','1551206842'),(68,19,'dsq_parent_post_id',''),(69,19,'dsq_post_id','1551206845'),(70,17,'dsq_parent_post_id',''),(71,17,'dsq_post_id','1551206857'),(72,29,'dsq_parent_post_id',''),(73,29,'dsq_post_id','1551206860'),(74,28,'dsq_parent_post_id',''),(75,28,'dsq_post_id','1551206861'),(76,20,'dsq_parent_post_id',''),(77,20,'dsq_post_id','1551206864'),(78,27,'dsq_parent_post_id',''),(79,27,'dsq_post_id','1551206872'),(80,30,'dsq_parent_post_id',''),(81,30,'dsq_post_id','1551206876'),(82,31,'dsq_parent_post_id',''),(83,31,'dsq_post_id','1551206879'),(84,37,'dsq_parent_post_id',''),(85,37,'dsq_post_id','1551206889'),(86,3,'dsq_parent_post_id',''),(87,3,'dsq_post_id','1551206895'),(88,32,'dsq_parent_post_id',''),(89,32,'dsq_post_id','1551206900'),(90,18,'dsq_parent_post_id',''),(91,18,'dsq_post_id','1551206905'),(92,9,'dsq_parent_post_id',''),(93,9,'dsq_post_id','1551206906'),(94,5,'dsq_parent_post_id',''),(95,5,'dsq_post_id','1551206908'),(96,7,'dsq_parent_post_id',''),(97,7,'dsq_post_id','1551206910'),(98,8,'dsq_parent_post_id',''),(99,8,'dsq_post_id','1551206911'),(100,6,'dsq_parent_post_id','1551206908'),(101,6,'dsq_post_id','1551206912'),(102,11,'dsq_parent_post_id',''),(103,11,'dsq_post_id','1551206915'),(104,21,'dsq_parent_post_id',''),(105,21,'dsq_post_id','1551206917'),(106,22,'dsq_parent_post_id',''),(107,22,'dsq_post_id','1551206918'),(108,10,'dsq_parent_post_id',''),(109,10,'dsq_post_id','1551206925'),(110,12,'dsq_parent_post_id',''),(111,12,'dsq_post_id','1551206926'),(112,14,'dsq_parent_post_id',''),(113,14,'dsq_post_id','1551206935'),(114,16,'dsq_parent_post_id',''),(115,16,'dsq_post_id','1551206951'),(116,2,'dsq_parent_post_id',''),(117,2,'dsq_post_id','1551206957'),(118,34,'dsq_parent_post_id','1551206836'),(119,34,'dsq_post_id','1551222919'),(120,41,'dsq_parent_post_id',''),(121,41,'dsq_post_id','1551571662'),(122,42,'dsq_parent_post_id',''),(123,42,'dsq_post_id','1552840837'),(124,43,'dsq_parent_post_id','1551571662'),(125,43,'dsq_post_id','1553033500'),(126,44,'dsq_parent_post_id','1552840837'),(127,44,'dsq_post_id','1553035584'),(128,45,'dsq_parent_post_id',''),(129,45,'dsq_post_id','1553318924'),(136,49,'dsq_parent_post_id',''),(137,49,'dsq_post_id','1570457585'),(138,50,'dsq_parent_post_id',''),(139,50,'dsq_post_id','1570523748'),(140,51,'dsq_parent_post_id',''),(141,51,'dsq_post_id','1571407385'),(142,52,'dsq_parent_post_id',''),(143,52,'dsq_post_id','1572034546'),(144,53,'dsq_parent_post_id','1571407385'),(145,53,'dsq_post_id','1574547958'),(146,54,'dsq_parent_post_id','1574547958'),(147,54,'dsq_post_id','1591836482'),(148,55,'dsq_parent_post_id',''),(149,55,'dsq_post_id','1615175761'),(150,56,'dsq_parent_post_id','1615175761'),(151,56,'dsq_post_id','1615224951'),(152,57,'dsq_parent_post_id',''),(153,57,'dsq_post_id','1615274974'),(154,58,'dsq_parent_post_id','1570457585'),(155,58,'dsq_post_id','1615276843'),(156,59,'dsq_parent_post_id',''),(157,59,'dsq_post_id','1617274129'),(158,60,'dsq_parent_post_id',''),(159,60,'dsq_post_id','1618374775'),(160,61,'dsq_parent_post_id',''),(161,61,'dsq_post_id','1620100784'),(162,62,'dsq_parent_post_id','1617274129'),(163,62,'dsq_post_id','1621757093'),(164,63,'dsq_parent_post_id',''),(165,63,'dsq_post_id','1621770411'),(166,64,'dsq_parent_post_id',''),(167,64,'dsq_post_id','1621797057'),(168,65,'dsq_parent_post_id',''),(169,65,'dsq_post_id','1624440569'),(170,66,'dsq_parent_post_id',''),(171,66,'dsq_post_id','1625008876'),(172,67,'dsq_parent_post_id',''),(173,67,'dsq_post_id','1625236070'),(174,68,'dsq_parent_post_id',''),(175,68,'dsq_post_id','1637998306'),(176,69,'dsq_parent_post_id','1637998306'),(177,69,'dsq_post_id','1638843980'),(178,70,'dsq_parent_post_id',''),(179,70,'dsq_post_id','1645779007'),(180,71,'dsq_parent_post_id',''),(181,71,'dsq_post_id','1645786883'),(182,72,'dsq_parent_post_id','1645786883'),(183,72,'dsq_post_id','1646660036'),(184,73,'dsq_parent_post_id','1645779007'),(185,73,'dsq_post_id','1646662349'),(186,74,'dsq_parent_post_id',''),(187,74,'dsq_post_id','1646912811'),(188,75,'dsq_parent_post_id','1646660036'),(189,75,'dsq_post_id','1647354757'),(190,76,'dsq_parent_post_id',''),(191,76,'dsq_post_id','1650594033'),(192,77,'dsq_parent_post_id',''),(193,77,'dsq_post_id','1651846400'),(194,78,'dsq_parent_post_id',''),(195,78,'dsq_post_id','1659127798'),(196,79,'dsq_parent_post_id',''),(197,79,'dsq_post_id','1659153032'),(198,80,'dsq_parent_post_id',''),(199,80,'dsq_post_id','1659399601'),(200,81,'dsq_parent_post_id',''),(201,81,'dsq_post_id','1659401206'),(202,82,'dsq_parent_post_id','1659401206'),(203,82,'dsq_post_id','1659453381'),(204,83,'dsq_parent_post_id','1659127798'),(205,83,'dsq_post_id','1659467041'),(206,84,'dsq_parent_post_id','1659399601'),(207,84,'dsq_post_id','1659478273'),(208,85,'dsq_parent_post_id','1659401206'),(209,85,'dsq_post_id','1659528044'),(210,86,'dsq_parent_post_id','1659528044'),(211,86,'dsq_post_id','1659535056'),(212,87,'dsq_parent_post_id','1659535056'),(213,87,'dsq_post_id','1659541274'),(214,88,'dsq_parent_post_id','1659478273'),(215,88,'dsq_post_id','1659545568'),(216,89,'dsq_parent_post_id','1659541274'),(217,89,'dsq_post_id','1659642958'),(218,90,'dsq_parent_post_id',''),(219,90,'dsq_post_id','1670578486'),(220,91,'dsq_parent_post_id',''),(221,91,'dsq_post_id','1670999716'),(222,92,'dsq_parent_post_id',''),(223,92,'dsq_post_id','1677759349'),(224,93,'dsq_parent_post_id','1677759349'),(225,93,'dsq_post_id','1677774908'),(226,94,'dsq_parent_post_id',''),(227,94,'dsq_post_id','1686565895'),(228,95,'dsq_parent_post_id',''),(229,95,'dsq_post_id','1686614827'),(230,96,'dsq_parent_post_id',''),(231,96,'dsq_post_id','1693220508'),(232,97,'dsq_parent_post_id','1693220508'),(233,97,'dsq_post_id','1693306743'),(234,98,'dsq_parent_post_id',''),(235,98,'dsq_post_id','1693693619'),(236,99,'dsq_parent_post_id',''),(237,99,'dsq_post_id','1703549575'),(238,100,'dsq_parent_post_id',''),(239,100,'dsq_post_id','1710945917'),(240,101,'dsq_parent_post_id','1710945917'),(241,101,'dsq_post_id','1711680030'),(242,102,'dsq_parent_post_id','1703549575'),(243,102,'dsq_post_id','1711681138'),(244,103,'dsq_parent_post_id',''),(245,103,'dsq_post_id','1727956292'),(246,104,'dsq_parent_post_id',''),(247,104,'dsq_post_id','1735155476'),(248,105,'dsq_parent_post_id','1735155476'),(249,105,'dsq_post_id','1735163540'),(250,106,'dsq_parent_post_id','1727956292'),(251,106,'dsq_post_id','1735164680'),(252,107,'dsq_parent_post_id',''),(253,107,'dsq_post_id','1735209933'),(254,108,'dsq_parent_post_id',''),(255,108,'dsq_post_id','1744926130'),(256,109,'dsq_parent_post_id',''),(257,109,'dsq_post_id','1745145554'),(258,110,'dsq_parent_post_id',''),(259,110,'dsq_post_id','1750481887'),(260,111,'dsq_parent_post_id',''),(261,111,'dsq_post_id','1750730445'),(262,112,'dsq_parent_post_id',''),(263,112,'dsq_post_id','1755194995'),(264,113,'dsq_parent_post_id',''),(265,113,'dsq_post_id','1762535756'),(266,114,'dsq_parent_post_id','1762535756'),(267,114,'dsq_post_id','1765428911'),(268,115,'dsq_parent_post_id',''),(269,115,'dsq_post_id','1766804984'),(270,116,'dsq_parent_post_id',''),(271,116,'dsq_post_id','1770347185'),(272,117,'dsq_parent_post_id',''),(273,117,'dsq_post_id','1774593265'),(274,118,'dsq_parent_post_id',''),(275,118,'dsq_post_id','1774610844'),(276,119,'dsq_parent_post_id',''),(277,119,'dsq_post_id','1774652178'),(278,120,'dsq_parent_post_id',''),(279,120,'dsq_post_id','1790608027'),(280,121,'dsq_parent_post_id',''),(281,121,'dsq_post_id','1795211715'),(282,122,'dsq_parent_post_id','1795211715'),(283,122,'dsq_post_id','1795573946'),(284,123,'dsq_parent_post_id',''),(285,123,'dsq_post_id','1804699994'),(286,124,'dsq_parent_post_id',''),(287,124,'dsq_post_id','1832442133'),(288,125,'dsq_parent_post_id',''),(289,125,'dsq_post_id','1832454056'),(290,126,'dsq_parent_post_id',''),(291,126,'dsq_post_id','1832461336'),(292,127,'dsq_parent_post_id',''),(293,127,'dsq_post_id','1834784091'),(294,128,'dsq_parent_post_id',''),(295,128,'dsq_post_id','1838493821'),(296,129,'dsq_parent_post_id',''),(297,129,'dsq_post_id','1846424360'),(298,130,'dsq_parent_post_id',''),(299,130,'dsq_post_id','1846454420'),(300,131,'dsq_parent_post_id',''),(301,131,'dsq_post_id','1851535267'),(302,132,'dsq_parent_post_id',''),(303,132,'dsq_post_id','1851803258'),(304,133,'dsq_parent_post_id',''),(305,133,'dsq_post_id','1877276465'),(306,134,'dsq_parent_post_id',''),(307,134,'dsq_post_id','1880011098'),(308,135,'dsq_parent_post_id','1880011098'),(309,135,'dsq_post_id','1886334376'),(310,136,'dsq_parent_post_id',''),(311,136,'dsq_post_id','1905735983'),(312,137,'dsq_parent_post_id',''),(313,137,'dsq_post_id','1905814631'),(314,138,'dsq_parent_post_id',''),(315,138,'dsq_post_id','1905842634'),(316,139,'dsq_parent_post_id',''),(317,139,'dsq_post_id','1926529102'),(318,140,'dsq_parent_post_id',''),(319,140,'dsq_post_id','1990936707'),(320,141,'dsq_parent_post_id',''),(321,141,'dsq_post_id','2058014424'),(322,142,'dsq_parent_post_id',''),(323,142,'dsq_post_id','2092851327'),(324,143,'dsq_parent_post_id',''),(325,143,'dsq_post_id','2161785499'),(326,144,'dsq_parent_post_id',''),(327,144,'dsq_post_id','2232173156'),(328,145,'dsq_parent_post_id',''),(329,145,'dsq_post_id','2232182049'),(330,146,'dsq_parent_post_id',''),(331,146,'dsq_post_id','2233908622'),(332,147,'dsq_parent_post_id',''),(333,147,'dsq_post_id','2358787741'),(334,148,'dsq_parent_post_id',NULL),(335,148,'dsq_post_id','2434093323'),(336,149,'dsq_parent_post_id',NULL),(337,149,'dsq_post_id','2440465359'),(338,150,'dsq_parent_post_id',NULL),(339,150,'dsq_post_id','2622274020'),(340,151,'dsq_parent_post_id',NULL),(341,151,'dsq_post_id','2822800130'),(342,152,'dsq_parent_post_id',NULL),(343,152,'dsq_post_id','2839399028'),(344,153,'dsq_parent_post_id',NULL),(345,153,'dsq_post_id','2875738331'),(346,154,'dsq_parent_post_id',NULL),(347,154,'dsq_post_id','3148238862'),(348,155,'dsq_parent_post_id','3148238862'),(349,155,'dsq_post_id','3151167972'),(350,156,'dsq_parent_post_id','3151167972'),(351,156,'dsq_post_id','3152640035'),(352,157,'dsq_parent_post_id',NULL),(353,157,'dsq_post_id','3204465852'),(354,158,'dsq_parent_post_id',NULL),(355,158,'dsq_post_id','3204472048'),(356,159,'dsq_parent_post_id',NULL),(357,159,'dsq_post_id','3257637213'),(358,160,'dsq_parent_post_id',NULL),(359,160,'dsq_post_id','3478514753'),(360,161,'dsq_parent_post_id',NULL),(361,161,'dsq_post_id','3478517004'),(363,162,'akismet_history','a:3:{s:4:\"time\";d:1508460162.0706329;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(366,162,'akismet_history','a:3:{s:4:\"time\";d:1509944065.300952;s:5:\"event\";s:15:\"status-approved\";s:4:\"user\";s:27:\"monicawilliams517@gmail.com\";}'),(367,163,'dsq_parent_post_id',NULL),(368,163,'dsq_post_id','3993529130'),(369,164,'dsq_parent_post_id',NULL),(370,164,'dsq_post_id','4406209268'),(371,165,'dsq_parent_post_id',NULL),(372,165,'dsq_post_id','4535955213'),(373,166,'dsq_parent_post_id',NULL),(374,166,'dsq_post_id','4607910301'),(389,169,'akismet_history','a:3:{s:4:\"time\";d:1678228337.7168719768524169921875;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(385,168,'akismet_history','a:3:{s:4:\"time\";d:1671326367.2309169769287109375;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(384,168,'akismet_error','1671326367'),(388,169,'akismet_error','1678228337'),(387,168,'akismet_delayed_moderation_email','1'),(391,169,'akismet_delayed_moderation_email','1'),(392,170,'akismet_error','1702219040'),(393,170,'akismet_history','a:3:{s:4:\"time\";d:1702219040.8358509540557861328125;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(395,170,'akismet_delayed_moderation_email','1'),(396,171,'akismet_error','1702802115'),(397,171,'akismet_history','a:3:{s:4:\"time\";d:1702802115.4747889041900634765625;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(400,172,'akismet_error','1709152566'),(401,172,'akismet_history','a:3:{s:4:\"time\";d:1709152566.6887710094451904296875;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(399,171,'akismet_delayed_moderation_email','1'),(403,172,'akismet_delayed_moderation_email','1');
/*!40000 ALTER TABLE `wp_xwml_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_comments`
--
DROP TABLE IF EXISTS `wp_xwml_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
`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=189 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_comments`
--
LOCK TABLES `wp_xwml_comments` WRITE;
/*!40000 ALTER TABLE `wp_xwml_comments` DISABLE KEYS */;
INSERT INTO `wp_xwml_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2014-08-09 21:01:51','2014-08-09 21:01:51','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','comment',0,0),(2,341,'Rayona Tuneelo','noreply@blogger.com','http://www.blogger.com/profile/05282163725884732535','127.0.0.1','2013-04-10 16:04:28','2013-04-10 16:04:28','I absolutely love this poem, reflects so many of my feelings at the moment. I will be sure to subscribe:) please check out my blog at http://anonymouspreach.blogspot.co.uk/ would mean a lot x',0,'1','','comment',0,0),(3,320,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-12 21:47:40','2013-04-12 21:47:40','Mom my has always told me \"I can do anything I set my mind too\" and \"Always do my best.\" Even when I felt down or had a question about life, she was always there. I have some of the same thoughts, so I guess your thoughts aren\'t as \"random\" as you think.',0,'1','','comment',0,0),(4,321,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-12 21:56:27','2013-04-12 21:56:27','This poem makes me think of the meaning of determination and the feeling of reaching a goal in life. This pic make me think of when I would try to carry my stuff up 4 flights of stairs at the dorms that one semester...had to take a break before going back downstairs to get the rest...sweating bullets after like two trips.',0,'1','','comment',0,0),(5,323,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 00:41:57','2013-04-13 00:41:57','Witty title... The fact that \"You\" titled it \"You\", but \"You\" didn\'t use the word \"You\" in the entire poem. So I think I like \"You\" more than the poem itself. That\'s alot of You\'s..',0,'1','','comment',0,0),(6,323,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 00:44:46','2013-04-13 00:44:46','Oops \"You\" used \"You\" twice. So did I.',0,'1','','comment',5,0),(7,324,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 00:48:51','2013-04-13 00:48:51','Sounds like my morning. I\'m thankful to be as fortunate as I am.',0,'1','','comment',0,0),(8,325,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 00:54:53','2013-04-13 00:54:53','Inspirational..But I will never be as tall as a tree..I guess I can keep pushing for the Sunshine.',0,'1','','comment',0,0),(9,326,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 00:58:16','2013-04-13 00:58:16','Sadly..Enough people don\'t realize this. You can\'t love anyone until you love yourself. Makes me think about people who try to be something they are not.',0,'1','','comment',0,0),(10,327,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:00:16','2013-04-13 01:00:16','Love is meant for Everyone.',0,'1','','comment',0,0),(11,328,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:10:14','2013-04-13 01:10:14','Nice one. The Line \" I will always remember the night you killed our friend\" would have been really clever if you made it seem like \"The drink\" killed your old friend that didn\'t drink and turned that same friend into the friend that now drinks. get it?',0,'1','','comment',0,0),(12,329,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:22:25','2013-04-13 01:22:25','It feels good to make non believers believe.',0,'1','','comment',0,0),(13,330,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:26:40','2013-04-13 01:26:40','I would say that looks change, but the heart doesn\'t. But even hearts turn cold. Everything changes if enough time passes.',0,'1','','comment',0,0),(14,331,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:31:53','2013-04-13 01:31:53','thought provoking even when I think I\'m sure..in the end what I was sure about might not be sure anymore...Are you sure?',0,'1','','comment',0,0),(15,332,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:40:43','2013-04-13 01:40:43','I think everyone has a wall, but some don\'t leave a window.',0,'1','','comment',0,0),(16,333,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:43:13','2013-04-13 01:43:13','It\'s definitely all I have.',0,'1','','comment',0,0),(17,334,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:52:47','2013-04-13 01:52:47','If your weren\'t someone\'s Everything..I think you would want to know and not lay there \"Happy\" and live a lie.',0,'1','','comment',0,0),(18,335,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 01:58:22','2013-04-13 01:58:22','I think The word \"Love\" is use too frequently now a days, it has lost what it really use to mean.',0,'1','','comment',0,0),(19,336,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 02:03:36','2013-04-13 02:03:36','I\'m afraid of somethings that I was not as a kid',0,'1','','comment',0,0),(20,337,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-13 02:10:18','2013-04-13 02:10:18','I often wonder why strangers or people I meet for the first time are nice to me & feel a need to talk to me when I don\'t say anything to them. Or why people notice I\'m \"different\" but are still nice and act like they don\'t notice.',0,'1','','comment',0,0),(21,338,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 02:54:44','2013-04-14 02:54:44','I think people that have their mind already made up about someone are mostly afraid of outside opinions.',0,'1','','comment',0,0),(22,339,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 03:02:23','2013-04-14 03:02:23','As people grow older, they mature and it would seems like we would love more, but we hate each other more. Also as a child, we just want to be nice and be friends with everyone. Makes me think where does the hate come from as we get older?',0,'1','','comment',0,0),(23,340,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 03:09:57','2013-04-14 03:09:57','When I\'m having a tough time, I try to remember that God never puts more on us than we can handle. But also makes me think of people who don\'t believe in God or some higher being, when they have tough times, who do they turn too?',0,'1','','comment',0,0),(24,342,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 03:57:52','2013-04-14 03:57:52','beautiful, really well written',0,'1','','comment',0,0),(25,343,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 04:15:27','2013-04-14 04:15:27','This is probably not the best comment, but everyone has a rainy season. The sun will shine through. Don\'t let anything take your happiness anyway.',0,'1','','comment',0,0),(26,344,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 04:28:45','2013-04-14 04:28:45','Makes me think of grade when I wasn\'t the most popular & at times, I got picked on. But now I\'m further along in life than most of the popular kids from grade school. Ironically, I wish they were as successful as me, because the world & life can be a cruel place. Just beats you down when you are at our lowest and I wish no one experiences this..but some do, which is sad.',0,'1','','comment',0,0),(27,345,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 04:39:45','2013-04-14 04:39:45','I don\'t like that you\'ve been hurt like this. Ashamed that people have to go through these things to become stronger and helps appreciate something better that much more.',0,'1','','comment',0,0),(28,346,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 04:49:14','2013-04-14 04:49:14','I don\'t know who I am to the world..',0,'1','','comment',0,0),(29,347,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 04:54:28','2013-04-14 04:54:28','I dont worry about what others think, I\'m just working towards my goals',0,'1','','comment',0,0),(30,348,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 05:04:46','2013-04-14 05:04:46','Nobody ever looked at me that way..I imagine it feels atleast somewhat nice for someone to look at you.',0,'1','','comment',0,0),(31,349,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-14 05:15:46','2013-04-14 05:15:46','Hello Monica Williams. I\'m anonymous. Indeed, Life is Beautiful..So are you. I hope this blog is a place for you to release thoughts that are difficult to talk about.',0,'1','','comment',0,0),(32,320,'Anna B','noreply@blogger.com','','127.0.0.1','2013-04-16 01:13:39','2013-04-16 01:13:39','Wow...this hit home. I suffered from depression after my first daughter died. I thought no one could possibly understand what I was going through. I mean if they really cared about me, how can they still laugh while I was grieving? It took a lot for me to really see how their laughter was an attempt to bring me back to life!',0,'1','','comment',0,0),(33,319,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-16 01:50:17','2013-04-16 01:50:17','No sure how to comment on this one...How many weekly challenges will there be?',0,'1','','comment',0,0),(34,319,'Monica Williams','noreply@blogger.com','http://www.blogger.com/profile/15297986448278763368','127.0.0.1','2013-04-16 13:21:12','2013-04-16 13:21:12','I plan to have one every week. The purpose is to get people to think.',0,'1','','comment',33,0),(35,317,'Lisa Bird','noreply@blogger.com','http://www.blogger.com/profile/10821931332588337789','127.0.0.1','2013-04-16 20:03:03','2013-04-16 20:03:03','This comment has been removed by the author.',0,'1','','comment',0,0),(36,317,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-16 21:07:50','2013-04-16 21:07:50','I don\'t have a fear of being Single. It\'s sad to say, but being single is a comfort zone for me. I think being in a relationship, some people feel obligated to do certain things all the time like call everyday and be around each other most of the time even if they don\'t feel like it . If I were in a realtionship, I would want it to be really organic, meaning I don\'t have to call if I don\'t feel like talking everyday or the person that I\'m in a relationship with doesn\'t have to call if they don\'t feel like it either everyday. Also, we would not have to be around each other 24/7. Quality time is important don\'t get me wrong, but too much of anything is bad. In general, I think what holds a \"good & true\" relationship together (when there is a relationship) is how important that person is to you as a person & how genuine you feeling are towards that person. Too many people want to be in a \"relationship\" with other people for the wrong reasons now a days. Although I wouldn\'t mind getting to know someone better, which in my mind is not being in a relationship. I think you have to be true friends (meaning it doesn\'t matter if I hear from that person or see that person in weeks,months, or years, you will always be friends, because that foundation has been made) & their well-being (like health, safety, stuff like that) then a relationship will come in time.',0,'1','','comment',0,0),(37,316,'Anonymous','noreply@blogger.com','','127.0.0.1','2013-04-17 20:04:38','2013-04-17 20:04:38','One thing that I learned is that thinking too much about anything isn\'t good, whether it be a person, thing, or whatever, it\'s not good. It just messes with your mind..It happens to me sometimes. My suggestion is to just stop. Stop thinking so much about a moment, person, thing, or whatever it is your thinking so much about. I\'m not saying forget..just don\'t think as much. You will feel better..it works for me.',0,'1','','comment',0,0),(38,315,'Rayona Tuneelo','noreply@blogger.com','http://www.blogger.com/profile/05282163725884732535','127.0.0.1','2013-04-18 16:36:14','2013-04-18 16:36:14','I love this, such a truth:L good photo as well:) xx',0,'1','','comment',0,0),(46,596,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-08-26 19:02:00','2014-08-26 19:02:00','We are all beautiful and we all feel pain. Being beautiful comes with this thing..This thing is that beauty is all people see. The beautiful thinks \" I hurt too\" \"I\'m not perfect\"..a rose has thorns too. Rose are red, but so is blood and blood only comes from pain and how ironic that blood and roses are the same color..Perhaps the most beautiful people are the most beautiful so they can mask all the pain for no one to see. The thing is strip all the beauty away and at the core we are all the same thing..human beings.',0,'1','Disqus/1.1(2.77):1560418608','comment',0,0),(47,596,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-08-27 12:59:00','2014-08-27 12:59:00','Eric you are so correct.......I\'m happy you understood it. :)',0,'1','Disqus/1.1(2.77):1561524205','comment',46,0),(48,611,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-08-28 21:05:00','2014-08-28 21:05:00','When I read this, alot of things run through my mind. I found this quote from Maya Angelou:\n\n\"When people show you who they are, believe them the first time\" \n\nToxic things are not good..Devil\'s brew is not good. \n\n#DontKeepTheLiesWriteSteveHarveyAStrawberryLetter\n#MyLastHashTagWasOnlyAJoke\n#ButIGotAFeelingYouWontLaugh\n#OrMaybeYouWill\n#IHopeImUsingHashTagsRightCuzIThinkItsATwitterThingAndIDontDoTwitter\n#YepImJustGonnaKeepMakingHashTags\n#HonestlyItsKindofFun\n#OhShitMyBossAlmostCaughtMeWithMyWebBrowserUpAtWork\n#IfYouAintLaughingYourAssLaughingNow\n#DamnItsHotInThisOfficeOurACBroke\n\n#AllTheseWhiteFolksAroundHereSweating\n#WhyTheySmellWhenTheySweat\n#IWonderIfWeStinkToThemWhenWeSweat\n#YouNeverKnowWhatYouGoingToGetWithYourPost\n#BeautifulMindNoRussellCrowe\n#IHadToLookThatUpIWasntSureIfHeWasTheActorFromThatMovie\n#EitherwayYourMindIsStillBeautiful\n#IsaidWhiteWasCoolForTheBackgroundButIReallyDontLikeIt\n#YouSayYouDontKnowHowToChangeItButThatsALieYouWasAComputerScienceMajor\n#DamnNowImSweatingItsHotInThisBitch\n#ThisIsGettingStupid\n#HowManyHashTagsIsThisMyLastOneNext\n#OkImDone\n#Psych\n#IwasDoneButIGot4minsLeftAtWork\n#MightAsWellMakeMoreHashTags\n#4:59RightNow\n#TimeForOneMore\n#5:00IBeStandingAtThatPushClockLikeSomeoneInLineForFoodStamps\n#OhShitItsPast5:00Bye',0,'1','Disqus/1.1(2.77):1563935581','comment',0,0),(41,585,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-08-20 18:10:00','2014-08-20 18:10:00','I think when you really want something time passes by slow because it seems like it will never get here. Honestly, I think very few people know their purpose in life. People live life, but purpose is a mystery to many, doesn\'t mean they will not solve that mystery. In life, slow steps it better than no steps and there is a reason for every season.',0,'1','Disqus/1.1(2.77):1551571662','comment',0,0),(42,1,'St. Clinton','afroanglicans@gmail.com','','68.108.61.184','2014-08-21 13:56:00','2014-08-21 13:56:00','Congrats on the website. Looking forward to seeing what else you do with it, as I am sure that it going to be an award winner...',0,'1','Disqus/1.1(2.77):1552840837','comment',0,0),(43,585,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-08-21 16:01:00','2014-08-21 16:01:00','So many do not know their true purpose in life. It is something that comes slowly to some..... I know for many years I felt as though I had no purpose. However, now, I know that purpose! I know that things may come slowly, but they will come in due time.',0,'1','Disqus/1.1(2.77):1553033500','comment',41,0),(44,1,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-08-21 16:02:00','2014-08-21 16:02:00','Thank you Earl for your encouraging words :)',0,'1','Disqus/1.1(2.77):1553035584','comment',42,0),(45,585,'Dg','darrellgreenull@yahoo.com','','70.113.202.141','2014-08-21 18:52:00','2014-08-21 18:52:00','Agreed with Eric comment. But during that time it shapes you and molds you. Could relate this to a moment that I am going through right now.',0,'1','Disqus/1.1(2.77):1553318924','comment',0,0),(49,2,'Scrapa','ericfleming257@yahoo.com','','68.230.227.126','2014-09-02 16:37:00','2014-09-02 16:37:00','IT IS SHE WHO CRIES FOR THE LOST OF LOVE NO MORE KISSES NO MORE HUGS IT IS TIME TO GROW TIME TO HEAL HURTING IS NUMB IT IS TIME TO FEEL A FRIEND TO HAVE IS A FRIEND TO BE OPEN YOUR EYES THAT FRIEND IS ME',0,'1','Disqus/1.1(2.77):1570457585','comment',0,0),(50,249,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-09-02 16:56:00','2014-09-02 16:56:00','I still love this poem til this very day! <3 !',0,'1','Disqus/1.1(2.77):1570523748','comment',0,0),(51,611,'ha!','whyyoumad@yahoo.com','','66.87.121.55','2014-09-03 03:25:00','2014-09-03 03:25:00','....psychotic.',0,'1','Disqus/1.1(2.77):1571407385','comment',0,0),(52,11,'ha!','whyyoumad@yahoo.com','','66.87.121.60','2014-09-03 14:59:00','2014-09-03 14:59:00','psycho ',0,'1','Disqus/1.1(2.77):1572034546','comment',0,0),(53,611,'St. Clinton','afroanglicans@gmail.com','','68.108.61.184','2014-09-04 22:40:00','2014-09-04 22:40:00','You must be leading a very sad life if all that you can post in the comments is psycho and/or psychotic in each post. I shall be praying that your life changes to the better...',0,'1','Disqus/1.1(2.77):1574547958','comment',51,0),(54,611,'ha','whyyoumad@yahoo.com','','66.87.121.182','2014-09-16 18:08:00','2014-09-16 18:08:00','stfu nobody cares ',0,'1','Disqus/1.1(2.77):1591836482','comment',53,0),(55,621,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-01 17:49:00','2014-10-01 17:49:00','I read this about 4 times trying to figure out what this means...still don\'t know. Had an idea, but maybe it\'s just about to loving again and fresh beginnings.',0,'1','Disqus/1.1(2.77):1615175761','comment',0,0),(56,621,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-01 18:20:00','2014-10-01 18:20:00','It plays off of the saying \"Sometimes some people don\'t want to see you happy\". At the end of the day, true love comes from within. You must cultivate that love and let it grow before you allow yourself to bestow that love on others. Let it grow inside of you; then once it is ready, release it to the world... Read it again and tell me if you understand then.',0,'1','Disqus/1.1(2.77):1615224951','comment',55,0),(57,11,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-01 18:52:00','2014-10-01 18:52:00','This poem was written for a friend so that he would feel better in his pursuit of love. Sometimes we wish that we didn\'t care as much for others because so many others do not care for us... This purpose of this poem was to highlight that although you think you care too much at this time, you must never wish to change this caring nature you have about you. For one day you will encounter someone who appreciates it.',0,'1','Disqus/1.1(2.77):1615274974','comment',0,0),(58,2,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-01 18:53:00','2014-10-01 18:53:00','Thank you for offering your friendship. I\'m sorry that I am so late at getting to this. I have been away for a while. I hope all is well on your end. -Monica',0,'1','Disqus/1.1(2.77):1615276843','comment',49,0),(59,626,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-10-02 23:40:00','2014-10-02 23:40:00','I wish I would have waited to read this in the morning. I\'m going to read it again in the morning. Outlook on life when we wake up can really effect the quality of the day. This can be my reminder to be thankful for each day.',0,'1','Disqus/1.1(2.77):1617274129','comment',0,0),(60,628,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-03 18:22:00','2014-10-03 18:22:00','That was really nice. Wow..',0,'1','Disqus/1.1(2.77):1618374775','comment',0,0),(61,621,'lmfao','stupid@gmail.com','','66.87.120.168','2014-10-05 01:14:00','2014-10-05 01:14:00','lmao you pregnant?????',0,'1','Disqus/1.1(2.77):1620100784','comment',0,0),(62,626,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-06 14:42:00','2014-10-06 14:42:00','I\'m happy you enjoyed it.',0,'1','Disqus/1.1(2.77):1621757093','comment',59,0),(63,630,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-06 14:52:00','2014-10-06 14:52:00','It\'s good that you won\'t bitterness consume you. Let your happiness grow from inside you, you are a beautiful soul. Life is about being happy. Life without happiness isn\'t life at all. Continue to be the great person you are.That is a good quote at the end.',0,'1','Disqus/1.1(2.77):1621770411','comment',0,0),(64,78,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-06 15:10:00','2014-10-06 15:10:00','I think that\'s why you keep a blog..to express yourself. I think it is a good thing, your blog. You are indeed a puzzle. A million piece puzzle.',0,'1','Disqus/1.1(2.77):1621797057','comment',0,0),(65,630,'ummm','immm@gmail.com','','66.87.121.84','2014-10-08 00:19:00','2014-10-08 00:19:00','you pregnant????',0,'1','Disqus/1.1(2.77):1624440569','comment',0,0),(66,190,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-08 11:29:00','2014-10-08 11:29:00','So genuine and true.............. Still how I feel til this day........If someone I love is happy with someone else then I will gladly let them go since I love them that much... I love unselfishly..And that is what I love about myself.',0,'1','Disqus/1.1(2.77):1625008876','comment',0,0),(67,633,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-08 13:44:00','2014-10-08 13:44:00','Three words..I am great',0,'1','Disqus/1.1(2.77):1625236070','comment',0,0),(68,652,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-15 16:37:00','2014-10-15 21:37:00','So many dysfunctional families and families that are just not together. A lot of kids grow up lacking one side either the father or mother and they just grow up not knowing what the other side is because it was not in their home (or it may be in their home, but it is a bad representation of the Adult man or woman). That\'s why when I have a family and have a girl or boy or both, I will try very hard to show them what a real man is (which will be especially important if I have a little girl) and to always respect and cherish my wife so my son will hopefully grow up and do the same to his wife and how a father should love his kids and family. Always tell my little girl she is beautiful, smart, and intelligent everyday so she doesn\'t look for boys to tell her what she already knows and no matter what always respect herself, do not conform to society\'s idea of beautiful and my son to not conform to what \"makes\" you a man. Always tell them to love yourself, be kind, be humble, show humility to others, never think you are better than anyone else, have your own mind, don\'t follow the crowd, be yourself because you were uniquely created, dream, anything can be accomplished if you set your mind to it, love each other, be there for one another in good and bad times, never forget where you come from and remember those less fortunate. Have values and stand on them. Just really to be their own person and be kind because the world needs more of those type of people. Nice one.',0,'1','Disqus/1.1(2.77):1637998306','comment',0,0),(69,652,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-16 07:43:00','2014-10-16 12:43:00','Thank you. I am glad you enjoyed the poem. What inspired it was that so many times people have children and then the parents fall out and do not get along. Bitterness usually causes a parent to deny the presence of the other parent in the child\'s life.... Which is wrong. Some women even go on, have the child, and refuse to tell the man about the child because they do not want that person in their life or they feel as though it is just too much drama and it is better off that way.... I was really just thinking about how really important it is to \"Let those bonds be\". Each parent should treat each other with respect because the child will learn from their relationship whether the parents are together or not.......',0,'1','Disqus/1.1(2.77):1638843980','comment',68,0),(70,668,'St. Clinton','afroanglicans@gmail.com','','68.224.152.188','2014-10-20 22:04:00','2014-10-21 03:04:00','This is really deep when one sits and thinks about what you wrote...',0,'1','Disqus/1.1(2.77):1645779007','comment',0,0),(71,675,'St. Clinton','afroanglicans@gmail.com','','68.224.152.188','2014-10-20 22:13:00','2014-10-21 03:13:00','When you finish your project\nAnd your bosses smile with glee,\nLook at them and tell them\n\"It was put together just my me.\"',0,'1','Disqus/1.1(2.77):1645786883','comment',0,0),(72,675,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-21 12:06:00','2014-10-21 17:06:00','I really like that!!! It actually would fit perfectly at the end of this poem..lol. But I\'m not going to steal your words..lol.',0,'1','Disqus/1.1(2.77):1646660036','comment',71,0),(73,668,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-21 12:08:00','2014-10-21 17:08:00','Thank you. I\'m happy you enjoyed it. It makes me realize that I should be mindful of the words in which I speak..... You never know who you could hurt and how deep that hurt can be.',0,'1','Disqus/1.1(2.77):1646662349','comment',70,0),(74,678,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-21 13:50:00','2014-10-21 18:50:00','You right. When you don\'t forgive, you ultimately imprison yourself mentally. Also by not forgiving you are only sending your own soul to a bad place.',0,'1','Disqus/1.1(2.77):1646912811','comment',0,0),(75,675,'St. Clinton','afroanglicans@gmail.com','','199.36.244.16','2014-10-21 18:56:00','2014-10-21 23:56:00','Go on and use it no problem.\n',0,'1','Disqus/1.1(2.77):1647354757','comment',72,0),(76,680,'St. Clinton','afroanglicans@gmail.com','','68.224.152.188','2014-10-23 15:42:00','2014-10-23 20:42:00','When a friendship occurred \n\n between me and you,\n\n Before I even knew it\n\n I had fallen in love with you\n .\n\n \n\n You say that you have things\n\n you are working through,\n\n Together we can work together\n\n which will create a better me and you\n .\n\n \n\n If waiting for the rest of my life\n\n is what I have to do,\n\n I will love you forever\n\n because my heart belongs to you\n .\n\n \n\n But if you should fall for another\n\n in the future don\'t think about what could of been,\n\n for you will always have me\n\n as someone you can call a friend',0,'1','Disqus/1.1(2.77):1650594033','comment',0,0),(77,684,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-24 11:37:00','2014-10-24 16:37:00','I\'m not a doctor, but candy will not help. Yeah, try not to have a sucky day, but it may suck, I hope it doesn\'t.',0,'1','Disqus/1.1(2.77):1651846400','comment',0,0),(78,694,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-29 08:04:00','2014-10-29 13:04:00','Today will be a good day. I hope you have a great day too.',0,'1','Disqus/1.1(2.77):1659127798','comment',0,0),(79,692,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-10-29 08:24:00','2014-10-29 13:24:00','Never be afraid to show people how you really are. Everyone is different. Everyone has that thing about them that makes them the person they are.',0,'1','Disqus/1.1(2.77):1659153032','comment',0,0),(80,694,'lol stop','haha@gmail.com','','66.87.120.110','2014-10-29 11:03:00','2014-10-29 16:03:00','move on lol you look stupid and desperate ;) ',0,'1','Disqus/1.1(2.77):1659399601','comment',0,0),(81,694,'lol stop','haha@gmail.com','','66.87.120.110','2014-10-29 11:04:00','2014-10-29 16:04:00','\"did you ever love me\" no, no he didnt ',0,'1','Disqus/1.1(2.77):1659401206','comment',0,0),(82,694,'Can I go in','darrellgreenull@yahoo.com','','70.112.236.27','2014-10-29 11:35:00','2014-10-29 16:35:00','Does he love you tho \"side piece\"',0,'1','Disqus/1.1(2.77):1659453381','comment',81,0),(83,694,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.58','2014-10-29 11:42:00','2014-10-29 16:42:00','Thanks! If you speak it into existence, it will be so!!!',0,'1','Disqus/1.1(2.77):1659467041','comment',78,0),(84,694,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-10-29 11:43:00','2014-10-29 16:43:00','Stupid? .. No that is not I. Desperate? Not by a long shot...\n\nBut what is stupid is how you continually write on my sites to spark a reaction. Truth of the matter is, you might as well have left your name on the comments because I can trace them all back to you using the IP address. I guess you are doing this out of desperation because I do not respond to you and you still wonder...But what you are doing is called cyber-stalking which is a criminal offense.... I just wanted you to know. Have a great day.',0,'1','Disqus/1.1(2.77):1659478273','comment',80,0),(85,694,'lol','lol@gmail.com','','66.87.120.110','2014-10-29 11:55:00','2014-10-29 16:55:00','side pieces don\'t meet the family tho....did she? ',0,'1','Disqus/1.1(2.77):1659528044','comment',81,0),(86,694,'You don\'t want this','darrellgreenull@yahoo.con','','70.112.236.27','2014-10-29 11:59:00','2014-10-29 16:59:00','Met the family... But didn\'t know where he stayed at tho',0,'1','Disqus/1.1(2.77):1659535056','comment',85,0),(87,694,'lol','lol@gmail.com','','66.87.120.110','2014-10-29 12:02:00','2014-10-29 17:02:00','lol that was a good one ;) he didn\'t do half the stuff he did for her though..she was being used.',0,'1','Disqus/1.1(2.77):1659541274','comment',86,0),(88,694,'lol','ha@gmail.com','','66.87.120.110','2014-10-29 12:05:00','2014-10-29 17:05:00','hey girl lol!!!!',0,'1','Disqus/1.1(2.77):1659545568','comment',84,0),(89,694,'Dg','darrellgreenull@yahoo.com','','206.77.151.17','2014-10-29 13:01:00','2014-10-29 18:01:00','So you wasn\'t being used? or because of the lack of education that you have you cant tell ?',0,'1','Disqus/1.1(2.77):1659642958','comment',87,0),(90,698,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-11-02 07:18:00','2014-11-02 13:18:00','Always remain true. Somethings are out of our control and those are battles that should not be fought by us. Also most times we don\'t lose happiness, or peace, but the mind has a way of having one think that they are lost when it\'s (happiness & peace) really all in our mind. The mind is the strongest thing we have because when one has a strong mind that person can accomplish anything and get through anything.',0,'1','Disqus/1.1(2.77):1670578486','comment',0,0),(91,686,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-11-02 08:33:00','2014-11-02 14:33:00','Honestly, I believe this is what everyone wants. At the core of all of us, all we want is love, and companionship in life..someone to built with. Now material things are nice to have, but really have no true value. Life is hard enough as it is, and without love and what truly matters, life will be that much harder to go through. Anyone can find anyone (that is easy), but if it is not true and anchored in true love, then it will not remain. Because when something is anchored in true love, when the looks fade, when the material things are not as nice, when any troubles come, when things take a dip or bad turn...that foundation, that friendship/companionship (but this friendship/companionship has to equally strong from both sides) never leaves and that\'s where real things last because before all the other things, all you want is the most for the other person, for them to be happy, for them to grow, for them to have everything and achieve what they set out to achieve, for them to smile, you never truly want to see a day when that person is not happy or not smiling and you definitely don\'t want them to ever cry..but that person has to also want the exact same for other person, it HAS to go both ways. It\'s like a house, you can build a really nice house, but if doesn\'t have the proper foundation, then it doesn\'t matter how nice is it because in time the weak/bad foundation will show. I think that things that last are those that you always know what the other person wants for you, things that are pure and unselfish.',0,'1','Disqus/1.1(2.77):1670999716','comment',0,0),(92,710,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-11-05 08:54:00','2014-11-05 14:54:00','I see you been using the 8 line thing sometimes.',0,'1','Disqus/1.1(2.77):1677759349','comment',0,0),(93,710,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','66.87.120.184','2014-11-05 09:02:00','2014-11-05 15:02:00','Yep. I been trying it out lately. They will get shorter. I wrote one last year called \"love vs hate\" and that was short. But I stopped because it was hard..lol ',0,'1','Disqus/1.1(2.77):1677774908','comment',92,0),(94,716,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-11-10 16:30:00','2014-11-10 22:30:00','We should remove poison from our lives. Poison doesn\'t necessarily have to be a person, it can also be anything that drains our life, weakens our life or basically takes away from life. Like someone\'s attitude about life can be their poison or their own thoughts can be poison. I think poison comes in many forms, not just other humans we meet in life.',0,'1','Disqus/1.1(2.77):1686565895','comment',0,0),(95,713,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-11-10 16:48:00','2014-11-10 22:48:00','That\'s the thing about life, one day can be sweet and the next day not as sweet or it can even be sour. But if life wasn\'t great one day and different the next then life wouldn\'t be life. Life is full of ups and downs, straight roads and unexpected turns. Hence the expressions (life\'s a bitch, life is what you make it, life is good, there are no shortcuts in life, or even life is like a box of chocolates..lol, etc..life can be many things) the only thing we can control is our mindset and how we navigate through it.',0,'1','Disqus/1.1(2.77):1686614827','comment',0,0),(96,720,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-11-14 11:10:00','2014-11-14 17:10:00','Love is for the slow paced, not the swift. If love never leaves, how can it return? Love is not in the moment, but it grows to forever. If people lived forever and we never died, would the person we choose to love still be there at the end of forever. Or would to one person would forever be too long, To the other person forever is not enough time. Forever should only be a glimpse in time to both people truth be told. Returning to love can be deceiving if love is not what is given in return.',0,'1','Disqus/1.1(2.77):1693220508','comment',0,0),(97,720,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.58','2014-11-14 12:02:00','2014-11-14 18:02:00','True....real love never leaves. Just like a parent loves a child. No matter what that child may do, love will never go away. However, the child may neglect the parent, but if that parent truly loves their child they will still love their kid no matter what.........That kid can return to love. \n\nThe poem is mainly about returning to those who love you. Sometimes we are blinded by good looks, money, and gifts and we neglect to look at person for who they are. We neglect the inside... and the inside is what will last even after looks fade and money comes and goes. Genuine people are hard to find. People who truly love you are hard to find...hold on to them..',0,'1','Disqus/1.1(2.77):1693306743','comment',96,0),(98,725,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-11-14 15:55:00','2014-11-14 21:55:00','you are not alone. Maybe you should read this: http://www.monicarenata.com/just-in-case/\njust replace good guy with good girl.',0,'1','Disqus/1.1(2.77):1693693619','comment',0,0),(99,734,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.224.152.188','2014-11-20 11:20:00','2014-11-20 17:20:00','This sounds so much like the beginning of a \"Romance/Mystery\" novel. Makes me want to continue reading as to find out what comes next....',0,'1','Disqus/1.1(2.77):1703549575','comment',0,0),(100,742,'Eric G','egriffin09@hotmail.com','','64.56.25.234','2014-11-24 18:36:00','2014-11-25 00:36:00','I know that trust is still there, the trust that you think is gone. You may think that you are alone and emotionally cold now, but a person like you can not be that way forever. Deep down I know that the trust, caring, loving,and just generally great person that I know you to be is still there. A person who just wants to be loved for herself and nothing else. A person who really just wants to give love and receive the same in return. I know you want many other things as well, but love & loyalty are probably high on your list.',0,'1','Disqus/1.1(2.77):1710945917','comment',0,0),(101,742,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.58','2014-11-25 07:12:00','2014-11-25 13:12:00','Love and Loyalty are actually very high on my list.',0,'1','Disqus/1.1(2.77):1711680030','comment',100,0),(102,734,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.58','2014-11-25 07:13:00','2014-11-25 13:13:00','LOL. I still have my second book just waiting to be finished....But who knows.',0,'1','Disqus/1.1(2.77):1711681138','comment',99,0),(103,750,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-05 16:55:00','2014-12-05 22:55:00','People come and go, that\'s true. Kill them off huh..lol. Dang, you ain\'t got to kill them. As long as you don\'t reach that Game of Thrones death count in your Book of Life...lol.',0,'1','Disqus/1.1(2.77):1727956292','comment',0,0),(104,752,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-10 09:44:00','2014-12-10 15:44:00','Yeah, I assume that\'s how it would feel, but never experienced that before. Cheer up.\n\n\nNothing wrong with killing people off in your book and wishing them well. I suppose that\'s what great writers(people) do.',0,'1','Disqus/1.1(2.77):1735155476','comment',0,0),(105,752,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.58','2014-12-10 09:50:00','2014-12-10 15:50:00','I\'m actually very cheery today..lol. Someone called me today and they are going through something and they asked me how I felt when I was going through something. I explained all of the emotions but at the end of the day, life is life. There are instances of good and instances of bad... You can\'t let the bad situations overrun your life. All you can do is wish everyone well and move on. Life is too short to be anything but happy... you know.',0,'1','Disqus/1.1(2.77):1735163540','comment',104,0),(106,750,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2014-12-10 09:51:00','2014-12-10 15:51:00','Sometimes you have to..lol. That way they never come back in other chapters ;)',0,'1','Disqus/1.1(2.77):1735164680','comment',103,0),(107,756,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-10 10:20:00','2014-12-10 16:20:00','At times, I forget to give thanks and pray, but when I do, I give thanks for the good and bad, I pray for all the good in my life and ask Him for me to be more appreciative, even though I want more of out life. I pray for what I want in my heart, but I realize it\'s all according to Him. If He wants me to have, then I will, as long as I do my part and really believe. Even when I have sort of a plan for life, but really and truly have no way of knowing how it will unfold (life that is). A feeling of being lost at times, but keeping my belief & faith. Realizing that all that matters is happiness in life, trying to unlock that.',0,'1','Disqus/1.1(2.77):1735209933','comment',0,0),(108,761,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-16 07:54:00','2014-12-16 13:54:00','This makes me this about Lauryn Hill Killing Me Softly, only you wrote about it using a piano and she sings about it through song,',0,'1','Disqus/1.1(2.77):1744926130','comment',0,0),(109,765,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-16 10:16:00','2014-12-16 16:16:00','Don\'t try to paint forever. Just paint. I would imagine the best painting come from just painting. Let your hand move freely over the canvas and let the brush stokes fall where they may. Then step back and you could have been painting a masterpiece all along, effortlessly.',0,'1','Disqus/1.1(2.77):1745145554','comment',0,0),(110,770,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-19 12:02:00','2014-12-19 18:02:00','I understand you don\'t want to fall in love, but just to love purely. You don\'t have to fall in love, but loving purely is just a state of just being..being in love. You can not be afraid, love is a beautiful thing. Love is beautiful & Life is beautiful. Life without love is dark. Dark because there are holes inside one\'s self. Holes that can not be mended by things, accomplishments, or anything of it\'s kind. No matter what you do, there will always be a sense of emptiness. They can only be filled with love, pure love. This can only come from a person. Search your heart for what is pure & real. Always keep your sights on that. I say that because I once thought I didn\'t need love, like from someone else. It did not bother me for the longest time. Just give me a degree and money and I will be cool..but that is nonsense and it is a lie. I honestly thought that\'s all I needed because I had been alone for so long without wanting that or realizing I needed it. It wasn\'t until I was like 25 and really just recently until I knew that\'s is what life is all about. Love. My comment may have got a little off base a little. It shouldn\'t come from in the moment, but should grow first and be from a pure place. Because ultimately you won\'t be building anything. Or just building some BS. Sorry if this is long, but yeah.. pure love is key. Don\'t give up on that. You\'re definitely one of the best people I have ever met in my life. Definitely one of the most beautiful normal people on earth (normal people, not famous people because they got like Beyonce, Alicia Keys, and all them). Just let love grow and be pure, with everything that you are as a woman, as a person, I can\'t see you alone in life, eventhough no one knows what life will bring, I wouldn\'t want that for a person like you.',0,'1','Disqus/1.1(2.77):1750481887','comment',0,0),(111,773,'Eric G','egriffin09@hotmail.com','','72.20.180.110','2014-12-19 14:44:00','2014-12-19 20:44:00','I can\'t take this to heart..lol. Really though, In my darkness, you are that light. You helped me through some dark times. I will always cherish you. No one I meet will be what you are to me. A person I met in school, now is a great friend..If I think about it, a best friend. I appreciate the woman you have are now and continuing to grow to be. Beautiful (in a way that doesn\'t describe outer appearance, because they are many other things that make you beautiful than what you look like), I don\'t even really think about what you look like, I just know you for what you are..a great person, very special person.',0,'1','Disqus/1.1(2.77):1750730445','comment',0,0),(112,776,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.197','2014-12-22 15:36:00','2014-12-22 21:36:00','You are indeed right. The mind can make or destroy. I know this first hand. It can really dictate the day. So many thoughts that just build up, feels like your brain is going to explode. Or the same select thoughts everyday. Maybe both. Just had to learn to free my brain up and just appreciate life. Still have struggles with my own thoughts, but as people, I think we all do. I try to speak positive things even something as simple as Good Morning or Have a good day can effect someones entire day because you never know what the next person is battling. Making someone else smile can internally make you smile as well, which can make the day better. Being positive does go a long way and it frees the mind. I try to not think too much about the future (what will happen, how it will turn out and stuff like that), although I fail at not having those thoughts sometimes, and appreciate the present. The mind is beautiful, but only as beautiful as it is allowed to be. It can be the most beautiful thing or the most dark thing. Our greatest ally and greatest enemy is our own mind.The mind can be a trap sort of like a cocoon or it can be beautiful and free as a butterfly. Butterfly be free. I write some good comments if I say so myself.j/k..Lol.',0,'1','Disqus/1.1(2.77):1755194995','comment',0,0),(113,785,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','64.56.25.234','2014-12-28 21:07:00','2014-12-29 03:07:00','We are all human. Everyone has disappointments, but it is really important to not let those disappointment keep us from appreciating the present and be optimistic for what is to come. Being disappointed causes us to question things and sometimes develop a shell (mental or emotional). but all shells get chipped away and even the strongest tree has a piece of bark chipped. It\'s ok to feel because we are human and that\'s how it should be. The shells we build to protect us can be the same shell that have its walls close in on us and crush the good we have in us. I\'ve felt minuscule, had so many thoughts about myself and felt a wide range of emotions about myself. Wondered about my place in the world many times, It doesn\'t make me any less of a human or any less important. I just try to appreciate through the struggles and know that everything on the earth is important, even a smallest pebble of sand. Learned to just keep moving because life doesn\'t stop, even when it really feels like I\'m not moving anywhere at times, just got to keep pushing.',0,'1','Disqus/1.1(2.77):1762535756','comment',0,0),(114,785,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','24.252.104.178','2014-12-30 19:43:00','2014-12-31 01:43:00','Very correct! :)',0,'1','Disqus/1.1(2.77):1765428911','comment',113,0),(115,573,'Ron Jackson','ronclove2@gmail.com','','174.73.108.167','2014-12-31 20:26:00','2015-01-01 02:26:00','I love it, and I respect everything you accomplished. ',0,'1','Disqus/1.1(2.77):1766804984','comment',0,0),(116,795,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','64.56.25.234','2015-01-03 14:06:00','2015-01-03 20:06:00','I\'m not invincible, No one is invincible. To smile alot of the time, but be conflicted in my mind about life & time and my heart about what\'s real. It\'s true, feelings do make people feel alive and it\'s not good to be emotionless, but it can be hard to keep a positive mind...it\'s like an never ending battle. Like this..\n\n\nhttp://giphy.com/gifs/battle-endless-griffin-13r36l3Z7YCZDG',0,'1','Disqus/1.1(2.77):1770347185','comment',0,0),(117,798,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-01-06 08:19:00','2015-01-06 14:19:00','Yep. Thinking about past things take away from the appreciation of today. Today is all we can control.',0,'1','Disqus/1.1(2.77):1774593265','comment',0,0),(118,801,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-01-06 08:32:00','2015-01-06 14:32:00','Well, I have quite a few of wants, I only have like 3 of what I would consider Don\'t wants. I just try to stay positive about my Don\'t wants.',0,'1','Disqus/1.1(2.77):1774610844','comment',0,0),(119,804,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-01-06 09:01:00','2015-01-06 15:01:00','Everyone has bad days.Something we didn\'t want to happen can happen on any given day, but the only way it become bad is that if we consistently think it is in our mind. Life is full of unexpected unwanted things, so it\'s not necessary bad, just unexpected unwanted which makes us think it is bad. But since better days are coming, the \"bad\" is just something leads to better. I honestly believe that God designed some parts of our lives to be \"bad\" on purpose, to see if we quit believing and just be done with it. I felt like quitting a few times, but I know if I keep believing that it will get better, then it\'s just a matter of time, all I have to do is keep going.',0,'1','Disqus/1.1(2.77):1774652178','comment',0,0),(120,813,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-01-13 11:03:00','2015-01-13 17:03:00','Oh, that test..I have no clue what you are talking about..Lol. ',0,'1','Disqus/1.1(2.77):1790608027','comment',0,0),(121,816,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','64.56.25.234','2015-01-15 22:26:00','2015-01-16 04:26:00','I didn\'t expect that second part. I know you always end with a quote.',0,'1','Disqus/1.1(2.77):1795211715','comment',0,0),(122,816,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','138.162.8.57','2015-01-16 06:21:00','2015-01-16 12:21:00','This time I started with me just talking... Then I introduced the poem..lol. I know you weren\'t expecting that..lol',0,'1','Disqus/1.1(2.77):1795573946','comment',121,0),(123,839,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-01-20 13:05:00','2015-01-20 19:05:00','Your brain is going to explode',0,'1','Disqus/1.1(2.77):1804699994','comment',0,0),(124,868,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-03 08:28:00','2015-02-03 14:28:00','Everything is unattainable without effort. Can\'t always be a butterfly, got to be a lion (well lioness) sometimes. Nala, yeah you would definitely be Nala.',0,'1','Disqus/1.1(2.77):1832442133','comment',0,0),(125,872,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-03 08:35:00','2015-02-03 14:35:00','Yep. When you\'re a kid, everything is simple. You have enough confidence to last a lifetime. But as we get older, those things that were once simple and our confidence becomes a little different, and it\'s only because of the world and the way we view it.',0,'1','Disqus/1.1(2.77):1832454056','comment',0,0),(126,875,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-03 08:40:00','2015-02-03 14:40:00','Never really wanted fast money, just always wanted enough money. Whatever enough is..that much.',0,'1','Disqus/1.1(2.77):1832461336','comment',0,0),(127,877,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-04 11:03:00','2015-02-04 17:03:00','That painting would be one of those that looks like a puzzle yet simple and beautiful at the same time. \n\nBut yeah, some people are quick to have ideas of a person before knowing them. you\'re right.',0,'1','Disqus/1.1(2.77):1834784091','comment',0,0),(128,884,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-06 08:35:00','2015-02-06 14:35:00','Definitely not a jaunt for me.I find nothing about paying bills pleasurable. Not a good feeling at all.',0,'1','Disqus/1.1(2.77):1838493821','comment',0,0),(129,906,'Guest','anonymized-1846424360@disqus.com','','72.20.180.169','2015-02-10 15:48:00','2015-02-10 21:48:00','Some people be behind you like...http://giphy.com/gifs/funny-scary-scared-Fjp0FiObx0IFO',0,'1','Disqus/1.1(2.77):1846424360','comment',0,0),(130,906,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.169','2015-02-10 16:05:00','2015-02-10 22:05:00','The only thing I fear is these gas prices going back up...and scary movies. This is just funny..https://www.youtube.com/watch?v=ahuutnPLl7E',0,'1','Disqus/1.1(2.77):1846454420','comment',0,0),(131,916,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','64.56.25.234','2015-02-13 06:36:00','2015-02-13 12:36:00','The last line couldn\'t be more far from the truth',0,'1','Disqus/1.1(2.77):1851535267','comment',0,0),(132,920,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.204','2015-02-13 09:34:00','2015-02-13 15:34:00','hmmm..not where I want to be..makes me think about how much time I have left..Time I have left for what\'s truly important to me (which I think about all the time and sort of afraid at the same time). I really complicate life when it isn\'t complicated.',0,'1','Disqus/1.1(2.77):1851803258','comment',0,0),(133,963,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.206','2015-02-26 13:46:00','2015-02-26 19:46:00','this has nothing to do with this, but it\'s funny. Is shoveling snow really this hard??? lmao.\n\nhttps://www.youtube.com/watch?v=6hbZxz1Ds8A',0,'1','Disqus/1.1(2.77):1877276465','comment',0,0),(134,963,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.224.152.188','2015-02-28 01:29:00','2015-02-28 07:29:00','beautiful',0,'1','Disqus/1.1(2.77):1880011098','comment',0,0),(135,963,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','24.252.104.178','2015-03-03 21:32:00','2015-03-04 03:32:00','Thank you! :)',0,'1','Disqus/1.1(2.77):1886334376','comment',134,0),(136,977,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.206','2015-03-13 14:09:00','2015-03-13 19:09:00','Sometimes belief and hope is all people have..it\'s what keeps me going everyday when I want to just quit sometimes because it seem like a few aspects of my life are moving sooo sloowww and years keep coming and going, time flies.',0,'1','Disqus/1.1(2.77):1905735983','comment',0,0),(137,979,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.206','2015-03-13 14:54:00','2015-03-13 19:54:00','Well in the near future, I\'m going to learn about myself (my character). I want it to go a certain way, but in life nothing is certain even when I been doing the \"right\" things. Don\'t know what\'s going to happen.',0,'1','Disqus/1.1(2.77):1905814631','comment',0,0),(138,983,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.206','2015-03-13 15:11:00','2015-03-13 20:11:00','Never been hurt like that, but if it does happen to me, I\'m pretty sure I\'m just going to be like \"Fuck\'em\", well maybe not that harsh, but I won\'t thank them that\'s for sure.',0,'1','Disqus/1.1(2.77):1905842634','comment',0,0),(139,988,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','199.36.244.16','2015-03-24 22:25:00','2015-03-25 03:25:00','I need to find some time to record this one ',0,'1','Disqus/1.1(2.77):1926529102','comment',0,0),(140,1022,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','209.124.216.238','2015-04-27 20:09:00','2015-04-28 01:09:00','Indeed',0,'1','Disqus/1.1(2.77):1990936707','comment',0,0),(141,1039,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.197','2015-06-02 08:58:00','2015-06-02 13:58:00','hmmm...',0,'1','Disqus/1.1(2.77):2058014424','comment',0,0),(142,1051,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.224.152.188','2015-06-22 09:58:00','2015-06-22 14:58:00','This is BEAUTIFUL',0,'1','Disqus/1.1(2.77):2092851327','comment',0,0),(143,1062,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.197','2015-07-28 14:17:00','2015-07-28 19:17:00','Lovely is unique, but Lovely shouldn\'t despise her beauty because of blind not seeing the true Lovely. \nLooking with the eye, but beauty isn\'t seen that way..not with eyes. \n\nLovely is way more than her looks..most people are more than their looks...but most people will never see because that\'s how most people look.',0,'1','Disqus/1.1(2.77):2161785499','comment',0,0),(144,1098,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.224.152.188','2015-09-02 11:54:00','2015-09-02 16:54:00','I miss you even though we have never met face-you-face\nBut I feel closer to you whenever you write in this place',0,'1','Disqus/1.1(2.84):2232173156','comment',0,0),(145,1095,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.224.152.188','2015-09-02 11:59:00','2015-09-02 16:59:00','I shall always value having you in my life in the past, present and future',0,'1','Disqus/1.1(2.84):2232182049','comment',0,0),(146,1060,'YouKnowIBeReadingThisBlog','egriffin09@hotmail.com','','72.20.180.197','2015-09-03 10:01:00','2015-09-03 15:01:00','Really like this one. I still read your blog even though I don\'t comment like I used to do. I know this is an old one from July and I\'m making this comment in September, but I go back and read old motivational & inspirational ones because those are the best ones. I miss those..\n\n\nThis is your blog, so write whatever you feel..but I\'m just saying. Hey, when you find the time, try to finish that thing with Ms. Stevens. I know you been busy, It\'s not that I want to read it, I just want to see you finish it. So one of these days, finish it. I still think you are talented with writing. An amazing person. Bring Motivational Monica back..\n\n\nSorry for long comment.',0,'1','Disqus/1.1(2.84):2233908622','comment',0,0),(147,1176,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.108.172.105','2015-11-13 19:03:00','2015-11-14 01:03:00','WOW!!! Beautiful...',0,'1','Disqus/1.1(2.84):2358787741','comment',0,0),(148,1206,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','136.179.12.9','2015-12-31 14:43:00','2015-12-31 20:43:00','I have to record this one . Just need to find the right music for the background . ',0,'1','Disqus/1.1(2.84):2434093323','comment',0,0),(149,2,'Adrian Bostick','ajbostick@gmail.com','','184.190.90.175','2016-01-05 03:53:00','2016-01-05 09:53:00','Consider me a new fan!',0,'1','Disqus/1.1(2.84):2440465359','comment',0,0),(150,1278,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.108.172.105','2016-04-13 16:24:00','2016-04-13 21:24:00','Beautiful',0,'1','Disqus/1.1(2.84):2622274020','comment',0,0),(151,1334,'Eric','egriffin09@hotmail.com','','72.20.180.128','2016-08-05 14:47:00','2016-08-05 19:47:00','True. But sometimes simple things like these can be hard to do.',0,'1','Disqus/1.1(2.84):2822800130','comment',0,0),(152,1312,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.108.172.105','2016-08-15 18:03:00','2016-08-15 23:03:00','[youtube https://www.youtube.com/watch?v=-VrXFdnEr0Y?rel=0&w=420&h=315]',0,'1','Disqus/1.1(2.84):2839399028','comment',0,0),(153,340,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.108.172.105','2016-09-04 07:28:00','2016-09-04 12:28:00','Something that we ALL need to remember... Great post...',0,'1','Disqus/1.1(2.84):2875738331','comment',0,0),(154,1479,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','68.96.104.16','2017-02-10 12:50:00','2017-02-10 18:50:00','WOW!!!... This is a fantastic piece...',0,'1','Disqus/1.1(2.84):3148238862','comment',0,0),(155,1479,'Monica Renata','monicawilliams517@gmail.com','http://www.monicarenata.com','98.164.123.20','2017-02-12 13:18:00','2017-02-12 19:18:00','Thank you. I am finally back in the writing mood..lol.',0,'1','Disqus/1.1(2.84):3151167972','comment',154,0),(156,1479,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','107.77.230.51','2017-02-13 10:27:00','2017-02-13 16:27:00','I\'m looking forward to more from you as usual... \nI need to get back to writing myself. Wrote my first blog post in almost a year for one of my sites.',0,'1','Disqus/1.1(2.84):3152640035','comment',155,0),(157,1509,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','107.77.227.185','2017-03-14 18:09:00','2017-03-14 23:09:00','Beautiful.. It describes you in my eyes...',0,'1','Disqus/1.1(2.84):3204465852','comment',0,0),(158,1522,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','107.77.227.185','2017-03-14 18:14:00','2017-03-14 23:14:00','You\'re Black? Tell me this isn\'t true... lol... When they came up with the term \"Black Is Beautiful\", you are what was envisioned (at least in my thoughts)',0,'1','Disqus/1.1(2.84):3204472048','comment',0,0),(159,1608,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','70.180.206.189','2017-04-15 13:48:00','2017-04-15 18:48:00','Thinking about going back to school?... Go for it, as there is nothing sexier than a woman with a brain and uses it (I really dislike when a smart woman acts dumber than she actually is....)',0,'1','Disqus/1.1(2.84):3257637213','comment',0,0),(160,1714,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','172.56.41.40','2017-08-20 18:20:00','2017-08-20 23:20:00','I know that one all too well,\nas I have waited and waited,\nbut as I grow older I soon realized\nthat it was time to move on.',0,'1','Disqus/1.1(2.84):3478514753','comment',0,0),(161,1714,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','172.56.41.40','2017-08-20 18:22:00','2017-08-20 23:22:00','I know that feeling all too well,\nas I have waited and waited.\nBut as I grow older I realize\nthat it is time to move on.',0,'1','Disqus/1.1(2.84):3478517004','comment',0,0),(162,2,'Maria Smith','','http://www.mariasmith77.com/','154.16.45.124','2017-10-19 19:42:42','2017-10-20 00:42:42','<strong>Thank you very much for your blog.</strong>\n\nI enjoyed reading this article.',0,'1','Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)','trackback',0,0),(163,1787,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','204.62.111.60','2018-07-17 13:25:00','2018-07-17 18:25:00','WOW!!! Excellent!!! Bravo!!!',0,'1','Disqus/1.1(2.84):3993529130','comment',0,0),(164,1804,'Truth seeker','spaceland2017@yahoo.com','','107.77.217.173','2019-04-02 06:31:00','2019-04-02 11:31:00','“Numb” seems to be a feeling or word you use often, what makes you fake numbness or what causes you to pretend to be numb?',0,'1','Disqus/1.1(2.84):4406209268','comment',0,0),(165,573,'Tony T','atw9919@louisiana.edu','','80.92.61.51','2019-07-11 14:07:00','2019-07-11 19:07:00','Your words are like images, I can visualize the feelings in your poetry.',0,'1','Disqus/1.1(2.84):4535955213','comment',0,0),(166,1816,'St. Clinton','afroanglicans@gmail.com','http://www.earlwilliams.net/','98.181.219.102','2019-09-07 13:08:00','2019-09-07 18:08:00','I just had to... Hope you are doing great....\nhttps://www.youtube.com/watch?v=mXJlPV3YxCI',0,'1','Disqus/1.1(2.84):4607910301','comment',0,0),(168,2,'zelma','57023@gmail.com','https://bit.ly/3UKFVxa','103.35.160.84','2022-12-17 19:19:27','2022-12-18 01:19:27','Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(169,2,'1xbet рабочее на сегодня прямо сейчас','diasodrepi1970@gmail.com','https://bet-promokod.ru/','188.134.68.55','2023-03-07 16:32:17','2023-03-07 22:32:17','1xBet является одной из самых популярных на рынке. <a href=\"https://bet-promokod.ru/\" rel=\"nofollow ugc\">1xbet рабочее на сегодня прямо сейчас</a> Огромный выбор спортивных и киберспортивных событий, множество открытых линий, высочайшие коэффициенты. Также, БК имеет широкий функционал и одна из немногих дает возможность совершать ставки по специальным промокодам. Используя промокоды, вы можете получить настоящие деньги, не внося абсолютно никаких средств. Это реально! Узнать актуальный промокод вы можете сейчас же, однако использовать его необходимо в соответствии с правилами и инструкциями, которые приведены ниже.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','comment',0,0),(170,2,'tadalafil how long to take effect','','https://tadalatada.com','178.159.37.158','2023-12-10 08:37:20','2023-12-10 14:37:20','<strong>tadalafil how long to take effect</strong>\n\nConnect With Me – Monica Renata',0,'0','PHP/5.3.22','trackback',0,0),(171,2,'services essay','','https://essaywriterbar.com','45.139.65.252','2023-12-17 02:35:15','2023-12-17 08:35:15','<strong>services essay</strong>\n\nConnect With Me – Monica Renata',0,'0','PHP/5.3.00','trackback',0,0),(172,2,'Extended Opportunity','68299@gmail.com','','185.125.50.101','2024-02-28 14:36:06','2024-02-28 20:36:06','He Got 256,354 Free Views With AI…\r\n\r\nCan you believe it? \r\n\r\nPeople spend thousands of dollars to get that kind of result… \r\n\r\nMy friend Kundan just did it for free… \r\n\r\nHe only used his new app… AI ScreenSnap… \r\n\r\nIt’s the world’s first AI app that can generate videos with the power of Video-Exclusive AI Engine… \r\n\r\nThat can edit, record, and generate videos with just a few clicks… with zero experience…\r\n\r\nClick here now and watch AI ScreenSnap in action https://ext-opp.com/AIScreenSnap',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(173,2,'Linnie Hack','linnie.hack@gmail.com','','169.150.205.133','2026-03-07 04:29:13','2026-03-07 10:29:13','Hi,\r\n\r\nI am a senior web developer, highly skilled and with 10+ years of collective web design and development experience, I work in one of the best web development company.\r\n\r\nMy hourly rate is $8\r\n\r\nMy expertise includes:\r\n\r\nWebsite design - custom mockups and template designs\r\nWebsite design and development - theme development, backend customisation\r\nResponsive website - on all screen sizes and devices\r\nPlugins and Extensions Development\r\nWebsite speed optimisation and SEO on-page optimisation\r\nWebsite security\r\nWebsite migration, support and maintenance\r\nIf you have a question or requirement to discuss, I would love to help and further discuss it. Please email me at e.solus@gmail.com\r\n\r\nRegards,\r\nSachin\r\ne.solus@gmail.com',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:114.0) Gecko/20100101 Firefox/114.0','comment',0,0),(174,2,'Jayrn Smith','fysh.alisia@gmail.com','','95.164.206.212','2026-03-10 21:03:01','2026-03-11 02:03:01','Hi, it’s Jayrn.\r\n\r\nWant to find \"hidden money\" in your business? Dan shares exactly how to exponentially increase your cashflow and the value of your company with these 5 Key Strategies. \r\n\r\nFind out how to find your customer \"trigger points\" so you know how to market and sell to them. And the best part is... it\'s way easier than you think!\r\n\r\nLearn More: https://marketersmentor.com/hidden-money.php?refer=monicarenata.com\r\n\r\nJayrn\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','comment',0,0),(175,2,'Jayrn Smith','loo.hugo@gmail.com','','193.187.108.12','2026-03-16 10:31:01','2026-03-16 15:31:01','Hi, it’s Jayrn.\r\n\r\nDo you want to stop chasing fleeting tactics and finally build a predictable, consistent flood of high-quality customers?\r\n\r\nIf so, you’re going to love this: https://marketersmentor.com/nobsletter.php?refer=monicarenata.com\r\n\r\nDan Kennedy, the \"Renegade Millionaire Maker\" who has guided the empires of marketing legends like Ryan Deiss and Frank Kern, has teamed up with Russell Brunson to open his private vault for the first time. \r\n\r\nTogether, they are revealing the exact frameworks that generated 95% of the revenue across millions of analyzed funnels.\r\n\r\nIf you’ve been suffering from \"ADHD Marketing\"—hopping from one social media trend to another while your ad budget disappears with no ROI—you need to see this:\r\n\r\nhttps://marketersmentor.com/nobsletter.php?refer=monicarenata.com\r\n\r\nRight now, you can \"test-drive\" their combined wisdom for 30 days and claim a $19,997 value stack of bonuses—including a massive 653-page physical swipe file of the world\'s most profitable funnels—simply by saying \"maybe\". \r\n\r\nThis is the end of the \"tactic-hopping\" nightmare and the beginning of a business that runs like clockwork.\r\n\r\nTo multiplying your leverage,\r\nJayrn\r\n\r\n\r\n\r\nMy Blog:\r\nhttps://www.jayrn.com\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','comment',0,0),(176,2,'Jayrn Smith','nona.darryl19@outlook.com','','40.27.117.39','2026-04-17 14:38:01','2026-04-17 19:38:01','Hi, it’s Jayrn.\r\n\r\nEvery market has one rule: He who can spend the most to acquire a customer, wins. But here’s the question nobody answers: How do you actually do it?\r\n\r\nIn this video, Darcy Juarez walk through the single number that separates the amateurs from the market dominators—Maximum Allowable Cost Per Acquisition. \r\n\r\nGet this wrong, and you’ll bleed cash. Get it right, and you’ll buy customers at scale while your competitors are stuck Googling cheaper ad hacks.\r\n\r\nWatch it here: https://marketersmentor.com/crush-your-competition.php?refer=monicarenata.com\r\n\r\n\r\nTo multiplying your leverage,\r\nJayrn\r\n\r\nP.S.: I’m Jayrn, a digital marketer and e-commerce seller with a passion for sharing knowledge. I share proven strategies, tips, and resources to help you grow your online business.\r\n\r\n\r\n\r\nMy Blog:\r\nhttps://www.jayrn.com\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','comment',0,0),(177,2,'Jayrn Smith','lori.willingham@googlemail.com','','40.27.117.39','2026-04-19 10:06:56','2026-04-19 15:06:56','Hi, it’s Jayrn.\r\n\r\nIf you\'re tired of leaving your business\'s growth up to chance, it\'s time to take control of your referrals. \r\n\r\nIn this video, join Darcy Juarez and marketing legend Dan Kennedy as they dive deep into the art and science of creating a magnetic referral system that will revolutionize your business.\r\n\r\nDan Kennedy emphasizes the critical importance of maximizing referrals, pointing out that without a solid referral strategy, you\'re wasting the majority of your marketing budget. \r\n\r\nMost businesses underperform in obtaining referrals, largely due to a lack of strategy and tracking.\r\n\r\nWatch it here: https://marketersmentor.com/referral-system.php?refer=monicarenata.com\r\n\r\n\r\nTo multiplying your leverage,\r\nJayrn\r\n\r\nP.S.: I’m Jayrn, a digital marketer and e-commerce seller with a passion for sharing knowledge. I share proven strategies, tips, and resources to help you grow your online business.\r\n\r\n\r\n\r\nMy Blog:\r\nhttps://www.jayrn.com\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (X11; Linux x86_64; rv:147.0) Gecko/20100101 Firefox/147.0','comment',0,0),(178,2,'Jayrn Smith','nickerson.teri@outlook.com','','40.27.117.39','2026-04-23 05:39:13','2026-04-23 10:39:13','Hey, it’s Jayrn.\r\n\r\nThere’s a pattern I keep seeing…\r\n\r\nPeople who *work hard*, try different strategies, even invest in tools…\r\n\r\n…but still don’t see consistent results.\r\n\r\nIt’s not because they’re lazy.\r\nIt’s not because they’re unlucky.\r\n\r\nIt’s because they’re following **disconnected advice**.\r\n\r\nOne strategy here.\r\nAnother tactic there.\r\n\r\nNo real understanding of what actually drives revenue.\r\n\r\nAnd when you don’t understand the “why”…\r\n\r\nYou’re stuck guessing.\r\n\r\n---\r\n\r\nThat’s exactly where I was.\r\n\r\nUntil I started studying something different:\r\n\r\nNot surface-level tactics…\r\n\r\n…but the **actual thinking behind successful marketing campaigns**.\r\n\r\nThat’s when things finally started to click.\r\n\r\n---\r\n\r\nIf you want to see what I mean, take a look at this:\r\n\r\n https://marketersmentor.com/NO-BS-Letter.php?refer=monicarenata.com\r\n\r\nEven just reading the page will shift how you think about marketing.\r\n\r\nMore tomorrow.\r\n\r\n—\r\nJayrn\r\n\r\nP.S.: I’m Jayrn, a digital marketer and e-commerce seller with a passion for sharing knowledge. I share proven strategies, tips, and resources to help you grow your online business.\r\n\r\n\r\n\r\nMy Blog:\r\nhttps://www.jayrn.com\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:147.0) Gecko/20100101 Firefox/147.0','comment',0,0),(179,2,'Jayrn Smith','raymond.quinlivan85@gmail.com','','80.174.198.162','2026-04-24 19:58:16','2026-04-25 00:58:16','Hey, it’s Jayrn.\r\n\r\nThere’s a pattern I keep seeing…\r\n\r\nPeople who *work hard*, try different strategies, even invest in tools…\r\n\r\n…but still don’t see consistent results.\r\n\r\nIt’s not because they’re lazy.\r\nIt’s not because they’re unlucky.\r\n\r\nIt’s because they’re following **disconnected advice**.\r\n\r\nOne strategy here.\r\nAnother tactic there.\r\n\r\nNo real understanding of what actually drives revenue.\r\n\r\nAnd when you don’t understand the “why”…\r\n\r\nYou’re stuck guessing.\r\n\r\n---\r\n\r\nThat’s exactly where I was.\r\n\r\nUntil I started studying something different:\r\n\r\nNot surface-level tactics…\r\n\r\n…but the **actual thinking behind successful marketing campaigns**.\r\n\r\nThat’s when things finally started to click.\r\n\r\n---\r\n\r\nIf you want to see what I mean, take a look at this:\r\n\r\n https://marketersmentor.com/NO-BS-Letter.php?refer=monicarenata.com\r\n\r\nEven just reading the page will shift how you think about marketing.\r\n\r\nMore tomorrow.\r\n\r\n—\r\nJayrn\r\n\r\nP.S.: I’m Jayrn, a digital marketer and e-commerce seller with a passion for sharing knowledge. I share proven strategies, tips, and resources to help you grow your online business.\r\n\r\n\r\n\r\nMy Blog:\r\nhttps://www.jayrn.com\r\nUnsubscribe: \r\nhttps://marketersmentor.com/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0','comment',0,0),(180,2,'Reed Reilly','turnerfisher3.48382+reed.reilly@gmail.com','','156.244.33.216','2026-04-30 21:34:38','2026-05-01 02:34:38','Hello, \r\n\r\nSEOByAxy here, and we can transform monicarenata.com into a customer magnet with our complete SEO and web solutions:\r\n\r\n* Web Design: Professional presentation sites or full E-commerce stores built from scratch.\r\n* Google & YouTube Ranking: Top positions on Google Search, Maps, and YouTube.\r\n* Backlinks & Traffic: Powerful backlink campaigns and targeted organic traffic.\r\n* Social Media & Video: Full brand management and professional video production.\r\n\r\nGet measurable growth at highly affordable rates. View our full agency plans here: \r\nhttps://rb.gy/t7gc5i\r\n\r\nSincerely,\r\nReed\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nTo unsubscribe, please reply with subject: Unsubscribe !monicarenata.com',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36','comment',0,0),(181,2,'Joanna Riggs','joannariggs278@gmail.com','','62.4.17.156','2026-05-01 09:05:01','2026-05-01 14:05:01','Hi,\r\n\r\nI just visited monicarenata.com and wondered if you\'d ever thought about having an engaging video to explain what you do?\r\n\r\nOur videos cost just $195 (USD) for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video.\r\n\r\nI can show you some previous videos we\'ve done if you want me to send some over. Let me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna\r\n\r\nUnsubscribe: https://unsubscribe.video/unsubscribe.php?d=monicarenata.com',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36','comment',0,0),(182,2,'Gemma Marshall','gemmamarshall811@gmail.com','','196.19.249.182','2026-05-08 16:26:39','2026-05-08 21:26:39','Hi,\r\n\r\nI was just looking at monicarenata.com and wanted to ask: are you looking to scale your Instagram presence right now?\r\n\r\nWe help brands like yours add 300+ targeted Instagram followers every month using manual outreach and ads. We can grow your existing page or even build a brand-new profile from scratch for you if you\'d prefer a fresh start.\r\n\r\nWould you like me to send over some more info on how it works?\r\n\r\nThanks for your time,\r\nGemma',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0.1 Safari/605.1.15','comment',0,0),(183,2,'Jefferey Delatorre','jefferey.delatorre@gmail.com','','149.88.25.211','2026-05-23 00:57:20','2026-05-23 05:57:20','Hi,\r\n\r\nIt is 2026 — and human written content is still the KING of SEO.\r\n\r\nNow imagine this:\r\n\r\nWhat happens to your website if you publish one high-quality 2000-word SEO content every single day?\r\n\r\nOver time, your website becomes a SUPER authority website in your industry with Huge Organic Traffic and leads.\r\n\r\nAnd we don’t stop with content.\r\n\r\nWe also build backlinks directly to every newly created article to strengthen rankings even faster.\r\n\r\nWe call this Everyday SEO OR “Take A Small Step Everyday” SEO\r\n\r\nBecause small consistent SEO actions create massive long-term growth.\r\n\r\nWe offer 3 plans. Ready to grow your website authority consistently?\r\n\r\nClick here to choose your Content SEO Plan. https://supersupportstaff.com/s/?site=monicarenata.com\r\n\r\n– Hire SEO Geek',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','comment',0,0),(184,2,'Vinay web development','tlkinquiry@gmail.com','','122.161.53.20','2026-05-26 05:06:54','2026-05-26 10:06:54','Hi,\r\n\r\nI’m a Full Stack Developer leading a small team specializing in AI-powered web applications, custom dashboards, automation systems, APIs, and scalable SaaS platforms.\r\nWe can help with:\r\nAI integrations (OpenAI, chatbots, automation)\r\nE-commerce SEO Optimization\r\nBookkeeping and Financial Management\r\nLabel Design and Printing Tasks\r\nOrder and Inventory Management Support\r\nProduct Listing Optimization\r\n\r\n\r\nIf you have anything to discus, Contact us on - tlkinquiry@gmail.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 YaBrowser/26.3.0.0 Safari/537.36','comment',0,0),(185,2,'Starla Jamison','starla.jamison45@yahoo.com','','122.161.52.5','2026-05-31 13:37:18','2026-05-31 18:37:18','Hi,\r\n\r\nI’m a highly experienced Full-Stack Developer with 16+ years of expertise, working with advanced AI tools, automation, web development, and virtual support.\r\n\r\nI’ve worked on complex projects for businesses across different industries and can handle everything from small tasks to complete digital solutions at very reasonable rates.\r\n\r\nContact us on - tlkinquiry@gmail.com\r\nThanks!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36','comment',0,0),(186,2,'Joanna Riggs','joannariggs33@gmail.com','','196.240.104.129','2026-06-10 23:48:48','2026-06-11 04:48:48','Hi,\r\n\r\nI just visited monicarenata.com and wondered if you\'ve ever considered an impactful video to advertise your business? Our videos can generate impressive results on both your website and across social media.\r\n\r\nOur prices start from just $195 (USD).\r\n\r\nLet me know if you\'re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna',0,'0','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36','comment',0,0),(187,2,'Junko Heck','junko.heck@hotmail.com','','194.59.251.41','2026-06-11 09:02:26','2026-06-11 14:02:26','AI-generated code not working?\r\n\r\nWe fix apps, websites built with ChatGPT, Lovable, Claude, Cursor, Bolt and Replit.\r\n\r\n> Debugging\r\n> Feature completion\r\n> Database fixes\r\n> Deployment support\r\n> Production-ready code\r\n\r\nSend us your project and get it fixed by experienced developers.\r\n\r\nWhatsApp Now or Click to know more https://supersupportstaff.com/w/?site=monicarenata.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','comment',0,0),(188,2,'Vickie Gatliff','vickie.gatliff@msn.com','','135.136.5.199','2026-06-20 13:15:14','2026-06-20 18:15:14','Hi ,\r\n\r\nI looked up monicarenata.com . You\'re not on page one. Your competitors are.\r\n\r\nEvery day that doesn\'t change, they\'re taking your customers.\r\n\r\nI run a link-building package that fixes this — 46 types of premium backlinks, 200+ high-authority domains, starts at $99.99. No contracts. Bad links removed free.\r\n\r\nClick here for more info https://supersupportstaff.com/m/?m=monicarenata.com\r\n\r\nTakes 60 seconds to see if it\'s a fit.\r\n\r\n— Sam Shelby',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `wp_xwml_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_impact_hooks`
--
DROP TABLE IF EXISTS `wp_xwml_impact_hooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_impact_hooks` (
`hook_id` varchar(255) NOT NULL,
`template_id` varchar(255) NOT NULL,
`hook_location` varchar(255) NOT NULL,
`widget_position` int(2) NOT NULL,
`hook_textarea` text NOT NULL,
PRIMARY KEY (`hook_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_impact_hooks`
--
LOCK TABLES `wp_xwml_impact_hooks` WRITE;
/*!40000 ALTER TABLE `wp_xwml_impact_hooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_impact_hooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_impact_templates`
--
DROP TABLE IF EXISTS `wp_xwml_impact_templates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_impact_templates` (
`template_id` varchar(255) NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_impact_templates`
--
LOCK TABLES `wp_xwml_impact_templates` WRITE;
/*!40000 ALTER TABLE `wp_xwml_impact_templates` DISABLE KEYS */;
INSERT INTO `wp_xwml_impact_templates` VALUES ('Template 1','a:35:{s:11:\"template_id\";s:10:\"Template 1\";s:15:\"header_template\";s:5:\"fixed\";s:15:\"footer_template\";s:5:\"fixed\";s:16:\"sidebar_template\";s:5:\"right\";s:13:\"header_height\";s:3:\"100\";s:18:\"main_content_width\";s:3:\"500\";s:13:\"sidebar_width\";s:3:\"200\";s:14:\"sidebar2_width\";s:3:\"200\";s:13:\"footer_height\";s:2:\"80\";s:9:\"tb_margin\";s:2:\"20\";s:17:\"tb_content_margin\";s:2:\"20\";s:18:\"tb_content_padding\";s:2:\"20\";s:18:\"lr_content_padding\";s:2:\"20\";s:20:\"lr_container_padding\";s:2:\"20\";s:13:\"divider_width\";s:1:\"0\";s:10:\"title_area\";s:4:\"text\";s:16:\"title_top_margin\";s:2:\"20\";s:17:\"title_left_margin\";s:2:\"40\";s:12:\"main_bg_type\";s:5:\"color\";s:13:\"main_bg_color\";s:6:\"355C6D\";s:14:\"header_bg_type\";s:5:\"color\";s:15:\"header_bg_color\";s:6:\"EEEEEE\";s:12:\"wrap_bg_type\";s:5:\"color\";s:13:\"wrap_bg_color\";s:6:\"FFFFFF\";s:15:\"content_bg_type\";s:5:\"color\";s:16:\"content_bg_color\";s:6:\"FFFFFF\";s:15:\"sidebar_bg_type\";s:5:\"color\";s:16:\"sidebar_bg_color\";s:6:\"FFFFFF\";s:14:\"footer_bg_type\";s:5:\"color\";s:15:\"footer_bg_color\";s:6:\"EEEEEE\";s:12:\"border_style\";s:5:\"solid\";s:12:\"border_color\";s:6:\"FFFFFF\";s:24:\"main_tb_border_thickness\";s:1:\"0\";s:24:\"main_lr_border_thickness\";s:1:\"0\";s:10:\"custom_css\";s:900:\"/* Structure IDs */\r\n#impact-superwrap {\r\n\r\n}\r\n#impact-page-wrap {\r\n\r\n}\r\n#impact-header-outer {\r\n\r\n}\r\n#impact-header-wrap {\r\n\r\n}\r\n#impact-title {\r\n\r\n}\r\n#impact-container {\r\n\r\n}\r\n#impact-content-wrap {\r\n\r\n}\r\n#impact-content {\r\n\r\n}\r\n#impact-sidebar-wrap {\r\n\r\n}\r\n#impact-sidebar2-wrap {\r\n\r\n}\r\n#impact-footer-outer {\r\n\r\n}\r\n#impact-footer-wrap {\r\n\r\n}\r\n/* Hook Wrap IDs */\r\n#impact-before-page-wrap {\r\n\r\n}\r\n#impact-before-header {\r\n\r\n}\r\n#impact-in-header {\r\n\r\n}\r\n#impact-after-header {\r\n\r\n}\r\n#impact-before-container {\r\n\r\n}\r\n#impact-before-content {\r\n\r\n}\r\n#impact-after-content {\r\n\r\n}\r\n#impact-before-sidebar {\r\n\r\n}\r\n#impact-sidebar {\r\n\r\n}\r\n#impact-after-sidebar {\r\n\r\n}\r\n#impact-before-sidebar2 {\r\n\r\n}\r\n#impact-sidebar2 {\r\n\r\n}\r\n#impact-after-sidebar2 {\r\n\r\n}\r\n#impact-after-container {\r\n\r\n}\r\n#impact-before-footer {\r\n\r\n}\r\n#impact-in-footer {\r\n\r\n}\r\n#impact-after-footer {\r\n\r\n}\r\n#impact-after-page-wrap {\r\n\r\n}\";}');
/*!40000 ALTER TABLE `wp_xwml_impact_templates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_impact_widgets`
--
DROP TABLE IF EXISTS `wp_xwml_impact_widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_impact_widgets` (
`widget_id` varchar(255) NOT NULL,
`template_id` varchar(255) NOT NULL,
`active_widget` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`before_widget` varchar(255) NOT NULL,
`after_widget` varchar(255) NOT NULL,
`before_title` varchar(255) NOT NULL,
`after_title` varchar(255) NOT NULL,
PRIMARY KEY (`widget_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_impact_widgets`
--
LOCK TABLES `wp_xwml_impact_widgets` WRITE;
/*!40000 ALTER TABLE `wp_xwml_impact_widgets` DISABLE KEYS */;
INSERT INTO `wp_xwml_impact_widgets` VALUES ('template_1_sidebar','Template 1','yes','Template 1 Sidebar','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>'),('template_1_in_header','Template 1','no','Template 1 In Header','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>'),('template_1_after_header','Template 1','no','Template 1 After Header','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>'),('template_1_before_content','Template 1','no','Template 1 Before Content','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>'),('template_1_after_content','Template 1','no','Template 1 After Content','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>'),('template_1_in_footer','Template 1','no','Template 1 In Footer','','<li id=\"%1$s\" class=\"widget %2$s\">','</li>','<h2 class=\"widgettitle\">','</h2>');
/*!40000 ALTER TABLE `wp_xwml_impact_widgets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_jetpack_sync_queue`
--
DROP TABLE IF EXISTS `wp_xwml_jetpack_sync_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_jetpack_sync_queue` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`queue_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`event_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`event_payload` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`ID`),
KEY `event_id` (`event_id`),
KEY `queue_id` (`queue_id`),
KEY `queue_id_event_id` (`queue_id`,`event_id`),
KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_jetpack_sync_queue`
--
LOCK TABLES `wp_xwml_jetpack_sync_queue` WRITE;
/*!40000 ALTER TABLE `wp_xwml_jetpack_sync_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_jetpack_sync_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_lana_downloads_manager_logs`
--
DROP TABLE IF EXISTS `wp_xwml_lana_downloads_manager_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_lana_downloads_manager_logs` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) DEFAULT NULL,
`user_ip` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`download_id` bigint(20) NOT NULL,
`download_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `attribute_name` (`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_lana_downloads_manager_logs`
--
LOCK TABLES `wp_xwml_lana_downloads_manager_logs` WRITE;
/*!40000 ALTER TABLE `wp_xwml_lana_downloads_manager_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_lana_downloads_manager_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_links`
--
DROP TABLE IF EXISTS `wp_xwml_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_links`
--
LOCK TABLES `wp_xwml_links` WRITE;
/*!40000 ALTER TABLE `wp_xwml_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_nfd_data_event_queue`
--
DROP TABLE IF EXISTS `wp_xwml_nfd_data_event_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_nfd_data_event_queue` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`event` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`attempts` tinyint(3) NOT NULL DEFAULT '0',
`reserved_at` datetime DEFAULT NULL,
`available_at` datetime NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_nfd_data_event_queue`
--
LOCK TABLES `wp_xwml_nfd_data_event_queue` WRITE;
/*!40000 ALTER TABLE `wp_xwml_nfd_data_event_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_nfd_data_event_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_options`
--
DROP TABLE IF EXISTS `wp_xwml_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=3941327 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_options`
--
LOCK TABLES `wp_xwml_options` WRITE;
/*!40000 ALTER TABLE `wp_xwml_options` DISABLE KEYS */;
INSERT INTO `wp_xwml_options` VALUES (1,'siteurl','http://www.monicarenata.com/','yes'),(2,'blogname','Monica Renata','yes'),(3,'blogdescription','A Collection of Poems and Random Thoughts','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','monicawilliams517@gmail.com','yes'),(6,'start_of_week','0','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','12','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','30','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(25,'comment_moderation','','yes'),(26,'moderation_notify','1','yes'),(27,'permalink_structure','/%postname%/','yes'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:1:{i:0;s:39:\"wp-file-manager/file_folder_manager.php\";}','yes'),(3941161,'fm_key','qfFluvwoHTp0rgmVn8N4RUAOc','auto'),(3941163,'_site_transient_timeout_browser_6f0fd58b7457cf2c49b2d68cb61e38a9','1782701750','off'),(3941164,'_site_transient_browser_6f0fd58b7457cf2c49b2d68cb61e38a9','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"72.0.3626.121\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3941165,'_site_transient_timeout_browser_49bd5de0f3500cf321f7989944e6548c','1782702008','off'),(3941166,'_site_transient_browser_49bd5de0f3500cf321f7989944e6548c','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"79.0.3945.79\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(33,'home','http://www.monicarenata.com','yes'),(34,'category_base','','yes'),(35,'ping_sites','https://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:86:\"/home4/monicare/public_html/wp-content/plugins/wp-file-manager/file_folder_manager.php\";i:1;s:66:\"/home4/monicare/public_html/wp-content/plugins/akismet/akismet.php\";i:2;s:56:\"/home4/monicare/public_html/wp-content/plugins/hello.php\";i:3;s:59:\"/home4/monicare/public_html/wp-content/themes/britt/404.php\";i:4;s:71:\"/home2/monicare/public_html/wp-content/plugins/wordpress-seo/wp-seo.php\";}','no'),(41,'template','britt','yes'),(42,'stylesheet','britt','yes'),(3167604,'finished_updating_comment_type','1','yes'),(45,'comment_registration','','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','61833','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','','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','1','yes'),(71,'close_comments_days_old','28','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:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(80,'widget_text','a:7:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:390:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n<!-- monicarenata_sidebar-right-1_AdSense1_160x600_as -->\r\n<ins class=\"adsbygoogle\"\r\n style=\"display:inline-block;width:160px;height:600px\"\r\n data-ad-client=\"ca-pub-4940610698493430\"\r\n data-ad-slot=\"9460577702\"></ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n</script>\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:12:\"Random Post:\";s:4:\"text\";s:3413:\"<style>\r\n#mbb-random a {\r\nbackground-color:#3bb3e0;\r\npadding:10px;\r\nposition:relative;\r\nfont-family: \'Open Sans\', sans-serif;\r\nfont-size:12px;\r\ntext-decoration:none;\r\ncolor:#fff;\r\nborder: solid 1px #186f8f;\r\nbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\r\nbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\r\nbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\r\nbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\r\nbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\r\nbackground-image: -webkit-gradient(\r\nlinear,\r\nleft bottom,\r\nleft top,\r\ncolor-stop(0, rgb(44,160,202)),\r\ncolor-stop(1, rgb(62,184,229))\r\n);\r\n-webkit-box-shadow: inset 0px 1px 0px #7fd2f1, 0px 1px 0px #fff;\r\n-moz-box-shadow: inset 0px 1px 0px #7fd2f1, 0px 1px 0px #fff;\r\nbox-shadow: inset 0px 1px 0px #7fd2f1, 0px 1px 0px #fff;\r\n-webkit-border-radius: 5px;\r\n-moz-border-radius: 5px;\r\n-o-border-radius: 5px;\r\nborder-radius: 5px;\r\n}\r\n#mbb-random a::before {\r\nbackground-color:#ccd0d5;\r\ncontent:\"\";\r\ndisplay:block;\r\nposition:absolute;\r\nwidth:100%;\r\nheight:100%;\r\npadding:8px;\r\nleft:-8px;\r\ntop:-8px;\r\nz-index:-1;\r\n-webkit-border-radius: 5px;\r\n-moz-border-radius: 5px;\r\n-o-border-radius: 5px;\r\nborder-radius: 5px;\r\n-webkit-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;\r\n-moz-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;\r\n-o-box-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;\r\nbox-shadow: inset 0px 1px 1px #909193, 0px 1px 0px #fff;\r\n}\r\n#mbb-random a:active {\r\npadding-bottom:9px;\r\npadding-left:10px;\r\npadding-right:10px;\r\npadding-top:11px;\r\ntop:1px;\r\nbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\r\nbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\r\nbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\r\nbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\r\nbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\r\nbackground-image: -webkit-gradient(\r\nlinear,\r\nleft bottom,\r\nleft top,\r\ncolor-stop(0, rgb(62,184,229)),\r\ncolor-stop(1, rgb(44,160,202))\r\n);\r\n}\r\n</style>\r\n\r\n<center><div id=\"mbb-random\"></div></center>\r\n<script type=\"text/javascript\">\r\nfunction showLucky(root){ var feed = root.feed; var entries = feed.entry || []; var entry = feed.entry[0]; for (var j = 0; j < entry.link.length; ++j){if (entry.link[j].rel == \'alternate\'){window.location = entry.link[j].href;}}} function fetchLuck(luck){ script = document.createElement(\'script\'); script.src = \'/feeds/posts/summary?start-index=\'+luck+\'&max-results=1&alt=json-in-script&callback=showLucky\'; script.type = \'text/javascript\'; document.getElementsByTagName(\'head\')[0].appendChild(script); } function feelingLucky(root){ var feed = root.feed; var total = parseInt(feed.openSearch$totalResults.$t,10); var luckyNumber = Math.floor(Math.random()*total);luckyNumber++; a = document.createElement(\'a\'); a.href = \'#random\'; a.rel = luckyNumber; a.onclick = function(){fetchLuck(this.rel);}; a.innerHTML = \'Random Post\'; document.getElementById(\'mbb-random\').appendChild(a); } </script><script src=\"/feeds/posts/summary?max-results=0&alt=json-in-script&callback=feelingLucky\">\r\n</script>\r\n\";s:6:\"filter\";b:0;}i:6;a:0:{}i:8;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:403:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n<!-- 0813c28fd62f2602cbc14724e58... - 2 (mobile, www.monicarenata.com) -->\r\n<ins class=\"adsbygoogle\"\r\n style=\"display:block\"\r\n data-ad-client=\"ca-pub-4940610698493430\"\r\n data-ad-slot=\"2739422104\"\r\n data-ad-format=\"auto\"></ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n</script>\";s:6:\"filter\";b:0;}i:9;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:403:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n<!-- 0813c28fd62f2602cbc14724e58... - 2 (mobile, www.monicarenata.com) -->\r\n<ins class=\"adsbygoogle\"\r\n style=\"display:block\"\r\n data-ad-client=\"ca-pub-4940610698493430\"\r\n data-ad-slot=\"2739422104\"\r\n data-ad-format=\"auto\"></ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n</script>\";s:6:\"filter\";b:0;}}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:4:{s:33:\"adsense-plugin/adsense-plugin.php\";s:15:\"adsns_uninstall\";s:41:\"contact-form-to-db/contact_form_to_db.php\";s:26:\"cntctfrmtdb_delete_options\";s:43:\"aspose-doc-exporter/Aspose_Doc_Exporter.php\";s:29:\"UnsetOptionsAsposeDocExporter\";s:17:\"so-css/so-css.php\";a:2:{i:0;s:14:\"SiteOrigin_CSS\";i:1;s:9:\"uninstall\";}}','no'),(83,'timezone_string','America/Chicago','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','27916','yes'),(89,'wp_xwml_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:76:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;s:25:\"manage_lana_download_logs\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";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:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(90,'_transient_random_seed','9af2a3589917fd2747a202cf60340f27','yes'),(91,'widget_search','a:9:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:9;a:1:{s:5:\"title\";s:7:\"Search:\";}i:11;a:1:{s:5:\"title\";s:16:\"Search the site:\";}i:12;a:1:{s:5:\"title\";s:16:\"Search The Site:\";}i:14;a:1:{s:5:\"title\";s:6:\"Search\";}i:16;a:1:{s:5:\"title\";s:15:\"Search The Site\";}i:17;a:1:{s:5:\"title\";s:17:\"Search For a Poem\";}i:18;a:1:{s:5:\"title\";s:15:\"Search The Site\";}}','yes'),(92,'widget_recent-posts','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:11:\"Recent Post\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_recent-comments','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(94,'widget_archives','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:14;a:3:{s:5:\"title\";s:9:\"Archives:\";s:5:\"count\";i:1;s:8:\"dropdown\";i:1;}i:16;a:3:{s:5:\"title\";s:9:\"Archives:\";s:5:\"count\";i:1;s:8:\"dropdown\";i:1;}i:18;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:1;}i:20;a:3:{s:5:\"title\";s:9:\"Archives:\";s:5:\"count\";i:0;s:8:\"dropdown\";i:1;}i:22;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}}','yes'),(95,'widget_meta','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(96,'sidebars_widgets','a:14:{s:19:\"wp_inactive_widgets\";a:29:{i:0;s:11:\"miniloops-9\";i:1;s:15:\"miniminiloops-5\";i:2;s:10:\"calendar-3\";i:3;s:11:\"archives-18\";i:4;s:9:\"search-14\";i:5;s:6:\"text-6\";i:6;s:11:\"miniloops-6\";i:7;s:11:\"miniloops-7\";i:8;s:9:\"search-11\";i:9;s:9:\"search-12\";i:10;s:6:\"text-4\";i:11;s:11:\"miniloops-2\";i:12;s:11:\"miniloops-4\";i:13;s:15:\"miniminiloops-3\";i:14;s:20:\"siteorigin-masonry-3\";i:15;s:19:\"sow-post-carousel-4\";i:16;s:19:\"metaslider_widget-3\";i:17;s:19:\"blog_subscription-5\";i:18;s:11:\"top-posts-5\";i:19;s:11:\"archives-20\";i:20;s:19:\"sow-post-carousel-6\";i:21;s:10:\"calendar-5\";i:22;s:6:\"text-8\";i:23;s:19:\"blog_subscription-7\";i:24;s:6:\"text-9\";i:25;s:14:\"recent-posts-2\";i:26;s:19:\"blog_subscription-9\";i:27;s:9:\"search-18\";i:28;s:9:\"search-16\";}s:20:\"nimble-widget-area-1\";a:0:{}s:20:\"nimble-widget-area-2\";a:0:{}s:20:\"nimble-widget-area-3\";a:0:{}s:20:\"nimble-widget-area-4\";a:0:{}s:20:\"nimble-widget-area-5\";a:0:{}s:20:\"nimble-widget-area-6\";a:0:{}s:20:\"nimble-widget-area-7\";a:0:{}s:20:\"nimble-widget-area-8\";a:0:{}s:20:\"nimble-widget-area-9\";a:0:{}s:21:\"nimble-widget-area-10\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:18:\"facebook-likebox-3\";i:1;s:11:\"archives-16\";i:2;s:6:\"text-3\";}s:18:\"template_1_sidebar\";a:5:{i:0;s:9:\"search-17\";i:1;s:11:\"archives-22\";i:2;s:8:\"search-9\";i:3;s:19:\"sow-post-carousel-3\";i:4;s:11:\"archives-14\";}s:13:\"array_version\";i:3;}','yes'),(709564,'siteorigin_widgets_active','a:10:{s:6:\"button\";b:1;s:10:\"google-map\";b:1;s:5:\"image\";b:1;s:6:\"slider\";b:1;s:13:\"post-carousel\";b:1;s:6:\"editor\";b:1;s:10:\"image-grid\";b:1;s:8:\"headline\";b:1;s:8:\"features\";b:1;s:3:\"cta\";b:1;}','yes'),(709570,'widget_sow-headline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(709571,'widget_sow-features','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(709572,'widget_sow-cta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(709562,'widget_miniloops','a:6:{i:2;a:29:{s:5:\"title\";s:12:\"Recent Posts\";s:10:\"hide_title\";i:0;s:9:\"title_url\";s:0:\"\";s:12:\"number_posts\";i:10;s:11:\"post_offset\";i:0;s:11:\"maximum_age\";s:1:\"0\";s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:7:\"publish\";s:8:\"order_by\";s:4:\"rand\";s:5:\"order\";s:4:\"DESC\";s:14:\"order_meta_key\";s:0:\"\";s:13:\"reverse_order\";i:0;s:13:\"shuffle_order\";i:1;s:13:\"ignore_sticky\";i:1;s:11:\"only_sticky\";i:0;s:14:\"exclude_sticky\";i:0;s:15:\"exclude_current\";i:1;s:16:\"current_category\";i:0;s:23:\"current_single_category\";i:0;s:14:\"current_author\";i:0;s:10:\"categories\";s:0:\"\";s:4:\"tags\";s:0:\"\";s:11:\"post_author\";s:0:\"\";s:3:\"tax\";s:0:\"\";s:13:\"custom_fields\";s:0:\"\";s:7:\"exclude\";s:0:\"\";s:12:\"before_items\";s:4:\"<ul>\";s:11:\"item_format\";s:53:\"<li><a href=\\\"[url]\\\">[title]</a><br />[excerpt]</li>\";s:11:\"after_items\";s:5:\"</ul>\";}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:29:{s:5:\"title\";s:21:\"Poetry from the Past:\";s:10:\"hide_title\";i:0;s:9:\"title_url\";s:0:\"\";s:12:\"number_posts\";i:10;s:11:\"post_offset\";i:0;s:11:\"maximum_age\";s:1:\"0\";s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:7:\"publish\";s:8:\"order_by\";s:4:\"rand\";s:5:\"order\";s:4:\"DESC\";s:14:\"order_meta_key\";s:0:\"\";s:13:\"reverse_order\";i:0;s:13:\"shuffle_order\";i:0;s:13:\"ignore_sticky\";i:1;s:11:\"only_sticky\";i:0;s:14:\"exclude_sticky\";i:0;s:15:\"exclude_current\";i:1;s:16:\"current_category\";i:0;s:23:\"current_single_category\";i:0;s:14:\"current_author\";i:0;s:10:\"categories\";s:0:\"\";s:4:\"tags\";s:0:\"\";s:11:\"post_author\";s:0:\"\";s:3:\"tax\";s:0:\"\";s:13:\"custom_fields\";s:0:\"\";s:7:\"exclude\";s:0:\"\";s:12:\"before_items\";s:4:\"<ul>\";s:11:\"item_format\";s:53:\"<li><a href=\\\"[url]\\\">[title]</a><br />[excerpt]</li>\";s:11:\"after_items\";s:5:\"</ul>\";}i:7;a:0:{}i:9;a:29:{s:5:\"title\";s:12:\"Recent Posts\";s:10:\"hide_title\";i:0;s:9:\"title_url\";s:0:\"\";s:12:\"number_posts\";i:1;s:11:\"post_offset\";i:5;s:11:\"maximum_age\";s:1:\"0\";s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:7:\"publish\";s:8:\"order_by\";s:4:\"rand\";s:5:\"order\";s:4:\"DESC\";s:14:\"order_meta_key\";s:0:\"\";s:13:\"reverse_order\";i:0;s:13:\"shuffle_order\";i:1;s:13:\"ignore_sticky\";i:0;s:11:\"only_sticky\";i:0;s:14:\"exclude_sticky\";i:0;s:15:\"exclude_current\";i:1;s:16:\"current_category\";i:0;s:23:\"current_single_category\";i:0;s:14:\"current_author\";i:1;s:10:\"categories\";s:0:\"\";s:4:\"tags\";s:0:\"\";s:11:\"post_author\";s:0:\"\";s:3:\"tax\";s:0:\"\";s:13:\"custom_fields\";s:0:\"\";s:7:\"exclude\";s:0:\"\";s:12:\"before_items\";s:4:\"<ul>\";s:11:\"item_format\";s:53:\"<li><a href=\\\"[url]\\\">[title]</a><br />[excerpt]</li>\";s:11:\"after_items\";s:5:\"</ul>\";}}','yes'),(709563,'widget_miniminiloops','a:3:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}i:5;a:0:{}}','yes'),(97,'jetpack_activated','1','yes'),(98,'jetpack_options','a:17:{s:7:\"version\";s:20:\"15.5-beta:1770195730\";s:11:\"old_version\";s:15:\"15.4:1767819872\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:72714519;s:6:\"public\";i:1;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1771193041;s:21:\"publicize_connections\";a:3:{s:7:\"twitter\";a:2:{i:9266131;a:12:{s:7:\"user_id\";i:1;s:8:\"provider\";s:13:\"twitter:38869\";s:6:\"issued\";s:19:\"2014-11-14 13:32:15\";s:7:\"expires\";b:0;s:11:\"external_id\";s:8:\"32784019\";s:13:\"external_name\";s:13:\"Monica_Renata\";s:16:\"external_display\";s:14:\"@Monica_Renata\";s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:7:\"9266131\";s:8:\"token_id\";s:7:\"9306599\";s:7:\"blog_id\";s:8:\"72714519\";s:7:\"user_id\";s:1:\"0\";s:4:\"meta\";a:4:{s:16:\"external_user_id\";i:1;s:14:\"follower_count\";i:819;s:12:\"display_name\";s:14:\"@Monica_Renata\";s:4:\"link\";s:32:\"http://twitter.com/Monica_Renata\";}}s:20:\"profile_display_name\";s:11:\"Monica Who?\";s:15:\"profile_picture\";s:75:\"https://pbs.twimg.com/profile_images/620933363298205700/FQCMuANc_bigger.jpg\";}i:9580907;a:12:{s:7:\"user_id\";i:1;s:8:\"provider\";s:13:\"twitter:38869\";s:6:\"issued\";s:19:\"2014-12-14 03:10:24\";s:7:\"expires\";b:0;s:11:\"external_id\";s:10:\"2926097828\";s:13:\"external_name\";s:12:\"SavorMyWords\";s:16:\"external_display\";s:13:\"@SavorMyWords\";s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:7:\"9580907\";s:8:\"token_id\";s:7:\"9626447\";s:7:\"blog_id\";s:8:\"72714519\";s:7:\"user_id\";i:1;s:4:\"meta\";a:4:{s:16:\"external_user_id\";i:1;s:14:\"follower_count\";i:45;s:12:\"display_name\";s:13:\"@SavorMyWords\";s:4:\"link\";s:31:\"http://twitter.com/SavorMyWords\";}}s:20:\"profile_display_name\";s:11:\"Monica Who?\";s:15:\"profile_picture\";s:75:\"https://pbs.twimg.com/profile_images/620933363298205700/FQCMuANc_bigger.jpg\";}}s:6:\"tumblr\";a:1:{i:12746483;a:10:{s:7:\"user_id\";i:1;s:8:\"provider\";s:12:\"tumblr:10313\";s:6:\"issued\";s:19:\"2015-10-29 03:37:21\";s:7:\"expires\";b:0;s:11:\"external_id\";s:9:\"monicawho\";s:13:\"external_name\";s:0:\"\";s:16:\"external_display\";s:9:\"monicawho\";s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:8:\"12746483\";s:8:\"token_id\";s:8:\"12748247\";s:7:\"blog_id\";s:8:\"72714519\";s:7:\"user_id\";s:1:\"0\";s:4:\"meta\";a:4:{s:16:\"external_user_id\";i:1;s:20:\"tumblr_base_hostname\";s:30:\"monicarenata-poetry.tumblr.com\";s:12:\"display_name\";s:13:\"Monica Renata\";s:4:\"link\";s:38:\"http://monicarenata-poetry.tumblr.com/\";}}}}s:8:\"facebook\";a:1:{i:16878509;a:10:{s:7:\"user_id\";i:1;s:8:\"provider\";s:21:\"facebook:249643311490\";s:6:\"issued\";s:19:\"2017-02-14 05:18:28\";s:7:\"expires\";b:0;s:11:\"external_id\";s:17:\"10158338375520599\";s:13:\"external_name\";s:0:\"\";s:16:\"external_display\";s:13:\"Monica Renata\";s:13:\"refresh_token\";s:0:\"\";s:4:\"type\";s:6:\"access\";s:15:\"connection_data\";a:5:{s:2:\"id\";s:8:\"16878509\";s:8:\"token_id\";s:8:\"16665421\";s:7:\"blog_id\";s:8:\"72714519\";s:7:\"user_id\";s:1:\"0\";s:4:\"meta\";a:6:{s:16:\"external_user_id\";i:1;s:13:\"facebook_page\";i:347909465564862;s:14:\"follower_count\";i:210;s:4:\"link\";s:46:\"https://www.facebook.com/MonicaRenataWilliams/\";s:12:\"display_name\";s:13:\"Monica Renata\";s:17:\"options_responses\";a:2:{i:0;a:3:{s:2:\"id\";s:17:\"10158338375520599\";s:7:\"picture\";a:1:{s:4:\"data\";a:4:{s:6:\"height\";i:50;s:13:\"is_silhouette\";b:0;s:3:\"url\";s:139:\"https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=10158338375520599&height=50&width=50&ext=1608044697&hash=AeRQLbE1a2v8DZUb72M\";s:5:\"width\";i:50;}}s:4:\"name\";s:13:\"Monica Renata\";}i:1;a:2:{s:4:\"data\";a:2:{i:0;a:4:{s:4:\"name\";s:13:\"Monica Renata\";s:7:\"picture\";a:1:{s:4:\"data\";a:4:{s:6:\"height\";i:50;s:13:\"is_silhouette\";b:0;s:3:\"url\";s:249:\"https://scontent-dfw5-1.xx.fbcdn.net/v/t31.0-1/cp0/p50x50/17240501_389305174758624_5236868646720645654_o.jpg?_nc_cat=110&ccb=2&_nc_sid=dbb9e7&_nc_ohc=K0H9BcpJ5FsAX-TCXoL&_nc_ht=scontent-dfw5-1.xx&tp=27&oh=3fe676db49f49bc380c359745477f3ef&oe=5FD88AC0\";s:5:\"width\";i:50;}}s:8:\"category\";s:6:\"Writer\";s:2:\"id\";s:15:\"347909465564862\";}i:1;a:4:{s:4:\"name\";s:21:\"The Awkward Butterfly\";s:7:\"picture\";a:1:{s:4:\"data\";a:4:{s:6:\"height\";i:50;s:13:\"is_silhouette\";b:0;s:3:\"url\";s:259:\"https://scontent-dfw5-2.xx.fbcdn.net/v/t31.0-1/cp0/c65.65.813.813a/s50x50/1273882_496742647087812_1451497883_o.jpg?_nc_cat=106&ccb=2&_nc_sid=dbb9e7&_nc_ohc=jHU4fkSVhMsAX_85x6y&_nc_ht=scontent-dfw5-2.xx&_nc_tp=28&oh=de860f39bc80c06f6fb52345b3ac9309&oe=5FD558B7\";s:5:\"width\";i:50;}}s:8:\"category\";s:6:\"Writer\";s:2:\"id\";s:15:\"496741507087926\";}}s:6:\"paging\";a:1:{s:7:\"cursors\";a:2:{s:6:\"before\";s:20:\"MzQ3OTA5NDY1NTY0ODYy\";s:5:\"after\";s:20:\"NDk2NzQxNTA3MDg3OTI2\";}}}}}}}}}s:20:\"sync_bulk_reindexing\";b:1;s:20:\"last_security_report\";i:1433133529;s:24:\"custom_css_4.7_migration\";b:1;s:22:\"image_widget_migration\";b:1;s:24:\"gallery_widget_migration\";b:1;s:16:\"first_admin_view\";b:1;s:27:\"historically_active_modules\";a:10:{i:0;s:9:\"anti-spam\";i:1;s:7:\"creator\";i:2;s:6:\"extras\";i:3;s:10:\"jetpack-ai\";i:4;s:4:\"scan\";i:5;s:6:\"social\";i:6;s:7:\"protect\";i:7;s:5:\"stats\";i:8;s:10:\"newsletter\";i:9;s:13:\"related-posts\";}s:27:\"recommendations_conditional\";a:2:{i:0;s:7:\"protect\";i:1;s:11:\"backup-plan\";}}','yes'),(99,'jpstart_wizard_has_run','1','yes'),(102,'mm_previous_tests','a:2:{i:0;s:18:\"spam-prevention-v1\";i:1;s:17:\"jetpack-start-4.0\";}','yes'),(103,'cron','a:19:{i:1782173489;a:1:{s:23:\"epc_scheduled_purge_all\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1782176628;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1782180088;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:1782189005;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1782205318;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:1782233642;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782233645;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782239602;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782242818;a:1:{s:23:\"nfd_htaccess_daily_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782245380;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:1782248409;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782248682;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:1782248919;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782251975;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:1782254803;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:1782551476;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1782560281;a:1:{s:13:\"nfd_data_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1782663898;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(3941149,'_site_transient_timeout_browser_7f65ff317c237641f7aace3b7dac03d6','1782701556','off'),(3941150,'_site_transient_browser_7f65ff317c237641f7aace3b7dac03d6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"91.0.4472.124\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3940720,'_site_transient_timeout_browser_ec3bec24f134f1bda5e1ed74de7e5643','1782466123','off'),(3940721,'_site_transient_browser_ec3bec24f134f1bda5e1ed74de7e5643','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"121.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3759945,'nfd_wb_cta_enabled_posts','1','auto'),(128,'mm_cron','a:3:{s:6:\"weekly\";a:2:{s:21:\"spam_blocked_username\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:21:\"spam_blocked_username\";s:2:\"el\";i:1;}s:10:\"wp_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:10:\"wp_version\";s:2:\"el\";s:5:\"6.8.2\";}}s:5:\"daily\";a:1:{s:14:\"plugin_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:14:\"plugin_version\";s:2:\"el\";s:5:\"0.5.9\";}}s:7:\"monthly\";a:2:{s:12:\"plugin_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:12:\"plugin_count\";s:2:\"el\";i:25;}s:11:\"theme_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"theme_count\";s:2:\"el\";s:5:\"britt\";}}}','yes'),(308,'jetpack_log','a:9:{i:0;a:4:{s:4:\"time\";i:1407713161;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:1408226368;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:9:\"authorize\";}i:2;a:5:{s:4:\"time\";i:1408734241;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:5:\"likes\";}i:3;a:5:{s:4:\"time\";i:1408734279;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:9:\"minileven\";}i:4;a:5:{s:4:\"time\";i:1408734461;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:10:\"deactivate\";s:4:\"data\";s:9:\"minileven\";}i:5;a:5:{s:4:\"time\";i:1408734509;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"tiled-gallery\";}i:6;a:5:{s:4:\"time\";i:1408734626;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"related-posts\";}i:7;a:5:{s:4:\"time\";i:1481293239;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}i:8;a:5:{s:4:\"time\";i:1666836086;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:72714519;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:7:\"protect\";}}','no'),(116,'mm_master_aff','','yes'),(117,'mm_install_date','Aug 09, 2014','yes'),(1333,'stb_enabled','1','yes'),(1334,'stc_enabled','1','yes'),(1335,'gravatar_disable_hovercards','enabled','yes'),(10052,'jetpack_available_modules','a:1:{s:9:\"15.5-beta\";a:43:{s:18:\"account-protection\";s:4:\"14.5\";s:5:\"blaze\";s:4:\"12.3\";s:6:\"blocks\";s:8:\"13.9-a.8\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:12:\"google-fonts\";s:6:\"10.8.0\";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:8:\"markdown\";s:3:\"2.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";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:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(10057,'js_shortcode','no','yes'),(47163,'dcl_gnrl_options','a:10:{s:8:\"dcl_type\";s:6:\"scroll\";s:13:\"dcl_div_width\";s:0:\"\";s:18:\"dcl_div_width_type\";s:2:\"px\";s:17:\"dcl_count_disable\";i:1;s:11:\"dcl_btn_txt\";s:13:\"Load Comments\";s:13:\"dcl_btn_class\";s:0:\"\";s:11:\"dcl_message\";s:10:\"Loading...\";s:11:\"dcl_caching\";s:1:\"1\";s:11:\"dcl_cfasync\";i:0;s:15:\"dcl_cpt_exclude\";s:0:\"\";}','yes'),(11562,'cyberchimps_options','a:100:{s:25:\"cyberchimps_body_parallax\";s:1:\"1\";s:17:\"responsive_design\";s:1:\"1\";s:16:\"gallery_lightbox\";s:1:\"1\";s:12:\"wide_sidebar\";b:0;s:9:\"max_width\";s:4:\"1020\";s:22:\"cyberchimps_skin_color\";s:7:\"default\";s:16:\"text_colorpicker\";s:0:\"\";s:16:\"link_colorpicker\";s:0:\"\";s:22:\"link_hover_colorpicker\";s:0:\"\";s:18:\"typography_options\";a:4:{s:4:\"size\";s:4:\"14px\";s:4:\"face\";s:24:\"Arimo, Arial, sans-serif\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#555555\";}s:20:\"font_family_headings\";a:4:{s:4:\"size\";a:63:{i:0;i:9;i:1;i:10;i:2;i:11;i:3;i:12;i:4;i:13;i:5;i:14;i:6;i:15;i:7;i:16;i:8;i:17;i:9;i:18;i:10;i:19;i:11;i:20;i:12;i:21;i:13;i:22;i:14;i:23;i:15;i:24;i:16;i:25;i:17;i:26;i:18;i:27;i:19;i:28;i:20;i:29;i:21;i:30;i:22;i:31;i:23;i:32;i:24;i:33;i:25;i:34;i:26;i:35;i:27;i:36;i:28;i:37;i:29;i:38;i:30;i:39;i:31;i:40;i:32;i:41;i:33;i:42;i:34;i:43;i:35;i:44;i:36;i:45;i:37;i:46;i:38;i:47;i:39;i:48;i:40;i:49;i:41;i:50;i:42;i:51;i:43;i:52;i:44;i:53;i:45;i:54;i:46;i:55;i:47;i:56;i:48;i:57;i:49;i:58;i:50;i:59;i:51;i:60;i:52;i:61;i:53;i:62;i:54;i:63;i:55;i:64;i:56;i:65;i:57;i:66;i:58;i:67;i:59;i:68;i:60;i:69;i:61;i:70;i:62;i:71;}s:4:\"face\";s:21:\"Spinnaker, sans-serif\";s:5:\"style\";s:6:\"Normal\";s:5:\"color\";s:0:\"\";}s:20:\"header_section_order\";a:1:{i:0;s:26:\"cyberchimps_header_content\";}s:20:\"custom_logo_url_link\";s:27:\"http://www.monicarenata.com\";s:11:\"custom_logo\";b:0;s:20:\"custom_logo_uploader\";s:89:\"http://www.monicarenata.com/wp-content/themes/parallax/cyberchimps/lib/images/achimps.png\";s:9:\"searchbar\";b:0;s:17:\"theme_backgrounds\";s:7:\"default\";s:15:\"social_facebook\";s:1:\"1\";s:12:\"facebook_url\";s:24:\"http://www.facebook.com/\";s:14:\"social_twitter\";s:1:\"1\";s:11:\"twitter_url\";s:23:\"http://www.twitter.com/\";s:13:\"social_google\";s:1:\"1\";s:10:\"google_url\";s:22:\"http://www.google.com/\";s:12:\"linkedin_url\";s:24:\"http://www.linkedin.com/\";s:11:\"youtube_url\";s:23:\"http://www.youtube.com/\";s:10:\"flickr_url\";s:22:\"http://www.flickr.com/\";s:13:\"pinterest_url\";s:25:\"http://www.pinterest.com/\";s:14:\"googlemaps_url\";s:27:\"http://www.maps.google.com/\";s:7:\"rss_url\";s:37:\"http://www.monicarenata.com/feed/rss/\";s:13:\"instagram_url\";s:21:\"http://instagram.com/\";s:18:\"blog_section_order\";a:4:{i:0;s:11:\"slider_lite\";i:1;s:10:\"boxes_lite\";i:2;s:14:\"portfolio_lite\";i:3;s:14:\"blog_post_page\";}s:14:\"sidebar_images\";s:10:\"full_width\";s:10:\"blog_title\";b:0;s:15:\"blog_title_text\";s:8:\"Our Blog\";s:17:\"post_format_icons\";b:0;s:13:\"post_excerpts\";b:0;s:19:\"blog_read_more_text\";s:12:\"Read More...\";s:19:\"blog_excerpt_length\";s:2:\"55\";s:20:\"post_featured_images\";s:1:\"1\";s:18:\"post_byline_author\";s:1:\"1\";s:22:\"post_byline_categories\";s:1:\"1\";s:16:\"post_byline_date\";s:1:\"1\";s:20:\"post_byline_comments\";s:1:\"1\";s:16:\"post_byline_tags\";s:1:\"1\";s:31:\"cyberchimps_blog_boxes_parallax\";s:1:\"1\";s:37:\"cyberchimps_blog_boxes_parallax_image\";s:80:\"http://www.monicarenata.com/wp-content/themes/parallax/images/parallax/rocks.jpg\";s:37:\"cyberchimps_blog_boxes_lite_image_one\";s:95:\"http://www.monicarenata.com/wp-content/themes/parallax/elements/lib/images/boxes/slidericon.png\";s:35:\"cyberchimps_blog_boxes_link_url_one\";s:20:\"http://wordpress.org\";s:42:\"cyberchimps_blog_boxes_lite_image_one_text\";s:298:\"Alto ventos est coeptis utque fecit. Phoebe sine circumfuso arce. Tanto aliis. Matutinis cornua origo formaeque animal mundo. Chaos: fabricator. Natura mundo caesa addidit.\r\n Cuncta habendum meis omni ille formaeque emicuit septemque et. Lege fecit aethere porrexerat gentes horrifer formas.\";s:37:\"cyberchimps_blog_boxes_lite_image_two\";s:94:\"http://www.monicarenata.com/wp-content/themes/parallax/elements/lib/images/boxes/blueprint.png\";s:35:\"cyberchimps_blog_boxes_link_url_two\";s:20:\"http://wordpress.org\";s:42:\"cyberchimps_blog_boxes_lite_image_two_text\";s:298:\"Alto ventos est coeptis utque fecit. Phoebe sine circumfuso arce. Tanto aliis. Matutinis cornua origo formaeque animal mundo. Chaos: fabricator. Natura mundo caesa addidit.\r\n Cuncta habendum meis omni ille formaeque emicuit septemque et. Lege fecit aethere porrexerat gentes horrifer formas.\";s:39:\"cyberchimps_blog_boxes_lite_image_three\";s:89:\"http://www.monicarenata.com/wp-content/themes/parallax/elements/lib/images/boxes/docs.png\";s:37:\"cyberchimps_blog_boxes_link_url_three\";s:20:\"http://wordpress.org\";s:44:\"cyberchimps_blog_boxes_lite_image_three_text\";s:298:\"Alto ventos est coeptis utque fecit. Phoebe sine circumfuso arce. Tanto aliis. Matutinis cornua origo formaeque animal mundo. Chaos: fabricator. Natura mundo caesa addidit.\r\n Cuncta habendum meis omni ille formaeque emicuit septemque et. Lege fecit aethere porrexerat gentes horrifer formas.\";s:35:\"cyberchimps_blog_portfolio_parallax\";s:1:\"1\";s:41:\"cyberchimps_blog_portfolio_parallax_image\";s:80:\"http://www.monicarenata.com/wp-content/themes/parallax/images/parallax/trees.jpg\";s:41:\"cyberchimps_blog_portfolio_lite_image_one\";s:91:\"http://www.monicarenata.com/wp-content/themes/parallax/cyberchimps/lib/images/portfolio.jpg\";s:49:\"cyberchimps_blog_portfolio_lite_image_one_caption\";s:11:\"CyberChimps\";s:39:\"cyberchimps_blog_portfolio_link_url_one\";s:22:\"http://cyberchimps.com\";s:41:\"cyberchimps_blog_portfolio_lite_image_two\";s:91:\"http://www.monicarenata.com/wp-content/themes/parallax/cyberchimps/lib/images/portfolio.jpg\";s:49:\"cyberchimps_blog_portfolio_lite_image_two_caption\";s:11:\"CyberChimps\";s:39:\"cyberchimps_blog_portfolio_link_url_two\";s:22:\"http://cyberchimps.com\";s:43:\"cyberchimps_blog_portfolio_lite_image_three\";s:91:\"http://www.monicarenata.com/wp-content/themes/parallax/cyberchimps/lib/images/portfolio.jpg\";s:51:\"cyberchimps_blog_portfolio_lite_image_three_caption\";s:11:\"CyberChimps\";s:41:\"cyberchimps_blog_portfolio_link_url_three\";s:22:\"http://cyberchimps.com\";s:42:\"cyberchimps_blog_portfolio_lite_image_four\";s:91:\"http://www.monicarenata.com/wp-content/themes/parallax/cyberchimps/lib/images/portfolio.jpg\";s:50:\"cyberchimps_blog_portfolio_lite_image_four_caption\";s:11:\"CyberChimps\";s:40:\"cyberchimps_blog_portfolio_link_url_four\";s:22:\"http://cyberchimps.com\";s:39:\"cyberchimps_blog_portfolio_title_toggle\";s:1:\"1\";s:32:\"cyberchimps_blog_portfolio_title\";s:9:\"Portfolio\";s:32:\"cyberchimps_blog_slider_parallax\";s:1:\"1\";s:38:\"cyberchimps_blog_slider_parallax_image\";s:78:\"http://www.monicarenata.com/wp-content/themes/parallax/images/parallax/sun.jpg\";s:15:\"image_one_slide\";s:81:\"http://www.monicarenata.com/wp-content/themes/parallax/images/branding/slide1.jpg\";s:19:\"image_one_slide_url\";s:22:\"http://cyberchimps.com\";s:15:\"image_two_slide\";s:92:\"http://www.monicarenata.com/wp-content/themes/parallax/elements/lib/images/slider/slide1.jpg\";s:19:\"image_two_slide_url\";s:22:\"http://cyberchimps.com\";s:17:\"image_three_slide\";s:92:\"http://www.monicarenata.com/wp-content/themes/parallax/elements/lib/images/slider/slide1.jpg\";s:21:\"image_three_slide_url\";s:22:\"http://cyberchimps.com\";s:27:\"single_post_sidebar_options\";s:13:\"right_sidebar\";s:17:\"single_post_title\";s:1:\"1\";s:25:\"single_post_byline_author\";s:1:\"1\";s:29:\"single_post_byline_categories\";s:1:\"1\";s:23:\"single_post_byline_date\";s:1:\"1\";s:27:\"single_post_byline_comments\";s:1:\"1\";s:23:\"single_post_byline_tags\";s:1:\"1\";s:23:\"archive_sidebar_options\";s:13:\"right_sidebar\";s:21:\"archive_post_excerpts\";b:0;s:26:\"archive_post_byline_author\";s:1:\"1\";s:30:\"archive_post_byline_categories\";s:1:\"1\";s:24:\"archive_post_byline_date\";s:1:\"1\";s:28:\"archive_post_byline_comments\";s:1:\"1\";s:24:\"archive_post_byline_tags\";s:1:\"1\";s:22:\"search_sidebar_options\";s:13:\"right_sidebar\";s:21:\"search_post_read_more\";s:12:\"Read More...\";s:26:\"search_post_excerpt_length\";s:2:\"55\";s:21:\"error_sidebar_options\";s:10:\"full_width\";s:20:\"error_custom_content\";s:0:\"\";s:18:\"footer_show_toggle\";s:1:\"1\";s:21:\"footer_copyright_text\";s:20:\"© Monica Renata\";}','yes'),(9639,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:27:\"monicawilliams517@gmail.com\";s:7:\"version\";s:3:\"7.0\";s:9:\"timestamp\";i:1779384237;}','off'),(787,'akismet_spam_count','9','yes'),(402,'option_tree','a:58:{s:10:\"responsive\";s:2:\"on\";s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:7:\"favicon\";s:0:\"\";s:8:\"rss-feed\";s:0:\"\";s:13:\"page-comments\";s:2:\"on\";s:12:\"blog-heading\";s:0:\"\";s:15:\"blog-subheading\";s:0:\"\";s:14:\"excerpt-length\";s:2:\"34\";s:17:\"featured-category\";s:1:\"6\";s:20:\"featured-posts-count\";s:1:\"4\";s:11:\"placeholder\";s:2:\"on\";s:13:\"comment-count\";s:2:\"on\";s:10:\"author-bio\";s:2:\"on\";s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:11:\"custom-logo\";s:0:\"\";s:16:\"site-description\";s:2:\"on\";s:14:\"footer-widgets\";s:1:\"0\";s:11:\"footer-logo\";s:0:\"\";s:9:\"copyright\";s:0:\"\";s:6:\"credit\";s:2:\"on\";s:13:\"layout-global\";s:7:\"col-3cm\";s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:7:\"s1-home\";s:0:\"\";s:7:\"s2-home\";s:0:\"\";s:9:\"s1-single\";s:0:\"\";s:9:\"s2-single\";s:0:\"\";s:10:\"s1-archive\";s:0:\"\";s:10:\"s2-archive\";s:0:\"\";s:19:\"s1-archive-category\";s:0:\"\";s:19:\"s2-archive-category\";s:0:\"\";s:9:\"s1-search\";s:0:\"\";s:9:\"s2-search\";s:0:\"\";s:6:\"s1-404\";s:0:\"\";s:6:\"s2-404\";s:0:\"\";s:7:\"s1-page\";s:0:\"\";s:7:\"s2-page\";s:0:\"\";s:12:\"social-links\";a:3:{i:0;a:5:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:11:\"social-icon\";s:7:\"fa-book\";s:11:\"social-link\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"social-color\";s:7:\"#ced3e2\";s:13:\"social-target\";a:1:{i:0;s:6:\"_blank\";}}i:1;a:5:{s:5:\"title\";s:33:\"The Awkward Butterfly On Facebook\";s:11:\"social-icon\";s:11:\"fa-facebook\";s:11:\"social-link\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:12:\"social-color\";s:7:\"#136ebf\";s:13:\"social-target\";a:1:{i:0;s:6:\"_blank\";}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:11:\"social-icon\";s:3:\"fa-\";s:11:\"social-link\";s:7:\"http://\";s:12:\"social-color\";s:0:\"\";}}s:14:\"dynamic-styles\";s:2:\"on\";s:5:\"boxed\";s:3:\"off\";s:4:\"font\";s:13:\"titillium-web\";s:15:\"container-width\";s:4:\"1380\";s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#3b8dbd\";s:7:\"color-2\";s:7:\"#82b965\";s:12:\"color-topbar\";s:7:\"#26272b\";s:12:\"color-header\";s:7:\"#33363b\";s:17:\"color-header-menu\";s:0:\"\";s:12:\"color-footer\";s:7:\"#33363b\";s:15:\"logo-max-height\";s:2:\"60\";s:19:\"image-border-radius\";s:1:\"0\";s:15:\"body-background\";s:7:\"#eaeaea\";}','yes'),(398,'theme_mods_vantage','a:5:{s:17:\"version_activated\";s:3:\"1.2\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:27:\"_theme_settings_current_tab\";s:1:\"4\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1486174604;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:36:{i:0;s:17:\"headline-widget-3\";i:1;s:10:\"calendar-2\";i:2;s:10:\"archives-3\";i:3;s:10:\"archives-4\";i:4;s:10:\"archives-6\";i:5;s:10:\"archives-8\";i:6;s:11:\"archives-10\";i:7;s:11:\"archives-12\";i:8;s:8:\"search-3\";i:9;s:8:\"search-4\";i:10;s:8:\"search-6\";i:11;s:8:\"search-7\";i:12;s:6:\"text-5\";i:13;s:6:\"text-7\";i:14;s:6:\"text-9\";i:15;s:12:\"categories-3\";i:16;s:12:\"categories-5\";i:17;s:14:\"recent-posts-3\";i:18;s:11:\"tag_cloud-3\";i:19;s:39:\"facebook_comments_master_widget_viral-2\";i:20;s:39:\"facebook_comments_master_widget_basic-3\";i:21;s:17:\"impact_nav_menu-3\";i:22;s:23:\"bwp_gallery_slideshow-3\";i:23;s:28:\"siteorigin-panels-postloop-3\";i:24;s:28:\"siteorigin-panels-postloop-4\";i:25;s:28:\"siteorigin-panels-postloop-8\";i:26;s:28:\"siteorigin-panels-postloop-9\";i:27;s:29:\"siteorigin-panels-postloop-11\";i:28;s:29:\"siteorigin-panels-postloop-13\";i:29;s:19:\"sow-post-carousel-3\";i:30;s:19:\"metaslider_widget-3\";i:31;s:19:\"metaslider_widget-6\";i:32;s:19:\"blog_subscription-3\";i:33;s:11:\"top-posts-3\";i:34;s:18:\"twitter_timeline-2\";i:35;s:18:\"twitter_timeline-4\";}s:18:\"template_1_sidebar\";a:0:{}s:18:\"orphaned_widgets_1\";a:0:{}s:18:\"orphaned_widgets_2\";a:0:{}}}}','no'),(239,'current_theme','Britt','yes'),(240,'theme_mods_twentythirteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1407619732;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\";a:0:{}}}}','no'),(241,'theme_switched','','yes'),(245,'widget_supernova_tabber','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(401,'option_tree_settings','a:3:{s:15:\"contextual_help\";a:1:{s:7:\"content\";a:1:{i:0;a:3:{s:2:\"id\";s:12:\"general_help\";s:5:\"title\";s:13:\"Documentation\";s:7:\"content\";s:1103:\"\r\n <h1>Hueman</h1>\r\n <p>Thanks for using this theme! Enjoy.</p>\r\n <ul>\r\n <li>Read the theme documentation <a target=\"_blank\" href=\"http://www.monicarenata.com/wp-content/themes/hueman/functions/documentation/documentation.html\">here</a></li>\r\n <li>Download the sample child theme <a href=\"https://github.com/AlxMedia/hueman-child/archive/master.zip\">here</a></li>\r\n <li>Download or contribute translations <a target=\"_blank\" href=\"https://github.com/AlxMedia/hueman-languages\">here</a></li>\r\n <li>Feel free to rate/review the theme <a target=\"_blank\" href=\"http://wordpress.org/support/view/theme-reviews/hueman\">here</a></li>\r\n <li>If you have theme questions, go <a target=\"_blank\" href=\"http://wordpress.org/support/theme/hueman\">here</a></li>\r\n <li>Hueman is on <a target=\"_blank\" href=\"https://github.com/AlxMedia/hueman\">GitHub</a></li>\r\n </ul>\r\n <hr />\r\n <p>You can support the theme author by donating <a target=\"_blank\" href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K54RW72RZM2HN\">here</a> – any amount is always appreciated.</p>\r\n \";}}}s:8:\"sections\";a:8:{i:0;a:2:{s:2:\"id\";s:7:\"general\";s:5:\"title\";s:7:\"General\";}i:1;a:2:{s:2:\"id\";s:4:\"blog\";s:5:\"title\";s:4:\"Blog\";}i:2;a:2:{s:2:\"id\";s:6:\"header\";s:5:\"title\";s:6:\"Header\";}i:3;a:2:{s:2:\"id\";s:6:\"footer\";s:5:\"title\";s:6:\"Footer\";}i:4;a:2:{s:2:\"id\";s:6:\"layout\";s:5:\"title\";s:6:\"Layout\";}i:5;a:2:{s:2:\"id\";s:8:\"sidebars\";s:5:\"title\";s:8:\"Sidebars\";}i:6;a:2:{s:2:\"id\";s:12:\"social-links\";s:5:\"title\";s:12:\"Social Links\";}i:7;a:2:{s:2:\"id\";s:7:\"styling\";s:5:\"title\";s:7:\"Styling\";}}s:8:\"settings\";a:65:{i:0;a:6:{s:2:\"id\";s:10:\"responsive\";s:5:\"label\";s:17:\"Responsive Layout\";s:4:\"desc\";s:67:\"Mobile and tablet optimizations [ <strong>responsive.css</strong> ]\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:7:\"general\";}i:1;a:7:{s:2:\"id\";s:19:\"mobile-sidebar-hide\";s:5:\"label\";s:22:\"Mobile Sidebar Content\";s:4:\"desc\";s:61:\"Hide sidebar content on low-resolution mobile devices (320px)\";s:4:\"type\";s:5:\"radio\";s:3:\"std\";s:1:\"1\";s:7:\"section\";s:7:\"general\";s:7:\"choices\";a:4:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:13:\"Show sidebars\";}i:1;a:2:{s:5:\"value\";s:2:\"s1\";s:5:\"label\";s:20:\"Hide primary sidebar\";}i:2;a:2:{s:5:\"value\";s:2:\"s2\";s:5:\"label\";s:22:\"Hide secondary sidebar\";}i:3;a:2:{s:5:\"value\";s:5:\"s1-s2\";s:5:\"label\";s:18:\"Hide both sidebars\";}}}i:2;a:5:{s:2:\"id\";s:7:\"favicon\";s:5:\"label\";s:7:\"Favicon\";s:4:\"desc\";s:56:\"Upload a 16x16px Png/Gif image that will be your favicon\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:7:\"general\";}i:3;a:5:{s:2:\"id\";s:8:\"rss-feed\";s:5:\"label\";s:14:\"FeedBurner URL\";s:4:\"desc\";s:173:\"Enter your full FeedBurner URL (or any other preferred feed URL) if you wish to use FeedBurner over the standard WordPress feed e.g. http://feeds.feedburner.com/yoururlhere \";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:7:\"general\";}i:4;a:6:{s:2:\"id\";s:13:\"page-comments\";s:5:\"label\";s:13:\"Page Comments\";s:4:\"desc\";s:17:\"Comments on pages\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:7:\"general\";}i:5;a:6:{s:2:\"id\";s:19:\"recommended-plugins\";s:5:\"label\";s:19:\"Recommended Plugins\";s:4:\"desc\";s:48:\"Enable or disable the recommended plugins notice\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:7:\"general\";}i:6;a:5:{s:2:\"id\";s:12:\"blog-heading\";s:5:\"label\";s:7:\"Heading\";s:4:\"desc\";s:17:\"Your blog heading\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:4:\"blog\";}i:7;a:5:{s:2:\"id\";s:15:\"blog-subheading\";s:5:\"label\";s:10:\"Subheading\";s:4:\"desc\";s:20:\"Your blog subheading\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:4:\"blog\";}i:8;a:7:{s:2:\"id\";s:14:\"excerpt-length\";s:5:\"label\";s:14:\"Excerpt Length\";s:4:\"desc\";s:19:\"Max number of words\";s:3:\"std\";s:2:\"34\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:4:\"blog\";s:12:\"min_max_step\";s:7:\"0,100,1\";}i:9;a:6:{s:2:\"id\";s:22:\"featured-posts-include\";s:5:\"label\";s:14:\"Featured Posts\";s:4:\"desc\";s:94:\"To show featured posts in the slider AND the content below<br /><i>Usually not recommended</i>\";s:4:\"type\";s:8:\"checkbox\";s:7:\"section\";s:4:\"blog\";s:7:\"choices\";a:1:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:38:\"Include featured posts in content area\";}}}i:10;a:5:{s:2:\"id\";s:17:\"featured-category\";s:5:\"label\";s:17:\"Featured Category\";s:4:\"desc\";s:81:\"By not selecting a category, it will show your latest post(s) from all categories\";s:4:\"type\";s:15:\"category-select\";s:7:\"section\";s:4:\"blog\";}i:11;a:7:{s:2:\"id\";s:20:\"featured-posts-count\";s:5:\"label\";s:19:\"Featured Post Count\";s:4:\"desc\";s:143:\"Max number of featured posts to display. <br /><i>Set to 1 and it will show it without any slider script</i><br /><i>Set it to 0 to disable</i>\";s:3:\"std\";s:1:\"1\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:4:\"blog\";s:12:\"min_max_step\";s:6:\"0,10,1\";}i:12;a:6:{s:2:\"id\";s:13:\"blog-standard\";s:5:\"label\";s:18:\"Standard Blog List\";s:4:\"desc\";s:40:\"Show one post per row, image beside text\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:4:\"blog\";}i:13;a:6:{s:2:\"id\";s:11:\"placeholder\";s:5:\"label\";s:21:\"Thumbnail Placeholder\";s:4:\"desc\";s:60:\"Show featured image placeholders if no featured image is set\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:4:\"blog\";}i:14;a:6:{s:2:\"id\";s:13:\"comment-count\";s:5:\"label\";s:23:\"Thumbnail Comment Count\";s:4:\"desc\";s:27:\"Comment count on thumbnails\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:4:\"blog\";}i:15;a:6:{s:2:\"id\";s:10:\"author-bio\";s:5:\"label\";s:25:\"Single — Author Bio\";s:4:\"desc\";s:43:\"Shows post author description, if it exists\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:4:\"blog\";}i:16;a:7:{s:2:\"id\";s:13:\"related-posts\";s:5:\"label\";s:28:\"Single — Related Posts\";s:4:\"desc\";s:48:\"Shows randomized related articles below the post\";s:3:\"std\";s:10:\"categories\";s:4:\"type\";s:5:\"radio\";s:7:\"section\";s:4:\"blog\";s:7:\"choices\";a:3:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:7:\"Disable\";}i:1;a:2:{s:5:\"value\";s:10:\"categories\";s:5:\"label\";s:21:\"Related by categories\";}i:2;a:2:{s:5:\"value\";s:4:\"tags\";s:5:\"label\";s:15:\"Related by tags\";}}}i:17;a:7:{s:2:\"id\";s:8:\"post-nav\";s:5:\"label\";s:30:\"Single — Post Navigation\";s:4:\"desc\";s:44:\"Shows links to the next and previous article\";s:3:\"std\";s:2:\"s1\";s:4:\"type\";s:5:\"radio\";s:7:\"section\";s:4:\"blog\";s:7:\"choices\";a:4:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:7:\"Disable\";}i:1;a:2:{s:5:\"value\";s:2:\"s1\";s:5:\"label\";s:15:\"Sidebar Primary\";}i:2;a:2:{s:5:\"value\";s:2:\"s2\";s:5:\"label\";s:17:\"Sidebar Secondary\";}i:3;a:2:{s:5:\"value\";s:7:\"content\";s:5:\"label\";s:13:\"Below content\";}}}i:18;a:6:{s:2:\"id\";s:10:\"header-ads\";s:5:\"label\";s:10:\"Header Ads\";s:4:\"desc\";s:22:\"Header widget ads area\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:6:\"header\";}i:19;a:5:{s:2:\"id\";s:11:\"custom-logo\";s:5:\"label\";s:11:\"Custom Logo\";s:4:\"desc\";s:70:\"Upload your custom logo image. Set logo max-height in styling options.\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:6:\"header\";}i:20;a:6:{s:2:\"id\";s:16:\"site-description\";s:5:\"label\";s:16:\"Site Description\";s:4:\"desc\";s:46:\"The description that appears next to your logo\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:6:\"header\";}i:21;a:6:{s:2:\"id\";s:10:\"footer-ads\";s:5:\"label\";s:10:\"Footer Ads\";s:4:\"desc\";s:22:\"Footer widget ads area\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:6:\"footer\";}i:22;a:8:{s:2:\"id\";s:14:\"footer-widgets\";s:5:\"label\";s:21:\"Footer Widget Columns\";s:4:\"desc\";s:73:\"Select columns to enable footer widgets<br /><i>Recommended number: 3</i>\";s:3:\"std\";s:1:\"0\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"footer\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:5:{i:0;a:3:{s:5:\"value\";s:1:\"0\";s:5:\"label\";s:7:\"Disable\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:90:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/footer-widgets-1.png\";}i:2;a:3:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:9:\"2 Columns\";s:3:\"src\";s:90:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/footer-widgets-2.png\";}i:3;a:3:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:9:\"3 Columns\";s:3:\"src\";s:90:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/footer-widgets-3.png\";}i:4;a:3:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:9:\"4 Columns\";s:3:\"src\";s:90:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/footer-widgets-4.png\";}}}i:23;a:5:{s:2:\"id\";s:11:\"footer-logo\";s:5:\"label\";s:11:\"Footer Logo\";s:4:\"desc\";s:29:\"Upload your custom logo image\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:6:\"footer\";}i:24;a:5:{s:2:\"id\";s:9:\"copyright\";s:5:\"label\";s:16:\"Footer Copyright\";s:4:\"desc\";s:33:\"Replace the footer copyright text\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:6:\"footer\";}i:25;a:6:{s:2:\"id\";s:6:\"credit\";s:5:\"label\";s:13:\"Footer Credit\";s:4:\"desc\";s:18:\"Footer credit text\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:6:\"footer\";}i:26;a:7:{s:2:\"id\";s:13:\"layout-global\";s:5:\"label\";s:13:\"Global Layout\";s:4:\"desc\";s:55:\"Other layouts will override this option if they are set\";s:3:\"std\";s:7:\"col-3cm\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:6:{i:0;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:1;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:27;a:7:{s:2:\"id\";s:11:\"layout-home\";s:5:\"label\";s:4:\"Home\";s:4:\"desc\";s:50:\"[ <strong>is_home</strong> ] Posts homepage layout\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:28;a:7:{s:2:\"id\";s:13:\"layout-single\";s:5:\"label\";s:6:\"Single\";s:4:\"desc\";s:102:\"[ <strong>is_single</strong> ] Single post layout - If a post has a set layout, it will override this.\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:29;a:7:{s:2:\"id\";s:14:\"layout-archive\";s:5:\"label\";s:7:\"Archive\";s:4:\"desc\";s:77:\"[ <strong>is_archive</strong> ] Category, date, tag and author archive layout\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:30;a:7:{s:2:\"id\";s:23:\"layout-archive-category\";s:5:\"label\";s:24:\"Archive — Category\";s:4:\"desc\";s:56:\"[ <strong>is_category</strong> ] Category archive layout\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:31;a:7:{s:2:\"id\";s:13:\"layout-search\";s:5:\"label\";s:6:\"Search\";s:4:\"desc\";s:49:\"[ <strong>is_search</strong> ] Search page layout\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:32;a:7:{s:2:\"id\";s:10:\"layout-404\";s:5:\"label\";s:9:\"Error 404\";s:4:\"desc\";s:49:\"[ <strong>is_404</strong> ] Error 404 page layout\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:33;a:7:{s:2:\"id\";s:11:\"layout-page\";s:5:\"label\";s:12:\"Default Page\";s:4:\"desc\";s:101:\"[ <strong>is_page</strong> ] Default page layout - If a page has a set layout, it will override this.\";s:3:\"std\";s:7:\"inherit\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:6:\"layout\";s:7:\"choices\";a:7:{i:0;a:3:{s:5:\"value\";s:7:\"inherit\";s:5:\"label\";s:21:\"Inherit Global Layout\";s:3:\"src\";s:84:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/layout-off.png\";}i:1;a:3:{s:5:\"value\";s:6:\"col-1c\";s:5:\"label\";s:8:\"1 Column\";s:3:\"src\";s:80:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-1c.png\";}i:2;a:3:{s:5:\"value\";s:7:\"col-2cl\";s:5:\"label\";s:13:\"2 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cl.png\";}i:3;a:3:{s:5:\"value\";s:7:\"col-2cr\";s:5:\"label\";s:14:\"2 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-2cr.png\";}i:4;a:3:{s:5:\"value\";s:7:\"col-3cm\";s:5:\"label\";s:15:\"3 Column Middle\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cm.png\";}i:5;a:3:{s:5:\"value\";s:7:\"col-3cl\";s:5:\"label\";s:13:\"3 Column Left\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cl.png\";}i:6;a:3:{s:5:\"value\";s:7:\"col-3cr\";s:5:\"label\";s:14:\"3 Column Right\";s:3:\"src\";s:81:\"http://www.monicarenata.com/wp-content/themes/hueman/functions/images/col-3cr.png\";}}}i:34;a:6:{s:2:\"id\";s:11:\"sidebar-top\";s:5:\"label\";s:17:\"Sidebar Top Boxes\";s:4:\"desc\";s:32:\"Boxes at the top of the sidebars\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:8:\"sidebars\";}i:35;a:7:{s:2:\"id\";s:13:\"sidebar-areas\";s:5:\"label\";s:15:\"Create Sidebars\";s:4:\"desc\";s:115:\"You must save changes for the new areas to appear below. <br /><i>Warning: Make sure each area has a unique ID.</i>\";s:4:\"type\";s:9:\"list-item\";s:7:\"section\";s:8:\"sidebars\";s:7:\"choices\";a:0:{}s:8:\"settings\";a:1:{i:0;a:6:{s:2:\"id\";s:2:\"id\";s:5:\"label\";s:10:\"Sidebar ID\";s:4:\"desc\";s:51:\"This ID must be unique, for example \"sidebar-about\"\";s:3:\"std\";s:8:\"sidebar-\";s:4:\"type\";s:4:\"text\";s:7:\"choices\";a:0:{}}}}i:36;a:5:{s:2:\"id\";s:7:\"s1-home\";s:5:\"label\";s:4:\"Home\";s:4:\"desc\";s:36:\"[ <strong>is_home</strong> ] Primary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:37;a:5:{s:2:\"id\";s:7:\"s2-home\";s:5:\"label\";s:4:\"Home\";s:4:\"desc\";s:38:\"[ <strong>is_home</strong> ] Secondary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:38;a:5:{s:2:\"id\";s:9:\"s1-single\";s:5:\"label\";s:6:\"Single\";s:4:\"desc\";s:102:\"[ <strong>is_single</strong> ] Primary - If a single post has a unique sidebar, it will override this.\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:39;a:5:{s:2:\"id\";s:9:\"s2-single\";s:5:\"label\";s:6:\"Single\";s:4:\"desc\";s:104:\"[ <strong>is_single</strong> ] Secondary - If a single post has a unique sidebar, it will override this.\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:40;a:5:{s:2:\"id\";s:10:\"s1-archive\";s:5:\"label\";s:7:\"Archive\";s:4:\"desc\";s:39:\"[ <strong>is_archive</strong> ] Primary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:41;a:5:{s:2:\"id\";s:10:\"s2-archive\";s:5:\"label\";s:7:\"Archive\";s:4:\"desc\";s:41:\"[ <strong>is_archive</strong> ] Secondary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:42;a:5:{s:2:\"id\";s:19:\"s1-archive-category\";s:5:\"label\";s:24:\"Archive — Category\";s:4:\"desc\";s:40:\"[ <strong>is_category</strong> ] Primary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:43;a:5:{s:2:\"id\";s:19:\"s2-archive-category\";s:5:\"label\";s:24:\"Archive — Category\";s:4:\"desc\";s:42:\"[ <strong>is_category</strong> ] Secondary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:44;a:5:{s:2:\"id\";s:9:\"s1-search\";s:5:\"label\";s:6:\"Search\";s:4:\"desc\";s:38:\"[ <strong>is_search</strong> ] Primary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:45;a:5:{s:2:\"id\";s:9:\"s2-search\";s:5:\"label\";s:6:\"Search\";s:4:\"desc\";s:40:\"[ <strong>is_search</strong> ] Secondary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:46;a:5:{s:2:\"id\";s:6:\"s1-404\";s:5:\"label\";s:9:\"Error 404\";s:4:\"desc\";s:35:\"[ <strong>is_404</strong> ] Primary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:47;a:5:{s:2:\"id\";s:6:\"s2-404\";s:5:\"label\";s:9:\"Error 404\";s:4:\"desc\";s:37:\"[ <strong>is_404</strong> ] Secondary\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:48;a:5:{s:2:\"id\";s:7:\"s1-page\";s:5:\"label\";s:12:\"Default Page\";s:4:\"desc\";s:93:\"[ <strong>is_page</strong> ] Primary - If a page has a unique sidebar, it will override this.\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:49;a:5:{s:2:\"id\";s:7:\"s2-page\";s:5:\"label\";s:12:\"Default Page\";s:4:\"desc\";s:95:\"[ <strong>is_page</strong> ] Secondary - If a page has a unique sidebar, it will override this.\";s:4:\"type\";s:14:\"sidebar-select\";s:7:\"section\";s:8:\"sidebars\";}i:50;a:7:{s:2:\"id\";s:12:\"social-links\";s:5:\"label\";s:12:\"Social Links\";s:4:\"desc\";s:37:\"Create and organize your social links\";s:4:\"type\";s:9:\"list-item\";s:7:\"section\";s:12:\"social-links\";s:7:\"choices\";a:0:{}s:8:\"settings\";a:4:{i:0;a:6:{s:2:\"id\";s:11:\"social-icon\";s:5:\"label\";s:9:\"Icon Name\";s:4:\"desc\";s:132:\"Font Awesome icon names [<a href=\"http://fortawesome.github.io/Font-Awesome/icons/\" target=\"_blank\"><strong>View all</strong>]</a> \";s:3:\"std\";s:3:\"fa-\";s:4:\"type\";s:4:\"text\";s:7:\"choices\";a:0:{}}i:1;a:6:{s:2:\"id\";s:11:\"social-link\";s:5:\"label\";s:4:\"Link\";s:4:\"desc\";s:39:\"Enter the full url for your icon button\";s:3:\"std\";s:7:\"http://\";s:4:\"type\";s:4:\"text\";s:7:\"choices\";a:0:{}}i:2;a:6:{s:2:\"id\";s:12:\"social-color\";s:5:\"label\";s:10:\"Icon Color\";s:4:\"desc\";s:43:\"Set a unique color for your icon (optional)\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";}i:3;a:6:{s:2:\"id\";s:13:\"social-target\";s:5:\"label\";s:12:\"Link Options\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"checkbox\";s:7:\"choices\";a:1:{i:0;a:2:{s:5:\"value\";s:6:\"_blank\";s:5:\"label\";s:18:\"Open in new window\";}}}}}i:51;a:6:{s:2:\"id\";s:14:\"dynamic-styles\";s:5:\"label\";s:14:\"Dynamic Styles\";s:4:\"desc\";s:40:\"Turn on to use the styling options below\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:7:\"styling\";}i:52;a:6:{s:2:\"id\";s:5:\"boxed\";s:5:\"label\";s:12:\"Boxed Layout\";s:4:\"desc\";s:18:\"Use a boxed layout\";s:3:\"std\";s:3:\"off\";s:4:\"type\";s:6:\"on-off\";s:7:\"section\";s:7:\"styling\";}i:53;a:7:{s:2:\"id\";s:4:\"font\";s:5:\"label\";s:4:\"Font\";s:4:\"desc\";s:25:\"Select font for the theme\";s:4:\"type\";s:6:\"select\";s:3:\"std\";s:2:\"30\";s:7:\"section\";s:7:\"styling\";s:7:\"choices\";a:15:{i:0;a:2:{s:5:\"value\";s:13:\"titillium-web\";s:5:\"label\";s:34:\"Titillium Web, Latin (Self-hosted)\";}i:1;a:2:{s:5:\"value\";s:17:\"titillium-web-ext\";s:5:\"label\";s:39:\"Titillium Web, Latin-Ext (Google Fonts)\";}i:2;a:2:{s:5:\"value\";s:11:\"droid-serif\";s:5:\"label\";s:33:\"Droid Serif, Latin (Google Fonts)\";}i:3;a:2:{s:5:\"value\";s:15:\"source-sans-pro\";s:5:\"label\";s:41:\"Source Sans Pro, Latin-Ext (Google Fonts)\";}i:4;a:2:{s:5:\"value\";s:4:\"lato\";s:5:\"label\";s:26:\"Lato, Latin (Google Fonts)\";}i:5;a:2:{s:5:\"value\";s:6:\"ubuntu\";s:5:\"label\";s:32:\"Ubuntu, Latin-Ext (Google Fonts)\";}i:6;a:2:{s:5:\"value\";s:10:\"ubuntu-cyr\";s:5:\"label\";s:43:\"Ubuntu, Latin / Cyrillic-Ext (Google Fonts)\";}i:7;a:2:{s:5:\"value\";s:16:\"roboto-condensed\";s:5:\"label\";s:42:\"Roboto Condensed, Latin-Ext (Google Fonts)\";}i:8;a:2:{s:5:\"value\";s:20:\"roboto-condensed-cyr\";s:5:\"label\";s:53:\"Roboto Condensed, Latin / Cyrillic-Ext (Google Fonts)\";}i:9;a:2:{s:5:\"value\";s:9:\"open-sans\";s:5:\"label\";s:35:\"Open Sans, Latin-Ext (Google Fonts)\";}i:10;a:2:{s:5:\"value\";s:13:\"open-sans-cyr\";s:5:\"label\";s:46:\"Open Sans, Latin / Cyrillic-Ext (Google Fonts)\";}i:11;a:2:{s:5:\"value\";s:8:\"pt-serif\";s:5:\"label\";s:34:\"PT Serif, Latin-Ext (Google Fonts)\";}i:12;a:2:{s:5:\"value\";s:12:\"pt-serif-cyr\";s:5:\"label\";s:45:\"PT Serif, Latin / Cyrillic-Ext (Google Fonts)\";}i:13;a:2:{s:5:\"value\";s:5:\"arial\";s:5:\"label\";s:5:\"Arial\";}i:14;a:2:{s:5:\"value\";s:7:\"georgia\";s:5:\"label\";s:7:\"Georgia\";}}}i:54;a:7:{s:2:\"id\";s:15:\"container-width\";s:5:\"label\";s:17:\"Website Max-width\";s:4:\"desc\";s:283:\"Max-width of the container. If you use 2 sidebars, your container should be at least 1200px.<br /><i>Note: For 720px content (default) use <strong>1380px</strong> for 2 sidebars and <strong>1120px</strong> for 1 sidebar. If you use a combination of both, try something inbetween.</i>\";s:3:\"std\";s:4:\"1380\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:7:\"styling\";s:12:\"min_max_step\";s:11:\"1024,1600,1\";}i:55;a:7:{s:2:\"id\";s:15:\"sidebar-padding\";s:5:\"label\";s:13:\"Sidebar Width\";s:4:\"desc\";s:40:\"Change sidebar content padding and width\";s:4:\"type\";s:5:\"radio\";s:3:\"std\";s:2:\"30\";s:7:\"section\";s:7:\"styling\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:2:\"30\";s:5:\"label\";s:45:\"280px primary, 200px secondary (30px padding)\";}i:1;a:2:{s:5:\"value\";s:2:\"20\";s:5:\"label\";s:45:\"300px primary, 220px secondary (20px padding)\";}}}i:56;a:6:{s:2:\"id\";s:7:\"color-1\";s:5:\"label\";s:13:\"Primary Color\";s:3:\"std\";s:7:\"#3b8dbd\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:57;a:6:{s:2:\"id\";s:7:\"color-2\";s:5:\"label\";s:15:\"Secondary Color\";s:3:\"std\";s:7:\"#82b965\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:58;a:6:{s:2:\"id\";s:12:\"color-topbar\";s:5:\"label\";s:17:\"Topbar Background\";s:3:\"std\";s:7:\"#26272b\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:59;a:6:{s:2:\"id\";s:12:\"color-header\";s:5:\"label\";s:17:\"Header Background\";s:3:\"std\";s:7:\"#33363b\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:60;a:6:{s:2:\"id\";s:17:\"color-header-menu\";s:5:\"label\";s:22:\"Header Menu Background\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:61;a:6:{s:2:\"id\";s:12:\"color-footer\";s:5:\"label\";s:17:\"Footer Background\";s:3:\"std\";s:7:\"#33363b\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";s:5:\"class\";s:0:\"\";}i:62;a:7:{s:2:\"id\";s:15:\"logo-max-height\";s:5:\"label\";s:28:\"Header Logo Image Max-height\";s:4:\"desc\";s:75:\"Your logo image should have the double height of this to be high resolution\";s:3:\"std\";s:2:\"60\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:7:\"styling\";s:12:\"min_max_step\";s:8:\"40,200,1\";}i:63;a:7:{s:2:\"id\";s:19:\"image-border-radius\";s:5:\"label\";s:19:\"Image Border Radius\";s:4:\"desc\";s:54:\"Give your thumbnails and layout images rounded corners\";s:3:\"std\";s:1:\"0\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:7:\"styling\";s:12:\"min_max_step\";s:6:\"0,15,1\";}i:64;a:5:{s:2:\"id\";s:15:\"body-background\";s:5:\"label\";s:15:\"Body Background\";s:3:\"std\";s:7:\"#eaeaea\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:7:\"styling\";}}}','yes'),(247,'supernova_file_write_status','failed','yes'),(263,'theme_mods_baskerville','a:10:{i:0;b:0;s:16:\"background_color\";s:6:\"009349\";s:12:\"header_image\";s:20:\"random-default-image\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:16:\"baskerville_logo\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1407625477;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:8:\"footer-a\";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:\"footer-b\";a:0:{}s:8:\"footer-c\";a:0:{}s:7:\"sidebar\";a:0:{}s:18:\"orphaned_widgets_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:18:\"custom_css_post_id\";i:-1;}','no'),(264,'widget_baskerville_dribbble_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(265,'widget_baskerville_flickr_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(266,'widget_baskerville_video_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(269,'theme_mods_flat','a:8:{i:0;b:0;s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:84:\"http://www.monicarenata.com/wp-content/themes/flat/assets/img/default-background.jpg\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1407871119;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{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:6:\"text-3\";}s:18:\"orphaned_widgets_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\";}}}}','no'),(289,'flat_theme_options','a:15:{s:4:\"logo\";s:0:\"\";s:22:\"site_title_font_family\";s:10:\"yesteryear\";s:14:\"header_display\";s:10:\"site_title\";s:7:\"favicon\";s:0:\"\";s:24:\"sidebar_background_color\";s:4:\"#333\";s:15:\"background_size\";s:5:\"cover\";s:18:\"global_font_family\";s:6:\"Roboto\";s:19:\"heading_font_family\";s:11:\"Roboto Slab\";s:23:\"sub_heading_font_family\";s:16:\"Roboto Condensed\";s:21:\"single_featured_image\";s:1:\"1\";s:15:\"single_metadata\";s:1:\"0\";s:17:\"single_author_box\";s:1:\"0\";s:22:\"archive_featured_image\";s:1:\"0\";s:16:\"archive_metadata\";s:1:\"0\";s:15:\"archive_content\";s:1:\"0\";}','yes'),(306,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:50;}}','off'),(796778,'category_children','a:0:{}','yes'),(153,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(154,'widget_calendar','a:4:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:8:\"Calendar\";}i:5;a:0:{}}','yes'),(155,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_akismet_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_mojo_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_widget_twentyfourteen_ephemera','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(160,'theme_mods_twentyfourteen','a:9:{s:16:\"header_textcolor\";s:6:\"f4e7de\";s:16:\"background_color\";s:6:\"f5f5f5\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:23:\"featured_content_layout\";s:4:\"grid\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1407954351;s:4:\"data\";a:8:{s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:1:{i:0;s:6:\"text-3\";}s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"archives-3\";i:1;s:28:\"siteorigin-panels-postloop-4\";i:2;s:28:\"siteorigin-panels-postloop-3\";i:3;s:19:\"metaslider_widget-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-3\";i:1;s:10:\"calendar-2\";i:2;s:6:\"text-5\";}s:18:\"template_1_sidebar\";a:0:{}s:18:\"orphaned_widgets_1\";a:0:{}s:18:\"orphaned_widgets_2\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_3\";a:1:{i:0;s:6:\"text-3\";}}}s:18:\"custom_css_post_id\";i:-1;}','no'),(242,'theme_mods_supernova','a:10:{i:0;b:0;s:16:\"header_textcolor\";s:3:\"000\";s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:77:\"http://www.monicarenata.com/wp-content/themes/supernova/images/background.png\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484535282;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:30:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-3\";i:2;s:10:\"archives-4\";i:3;s:10:\"archives-6\";i:4;s:10:\"archives-8\";i:5;s:8:\"search-3\";i:6;s:8:\"search-4\";i:7;s:8:\"search-6\";i:8;s:8:\"search-7\";i:9;s:6:\"text-5\";i:10;s:6:\"text-7\";i:11;s:6:\"text-9\";i:12;s:12:\"categories-3\";i:13;s:12:\"categories-5\";i:14;s:14:\"recent-posts-3\";i:15;s:11:\"tag_cloud-3\";i:16;s:39:\"facebook_comments_master_widget_viral-2\";i:17;s:39:\"facebook_comments_master_widget_basic-3\";i:18;s:17:\"impact_nav_menu-3\";i:19;s:28:\"siteorigin-panels-postloop-3\";i:20;s:28:\"siteorigin-panels-postloop-4\";i:21;s:28:\"siteorigin-panels-postloop-6\";i:22;s:28:\"siteorigin-panels-postloop-8\";i:23;s:19:\"metaslider_widget-3\";i:24;s:19:\"metaslider_widget-4\";i:25;s:19:\"metaslider_widget-6\";i:26;s:19:\"blog_subscription-3\";i:27;s:11:\"top-posts-3\";i:28;s:18:\"twitter_timeline-2\";i:29;s:18:\"twitter_timeline-4\";}s:15:\"sidebar-widgets\";a:1:{i:0;s:6:\"meta-2\";}s:14:\"footer-widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:0:{}s:18:\"orphaned_widgets_2\";a:0:{}}}}','no'),(164,'recently_activated','a:0:{}','off'),(165,'blogger_importer','a:0:{}','yes'),(166,'blogger_importer_connector','O:26:\"Blogger_Importer_Connector\":5:{s:5:\"token\";s:45:\"1/D3oPTWZmMsY8v4MDiCAuvEARDoWLt1gik31gekS_oII\";s:6:\"secret\";s:24:\"1qZQV7F6OoPl191E9r4LVSDq\";s:8:\"endpoint\";N;s:11:\"oauth_token\";N;s:12:\"callback_url\";N;}','yes'),(167,'blogger_importer_blog_0','a:20:{s:2:\"ID\";i:0;s:12:\"comments_url\";s:65:\"http://www.blogger.com/feeds/4172958600568395558/comments/default\";s:5:\"title\";s:16:\"Black Girl Talks\";s:7:\"summary\";s:0:\"\";s:2:\"id\";s:19:\"4172958600568395558\";s:4:\"host\";s:27:\"blackgirltalks.blogspot.com\";s:7:\"gateway\";N;s:9:\"posts_url\";s:63:\"https://www.blogger.com/feeds/4172958600568395558/posts/default\";s:11:\"total_posts\";i:1;s:14:\"total_comments\";i:0;s:10:\"posts_done\";i:0;s:13:\"comments_done\";i:0;s:13:\"posts_skipped\";i:0;s:16:\"comments_skipped\";i:0;s:11:\"images_done\";i:0;s:15:\"images_progress\";i:0;s:14:\"images_skipped\";i:0;s:10:\"links_done\";i:0;s:14:\"links_progress\";i:0;s:4:\"mode\";s:4:\"init\";}','yes'),(168,'blogger_importer_blog_1','a:20:{s:2:\"ID\";i:1;s:12:\"comments_url\";s:65:\"http://www.blogger.com/feeds/7093462859282565429/comments/default\";s:5:\"title\";s:33:\"Deadly Dishes: Food to Die For!!!\";s:7:\"summary\";s:0:\"\";s:2:\"id\";s:19:\"7093462859282565429\";s:4:\"host\";s:25:\"deadlydishes.blogspot.com\";s:7:\"gateway\";N;s:9:\"posts_url\";s:63:\"https://www.blogger.com/feeds/7093462859282565429/posts/default\";s:11:\"total_posts\";i:1;s:14:\"total_comments\";i:0;s:10:\"posts_done\";i:0;s:13:\"comments_done\";i:0;s:13:\"posts_skipped\";i:0;s:16:\"comments_skipped\";i:0;s:11:\"images_done\";i:0;s:15:\"images_progress\";i:0;s:14:\"images_skipped\";i:0;s:10:\"links_done\";i:0;s:14:\"links_progress\";i:0;s:4:\"mode\";s:4:\"init\";}','yes'),(169,'blogger_importer_blog_2','a:24:{s:2:\"ID\";i:2;s:12:\"comments_url\";s:63:\"http://www.blogger.com/feeds/64832133018470584/comments/default\";s:5:\"title\";s:13:\"Monica Renata\";s:7:\"summary\";s:43:\"A collection of poetry and random thoughts.\";s:2:\"id\";s:17:\"64832133018470584\";s:4:\"host\";s:25:\"monicarenata.blogspot.com\";s:7:\"gateway\";N;s:9:\"posts_url\";s:61:\"https://www.blogger.com/feeds/64832133018470584/posts/default\";s:11:\"total_posts\";i:346;s:14:\"total_comments\";i:37;s:10:\"posts_done\";i:346;s:13:\"comments_done\";i:37;s:13:\"posts_skipped\";i:0;s:16:\"comments_skipped\";i:0;s:11:\"images_done\";i:217;s:15:\"images_progress\";i:346;s:14:\"images_skipped\";i:49;s:10:\"links_done\";i:51;s:14:\"links_progress\";i:346;s:4:\"mode\";s:7:\"authors\";s:16:\"importer_started\";i:1407619363;s:17:\"posts_start_index\";i:347;s:20:\"comments_start_index\";i:38;s:7:\"authors\";a:1:{i:0;a:2:{i:0;s:13:\"Monica Renata\";i:1;i:1;}}}','yes'),(244,'widget_supernova_recentposts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(243,'theme_switched_via_customizer','','yes'),(237,'_transient_twentyfourteen_category_count','49','yes'),(403,'theme_mods_hueman','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:6:\"topbar\";i:0;s:6:\"header\";i:0;s:6:\"footer\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1486172091;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:35:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-3\";i:2;s:10:\"archives-4\";i:3;s:10:\"archives-6\";i:4;s:10:\"archives-8\";i:5;s:11:\"archives-10\";i:6;s:11:\"archives-12\";i:7;s:8:\"search-3\";i:8;s:8:\"search-4\";i:9;s:8:\"search-6\";i:10;s:8:\"search-7\";i:11;s:6:\"text-5\";i:12;s:6:\"text-7\";i:13;s:6:\"text-9\";i:14;s:12:\"categories-3\";i:15;s:12:\"categories-5\";i:16;s:14:\"recent-posts-3\";i:17;s:11:\"tag_cloud-3\";i:18;s:39:\"facebook_comments_master_widget_viral-2\";i:19;s:39:\"facebook_comments_master_widget_basic-3\";i:20;s:17:\"impact_nav_menu-3\";i:21;s:23:\"bwp_gallery_slideshow-3\";i:22;s:28:\"siteorigin-panels-postloop-3\";i:23;s:28:\"siteorigin-panels-postloop-4\";i:24;s:28:\"siteorigin-panels-postloop-8\";i:25;s:28:\"siteorigin-panels-postloop-9\";i:26;s:29:\"siteorigin-panels-postloop-11\";i:27;s:29:\"siteorigin-panels-postloop-13\";i:28;s:19:\"sow-post-carousel-3\";i:29;s:19:\"metaslider_widget-3\";i:30;s:19:\"metaslider_widget-6\";i:31;s:19:\"blog_subscription-3\";i:32;s:11:\"top-posts-3\";i:33;s:18:\"twitter_timeline-2\";i:34;s:18:\"twitter_timeline-4\";}s:18:\"orphaned_widgets_1\";a:0:{}s:7:\"primary\";a:0:{}s:9:\"secondary\";a:0:{}}}}','no'),(404,'widget_alxtabs','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(405,'widget_alxvideo','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(406,'widget_alxposts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(736,'siteorigin_order_number_vantage','','yes'),(535,'ml-slider_children','a:0:{}','yes'),(522,'widget_siteorigin-panels-gallery','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(523,'widget_siteorigin-panels-post-content','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(524,'widget_siteorigin-panels-image','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(525,'widget_siteorigin-panels-embedded-video','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(526,'widget_siteorigin-panels-video','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(527,'widget_origin_animated-image','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(528,'widget_origin_button','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(529,'widget_origin_call-to-action','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(530,'widget_origin_list','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(531,'widget_origin_price-box','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(532,'widget_origin_testimonial','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(511,'vantage_theme_settings','a:21:{s:10:\"logo_image\";s:0:\"\";s:16:\"logo_header_text\";s:41:\"A Collection of Poems and Random Thoughts\";s:17:\"layout_responsive\";b:1;s:12:\"layout_bound\";s:4:\"full\";s:15:\"layout_masthead\";s:0:\"\";s:11:\"layout_menu\";s:0:\"\";s:13:\"layout_footer\";s:0:\"\";s:11:\"home_slider\";s:8:\"meta:572\";s:19:\"home_slider_stretch\";b:1;s:26:\"navigation_use_sticky_menu\";b:1;s:22:\"navigation_menu_search\";b:1;s:32:\"navigation_display_scroll_to_top\";b:1;s:19:\"navigation_post_nav\";b:1;s:20:\"navigation_home_icon\";b:1;s:19:\"blog_archive_layout\";s:4:\"blog\";s:20:\"blog_archive_content\";s:7:\"excerpt\";s:16:\"blog_post_author\";b:1;s:14:\"blog_post_date\";b:1;s:19:\"blog_featured_image\";b:1;s:24:\"blog_featured_image_type\";s:5:\"large\";s:22:\"general_site_info_text\";s:113:\"All Material on this site belongs to Monica Renata Williams. Please do not distribute or copy without permission.\";}','yes'),(516,'widget_impact_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(520,'siteorigin_panels_initial_version','1.5','no'),(534,'metaslider_systemcheck','a:2:{s:16:\"wordPressVersion\";b:0;s:12:\"imageLibrary\";b:0;}','yes'),(547,'widget_metaslider_widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(439,'theme_mods_adventurous','a:10:{i:0;b:0;s:16:\"header_textcolor\";s:6:\"000000\";s:16:\"background_color\";s:6:\"f9f9f9\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1459788307;s:4:\"data\";a:20:{s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-3\";}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-3\";}s:14:\"sidebar-footer\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:19:\"wp_inactive_widgets\";a:21:{i:0;s:10:\"archives-6\";i:1;s:8:\"search-3\";i:2;s:8:\"search-4\";i:3;s:6:\"text-7\";i:4;s:39:\"facebook_comments_master_widget_viral-2\";i:5;s:39:\"facebook_comments_master_widget_basic-3\";i:6;s:28:\"siteorigin-panels-postloop-6\";i:7;s:19:\"blog_subscription-3\";i:8;s:11:\"top-posts-3\";i:9;s:18:\"twitter_timeline-2\";i:10;s:18:\"twitter_timeline-4\";i:11;s:10:\"calendar-2\";i:12;s:10:\"archives-3\";i:13;s:10:\"archives-4\";i:14;s:6:\"text-5\";i:15;s:12:\"categories-3\";i:16;s:14:\"recent-posts-3\";i:17;s:11:\"tag_cloud-3\";i:18;s:28:\"siteorigin-panels-postloop-3\";i:19;s:28:\"siteorigin-panels-postloop-4\";i:20;s:19:\"metaslider_widget-3\";}s:12:\"left-sidebar\";a:5:{i:0;s:8:\"search-4\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-4\";i:3;s:12:\"categories-3\";i:4;s:11:\"tag_cloud-3\";}s:13:\"right-sidebar\";a:4:{i:0;s:10:\"archives-6\";i:1;s:19:\"blog_subscription-3\";i:2;s:11:\"top-posts-3\";i:3;s:18:\"twitter_timeline-4\";}s:12:\"shop-sidebar\";a:5:{i:0;s:28:\"siteorigin-panels-postloop-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-5\";i:3;s:18:\"twitter_timeline-2\";i:4;s:10:\"calendar-2\";}s:11:\"textblock-1\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:11:\"textblock-2\";a:0:{}s:11:\"textblock-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:1:{i:0;s:6:\"text-3\";}s:18:\"template_1_sidebar\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:1:{i:0;s:6:\"text-3\";}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','no'),(1295,'sharing-services','a:2:{s:7:\"visible\";a:6:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:13:\"google-plus-1\";i:3;s:6:\"reddit\";i:4;s:9:\"pinterest\";i:5;s:5:\"email\";}s:6:\"hidden\";a:0:{}}','yes'),(1296,'sharedaddy_disable_resources','0','yes'),(1297,'jetpack-twitter-cards-site-tag','Monica_Renata','yes'),(1323,'widget_blog_subscription','a:5:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:5;a:0:{}i:7;a:0:{}i:9;a:0:{}}','yes'),(1324,'widget_rss_links','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1325,'widget_jetpack_readmill_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1326,'widget_top-posts','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:5;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:10;s:8:\"ordering\";s:5:\"views\";s:5:\"types\";a:1:{i:0;s:4:\"post\";}s:7:\"display\";s:4:\"grid\";}}','yes'),(1327,'widget_jetpack_display_posts_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1328,'widget_grofile','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1329,'widget_facebook-likebox','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:2:{s:5:\"title\";s:19:\"Follow on Facebook:\";s:9:\"like_args\";a:6:{s:4:\"href\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:5:\"width\";i:340;s:6:\"height\";i:432;s:10:\"show_faces\";b:1;s:6:\"stream\";b:0;s:5:\"cover\";b:1;}}}','yes'),(1332,'jetpack_portfolio_posts_per_page','0','yes'),(1764,'siteorigin_panels_notice_dismissed','1.5.4','no'),(1351,'disqus_last_comment_id','4607910301','yes'),(494,'widget_widget_adventurous_social_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(495,'widget_vantage-social-media','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(496,'widget_circleicon-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(497,'widget_headline-widget','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:2:{s:8:\"headline\";s:13:\"Monica Renata\";s:12:\"sub_headline\";s:42:\"A Collection of Poetry and Random Thoughts\";}}','yes'),(498,'widget_siteorigin-panels-postloop','a:7:{i:1;a:0:{}i:15;a:0:{}i:16;a:4:{s:5:\"title\";s:20:\"Poetry from the Past\";s:8:\"template\";s:26:\"template-parts/content.php\";s:4:\"more\";b:1;s:5:\"posts\";s:110:\"post_type=post&date_query={\"after\":\"\",\"before\":\"\"}&orderby=none&order=ASC&posts_per_page=5&sticky=&additional=\";}i:17;a:4:{s:5:\"title\";s:10:\"Past Posts\";s:8:\"template\";s:31:\"template-parts/content-none.php\";s:4:\"more\";b:1;s:5:\"posts\";s:119:\"post_type=post&date_query={\"after\":\"\",\"before\":\"\"}&orderby=none&order=DESC&posts_per_page=10&sticky=exclude&additional=\";}i:18;a:4:{s:5:\"title\";s:11:\"Past Poems:\";s:8:\"template\";s:31:\"template-parts/content-lb-5.php\";s:5:\"posts\";s:74:\"post_type=post&posts_per_page=&order=DESC&orderby=date&sticky=&additional=\";s:4:\"more\";b:0;}i:20;a:1:{s:4:\"more\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(507,'impact_installed','1','yes'),(508,'impact_version','1.5.2','yes'),(4121,'WPLANG','','yes'),(4122,'db_upgraded','','on'),(1268,'disqus_active','1','yes'),(970,'widget_facebook_comments_master_widget_basic','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(1157,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3204640,'jetpack_sync_settings_dedicated_sync_enabled','1','on'),(1572,'wp_mobile_app_promos','0','yes'),(1331,'subscription_options','a:2:{s:10:\"invitation\";s:312:\"Hello and thanks for visiting my website!\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\r\n\r\nThanks, \r\nMonica Renata\r\n\r\nwww.MonicaRenata.com\";s:14:\"comment_follow\";s:325:\"Hello and thanks for visiting my website!\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\r\n\r\nThanks, \r\nMonica Renata\r\n\r\nwww.MonicaRenata.com\";}','yes'),(1269,'disqus_version','2.77','yes'),(1270,'disqus_forum_url','monicarenata','yes'),(1271,'disqus_cc_fix','1','yes'),(1272,'disqus_api_key','Gc1caBQf91NqMDGh7dTq7miISvh8TkAZdsdpgXgJjzJWoS1hiG9bpGahPNC5pX8X','yes'),(1273,'disqus_user_api_key','kM6r1m9DVYXigTFHcLbO5EACQeTecW19DqCp7l5KRP633sXuHFJhPDjb6BRzXGra','yes'),(1274,'disqus_replace','all','yes'),(1275,'disqus_partner_key','','yes'),(1276,'disqus_public_key','','yes'),(1277,'disqus_secret_key','','yes'),(1278,'type','scroll','yes'),(1279,'button','','yes'),(1280,'class','','yes'),(1281,'shortcode','no','yes'),(952,'stats_cache','a:2:{s:32:\"b6841d529b84414bbf0a3ed20daf71df\";a:1:{i:1704217082;a:2:{i:0;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:29:\"https://www.monicarenata.com/\";s:5:\"views\";s:1:\"2\";}i:1;a:4:{s:7:\"post_id\";s:4:\"1926\";s:10:\"post_title\";s:9:\"Deep Gaze\";s:14:\"post_permalink\";s:38:\"http://www.monicarenata.com/deep-gaze/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"c3b14a88ae9e69055c8f7a9da35ed246\";a:1:{i:1704217082;a:0:{}}}','yes'),(729346,'widget_lana_download','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(729130,'widget_black-studio-tinymce','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97545,'widget_apsc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97546,'widget_apsi_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97547,'widget_apsl_widget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(97548,'widget_aptf_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97549,'widget_aptf_slider_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343281,'_transient_tc_sidenav_help','disabled','no'),(663972,'wp_installer_clientside_active_tab','popular','no'),(669127,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(669128,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(669129,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663994,'theme_mods_colormag','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(664000,'theme_mods_olsen-light','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(686490,'_transient_annina_categories','1','yes'),(681166,'butterbelly_option_migrate','1','yes'),(681167,'theme_mods_butterbelly','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(681169,'theme_mods_saga','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(681174,'theme_mods_nulis','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(574538,'jetpack_next_sync_time_sync','1770844896','on'),(574551,'open_graph_protocol_site_type','','yes'),(574552,'facebook_admins','a:0:{}','yes'),(574410,'safecss_add','','yes'),(574411,'verification_services_codes','0','yes'),(574416,'safecss_revision_migrated','0','yes'),(574417,'safecss','','yes'),(559802,'_transient_timeout_tc_img_smartload_help','2111196585','no'),(559803,'_transient_tc_img_smartload_help','disabled','no'),(343300,'txfx_plt_schema_version','3','yes'),(5322,'social_notifications_like','on','yes'),(934,'jetpack_active_modules','a:29:{i:0;s:10:\"custom-css\";i:1;s:10:\"shortlinks\";i:2;s:5:\"stats\";i:3;s:13:\"subscriptions\";i:4;s:19:\"gravatar-hovercards\";i:5;s:10:\"sharedaddy\";i:6;s:13:\"post-by-email\";i:7;s:7:\"widgets\";i:8;s:5:\"latex\";i:9;s:9:\"publicize\";i:10;s:17:\"widget-visibility\";i:11;s:5:\"notes\";i:12;s:18:\"verification-tools\";i:13;s:12:\"contact-form\";i:14;s:10:\"shortcodes\";i:15;s:20:\"custom-content-types\";i:16;s:21:\"enhanced-distribution\";i:17;s:8:\"json-api\";i:18;s:6:\"photon\";i:19;s:5:\"likes\";i:20;s:13:\"tiled-gallery\";i:21;s:13:\"related-posts\";i:22;s:8:\"sitemaps\";i:23;s:7:\"protect\";i:24;s:5:\"blaze\";i:25;s:21:\"woocommerce-analytics\";i:26;s:6:\"blocks\";i:27;s:18:\"account-protection\";i:28;s:3:\"sso\";}','yes'),(936,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:4:\"icon\";s:13:\"sharing_label\";b:0;s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:3:{i:0;s:5:\"index\";i:1;s:4:\"post\";i:2;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(937,'stats_options','a:10:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:12:\"do_not_track\";b:1;s:7:\"blog_id\";i:72714519;s:7:\"version\";s:1:\"9\";s:20:\"enable_odyssey_stats\";b:1;s:24:\"odyssey_stats_changed_at\";i:0;s:7:\"notices\";a:0:{}s:5:\"views\";i:1;}','yes'),(1156,'widget_facebook_comments_master_widget_viral','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(957,'facebook_comments_master_installed_version','4.4.2.0','yes'),(958,'facebook_comments_master_name','Facebook Comments Master','yes'),(959,'facebook_comments_master_newest_version','4.4.2.0','yes'),(1573,'tiled_galleries','1','yes'),(1580,'widget_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3167629,'adsns_options','a:14:{s:21:\"plugin_option_version\";s:4:\"1.50\";s:23:\"display_settings_notice\";i:0;s:22:\"suggest_feature_banner\";i:1;s:12:\"widget_title\";s:2:\"Ad\";s:12:\"publisher_id\";s:20:\"pub-4940610698493430\";s:20:\"include_inactive_ads\";i:0;s:8:\"vi_token\";s:0:\"\";s:15:\"vi_publisher_id\";s:0:\"\";s:15:\"vi_banner_color\";s:5:\"white\";s:13:\"first_install\";i:1468169795;s:11:\"use_new_api\";b:1;s:18:\"authorization_code\";s:216:\"{\"access_token\":\"ya29.Ci8bA0hiVHgAi5Zn_ROVkHzF_5466zVD6_s7J6rist9S99AsLQvmS9b6yi--MIEh-Q\",\"token_type\":\"Bearer\",\"expires_in\":3600,\"refresh_token\":\"1\\/qhGy62_QngxjuuUJXdky1PtQWeS4ye-1cJc59G2Qmws\",\"created\":1468169678}\";s:19:\"go_settings_counter\";i:1;s:7:\"adunits\";a:1:{s:20:\"pub-4940610698493430\";a:1:{s:5:\"pages\";a:1:{i:0;a:3:{s:2:\"id\";s:34:\"ca-pub-4940610698493430:1288764906\";s:8:\"position\";s:5:\"after\";s:4:\"code\";s:385:\"<script type="text/javascript">\n google_ad_client = "ca-pub-4940610698493430";\n google_ad_slot = "1288764906";\n google_ad_width = 728;\n google_ad_height = 90;\n</script>\n<!-- MonicaRenata.com -->\n<script type="text/javascript"\nsrc="//pagead2.googlesyndication.com/pagead/show_ads.js">\n</script>\";}}}}}','yes'),(1900,'zedity_settings','a:15:{s:9:\"save_mode\";s:1:\"2\";s:10:\"page_width\";s:3:\"600\";s:11:\"page_height\";s:3:\"600\";s:8:\"webfonts\";a:4:{i:0;s:23:\"Caesar Dressing,cursive\";i:1;s:20:\"Crafty Girls,cursive\";i:2;s:22:\"Jacques Francois,serif\";i:3;s:22:\"Quintessential,cursive\";}s:9:\"watermark\";s:4:\"none\";s:14:\"customfontscss\";s:0:\"\";s:11:\"customfonts\";a:0:{}s:10:\"responsive\";i:0;s:21:\"responsive_noconflict\";b:0;s:14:\"iframe_preview\";b:1;s:12:\"snap_to_page\";b:0;s:13:\"snap_to_boxes\";b:0;s:12:\"snap_to_grid\";b:0;s:10:\"grid_width\";i:100;s:11:\"grid_height\";i:100;}','yes'),(2012,'bstwbsftwppdtplgns_options','a:1:{s:8:\"bws_menu\";a:1:{s:7:\"version\";a:2:{s:33:\"adsense-plugin/adsense-plugin.php\";s:5:\"2.2.9\";s:41:\"contact-form-to-db/contact_form_to_db.php\";s:5:\"2.4.3\";}}}','yes'),(4127,'message','Loading...','yes'),(4128,'siteorigin_panels_settings','a:19:{s:10:\"post-types\";a:4:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"team_member\";i:3;s:8:\"feedback\";}s:22:\"live-editor-quick-link\";b:1;s:15:\"parallax-motion\";s:0:\"\";s:17:\"sidebars-emulator\";b:1;s:14:\"display-teaser\";b:1;s:13:\"display-learn\";b:1;s:10:\"title-html\";s:39:\"<h3 class=\"widget-title\">{{title}}</h3>\";s:16:\"add-widget-class\";b:1;s:15:\"bundled-widgets\";b:1;s:19:\"recommended-widgets\";b:1;s:10:\"responsive\";b:1;s:13:\"tablet-layout\";b:1;s:12:\"tablet-width\";i:1024;s:12:\"mobile-width\";i:780;s:13:\"margin-bottom\";i:35;s:22:\"margin-bottom-last-row\";b:0;s:12:\"margin-sides\";i:30;s:20:\"full-width-container\";s:4:\"body\";s:12:\"copy-content\";b:1;}','yes'),(4137,'enigma_options','a:63:{s:17:\"upload_image_logo\";s:0:\"\";s:6:\"height\";s:2:\"55\";s:5:\"width\";s:3:\"150\";s:10:\"text_title\";s:3:\"off\";s:20:\"upload_image_favicon\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:13:\"slide_image_1\";s:65:\"http://www.monicarenata.com/wp-content/themes/enigma/images/1.png\";s:13:\"slide_title_1\";s:11:\"Slide Title\";s:12:\"slide_desc_1\";s:59:\"tudi v priljubljenih programih za namizno založništvo kot\";s:16:\"slide_btn_text_1\";s:9:\"Read More\";s:16:\"slide_btn_link_1\";s:1:\"#\";s:13:\"slide_image_2\";s:65:\"http://www.monicarenata.com/wp-content/themes/enigma/images/2.png\";s:13:\"slide_title_2\";s:12:\"Lorem Ipsuma\";s:12:\"slide_desc_2\";s:53:\"kombinacijo znakov neznani tiskar združil v vzorčno\";s:16:\"slide_btn_text_2\";s:9:\"Read More\";s:16:\"slide_btn_link_2\";s:1:\"#\";s:13:\"slide_image_3\";s:65:\"http://www.monicarenata.com/wp-content/themes/enigma/images/3.png\";s:13:\"slide_title_3\";s:19:\" zgolj naključno e\";s:12:\"slide_desc_3\";s:44:\"nenačrtovano ali namenoma, z različnimi š\";s:16:\"slide_btn_text_3\";s:9:\"Read More\";s:16:\"slide_btn_link_3\";s:1:\"#\";s:10:\"blog_title\";s:11:\"Latest Blog\";s:8:\"fc_title\";s:75:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. \";s:10:\"fc_btn_txt\";s:13:\"More Features\";s:11:\"fc_btn_link\";s:1:\"#\";s:30:\"header_social_media_in_enabled\";s:2:\"on\";s:34:\"footer_section_social_media_enbled\";s:2:\"on\";s:12:\"twitter_link\";s:20:\"https://twitter.com/\";s:7:\"fb_link\";s:20:\"https://facebook.com\";s:13:\"linkedin_link\";s:20:\"http://linkedin.com/\";s:12:\"youtube_link\";s:20:\"https://youtube.com/\";s:8:\"email_id\";s:17:\"enigma@mymail.com\";s:8:\"phone_no\";s:10:\"0159753586\";s:21:\"footer_customizations\";s:25:\" © 2014 Enigma Theme\";s:17:\"developed_by_text\";s:18:\"Theme Developed By\";s:26:\"developed_by_weblizar_text\";s:15:\"Weblizar Themes\";s:17:\"developed_by_link\";s:20:\"http://weblizar.com/\";s:20:\"home_service_heading\";s:12:\"Our Services\";s:15:\"service_1_title\";s:4:\"Idea\";s:15:\"service_1_icons\";s:12:\"fa fa-google\";s:14:\"service_1_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_1_link\";s:1:\"#\";s:15:\"service_2_title\";s:7:\"Records\";s:15:\"service_2_icons\";s:14:\"fa fa-database\";s:14:\"service_2_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_2_link\";s:1:\"#\";s:15:\"service_3_title\";s:9:\"WordPress\";s:15:\"service_3_icons\";s:15:\"fa fa-wordpress\";s:14:\"service_3_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_3_link\";s:1:\"#\";s:12:\"port_heading\";s:12:\"Recent Works\";s:10:\"port_1_img\";s:74:\"http://www.monicarenata.com/wp-content/themes/enigma/images/portfolio1.png\";s:12:\"port_1_title\";s:11:\"modsætning\";s:11:\"port_1_link\";s:1:\"#\";s:10:\"port_2_img\";s:74:\"http://www.monicarenata.com/wp-content/themes/enigma/images/portfolio2.png\";s:12:\"port_2_title\";s:7:\"udgaver\";s:11:\"port_2_link\";s:1:\"#\";s:10:\"port_3_img\";s:74:\"http://www.monicarenata.com/wp-content/themes/enigma/images/portfolio3.png\";s:12:\"port_3_title\";s:7:\"udgaver\";s:11:\"port_3_link\";s:1:\"#\";s:10:\"port_4_img\";s:74:\"http://www.monicarenata.com/wp-content/themes/enigma/images/portfolio4.png\";s:12:\"port_4_title\";s:7:\"udgaver\";s:11:\"port_4_link\";s:1:\"#\";}','yes'),(4550,'weblizar_options','a:51:{s:17:\"upload_image_logo\";s:0:\"\";s:6:\"height\";s:2:\"55\";s:5:\"width\";s:3:\"150\";s:10:\"text_title\";s:3:\"off\";s:20:\"upload_image_favicon\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:11:\"slide_image\";s:73:\"http://www.monicarenata.com/wp-content/themes/weblizar/images/slide-1.jpg\";s:11:\"slide_title\";s:12:\"Neque porro \";s:10:\"slide_desc\";s:35:\" dolorem ipsum quia dolor sit amet,\";s:14:\"slide_btn_text\";s:9:\"Read More\";s:14:\"slide_btn_link\";s:1:\"#\";s:13:\"slide_image_1\";s:73:\"http://www.monicarenata.com/wp-content/themes/weblizar/images/slide-2.jpg\";s:13:\"slide_title_1\";s:30:\"Vonsectetur, adipisci velit...\";s:12:\"slide_desc_1\";s:41:\"satu fakta bahawa pembaca akan terganggus\";s:16:\"slide_btn_text_1\";s:9:\"Read More\";s:16:\"slide_btn_link_1\";s:1:\"#\";s:13:\"slide_image_2\";s:73:\"http://www.monicarenata.com/wp-content/themes/weblizar/images/slide-3.jpg\";s:13:\"slide_title_2\";s:30:\"echo establecido hace demasia.\";s:12:\"slide_desc_2\";s:72:\"es simplemente el texto de relleno de las imprentas y archivos de texto.\";s:16:\"slide_btn_text_2\";s:9:\"Read More\";s:16:\"slide_btn_link_2\";s:1:\"#\";s:16:\"site_intro_title\";s:15:\"We are weblizar\";s:15:\"site_intro_text\";s:300:\"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur.\";s:10:\"blog_title\";s:11:\"Latest Blog\";s:9:\"blog_text\";s:75:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry..\";s:36:\"social_media_in_contact_page_enabled\";s:2:\"on\";s:34:\"footer_section_social_media_enbled\";s:2:\"on\";s:25:\"social_media_twitter_link\";s:20:\"https://twitter.com/\";s:26:\"social_media_facebook_link\";s:20:\"https://facebook.com\";s:26:\"social_media_linkedin_link\";s:20:\"http://linkedin.com/\";s:24:\"social_media_google_plus\";s:24:\"https://plus.google.com/\";s:21:\"footer_customizations\";s:22:\" @ 2014 Weblizar Theme\";s:17:\"developed_by_text\";s:18:\"Theme Developed By\";s:26:\"developed_by_weblizar_text\";s:8:\"weblizar\";s:17:\"developed_by_link\";s:20:\"http://weblizar.com/\";s:15:\"service_1_title\";s:4:\"Idea\";s:15:\"service_1_icons\";s:15:\"fa fa-pagelines\";s:14:\"service_1_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_1_link\";s:1:\"#\";s:15:\"service_2_title\";s:6:\"Design\";s:15:\"service_2_icons\";s:9:\"fa fa-eye\";s:14:\"service_2_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_2_link\";s:1:\"#\";s:15:\"service_3_title\";s:10:\"management\";s:15:\"service_3_icons\";s:11:\"fa fa-users\";s:14:\"service_3_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_3_link\";s:1:\"#\";s:15:\"service_4_title\";s:11:\"Development\";s:15:\"service_4_icons\";s:10:\"fa fa-code\";s:14:\"service_4_text\";s:109:\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in.\";s:14:\"service_4_link\";s:1:\"#\";}','yes'),(4860,'optionsframework','a:1:{s:2:\"id\";s:10:\"alexandria\";}','yes'),(10051,'jetpack_file_data','a:2:{s:3:\"5.3\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.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:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable 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:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";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:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";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:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup 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:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:63:\"Give visitors an easy way to show they appreciate your content.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";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:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"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:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";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:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";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:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";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:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";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:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";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:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.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:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links 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:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";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:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in 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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";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:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";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:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.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:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}}s:5:\"5.2.1\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.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:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable 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:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";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:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";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:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup 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:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate 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:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";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:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"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:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";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:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";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:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";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:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{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:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";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:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";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:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";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:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.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:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links 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:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";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:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in 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:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";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:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"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:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";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:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";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:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, 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:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.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:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{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:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(11743,'js_class','','yes'),(19150,'butterbelly_options','a:3:{s:11:\"of_template\";a:34:{i:0;a:2:{s:4:\"name\";s:16:\"General Settings\";s:4:\"type\";s:7:\"heading\";}i:1;a:4:{s:4:\"name\";s:11:\"Custom Logo\";s:4:\"desc\";s:31:\"Upload a logo for your Website.\";s:2:\"id\";s:16:\"butterbelly_logo\";s:4:\"type\";s:6:\"upload\";}i:2;a:4:{s:4:\"name\";s:14:\"Custom Favicon\";s:4:\"desc\";s:78:\"Here you can upload a Favicon for your Website. Specified size is 16px x 16px.\";s:2:\"id\";s:19:\"butterbelly_favicon\";s:4:\"type\";s:6:\"upload\";}i:3;a:5:{s:4:\"name\";s:22:\"Mobile Navigation Menu\";s:4:\"desc\";s:38:\"Enter your mobile navigation menu text\";s:2:\"id\";s:15:\"butterbelly_nav\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:4;a:2:{s:4:\"name\";s:20:\"Top Feature Settings\";s:4:\"type\";s:7:\"heading\";}i:5;a:5:{s:4:\"name\";s:17:\"Top Feature Image\";s:4:\"desc\";s:106:\"The optimal size of the image is 1600px wide x 825px height, but it can be varied as per your requirement.\";s:2:\"id\";s:23:\"butterbelly_slideimage1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:6;a:5:{s:4:\"name\";s:19:\"Top Feature Heading\";s:4:\"desc\";s:40:\"Mention the heading for the Top Feature.\";s:2:\"id\";s:26:\"butterbelly_sliderheading1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:7;a:5:{s:4:\"name\";s:26:\"Link for Top Feature Image\";s:4:\"desc\";s:32:\"Mention the URL for first image.\";s:2:\"id\";s:23:\"butterbelly_Sliderlink1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:8;a:5:{s:4:\"name\";s:23:\"Top Feature Description\";s:4:\"desc\";s:61:\"Here mention a short description for the Top Feature heading.\";s:2:\"id\";s:22:\"butterbelly_sliderdes1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:9;a:5:{s:4:\"name\";s:25:\"Link Text for Top Feature\";s:4:\"desc\";s:39:\"Mention the link text for first slider.\";s:2:\"id\";s:26:\"butterbelly_slider_button1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:10;a:2:{s:4:\"name\";s:21:\"Homepage Feature Area\";s:4:\"type\";s:7:\"heading\";}i:11;a:5:{s:4:\"name\";s:27:\"Home Page Blog Heading Text\";s:4:\"desc\";s:94:\"Here you can mention a suitable blog text that will display the recent blog posts with images.\";s:2:\"id\";s:22:\"inkthemes_blog_heading\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:12;a:5:{s:4:\"name\";s:31:\"Home Page Blog Description Text\";s:4:\"desc\";s:94:\"Here you can mention a suitable blog text that will display the recent blog posts with images.\";s:2:\"id\";s:19:\"inkthemes_blog_desc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:13;a:5:{s:4:\"name\";s:19:\"First Feature Image\";s:4:\"desc\";s:68:\"Choose image for your first Feature area. Optimal size 354px x 172px\";s:2:\"id\";s:17:\"butterbelly_fimg1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:14;a:5:{s:4:\"name\";s:26:\"First Feature Circle Image\";s:4:\"desc\";s:75:\"Choose image for your first Feature Circle area. Optimal size 143px x 143px\";s:2:\"id\";s:23:\"butterbelly_circle_img1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:15;a:5:{s:4:\"name\";s:21:\"First Feature Heading\";s:4:\"desc\";s:42:\"Enter your text for first feature heading.\";s:2:\"id\";s:21:\"butterbelly_headline1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:16;a:5:{s:4:\"name\";s:25:\"First Feature Description\";s:4:\"desc\";s:46:\"Enter your text for first feature description.\";s:2:\"id\";s:21:\"butterbelly_firstdesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:17;a:5:{s:4:\"name\";s:18:\"First feature Link\";s:4:\"desc\";s:39:\"Enter your text for First feature Link.\";s:2:\"id\";s:25:\"butterbelly_feature_link1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:18;a:3:{s:4:\"name\";s:32:\"Second Feature Starts From Here.\";s:4:\"type\";s:8:\"saperate\";s:5:\"class\";s:9:\"saperator\";}i:19;a:5:{s:4:\"name\";s:20:\"Second Feature Image\";s:4:\"desc\";s:69:\"Choose image for your second Feature area. Optimal size 354px x 172px\";s:2:\"id\";s:17:\"butterbelly_fimg2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:20;a:5:{s:4:\"name\";s:27:\"Second Feature Circle Image\";s:4:\"desc\";s:76:\"Choose image for your Second Feature Circle area. Optimal size 143px x 143px\";s:2:\"id\";s:23:\"butterbelly_circle_img2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:21;a:5:{s:4:\"name\";s:22:\"Second Feature Heading\";s:4:\"desc\";s:42:\"Enter your heading for second Feature area\";s:2:\"id\";s:21:\"butterbelly_headline2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:22;a:5:{s:4:\"name\";s:26:\"Second feature Description\";s:4:\"desc\";s:47:\"Enter your text for second feature description.\";s:2:\"id\";s:22:\"butterbelly_seconddesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:23;a:5:{s:4:\"name\";s:19:\"Second feature Link\";s:4:\"desc\";s:40:\"Enter your text for Second feature Link.\";s:2:\"id\";s:25:\"butterbelly_feature_link2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:24;a:3:{s:4:\"name\";s:31:\"Third Feature Starts From Here.\";s:4:\"type\";s:8:\"saperate\";s:5:\"class\";s:9:\"saperator\";}i:25;a:5:{s:4:\"name\";s:19:\"Third Feature Image\";s:4:\"desc\";s:73:\"Choose image for your thirdthirdthird Feature. Optimal size 354px x 172px\";s:2:\"id\";s:17:\"butterbelly_fimg3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:26;a:5:{s:4:\"name\";s:26:\"Third Feature Circle Image\";s:4:\"desc\";s:75:\"Choose image for your Third Feature Circle area. Optimal size 143px x 143px\";s:2:\"id\";s:23:\"butterbelly_circle_img3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:27;a:5:{s:4:\"name\";s:21:\"Third Feature Heading\";s:4:\"desc\";s:41:\"Enter your heading for third Feature area\";s:2:\"id\";s:21:\"butterbelly_headline3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:28;a:5:{s:4:\"name\";s:25:\"Third Feature Description\";s:4:\"desc\";s:46:\"Enter your text for Third Feature description.\";s:2:\"id\";s:21:\"butterbelly_thirddesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:29;a:5:{s:4:\"name\";s:18:\"Third feature Link\";s:4:\"desc\";s:39:\"Enter your text for Third feature Link.\";s:2:\"id\";s:25:\"butterbelly_feature_link3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:30;a:2:{s:4:\"name\";s:15:\"Styling Options\";s:4:\"type\";s:7:\"heading\";}i:31;a:5:{s:4:\"name\";s:10:\"Custom CSS\";s:4:\"desc\";s:81:\"Quickly add your custom CSS code to your theme by writing the code in this block.\";s:2:\"id\";s:21:\"butterbelly_customcss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:32;a:2:{s:4:\"name\";s:15:\"Footer Settings\";s:4:\"type\";s:7:\"heading\";}i:33;a:5:{s:4:\"name\";s:22:\"Footer Contact Details\";s:4:\"desc\";s:99:\"Mention the contact details here which will be displayed on the top right corner of Footer Section.\";s:2:\"id\";s:20:\"butterbelly_topright\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}}s:12:\"of_themename\";s:17:\"ButterBelly Theme\";s:12:\"of_shortname\";s:2:\"of\";}','yes'),(19147,'_transient_twentyfifteen_categories','2','yes'),(22445,'jetpack_security_report','a:0:{}','yes'),(22446,'jetpack_protect_key','2f4e19e37a9efb8b6f483a0909e4c3ae41b80e7a','yes'),(22450,'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.3.1\";s:26:\"site_is_version_controlled\";b:0;}','yes'),(47168,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(47169,'widget_wpcom-goodreads','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(47170,'widget_siteorigin-panels-builder','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(47171,'widget_siteorigin-masonry','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:9:{s:5:\"title\";s:0:\"\";s:9:\"post_type\";s:4:\"page\";s:14:\"posts_per_page\";s:0:\"\";s:7:\"orderby\";s:4:\"rand\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:3:\"cat\";s:1:\"1\";s:10:\"additional\";s:0:\"\";s:10:\"responsive\";b:1;}}','yes'),(47172,'widget_wpcom_social_media_icons_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(47173,'ot_media_post_ID','569','yes'),(22443,'jetpack_private_options','a:3:{s:10:\"blog_token\";s:65:\"zRtnIb^cln8Y9%Z3!huqYH(9@pLg%XSe.kYhP40LjC3wKNtvB@z6*f)gO60DTHIK)\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"4jpS69k7soYDhIFE2D*cu3SlQFIwFWRn.j7lHBqu*RlxOl2lxobqVDwa!1b1JxVfs.1\";}s:9:\"authorize\";s:78:\"MJSVOggkxlMRcqgJmK6RV7uKNHaLJ2rS:SlGy2pUPqzjk0ymboEsIkHBJUCAuxZps:1484588185:1\";}','yes'),(46791,'finished_splitting_shared_terms','1','yes'),(47162,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:-1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(47164,'dcl_do_activation_redirect','1','yes'),(47165,'dcl_version_no','10.2.4','yes'),(61685,'theme_mods_accesspress-ray','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:12:\"header_image\";s:13:\"remove-header\";s:16:\"background_color\";s:6:\"0c7a6b\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1459600321;s:4:\"data\";a:16:{s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-3\";}s:9:\"sidebar-1\";a:5:{i:0;s:28:\"siteorigin-panels-postloop-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-5\";i:3;s:18:\"twitter_timeline-2\";i:4;s:10:\"calendar-2\";}s:14:\"sidebar-footer\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:19:\"wp_inactive_widgets\";a:5:{i:0;s:10:\"archives-3\";i:1;s:28:\"siteorigin-panels-postloop-4\";i:2;s:28:\"siteorigin-panels-postloop-3\";i:3;s:19:\"metaslider_widget-3\";i:4;s:39:\"facebook_comments_master_widget_viral-2\";}s:12:\"left-sidebar\";a:5:{i:0;s:8:\"search-4\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-4\";i:3;s:12:\"categories-3\";i:4;s:11:\"tag_cloud-3\";}s:13:\"right-sidebar\";a:4:{i:0;s:10:\"archives-6\";i:1;s:19:\"blog_subscription-3\";i:2;s:11:\"top-posts-3\";i:3;s:18:\"twitter_timeline-4\";}s:12:\"shop-sidebar\";a:5:{i:0;s:28:\"siteorigin-panels-postloop-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-5\";i:3;s:18:\"twitter_timeline-2\";i:4;s:10:\"calendar-2\";}s:11:\"textblock-1\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:11:\"textblock-2\";a:0:{}s:11:\"textblock-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:1:{i:0;s:6:\"text-3\";}s:18:\"template_1_sidebar\";a:0:{}}}}','no'),(73490,'accesspress_ray_options','a:73:{s:30:\"accesspress_ray_webpage_layout\";s:9:\"Fullwidth\";s:11:\"show_search\";i:1;s:12:\"media_upload\";s:0:\"\";s:14:\"logo_alignment\";s:6:\"Center\";s:13:\"portfolio_cat\";s:1:\"5\";s:14:\"read_more_text\";s:9:\"Read More\";s:16:\"footer_copyright\";s:13:\"Monica Renata\";s:19:\"call_to_action_post\";s:3:\"275\";s:27:\"call_to_action_post_content\";i:1;s:24:\"call_to_action_post_char\";i:250;s:28:\"call_to_action_post_readmore\";s:9:\"Read More\";s:14:\"featured_title\";s:14:\"Featured Poems\";s:13:\"featured_text\";s:18:\"Click to read more\";s:16:\"show_fontawesome\";i:1;s:14:\"featured_post1\";s:3:\"325\";s:19:\"featured_post1_icon\";s:8:\"fa-heart\";s:14:\"featured_post2\";s:3:\"190\";s:19:\"featured_post2_icon\";s:10:\"fa-heart-o\";s:14:\"featured_post3\";s:3:\"227\";s:19:\"featured_post3_icon\";s:8:\"fa-heart\";s:14:\"featured_post4\";s:4:\"1152\";s:19:\"featured_post4_icon\";s:10:\"fa-heart-o\";s:22:\"featured_post_readmore\";s:9:\"Read More\";s:8:\"blog_cat\";s:1:\"5\";s:16:\"show_blog_number\";i:10;s:13:\"show_blogdate\";i:1;s:12:\"featured_bar\";i:1;s:15:\"testimonial_cat\";s:1:\"5\";s:9:\"show_blog\";i:1;s:10:\"blog_title\";s:12:\"Latest Posts\";s:10:\"google_map\";s:0:\"\";s:15:\"contact_address\";s:0:\"\";s:14:\"slider_options\";s:15:\"cat_post_slider\";s:7:\"slider1\";s:1:\"0\";s:7:\"slider2\";s:1:\"0\";s:7:\"slider3\";s:1:\"0\";s:7:\"slider4\";s:1:\"0\";s:10:\"slider_cat\";s:1:\"5\";s:11:\"show_slider\";s:3:\"yes\";s:17:\"slider_show_pager\";s:4:\"yes1\";s:20:\"slider_show_controls\";s:4:\"yes2\";s:11:\"slider_mode\";s:4:\"fade\";s:11:\"slider_auto\";s:4:\"yes3\";s:12:\"slider_speed\";i:5000;s:12:\"slider_pause\";i:4000;s:14:\"slider_caption\";s:3:\"no4\";s:24:\"accesspress_ray_facebook\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:23:\"accesspress_ray_twitter\";s:36:\"http://www.twitter.com/monica_renata\";s:21:\"accesspress_ray_gplus\";s:24:\"http://MonicaWilliams517\";s:23:\"accesspress_ray_youtube\";s:0:\"\";s:25:\"accesspress_ray_pinterest\";s:0:\"\";s:24:\"accesspress_ray_linkedin\";s:0:\"\";s:22:\"accesspress_ray_flickr\";s:0:\"\";s:21:\"accesspress_ray_vimeo\";s:0:\"\";s:27:\"accesspress_ray_stumbleupon\";s:0:\"\";s:25:\"accesspress_ray_instagram\";s:0:\"\";s:27:\"accesspress_ray_sound_cloud\";s:0:\"\";s:21:\"accesspress_ray_skype\";s:0:\"\";s:19:\"accesspress_ray_rss\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:11:\"custom_code\";s:0:\"\";s:17:\"responsive_design\";i:0;s:9:\"big_icons\";i:0;s:30:\"leftsidebar_show_latest_events\";i:0;s:29:\"leftsidebar_show_testimonials\";i:0;s:29:\"leftsidebar_show_social_links\";i:0;s:31:\"rightsidebar_show_latest_events\";i:0;s:30:\"rightsidebar_show_testimonials\";i:0;s:30:\"rightsidebar_show_social_links\";i:0;s:18:\"show_social_header\";i:0;s:18:\"show_social_footer\";i:0;s:13:\"show_blogmore\";i:0;s:13:\"hide_blogmore\";i:0;}','yes'),(61686,'safecss_rev','7','yes'),(3167597,'disallowed_keys','','no'),(3167598,'comment_previously_approved','1','yes'),(3167599,'auto_plugin_theme_update_emails','a:0:{}','no'),(3167600,'auto_update_core_dev','enabled','yes'),(3167601,'auto_update_core_minor','enabled','yes'),(3167602,'wp_force_deactivated_plugins','a:0:{}','off'),(3167603,'wp_attachment_pages_enabled','1','yes'),(3167596,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(796657,'zedity_premium_settings','a:16:{s:9:\"save_mode\";s:1:\"2\";s:10:\"page_width\";s:3:\"600\";s:11:\"page_height\";s:3:\"600\";s:15:\"add_blank_lines\";b:1;s:8:\"webfonts\";a:106:{i:0;s:15:\"Astloch,cursive\";i:1;s:10:\"Asul,serif\";i:2;s:18:\"Atomic Age,cursive\";i:3;s:24:\"Averia Serif Libre,serif\";i:4;s:18:\"Bad Script,cursive\";i:5;s:18:\"Baumans,sans-serif\";i:6;s:23:\"Berkshire Swash,cursive\";i:7;s:11:\"Bevan,serif\";i:8;s:12:\"Bitter,serif\";i:9;s:24:\"Bowlby One SC,sans-serif\";i:10;s:16:\"Cabin,sans-serif\";i:11;s:23:\"Caesar Dressing,cursive\";i:12;s:16:\"Carme,sans-serif\";i:13;s:28:\"Cherry Cream Soda,sans-serif\";i:14;s:23:\"Cinzel Decorative,serif\";i:15;s:15:\"Coda,sans-serif\";i:16;s:20:\"Comfortaa,sans-serif\";i:17;s:19:\"Coming Soon,cursive\";i:18;s:20:\"Crafty Girls,cursive\";i:19;s:17:\"Crete Round,serif\";i:20;s:15:\"Crushed,cursive\";i:21;s:19:\"Della Respira,serif\";i:22;s:18:\"Devonshire,cursive\";i:23;s:24:\"Didact Gothic,sans-serif\";i:24;s:16:\"Eagle Lake,serif\";i:25;s:11:\"Elsie,serif\";i:26;s:19:\"Emblema One,cursive\";i:27;s:24:\"Expletus Sans,sans-serif\";i:28;s:15:\"Fauna One,serif\";i:29;s:16:\"Federant,cursive\";i:30;s:11:\"Fenix,serif\";i:31;s:15:\"Flavors,cursive\";i:32;s:28:\"Fredericka the Great,cursive\";i:33;s:19:\"Fredoka One,cursive\";i:34;s:24:\"Gentium Basic,sans-serif\";i:35;s:9:\"Geo,serif\";i:36;s:15:\"Geostar,cursive\";i:37;s:18:\"Germania One,serif\";i:38;s:19:\"Glass Antiqua,serif\";i:39;s:16:\"Goblin One,serif\";i:40;s:18:\"Gochi Hand,cursive\";i:41;s:16:\"Graduate,cursive\";i:42;s:19:\"Grand Hotel,cursive\";i:43;s:17:\"Gruppo,sans-serif\";i:44;s:15:\"Handlee,cursive\";i:45;s:20:\"Happy Monkey,cursive\";i:46;s:21:\"Holtwood One SC,serif\";i:47;s:21:\"IM Fell English,serif\";i:48;s:22:\"Jacques Francois,serif\";i:49;s:22:\"Jim Nightshade,cursive\";i:50;s:23:\"Josefin Slab,sans-serif\";i:51;s:14:\"Kavoon,cursive\";i:52;s:18:\"Keania One,cursive\";i:53;s:15:\"Knewave,cursive\";i:54;s:15:\"Limelight,serif\";i:55;s:13:\"Lustria,serif\";i:56;s:15:\"Macondo,cursive\";i:57;s:23:\"Marcellus SC,sans-serif\";i:58;s:21:\"MedievalSharp,cursive\";i:59;s:13:\"Milonga,serif\";i:60;s:24:\"Miltonian Tattoo,cursive\";i:61;s:17:\"Miltonian,cursive\";i:62;s:15:\"Monoton,cursive\";i:63;s:24:\"Mouse Memoirs,sans-serif\";i:64;s:15:\"Muli,sans-serif\";i:65;s:15:\"Nixie One,serif\";i:66;s:20:\"Nova Mono,sans-serif\";i:67;s:19:\"Nova Script,cursive\";i:68;s:19:\"Orbitron,sans-serif\";i:69;s:21:\"Original Surfer,serif\";i:70;s:9:\"Ovo,serif\";i:71;s:17:\"Oxygen,sans-serif\";i:72;s:25:\"PT Sans Narrow,sans-serif\";i:73;s:21:\"Pinyon Script,cursive\";i:74;s:16:\"Playball,cursive\";i:75;s:22:\"Playfair Display,serif\";i:76;s:10:\"Poly,serif\";i:77;s:18:\"Quattrocento,serif\";i:78;s:20:\"Quicksand,sans-serif\";i:79;s:22:\"Quintessential,cursive\";i:80;s:18:\"Raleway,sans-serif\";i:81;s:15:\"Revalia,cursive\";i:82;s:12:\"Risque,serif\";i:83;s:17:\"Roboto Slab,serif\";i:84;s:17:\"Roboto,sans-serif\";i:85;s:18:\"Rosario,sans-serif\";i:86;s:22:\"Ruslan Display,cursive\";i:87;s:13:\"Salsa,cursive\";i:88;s:16:\"Sancreek,cursive\";i:89;s:26:\"Shadows Into Light,cursive\";i:90;s:17:\"Shanti,sans-serif\";i:91;s:19:\"Six Caps,sans-serif\";i:92;s:12:\"Smokum,serif\";i:93;s:14:\"Smythe,cursive\";i:94;s:18:\"Sonsie One,cursive\";i:95;s:11:\"Stoke,serif\";i:96;s:24:\"Supermercado One,cursive\";i:97;s:17:\"Syncopate,cursive\";i:98;s:17:\"Tangerine,cursive\";i:99;s:13:\"Trocchi,serif\";i:100;s:13:\"Trochut,serif\";i:101;s:26:\"UnifrakturMaguntia,cursive\";i:102;s:15:\"Unkempt,cursive\";i:103;s:13:\"VT323,cursive\";i:104;s:17:\"Varela,sans-serif\";i:105;s:18:\"Yellowtail,cursive\";}s:9:\"watermark\";s:4:\"none\";s:14:\"customfontscss\";s:0:\"\";s:11:\"customfonts\";a:0:{}s:10:\"responsive\";s:1:\"1\";s:21:\"responsive_noconflict\";b:0;s:14:\"iframe_preview\";b:1;s:12:\"snap_to_page\";b:1;s:13:\"snap_to_boxes\";b:0;s:12:\"snap_to_grid\";b:1;s:10:\"grid_width\";s:2:\"25\";s:11:\"grid_height\";s:2:\"25\";}','yes'),(73466,'site_icon','1466','yes'),(73467,'medium_large_size_w','768','yes'),(73468,'medium_large_size_h','0','yes'),(80891,'widget_colormag_featured_posts_slider_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80892,'widget_colormag_highlighted_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80893,'widget_colormag_featured_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80894,'widget_colormag_featured_posts_vertical_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80895,'widget_colormag_728x90_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80896,'widget_colormag_300x250_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80897,'widget_colormag_125x125_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83660,'widget_maskitto_partners','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83661,'widget_maskitto_blog','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83662,'widget_maskitto_include_other_page','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83663,'widget_maskitto_counter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97536,'apccss-settings','a:1:{s:3:\"css\";s:0:\"\";}','yes'),(97537,'apsc_settings','a:7:{s:14:\"social_profile\";a:7:{s:8:\"facebook\";a:1:{s:7:\"page_id\";s:0:\"\";}s:7:\"twitter\";a:5:{s:8:\"username\";s:0:\"\";s:12:\"consumer_key\";s:0:\"\";s:15:\"consumer_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:19:\"access_token_secret\";s:0:\"\";}s:10:\"googlePlus\";a:2:{s:7:\"page_id\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}s:9:\"instagram\";a:3:{s:8:\"username\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:7:\"user_id\";s:0:\"\";}s:7:\"youtube\";a:2:{s:8:\"username\";s:0:\"\";s:11:\"channel_url\";s:0:\"\";}s:10:\"soundcloud\";a:2:{s:8:\"username\";s:0:\"\";s:9:\"client_id\";s:0:\"\";}s:8:\"dribbble\";a:1:{s:8:\"username\";s:0:\"\";}}s:13:\"profile_order\";a:9:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:10:\"googlePlus\";i:3;s:9:\"instagram\";i:4;s:7:\"youtube\";i:5;s:10:\"soundcloud\";i:6;s:8:\"dribbble\";i:7;s:5:\"posts\";i:8;s:8:\"comments\";}s:20:\"social_profile_theme\";s:7:\"theme-1\";s:14:\"counter_format\";s:5:\"comma\";s:12:\"cache_period\";s:0:\"\";s:16:\"disable_font_css\";i:0;s:20:\"disable_frontend_css\";i:0;}','yes'),(97538,'apsl-lite-settings','a:14:{s:16:\"network_ordering\";a:3:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"google\";}s:22:\"apsl_facebook_settings\";a:5:{s:20:\"apsl_facebook_enable\";s:1:\"0\";s:20:\"apsl_facebook_app_id\";s:0:\"\";s:24:\"apsl_facebook_app_secret\";s:0:\"\";s:24:\"apsl_profile_image_width\";s:2:\"50\";s:25:\"apsl_profile_image_height\";s:2:\"50\";}s:21:\"apsl_twitter_settings\";a:3:{s:19:\"apsl_twitter_enable\";s:1:\"0\";s:20:\"apsl_twitter_api_key\";s:0:\"\";s:23:\"apsl_twitter_api_secret\";s:0:\"\";}s:20:\"apsl_google_settings\";a:3:{s:18:\"apsl_google_enable\";s:1:\"0\";s:21:\"apsl_google_client_id\";s:0:\"\";s:25:\"apsl_google_client_secret\";s:0:\"\";}s:26:\"apsl_enable_disable_plugin\";s:3:\"yes\";s:20:\"apsl_display_options\";a:3:{i:0;s:10:\"login_form\";i:1;s:13:\"register_form\";i:2;s:12:\"comment_form\";}s:15:\"apsl_icon_theme\";s:1:\"1\";s:21:\"apsl_title_text_field\";s:15:\"Social connect:\";s:35:\"apsl_custom_logout_redirect_options\";s:4:\"home\";s:32:\"apsl_custom_logout_redirect_link\";s:0:\"\";s:34:\"apsl_custom_login_redirect_options\";s:4:\"home\";s:31:\"apsl_custom_login_redirect_link\";s:0:\"\";s:24:\"apsl_user_avatar_options\";s:7:\"default\";s:36:\"apsl_send_email_notification_options\";s:3:\"yes\";}','yes'),(97539,'apss_share_settings','a:16:{s:13:\"share_options\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:15:\"social_icon_set\";s:1:\"1\";s:15:\"share_positions\";s:13:\"below_content\";s:15:\"social_networks\";a:8:{s:8:\"facebook\";s:1:\"1\";s:7:\"twitter\";s:1:\"1\";s:11:\"google-plus\";s:1:\"1\";s:9:\"pinterest\";s:1:\"1\";s:8:\"linkedin\";s:1:\"1\";s:4:\"digg\";s:1:\"1\";s:5:\"email\";s:1:\"0\";s:5:\"print\";s:1:\"0\";}s:23:\"disable_frontend_assets\";s:1:\"0\";s:10:\"share_text\";s:0:\"\";s:16:\"twitter_username\";s:0:\"\";s:22:\"counter_enable_options\";s:1:\"0\";s:19:\"twitter_counter_api\";s:1:\"1\";s:28:\"total_counter_enable_options\";s:1:\"0\";s:12:\"cache_period\";s:2:\"24\";s:29:\"apss_social_counts_transients\";a:0:{}s:18:\"dialog_box_options\";s:1:\"1\";s:17:\"footer_javascript\";s:1:\"1\";s:18:\"apss_email_subject\";s:30:\"Please visit this link %%url%%\";s:15:\"apss_email_body\";s:110:\"Hey Buddy!, I found this information for you: \"%%title%%\". Here is the website link: %%permalink%%. Thank you.\";}','yes'),(97540,'apss_social_counts_transients','a:3200:{i:0;s:35:\"fb_a209b33b1fb03cfb41ca1b80f1108035\";i:1;s:40:\"twitter_a209b33b1fb03cfb41ca1b80f1108035\";i:2;s:35:\"gp_a209b33b1fb03cfb41ca1b80f1108035\";i:3;s:42:\"pinterest_a209b33b1fb03cfb41ca1b80f1108035\";i:4;s:41:\"linkedin_a209b33b1fb03cfb41ca1b80f1108035\";i:5;s:35:\"fb_bd3e978bb33446f99145b447ff2e8dea\";i:6;s:40:\"twitter_bd3e978bb33446f99145b447ff2e8dea\";i:7;s:35:\"gp_bd3e978bb33446f99145b447ff2e8dea\";i:8;s:42:\"pinterest_bd3e978bb33446f99145b447ff2e8dea\";i:9;s:41:\"linkedin_bd3e978bb33446f99145b447ff2e8dea\";i:10;s:35:\"fb_dae65bab4258fbce9367c5aa1416497c\";i:11;s:40:\"twitter_dae65bab4258fbce9367c5aa1416497c\";i:12;s:35:\"gp_dae65bab4258fbce9367c5aa1416497c\";i:13;s:42:\"pinterest_dae65bab4258fbce9367c5aa1416497c\";i:14;s:41:\"linkedin_dae65bab4258fbce9367c5aa1416497c\";i:15;s:35:\"fb_adc4e07f7ec22be745b8e31d90cb20f1\";i:16;s:40:\"twitter_adc4e07f7ec22be745b8e31d90cb20f1\";i:17;s:35:\"gp_adc4e07f7ec22be745b8e31d90cb20f1\";i:18;s:42:\"pinterest_adc4e07f7ec22be745b8e31d90cb20f1\";i:19;s:41:\"linkedin_adc4e07f7ec22be745b8e31d90cb20f1\";i:20;s:35:\"fb_ed2479e0ec1846581b4e438a93f1f22a\";i:21;s:40:\"twitter_ed2479e0ec1846581b4e438a93f1f22a\";i:22;s:35:\"gp_ed2479e0ec1846581b4e438a93f1f22a\";i:23;s:42:\"pinterest_ed2479e0ec1846581b4e438a93f1f22a\";i:24;s:41:\"linkedin_ed2479e0ec1846581b4e438a93f1f22a\";i:25;s:35:\"fb_c0eddca08f30e29beeea2123cea7fb25\";i:26;s:40:\"twitter_c0eddca08f30e29beeea2123cea7fb25\";i:27;s:35:\"gp_c0eddca08f30e29beeea2123cea7fb25\";i:28;s:42:\"pinterest_c0eddca08f30e29beeea2123cea7fb25\";i:29;s:41:\"linkedin_c0eddca08f30e29beeea2123cea7fb25\";i:30;s:35:\"fb_d3473dd271e12702c8e914101e7697a1\";i:31;s:40:\"twitter_d3473dd271e12702c8e914101e7697a1\";i:32;s:35:\"gp_d3473dd271e12702c8e914101e7697a1\";i:33;s:42:\"pinterest_d3473dd271e12702c8e914101e7697a1\";i:34;s:41:\"linkedin_d3473dd271e12702c8e914101e7697a1\";i:35;s:35:\"fb_afeaa9791e2fc01720f6a730febaf111\";i:36;s:40:\"twitter_afeaa9791e2fc01720f6a730febaf111\";i:37;s:35:\"gp_afeaa9791e2fc01720f6a730febaf111\";i:38;s:35:\"fb_992729ea93a85f9ec1b1f321e14eebe2\";i:39;s:40:\"twitter_992729ea93a85f9ec1b1f321e14eebe2\";i:40;s:35:\"gp_992729ea93a85f9ec1b1f321e14eebe2\";i:41;s:42:\"pinterest_992729ea93a85f9ec1b1f321e14eebe2\";i:42;s:41:\"linkedin_992729ea93a85f9ec1b1f321e14eebe2\";i:43;s:35:\"fb_122be0075a266523c5a33e3bf3157079\";i:44;s:40:\"twitter_122be0075a266523c5a33e3bf3157079\";i:45;s:35:\"gp_122be0075a266523c5a33e3bf3157079\";i:46;s:42:\"pinterest_122be0075a266523c5a33e3bf3157079\";i:47;s:41:\"linkedin_122be0075a266523c5a33e3bf3157079\";i:48;s:35:\"fb_eb3c07ddcd32b7db49b1eeb5fd05ffcf\";i:49;s:40:\"twitter_eb3c07ddcd32b7db49b1eeb5fd05ffcf\";i:50;s:35:\"gp_eb3c07ddcd32b7db49b1eeb5fd05ffcf\";i:51;s:42:\"pinterest_eb3c07ddcd32b7db49b1eeb5fd05ffcf\";i:52;s:41:\"linkedin_eb3c07ddcd32b7db49b1eeb5fd05ffcf\";i:53;s:35:\"fb_b8667a4acc3c542f6438e72cf49159cf\";i:54;s:40:\"twitter_b8667a4acc3c542f6438e72cf49159cf\";i:55;s:35:\"gp_b8667a4acc3c542f6438e72cf49159cf\";i:56;s:42:\"pinterest_b8667a4acc3c542f6438e72cf49159cf\";i:57;s:41:\"linkedin_b8667a4acc3c542f6438e72cf49159cf\";i:58;s:35:\"fb_47dc20978f0e419e95ddf08cac656a26\";i:59;s:40:\"twitter_47dc20978f0e419e95ddf08cac656a26\";i:60;s:35:\"gp_47dc20978f0e419e95ddf08cac656a26\";i:61;s:42:\"pinterest_47dc20978f0e419e95ddf08cac656a26\";i:62;s:41:\"linkedin_47dc20978f0e419e95ddf08cac656a26\";i:63;s:35:\"fb_ae542e6931f70977647de19d782c7ade\";i:64;s:40:\"twitter_ae542e6931f70977647de19d782c7ade\";i:65;s:35:\"gp_ae542e6931f70977647de19d782c7ade\";i:66;s:42:\"pinterest_ae542e6931f70977647de19d782c7ade\";i:67;s:41:\"linkedin_ae542e6931f70977647de19d782c7ade\";i:68;s:35:\"fb_823979bd6e1897ed90d4c40caf429ab1\";i:69;s:40:\"twitter_823979bd6e1897ed90d4c40caf429ab1\";i:70;s:35:\"gp_823979bd6e1897ed90d4c40caf429ab1\";i:71;s:42:\"pinterest_823979bd6e1897ed90d4c40caf429ab1\";i:72;s:41:\"linkedin_823979bd6e1897ed90d4c40caf429ab1\";i:73;s:35:\"fb_724bd09405bbcb21c1d90c0d1f5f254d\";i:74;s:40:\"twitter_724bd09405bbcb21c1d90c0d1f5f254d\";i:75;s:35:\"gp_724bd09405bbcb21c1d90c0d1f5f254d\";i:76;s:42:\"pinterest_724bd09405bbcb21c1d90c0d1f5f254d\";i:77;s:41:\"linkedin_724bd09405bbcb21c1d90c0d1f5f254d\";i:78;s:35:\"fb_e48a986cae1e95d028b0ebd24b4e2247\";i:79;s:40:\"twitter_e48a986cae1e95d028b0ebd24b4e2247\";i:80;s:35:\"gp_e48a986cae1e95d028b0ebd24b4e2247\";i:81;s:42:\"pinterest_e48a986cae1e95d028b0ebd24b4e2247\";i:82;s:41:\"linkedin_e48a986cae1e95d028b0ebd24b4e2247\";i:83;s:35:\"fb_34de17a083e831b6a38ef3b407e132ce\";i:84;s:40:\"twitter_34de17a083e831b6a38ef3b407e132ce\";i:85;s:35:\"gp_34de17a083e831b6a38ef3b407e132ce\";i:86;s:42:\"pinterest_34de17a083e831b6a38ef3b407e132ce\";i:87;s:41:\"linkedin_34de17a083e831b6a38ef3b407e132ce\";i:88;s:35:\"fb_fd4022bb0533de3acb933f96caa73741\";i:89;s:40:\"twitter_fd4022bb0533de3acb933f96caa73741\";i:90;s:35:\"gp_fd4022bb0533de3acb933f96caa73741\";i:91;s:42:\"pinterest_fd4022bb0533de3acb933f96caa73741\";i:92;s:41:\"linkedin_fd4022bb0533de3acb933f96caa73741\";i:93;s:35:\"fb_3f14a3cad894d13e269cb0b6e8f0a152\";i:94;s:40:\"twitter_3f14a3cad894d13e269cb0b6e8f0a152\";i:95;s:35:\"gp_3f14a3cad894d13e269cb0b6e8f0a152\";i:96;s:42:\"pinterest_3f14a3cad894d13e269cb0b6e8f0a152\";i:97;s:41:\"linkedin_3f14a3cad894d13e269cb0b6e8f0a152\";i:98;s:35:\"fb_dff6ebfd410378eeb6e375e54432f1d6\";i:99;s:40:\"twitter_dff6ebfd410378eeb6e375e54432f1d6\";i:100;s:35:\"gp_dff6ebfd410378eeb6e375e54432f1d6\";i:101;s:42:\"pinterest_dff6ebfd410378eeb6e375e54432f1d6\";i:102;s:41:\"linkedin_dff6ebfd410378eeb6e375e54432f1d6\";i:103;s:35:\"fb_24bb4ec2a22ffae476576804437304b1\";i:104;s:40:\"twitter_24bb4ec2a22ffae476576804437304b1\";i:105;s:35:\"gp_24bb4ec2a22ffae476576804437304b1\";i:106;s:42:\"pinterest_24bb4ec2a22ffae476576804437304b1\";i:107;s:41:\"linkedin_24bb4ec2a22ffae476576804437304b1\";i:108;s:35:\"fb_ac4b7b07da113571c158162355afd330\";i:109;s:40:\"twitter_ac4b7b07da113571c158162355afd330\";i:110;s:35:\"gp_ac4b7b07da113571c158162355afd330\";i:111;s:42:\"pinterest_ac4b7b07da113571c158162355afd330\";i:112;s:41:\"linkedin_ac4b7b07da113571c158162355afd330\";i:113;s:35:\"fb_fbdad41be568c3905d3cfedc132dd529\";i:114;s:40:\"twitter_fbdad41be568c3905d3cfedc132dd529\";i:115;s:35:\"gp_fbdad41be568c3905d3cfedc132dd529\";i:116;s:42:\"pinterest_fbdad41be568c3905d3cfedc132dd529\";i:117;s:41:\"linkedin_fbdad41be568c3905d3cfedc132dd529\";i:118;s:35:\"fb_37981a2dcdfd036962435a31d513391d\";i:119;s:40:\"twitter_37981a2dcdfd036962435a31d513391d\";i:120;s:35:\"gp_37981a2dcdfd036962435a31d513391d\";i:121;s:42:\"pinterest_37981a2dcdfd036962435a31d513391d\";i:122;s:41:\"linkedin_37981a2dcdfd036962435a31d513391d\";i:123;s:35:\"fb_8b44953ce2876ef91f9aa5fcb4be43d5\";i:124;s:40:\"twitter_8b44953ce2876ef91f9aa5fcb4be43d5\";i:125;s:35:\"gp_8b44953ce2876ef91f9aa5fcb4be43d5\";i:126;s:42:\"pinterest_8b44953ce2876ef91f9aa5fcb4be43d5\";i:127;s:41:\"linkedin_8b44953ce2876ef91f9aa5fcb4be43d5\";i:128;s:35:\"fb_b2661c5ec95d013f4c60638ffa9ae505\";i:129;s:40:\"twitter_b2661c5ec95d013f4c60638ffa9ae505\";i:130;s:35:\"gp_b2661c5ec95d013f4c60638ffa9ae505\";i:131;s:42:\"pinterest_b2661c5ec95d013f4c60638ffa9ae505\";i:132;s:41:\"linkedin_b2661c5ec95d013f4c60638ffa9ae505\";i:133;s:35:\"fb_c4cc01e08414bd1c2bebbd4828f6ef04\";i:134;s:40:\"twitter_c4cc01e08414bd1c2bebbd4828f6ef04\";i:135;s:35:\"gp_c4cc01e08414bd1c2bebbd4828f6ef04\";i:136;s:42:\"pinterest_c4cc01e08414bd1c2bebbd4828f6ef04\";i:137;s:41:\"linkedin_c4cc01e08414bd1c2bebbd4828f6ef04\";i:138;s:35:\"fb_335fbccee25a47b4fb91b97dd6ac1998\";i:139;s:40:\"twitter_335fbccee25a47b4fb91b97dd6ac1998\";i:140;s:35:\"gp_335fbccee25a47b4fb91b97dd6ac1998\";i:141;s:42:\"pinterest_335fbccee25a47b4fb91b97dd6ac1998\";i:142;s:41:\"linkedin_335fbccee25a47b4fb91b97dd6ac1998\";i:143;s:35:\"fb_67cad998c3ba982ad310b3312f28656e\";i:144;s:40:\"twitter_67cad998c3ba982ad310b3312f28656e\";i:145;s:35:\"gp_67cad998c3ba982ad310b3312f28656e\";i:146;s:42:\"pinterest_67cad998c3ba982ad310b3312f28656e\";i:147;s:41:\"linkedin_67cad998c3ba982ad310b3312f28656e\";i:148;s:35:\"fb_46f81f887bb175226f018e23d5f506d7\";i:149;s:40:\"twitter_46f81f887bb175226f018e23d5f506d7\";i:150;s:35:\"gp_46f81f887bb175226f018e23d5f506d7\";i:151;s:42:\"pinterest_46f81f887bb175226f018e23d5f506d7\";i:152;s:41:\"linkedin_46f81f887bb175226f018e23d5f506d7\";i:153;s:35:\"fb_39e4c560519799386f62c52c7b231ac0\";i:154;s:40:\"twitter_39e4c560519799386f62c52c7b231ac0\";i:155;s:35:\"gp_39e4c560519799386f62c52c7b231ac0\";i:156;s:42:\"pinterest_39e4c560519799386f62c52c7b231ac0\";i:157;s:41:\"linkedin_39e4c560519799386f62c52c7b231ac0\";i:158;s:35:\"fb_638ef986fb0e2d766d7ff284cbfd8c4a\";i:159;s:40:\"twitter_638ef986fb0e2d766d7ff284cbfd8c4a\";i:160;s:35:\"gp_638ef986fb0e2d766d7ff284cbfd8c4a\";i:161;s:42:\"pinterest_638ef986fb0e2d766d7ff284cbfd8c4a\";i:162;s:41:\"linkedin_638ef986fb0e2d766d7ff284cbfd8c4a\";i:163;s:35:\"fb_0d4870104af158e04fc43911592716a7\";i:164;s:40:\"twitter_0d4870104af158e04fc43911592716a7\";i:165;s:35:\"gp_0d4870104af158e04fc43911592716a7\";i:166;s:42:\"pinterest_0d4870104af158e04fc43911592716a7\";i:167;s:41:\"linkedin_0d4870104af158e04fc43911592716a7\";i:168;s:35:\"fb_a47d5c6e7d32087dcb42e42d8e516846\";i:169;s:40:\"twitter_a47d5c6e7d32087dcb42e42d8e516846\";i:170;s:35:\"gp_a47d5c6e7d32087dcb42e42d8e516846\";i:171;s:42:\"pinterest_a47d5c6e7d32087dcb42e42d8e516846\";i:172;s:41:\"linkedin_a47d5c6e7d32087dcb42e42d8e516846\";i:173;s:35:\"fb_6deba2b529201f0ce929e55ab0d75a88\";i:174;s:40:\"twitter_6deba2b529201f0ce929e55ab0d75a88\";i:175;s:35:\"gp_6deba2b529201f0ce929e55ab0d75a88\";i:176;s:42:\"pinterest_6deba2b529201f0ce929e55ab0d75a88\";i:177;s:41:\"linkedin_6deba2b529201f0ce929e55ab0d75a88\";i:178;s:35:\"fb_f34a9ea32c2fbd9485331cac3d81370b\";i:179;s:40:\"twitter_f34a9ea32c2fbd9485331cac3d81370b\";i:180;s:35:\"gp_f34a9ea32c2fbd9485331cac3d81370b\";i:181;s:42:\"pinterest_f34a9ea32c2fbd9485331cac3d81370b\";i:182;s:41:\"linkedin_f34a9ea32c2fbd9485331cac3d81370b\";i:183;s:35:\"fb_bb5d23e0be3db3d79b07d4d86ef46bf4\";i:184;s:40:\"twitter_bb5d23e0be3db3d79b07d4d86ef46bf4\";i:185;s:35:\"gp_bb5d23e0be3db3d79b07d4d86ef46bf4\";i:186;s:42:\"pinterest_bb5d23e0be3db3d79b07d4d86ef46bf4\";i:187;s:41:\"linkedin_bb5d23e0be3db3d79b07d4d86ef46bf4\";i:188;s:35:\"fb_8353ec1bd11353dde783cbe4797ca0ea\";i:189;s:40:\"twitter_8353ec1bd11353dde783cbe4797ca0ea\";i:190;s:35:\"gp_8353ec1bd11353dde783cbe4797ca0ea\";i:191;s:42:\"pinterest_8353ec1bd11353dde783cbe4797ca0ea\";i:192;s:41:\"linkedin_8353ec1bd11353dde783cbe4797ca0ea\";i:193;s:35:\"fb_d137d22152fd08b3c56cc3c70257d5a1\";i:194;s:40:\"twitter_d137d22152fd08b3c56cc3c70257d5a1\";i:195;s:35:\"gp_d137d22152fd08b3c56cc3c70257d5a1\";i:196;s:42:\"pinterest_d137d22152fd08b3c56cc3c70257d5a1\";i:197;s:41:\"linkedin_d137d22152fd08b3c56cc3c70257d5a1\";i:198;s:35:\"fb_77e0314219d8be0c420157022b12584d\";i:199;s:40:\"twitter_77e0314219d8be0c420157022b12584d\";i:200;s:35:\"gp_77e0314219d8be0c420157022b12584d\";i:201;s:42:\"pinterest_77e0314219d8be0c420157022b12584d\";i:202;s:41:\"linkedin_77e0314219d8be0c420157022b12584d\";i:203;s:35:\"fb_ed836947c562d1f514284852a6305388\";i:204;s:40:\"twitter_ed836947c562d1f514284852a6305388\";i:205;s:35:\"gp_ed836947c562d1f514284852a6305388\";i:206;s:42:\"pinterest_ed836947c562d1f514284852a6305388\";i:207;s:41:\"linkedin_ed836947c562d1f514284852a6305388\";i:208;s:35:\"fb_de88dc7abeb150249452a9bb37f9a03d\";i:209;s:40:\"twitter_de88dc7abeb150249452a9bb37f9a03d\";i:210;s:35:\"gp_de88dc7abeb150249452a9bb37f9a03d\";i:211;s:42:\"pinterest_de88dc7abeb150249452a9bb37f9a03d\";i:212;s:41:\"linkedin_de88dc7abeb150249452a9bb37f9a03d\";i:213;s:35:\"fb_e6e9234c93ff8045876494e9a55a8b48\";i:214;s:40:\"twitter_e6e9234c93ff8045876494e9a55a8b48\";i:215;s:35:\"gp_e6e9234c93ff8045876494e9a55a8b48\";i:216;s:42:\"pinterest_e6e9234c93ff8045876494e9a55a8b48\";i:217;s:41:\"linkedin_e6e9234c93ff8045876494e9a55a8b48\";i:218;s:35:\"fb_f73fd781ed748cd3a95e7c4a1318f997\";i:219;s:40:\"twitter_f73fd781ed748cd3a95e7c4a1318f997\";i:220;s:35:\"gp_f73fd781ed748cd3a95e7c4a1318f997\";i:221;s:42:\"pinterest_f73fd781ed748cd3a95e7c4a1318f997\";i:222;s:41:\"linkedin_f73fd781ed748cd3a95e7c4a1318f997\";i:223;s:35:\"fb_0b00930e0275f53ac3642fb0da0b1a48\";i:224;s:40:\"twitter_0b00930e0275f53ac3642fb0da0b1a48\";i:225;s:35:\"gp_0b00930e0275f53ac3642fb0da0b1a48\";i:226;s:42:\"pinterest_0b00930e0275f53ac3642fb0da0b1a48\";i:227;s:41:\"linkedin_0b00930e0275f53ac3642fb0da0b1a48\";i:228;s:35:\"fb_522c9de9e37f30c28adb37957078a833\";i:229;s:40:\"twitter_522c9de9e37f30c28adb37957078a833\";i:230;s:35:\"gp_522c9de9e37f30c28adb37957078a833\";i:231;s:42:\"pinterest_522c9de9e37f30c28adb37957078a833\";i:232;s:41:\"linkedin_522c9de9e37f30c28adb37957078a833\";i:233;s:35:\"fb_9e1b759c09b32783035cd44aabbce5e9\";i:234;s:40:\"twitter_9e1b759c09b32783035cd44aabbce5e9\";i:235;s:35:\"gp_9e1b759c09b32783035cd44aabbce5e9\";i:236;s:42:\"pinterest_9e1b759c09b32783035cd44aabbce5e9\";i:237;s:41:\"linkedin_9e1b759c09b32783035cd44aabbce5e9\";i:238;s:35:\"fb_9683236ca74588c80785782e3b92e4fa\";i:239;s:40:\"twitter_9683236ca74588c80785782e3b92e4fa\";i:240;s:35:\"gp_9683236ca74588c80785782e3b92e4fa\";i:241;s:42:\"pinterest_9683236ca74588c80785782e3b92e4fa\";i:242;s:41:\"linkedin_9683236ca74588c80785782e3b92e4fa\";i:243;s:35:\"fb_b154d64cd018373f03372fa0a844dc10\";i:244;s:40:\"twitter_b154d64cd018373f03372fa0a844dc10\";i:245;s:35:\"gp_b154d64cd018373f03372fa0a844dc10\";i:246;s:42:\"pinterest_b154d64cd018373f03372fa0a844dc10\";i:247;s:41:\"linkedin_b154d64cd018373f03372fa0a844dc10\";i:248;s:35:\"fb_1f994128c6964a8f33a99b3c4f44b81b\";i:249;s:40:\"twitter_1f994128c6964a8f33a99b3c4f44b81b\";i:250;s:35:\"gp_1f994128c6964a8f33a99b3c4f44b81b\";i:251;s:42:\"pinterest_1f994128c6964a8f33a99b3c4f44b81b\";i:252;s:41:\"linkedin_1f994128c6964a8f33a99b3c4f44b81b\";i:253;s:35:\"fb_bfb67be8efdb9e9556f49795bc345267\";i:254;s:40:\"twitter_bfb67be8efdb9e9556f49795bc345267\";i:255;s:35:\"gp_bfb67be8efdb9e9556f49795bc345267\";i:256;s:42:\"pinterest_bfb67be8efdb9e9556f49795bc345267\";i:257;s:41:\"linkedin_bfb67be8efdb9e9556f49795bc345267\";i:258;s:35:\"fb_86e4ad18c6474a6ff3e6604f4de2fb29\";i:259;s:40:\"twitter_86e4ad18c6474a6ff3e6604f4de2fb29\";i:260;s:35:\"gp_86e4ad18c6474a6ff3e6604f4de2fb29\";i:261;s:42:\"pinterest_86e4ad18c6474a6ff3e6604f4de2fb29\";i:262;s:41:\"linkedin_86e4ad18c6474a6ff3e6604f4de2fb29\";i:263;s:35:\"fb_7cc606d0a692c2a2814be5ce4cd81e2f\";i:264;s:40:\"twitter_7cc606d0a692c2a2814be5ce4cd81e2f\";i:265;s:35:\"gp_7cc606d0a692c2a2814be5ce4cd81e2f\";i:266;s:42:\"pinterest_7cc606d0a692c2a2814be5ce4cd81e2f\";i:267;s:41:\"linkedin_7cc606d0a692c2a2814be5ce4cd81e2f\";i:268;s:35:\"fb_fcb2d4e5b5ca13618fc27721cc893b54\";i:269;s:40:\"twitter_fcb2d4e5b5ca13618fc27721cc893b54\";i:270;s:35:\"gp_fcb2d4e5b5ca13618fc27721cc893b54\";i:271;s:42:\"pinterest_fcb2d4e5b5ca13618fc27721cc893b54\";i:272;s:41:\"linkedin_fcb2d4e5b5ca13618fc27721cc893b54\";i:273;s:35:\"fb_fc758f700873b88452ec30f106932b32\";i:274;s:40:\"twitter_fc758f700873b88452ec30f106932b32\";i:275;s:35:\"gp_fc758f700873b88452ec30f106932b32\";i:276;s:42:\"pinterest_fc758f700873b88452ec30f106932b32\";i:277;s:41:\"linkedin_fc758f700873b88452ec30f106932b32\";i:278;s:35:\"fb_a02138ec0d02ec6ea96b451c070bdc20\";i:279;s:40:\"twitter_a02138ec0d02ec6ea96b451c070bdc20\";i:280;s:35:\"gp_a02138ec0d02ec6ea96b451c070bdc20\";i:281;s:42:\"pinterest_a02138ec0d02ec6ea96b451c070bdc20\";i:282;s:41:\"linkedin_a02138ec0d02ec6ea96b451c070bdc20\";i:283;s:35:\"fb_a2c9707c0ace8e32067c7602bdaa36b0\";i:284;s:40:\"twitter_a2c9707c0ace8e32067c7602bdaa36b0\";i:285;s:35:\"gp_a2c9707c0ace8e32067c7602bdaa36b0\";i:286;s:42:\"pinterest_a2c9707c0ace8e32067c7602bdaa36b0\";i:287;s:41:\"linkedin_a2c9707c0ace8e32067c7602bdaa36b0\";i:288;s:35:\"fb_6fc4e501f8b5e5f829c4f8a810ad5d29\";i:289;s:40:\"twitter_6fc4e501f8b5e5f829c4f8a810ad5d29\";i:290;s:35:\"gp_6fc4e501f8b5e5f829c4f8a810ad5d29\";i:291;s:42:\"pinterest_6fc4e501f8b5e5f829c4f8a810ad5d29\";i:292;s:41:\"linkedin_6fc4e501f8b5e5f829c4f8a810ad5d29\";i:293;s:35:\"fb_1c314ea3c383c9ac98bb057cb6e3f233\";i:294;s:40:\"twitter_1c314ea3c383c9ac98bb057cb6e3f233\";i:295;s:35:\"gp_1c314ea3c383c9ac98bb057cb6e3f233\";i:296;s:42:\"pinterest_1c314ea3c383c9ac98bb057cb6e3f233\";i:297;s:41:\"linkedin_1c314ea3c383c9ac98bb057cb6e3f233\";i:298;s:35:\"fb_8a6d58b34fee4ae2f0fa632f1858fba8\";i:299;s:40:\"twitter_8a6d58b34fee4ae2f0fa632f1858fba8\";i:300;s:35:\"gp_8a6d58b34fee4ae2f0fa632f1858fba8\";i:301;s:42:\"pinterest_8a6d58b34fee4ae2f0fa632f1858fba8\";i:302;s:41:\"linkedin_8a6d58b34fee4ae2f0fa632f1858fba8\";i:303;s:35:\"fb_02461d040bd3c1eab7b41723fceb74bc\";i:304;s:40:\"twitter_02461d040bd3c1eab7b41723fceb74bc\";i:305;s:35:\"gp_02461d040bd3c1eab7b41723fceb74bc\";i:306;s:42:\"pinterest_02461d040bd3c1eab7b41723fceb74bc\";i:307;s:41:\"linkedin_02461d040bd3c1eab7b41723fceb74bc\";i:308;s:35:\"fb_a07115dd2e8ec3acc49d52ff27e43028\";i:309;s:40:\"twitter_a07115dd2e8ec3acc49d52ff27e43028\";i:310;s:35:\"gp_a07115dd2e8ec3acc49d52ff27e43028\";i:311;s:42:\"pinterest_a07115dd2e8ec3acc49d52ff27e43028\";i:312;s:41:\"linkedin_a07115dd2e8ec3acc49d52ff27e43028\";i:313;s:35:\"fb_ea96eceb4ddbc5ef8a32bb9aab095183\";i:314;s:40:\"twitter_ea96eceb4ddbc5ef8a32bb9aab095183\";i:315;s:35:\"gp_ea96eceb4ddbc5ef8a32bb9aab095183\";i:316;s:42:\"pinterest_ea96eceb4ddbc5ef8a32bb9aab095183\";i:317;s:41:\"linkedin_ea96eceb4ddbc5ef8a32bb9aab095183\";i:318;s:35:\"fb_91d7851bed172edc2c1ca0675eb745c9\";i:319;s:40:\"twitter_91d7851bed172edc2c1ca0675eb745c9\";i:320;s:35:\"gp_91d7851bed172edc2c1ca0675eb745c9\";i:321;s:42:\"pinterest_91d7851bed172edc2c1ca0675eb745c9\";i:322;s:41:\"linkedin_91d7851bed172edc2c1ca0675eb745c9\";i:323;s:35:\"fb_7d989e31be2bbb468a5ae34245380f65\";i:324;s:40:\"twitter_7d989e31be2bbb468a5ae34245380f65\";i:325;s:35:\"gp_7d989e31be2bbb468a5ae34245380f65\";i:326;s:42:\"pinterest_7d989e31be2bbb468a5ae34245380f65\";i:327;s:41:\"linkedin_7d989e31be2bbb468a5ae34245380f65\";i:328;s:35:\"fb_b767de080f94d551368ce31d65311c3c\";i:329;s:40:\"twitter_b767de080f94d551368ce31d65311c3c\";i:330;s:35:\"gp_b767de080f94d551368ce31d65311c3c\";i:331;s:42:\"pinterest_b767de080f94d551368ce31d65311c3c\";i:332;s:41:\"linkedin_b767de080f94d551368ce31d65311c3c\";i:333;s:35:\"fb_eff3e9cf66c52bcd9d842d4db485a891\";i:334;s:40:\"twitter_eff3e9cf66c52bcd9d842d4db485a891\";i:335;s:35:\"gp_eff3e9cf66c52bcd9d842d4db485a891\";i:336;s:42:\"pinterest_eff3e9cf66c52bcd9d842d4db485a891\";i:337;s:41:\"linkedin_eff3e9cf66c52bcd9d842d4db485a891\";i:338;s:35:\"fb_14c5bb2a80ffb2e123c60386623677c9\";i:339;s:40:\"twitter_14c5bb2a80ffb2e123c60386623677c9\";i:340;s:35:\"gp_14c5bb2a80ffb2e123c60386623677c9\";i:341;s:42:\"pinterest_14c5bb2a80ffb2e123c60386623677c9\";i:342;s:41:\"linkedin_14c5bb2a80ffb2e123c60386623677c9\";i:343;s:35:\"fb_39318c4cabca790070606b6e3d626df5\";i:344;s:40:\"twitter_39318c4cabca790070606b6e3d626df5\";i:345;s:35:\"gp_39318c4cabca790070606b6e3d626df5\";i:346;s:42:\"pinterest_39318c4cabca790070606b6e3d626df5\";i:347;s:41:\"linkedin_39318c4cabca790070606b6e3d626df5\";i:348;s:35:\"fb_23e31c03f4010af11431b15f46e87ccb\";i:349;s:40:\"twitter_23e31c03f4010af11431b15f46e87ccb\";i:350;s:35:\"gp_23e31c03f4010af11431b15f46e87ccb\";i:351;s:42:\"pinterest_23e31c03f4010af11431b15f46e87ccb\";i:352;s:41:\"linkedin_23e31c03f4010af11431b15f46e87ccb\";i:353;s:35:\"fb_8a21882a450069f70f18d5142aa031fd\";i:354;s:40:\"twitter_8a21882a450069f70f18d5142aa031fd\";i:355;s:35:\"gp_8a21882a450069f70f18d5142aa031fd\";i:356;s:42:\"pinterest_8a21882a450069f70f18d5142aa031fd\";i:357;s:41:\"linkedin_8a21882a450069f70f18d5142aa031fd\";i:358;s:35:\"fb_7e654f2fbe5e95505a89fbb65cc4ee39\";i:359;s:40:\"twitter_7e654f2fbe5e95505a89fbb65cc4ee39\";i:360;s:35:\"gp_7e654f2fbe5e95505a89fbb65cc4ee39\";i:361;s:42:\"pinterest_7e654f2fbe5e95505a89fbb65cc4ee39\";i:362;s:41:\"linkedin_7e654f2fbe5e95505a89fbb65cc4ee39\";i:363;s:35:\"fb_1d10066e1241139d4d38c84ede0d311c\";i:364;s:40:\"twitter_1d10066e1241139d4d38c84ede0d311c\";i:365;s:35:\"gp_1d10066e1241139d4d38c84ede0d311c\";i:366;s:42:\"pinterest_1d10066e1241139d4d38c84ede0d311c\";i:367;s:41:\"linkedin_1d10066e1241139d4d38c84ede0d311c\";i:368;s:35:\"fb_5bd58a7430d5b1e5614518163c6c94e2\";i:369;s:40:\"twitter_5bd58a7430d5b1e5614518163c6c94e2\";i:370;s:35:\"gp_5bd58a7430d5b1e5614518163c6c94e2\";i:371;s:42:\"pinterest_5bd58a7430d5b1e5614518163c6c94e2\";i:372;s:41:\"linkedin_5bd58a7430d5b1e5614518163c6c94e2\";i:373;s:35:\"fb_eb6a6fe73229751f9484b29a8de553eb\";i:374;s:40:\"twitter_eb6a6fe73229751f9484b29a8de553eb\";i:375;s:35:\"gp_eb6a6fe73229751f9484b29a8de553eb\";i:376;s:42:\"pinterest_eb6a6fe73229751f9484b29a8de553eb\";i:377;s:41:\"linkedin_eb6a6fe73229751f9484b29a8de553eb\";i:378;s:35:\"fb_bc1bb8a545855e02f893a56b79e8b1aa\";i:379;s:40:\"twitter_bc1bb8a545855e02f893a56b79e8b1aa\";i:380;s:35:\"gp_bc1bb8a545855e02f893a56b79e8b1aa\";i:381;s:42:\"pinterest_bc1bb8a545855e02f893a56b79e8b1aa\";i:382;s:41:\"linkedin_bc1bb8a545855e02f893a56b79e8b1aa\";i:383;s:35:\"fb_f41761ca2bca49ce9e7b9443ba6fa9bf\";i:384;s:40:\"twitter_f41761ca2bca49ce9e7b9443ba6fa9bf\";i:385;s:35:\"gp_f41761ca2bca49ce9e7b9443ba6fa9bf\";i:386;s:42:\"pinterest_f41761ca2bca49ce9e7b9443ba6fa9bf\";i:387;s:41:\"linkedin_f41761ca2bca49ce9e7b9443ba6fa9bf\";i:388;s:35:\"fb_1973ba3717f368af1baed9c347384970\";i:389;s:40:\"twitter_1973ba3717f368af1baed9c347384970\";i:390;s:35:\"gp_1973ba3717f368af1baed9c347384970\";i:391;s:42:\"pinterest_1973ba3717f368af1baed9c347384970\";i:392;s:41:\"linkedin_1973ba3717f368af1baed9c347384970\";i:393;s:35:\"fb_edb44a12079c6cb26f7f65ec55e4227b\";i:394;s:40:\"twitter_edb44a12079c6cb26f7f65ec55e4227b\";i:395;s:35:\"gp_edb44a12079c6cb26f7f65ec55e4227b\";i:396;s:42:\"pinterest_edb44a12079c6cb26f7f65ec55e4227b\";i:397;s:41:\"linkedin_edb44a12079c6cb26f7f65ec55e4227b\";i:398;s:35:\"fb_75c0718907368fe155dfccf4b0e0bbb0\";i:399;s:40:\"twitter_75c0718907368fe155dfccf4b0e0bbb0\";i:400;s:35:\"gp_75c0718907368fe155dfccf4b0e0bbb0\";i:401;s:42:\"pinterest_75c0718907368fe155dfccf4b0e0bbb0\";i:402;s:41:\"linkedin_75c0718907368fe155dfccf4b0e0bbb0\";i:403;s:35:\"fb_34110dc23c08f2a7810806295c7cf001\";i:404;s:40:\"twitter_34110dc23c08f2a7810806295c7cf001\";i:405;s:35:\"gp_34110dc23c08f2a7810806295c7cf001\";i:406;s:42:\"pinterest_34110dc23c08f2a7810806295c7cf001\";i:407;s:41:\"linkedin_34110dc23c08f2a7810806295c7cf001\";i:408;s:35:\"fb_b46bb8a11786c6f65855cf07358f7d73\";i:409;s:40:\"twitter_b46bb8a11786c6f65855cf07358f7d73\";i:410;s:35:\"gp_b46bb8a11786c6f65855cf07358f7d73\";i:411;s:42:\"pinterest_b46bb8a11786c6f65855cf07358f7d73\";i:412;s:41:\"linkedin_b46bb8a11786c6f65855cf07358f7d73\";i:413;s:35:\"fb_9698f875c2d62d105e4b36197d052f65\";i:414;s:40:\"twitter_9698f875c2d62d105e4b36197d052f65\";i:415;s:35:\"gp_9698f875c2d62d105e4b36197d052f65\";i:416;s:42:\"pinterest_9698f875c2d62d105e4b36197d052f65\";i:417;s:41:\"linkedin_9698f875c2d62d105e4b36197d052f65\";i:418;s:35:\"fb_d53991f9e4510dfe32a4f3050bb5ca07\";i:419;s:40:\"twitter_d53991f9e4510dfe32a4f3050bb5ca07\";i:420;s:35:\"gp_d53991f9e4510dfe32a4f3050bb5ca07\";i:421;s:42:\"pinterest_d53991f9e4510dfe32a4f3050bb5ca07\";i:422;s:41:\"linkedin_d53991f9e4510dfe32a4f3050bb5ca07\";i:423;s:35:\"fb_6cefb91de6a1b9e465961d2f4d619259\";i:424;s:40:\"twitter_6cefb91de6a1b9e465961d2f4d619259\";i:425;s:35:\"gp_6cefb91de6a1b9e465961d2f4d619259\";i:426;s:42:\"pinterest_6cefb91de6a1b9e465961d2f4d619259\";i:427;s:41:\"linkedin_6cefb91de6a1b9e465961d2f4d619259\";i:428;s:35:\"fb_a75906c09399aef41168eda6ef0057aa\";i:429;s:40:\"twitter_a75906c09399aef41168eda6ef0057aa\";i:430;s:35:\"gp_a75906c09399aef41168eda6ef0057aa\";i:431;s:42:\"pinterest_a75906c09399aef41168eda6ef0057aa\";i:432;s:41:\"linkedin_a75906c09399aef41168eda6ef0057aa\";i:433;s:35:\"fb_307a7525c58eb7887ab2231da2692e42\";i:434;s:40:\"twitter_307a7525c58eb7887ab2231da2692e42\";i:435;s:35:\"gp_307a7525c58eb7887ab2231da2692e42\";i:436;s:42:\"pinterest_307a7525c58eb7887ab2231da2692e42\";i:437;s:41:\"linkedin_307a7525c58eb7887ab2231da2692e42\";i:438;s:35:\"fb_d08ec072da42130a59405c6306abf599\";i:439;s:40:\"twitter_d08ec072da42130a59405c6306abf599\";i:440;s:35:\"gp_d08ec072da42130a59405c6306abf599\";i:441;s:42:\"pinterest_d08ec072da42130a59405c6306abf599\";i:442;s:41:\"linkedin_d08ec072da42130a59405c6306abf599\";i:443;s:35:\"fb_cb256e4a187a7a6fb1d203702f168b3f\";i:444;s:40:\"twitter_cb256e4a187a7a6fb1d203702f168b3f\";i:445;s:35:\"gp_cb256e4a187a7a6fb1d203702f168b3f\";i:446;s:42:\"pinterest_cb256e4a187a7a6fb1d203702f168b3f\";i:447;s:41:\"linkedin_cb256e4a187a7a6fb1d203702f168b3f\";i:448;s:35:\"fb_6471bfcb73f26a58c4c39b2dfd34f58a\";i:449;s:40:\"twitter_6471bfcb73f26a58c4c39b2dfd34f58a\";i:450;s:35:\"gp_6471bfcb73f26a58c4c39b2dfd34f58a\";i:451;s:42:\"pinterest_6471bfcb73f26a58c4c39b2dfd34f58a\";i:452;s:41:\"linkedin_6471bfcb73f26a58c4c39b2dfd34f58a\";i:453;s:35:\"fb_2fcf9c6ab55cae1abaf5e31f2f9f5617\";i:454;s:40:\"twitter_2fcf9c6ab55cae1abaf5e31f2f9f5617\";i:455;s:35:\"gp_2fcf9c6ab55cae1abaf5e31f2f9f5617\";i:456;s:42:\"pinterest_2fcf9c6ab55cae1abaf5e31f2f9f5617\";i:457;s:41:\"linkedin_2fcf9c6ab55cae1abaf5e31f2f9f5617\";i:458;s:35:\"fb_db404948089e7858fcf857af56f90dbc\";i:459;s:40:\"twitter_db404948089e7858fcf857af56f90dbc\";i:460;s:35:\"gp_db404948089e7858fcf857af56f90dbc\";i:461;s:42:\"pinterest_db404948089e7858fcf857af56f90dbc\";i:462;s:41:\"linkedin_db404948089e7858fcf857af56f90dbc\";i:463;s:35:\"fb_478c1eb6526c47afbeff6f2f7c452364\";i:464;s:40:\"twitter_478c1eb6526c47afbeff6f2f7c452364\";i:465;s:35:\"gp_478c1eb6526c47afbeff6f2f7c452364\";i:466;s:42:\"pinterest_478c1eb6526c47afbeff6f2f7c452364\";i:467;s:41:\"linkedin_478c1eb6526c47afbeff6f2f7c452364\";i:468;s:35:\"fb_855b20f3ff0224bea8ec12b49d1cd951\";i:469;s:40:\"twitter_855b20f3ff0224bea8ec12b49d1cd951\";i:470;s:35:\"gp_855b20f3ff0224bea8ec12b49d1cd951\";i:471;s:42:\"pinterest_855b20f3ff0224bea8ec12b49d1cd951\";i:472;s:41:\"linkedin_855b20f3ff0224bea8ec12b49d1cd951\";i:473;s:35:\"fb_6c9b1335a4029b91023bf5cfdf6cedf5\";i:474;s:40:\"twitter_6c9b1335a4029b91023bf5cfdf6cedf5\";i:475;s:35:\"gp_6c9b1335a4029b91023bf5cfdf6cedf5\";i:476;s:42:\"pinterest_6c9b1335a4029b91023bf5cfdf6cedf5\";i:477;s:41:\"linkedin_6c9b1335a4029b91023bf5cfdf6cedf5\";i:478;s:35:\"fb_57c0057063d12eec75deea4a016223e5\";i:479;s:40:\"twitter_57c0057063d12eec75deea4a016223e5\";i:480;s:35:\"gp_57c0057063d12eec75deea4a016223e5\";i:481;s:42:\"pinterest_57c0057063d12eec75deea4a016223e5\";i:482;s:41:\"linkedin_57c0057063d12eec75deea4a016223e5\";i:483;s:35:\"fb_f763a5818edcef01f08affe2a4462c18\";i:484;s:40:\"twitter_f763a5818edcef01f08affe2a4462c18\";i:485;s:35:\"gp_f763a5818edcef01f08affe2a4462c18\";i:486;s:42:\"pinterest_f763a5818edcef01f08affe2a4462c18\";i:487;s:41:\"linkedin_f763a5818edcef01f08affe2a4462c18\";i:488;s:35:\"fb_254317000354c1c9c780733fc8f36d34\";i:489;s:40:\"twitter_254317000354c1c9c780733fc8f36d34\";i:490;s:35:\"gp_254317000354c1c9c780733fc8f36d34\";i:491;s:42:\"pinterest_254317000354c1c9c780733fc8f36d34\";i:492;s:41:\"linkedin_254317000354c1c9c780733fc8f36d34\";i:493;s:35:\"fb_5ef91b768b67067119557ffcf11fcb47\";i:494;s:40:\"twitter_5ef91b768b67067119557ffcf11fcb47\";i:495;s:35:\"gp_5ef91b768b67067119557ffcf11fcb47\";i:496;s:42:\"pinterest_5ef91b768b67067119557ffcf11fcb47\";i:497;s:41:\"linkedin_5ef91b768b67067119557ffcf11fcb47\";i:498;s:35:\"fb_bed3b8b031f4cc5671a67f7a42ee6262\";i:499;s:40:\"twitter_bed3b8b031f4cc5671a67f7a42ee6262\";i:500;s:35:\"gp_bed3b8b031f4cc5671a67f7a42ee6262\";i:501;s:42:\"pinterest_bed3b8b031f4cc5671a67f7a42ee6262\";i:502;s:41:\"linkedin_bed3b8b031f4cc5671a67f7a42ee6262\";i:503;s:35:\"fb_4ff64341cd85c5b84a145feb71482761\";i:504;s:40:\"twitter_4ff64341cd85c5b84a145feb71482761\";i:505;s:35:\"gp_4ff64341cd85c5b84a145feb71482761\";i:506;s:42:\"pinterest_4ff64341cd85c5b84a145feb71482761\";i:507;s:41:\"linkedin_4ff64341cd85c5b84a145feb71482761\";i:508;s:35:\"fb_12fd32c55be9000769546230a78c17cd\";i:509;s:40:\"twitter_12fd32c55be9000769546230a78c17cd\";i:510;s:35:\"gp_12fd32c55be9000769546230a78c17cd\";i:511;s:42:\"pinterest_12fd32c55be9000769546230a78c17cd\";i:512;s:41:\"linkedin_12fd32c55be9000769546230a78c17cd\";i:513;s:35:\"fb_f8743f174b8585abe879f18ea592d540\";i:514;s:40:\"twitter_f8743f174b8585abe879f18ea592d540\";i:515;s:35:\"gp_f8743f174b8585abe879f18ea592d540\";i:516;s:42:\"pinterest_f8743f174b8585abe879f18ea592d540\";i:517;s:41:\"linkedin_f8743f174b8585abe879f18ea592d540\";i:518;s:35:\"fb_0973a25ac37a91b613ab881f6a5458c1\";i:519;s:40:\"twitter_0973a25ac37a91b613ab881f6a5458c1\";i:520;s:35:\"gp_0973a25ac37a91b613ab881f6a5458c1\";i:521;s:42:\"pinterest_0973a25ac37a91b613ab881f6a5458c1\";i:522;s:41:\"linkedin_0973a25ac37a91b613ab881f6a5458c1\";i:523;s:35:\"fb_bfae3fec272a35aa3786344cc2b63734\";i:524;s:40:\"twitter_bfae3fec272a35aa3786344cc2b63734\";i:525;s:35:\"gp_bfae3fec272a35aa3786344cc2b63734\";i:526;s:42:\"pinterest_bfae3fec272a35aa3786344cc2b63734\";i:527;s:41:\"linkedin_bfae3fec272a35aa3786344cc2b63734\";i:528;s:35:\"fb_25eaa20331f601124d0391d9c235ed0f\";i:529;s:40:\"twitter_25eaa20331f601124d0391d9c235ed0f\";i:530;s:35:\"gp_25eaa20331f601124d0391d9c235ed0f\";i:531;s:42:\"pinterest_25eaa20331f601124d0391d9c235ed0f\";i:532;s:41:\"linkedin_25eaa20331f601124d0391d9c235ed0f\";i:533;s:35:\"fb_5238e8e7caa2388d4cf9cd2e9b3bd1c3\";i:534;s:40:\"twitter_5238e8e7caa2388d4cf9cd2e9b3bd1c3\";i:535;s:35:\"gp_5238e8e7caa2388d4cf9cd2e9b3bd1c3\";i:536;s:42:\"pinterest_5238e8e7caa2388d4cf9cd2e9b3bd1c3\";i:537;s:41:\"linkedin_5238e8e7caa2388d4cf9cd2e9b3bd1c3\";i:538;s:35:\"fb_24e49c26a46060b2931fc0d7ea5ac4e2\";i:539;s:40:\"twitter_24e49c26a46060b2931fc0d7ea5ac4e2\";i:540;s:35:\"gp_24e49c26a46060b2931fc0d7ea5ac4e2\";i:541;s:42:\"pinterest_24e49c26a46060b2931fc0d7ea5ac4e2\";i:542;s:41:\"linkedin_24e49c26a46060b2931fc0d7ea5ac4e2\";i:543;s:35:\"fb_e86d757c996c973a07c9e4c88a5259fb\";i:544;s:40:\"twitter_e86d757c996c973a07c9e4c88a5259fb\";i:545;s:35:\"gp_e86d757c996c973a07c9e4c88a5259fb\";i:546;s:42:\"pinterest_e86d757c996c973a07c9e4c88a5259fb\";i:547;s:41:\"linkedin_e86d757c996c973a07c9e4c88a5259fb\";i:548;s:35:\"fb_9b12c67d57b4f32ceead42e2cdc7b3ea\";i:549;s:40:\"twitter_9b12c67d57b4f32ceead42e2cdc7b3ea\";i:550;s:35:\"gp_9b12c67d57b4f32ceead42e2cdc7b3ea\";i:551;s:42:\"pinterest_9b12c67d57b4f32ceead42e2cdc7b3ea\";i:552;s:41:\"linkedin_9b12c67d57b4f32ceead42e2cdc7b3ea\";i:553;s:35:\"fb_1054738e282be8549e6b89e20839557a\";i:554;s:40:\"twitter_1054738e282be8549e6b89e20839557a\";i:555;s:35:\"gp_1054738e282be8549e6b89e20839557a\";i:556;s:42:\"pinterest_1054738e282be8549e6b89e20839557a\";i:557;s:41:\"linkedin_1054738e282be8549e6b89e20839557a\";i:558;s:35:\"fb_cfbb584a1da7134b5e1f27b58e473693\";i:559;s:40:\"twitter_cfbb584a1da7134b5e1f27b58e473693\";i:560;s:35:\"gp_cfbb584a1da7134b5e1f27b58e473693\";i:561;s:42:\"pinterest_cfbb584a1da7134b5e1f27b58e473693\";i:562;s:41:\"linkedin_cfbb584a1da7134b5e1f27b58e473693\";i:563;s:35:\"fb_b54d6b5b3ddd051b99eaff15a5fb27e6\";i:564;s:40:\"twitter_b54d6b5b3ddd051b99eaff15a5fb27e6\";i:565;s:35:\"gp_b54d6b5b3ddd051b99eaff15a5fb27e6\";i:566;s:42:\"pinterest_b54d6b5b3ddd051b99eaff15a5fb27e6\";i:567;s:41:\"linkedin_b54d6b5b3ddd051b99eaff15a5fb27e6\";i:568;s:35:\"fb_e0b20b775e04cf6a991b2bba4781ad9e\";i:569;s:40:\"twitter_e0b20b775e04cf6a991b2bba4781ad9e\";i:570;s:35:\"gp_e0b20b775e04cf6a991b2bba4781ad9e\";i:571;s:42:\"pinterest_e0b20b775e04cf6a991b2bba4781ad9e\";i:572;s:41:\"linkedin_e0b20b775e04cf6a991b2bba4781ad9e\";i:573;s:35:\"fb_12f22fca8b2b7303068e75f7ba10457d\";i:574;s:40:\"twitter_12f22fca8b2b7303068e75f7ba10457d\";i:575;s:35:\"gp_12f22fca8b2b7303068e75f7ba10457d\";i:576;s:42:\"pinterest_12f22fca8b2b7303068e75f7ba10457d\";i:577;s:41:\"linkedin_12f22fca8b2b7303068e75f7ba10457d\";i:578;s:35:\"fb_ea09a14f6d90e94b95e2ba0d502247d0\";i:579;s:40:\"twitter_ea09a14f6d90e94b95e2ba0d502247d0\";i:580;s:35:\"gp_ea09a14f6d90e94b95e2ba0d502247d0\";i:581;s:42:\"pinterest_ea09a14f6d90e94b95e2ba0d502247d0\";i:582;s:41:\"linkedin_ea09a14f6d90e94b95e2ba0d502247d0\";i:583;s:35:\"fb_9e03a8186325aa6d7e9c1865f64b8492\";i:584;s:40:\"twitter_9e03a8186325aa6d7e9c1865f64b8492\";i:585;s:35:\"gp_9e03a8186325aa6d7e9c1865f64b8492\";i:586;s:42:\"pinterest_9e03a8186325aa6d7e9c1865f64b8492\";i:587;s:41:\"linkedin_9e03a8186325aa6d7e9c1865f64b8492\";i:588;s:35:\"fb_c3c6c06fb86bd10b382e213ba3103c02\";i:589;s:40:\"twitter_c3c6c06fb86bd10b382e213ba3103c02\";i:590;s:35:\"gp_c3c6c06fb86bd10b382e213ba3103c02\";i:591;s:42:\"pinterest_c3c6c06fb86bd10b382e213ba3103c02\";i:592;s:41:\"linkedin_c3c6c06fb86bd10b382e213ba3103c02\";i:593;s:35:\"fb_ca3237f8569ca8c2d2507c16ce6d690a\";i:594;s:40:\"twitter_ca3237f8569ca8c2d2507c16ce6d690a\";i:595;s:35:\"gp_ca3237f8569ca8c2d2507c16ce6d690a\";i:596;s:42:\"pinterest_ca3237f8569ca8c2d2507c16ce6d690a\";i:597;s:41:\"linkedin_ca3237f8569ca8c2d2507c16ce6d690a\";i:598;s:35:\"fb_d8f21de1e615234dcbc9f0cc2a0f27ee\";i:599;s:40:\"twitter_d8f21de1e615234dcbc9f0cc2a0f27ee\";i:600;s:35:\"gp_d8f21de1e615234dcbc9f0cc2a0f27ee\";i:601;s:42:\"pinterest_d8f21de1e615234dcbc9f0cc2a0f27ee\";i:602;s:41:\"linkedin_d8f21de1e615234dcbc9f0cc2a0f27ee\";i:603;s:35:\"fb_024ddb35bf60ff1f96c703bca4f73062\";i:604;s:40:\"twitter_024ddb35bf60ff1f96c703bca4f73062\";i:605;s:35:\"gp_024ddb35bf60ff1f96c703bca4f73062\";i:606;s:42:\"pinterest_024ddb35bf60ff1f96c703bca4f73062\";i:607;s:41:\"linkedin_024ddb35bf60ff1f96c703bca4f73062\";i:608;s:35:\"fb_0acaa4f8768e7a76748f05631c9d3b14\";i:609;s:40:\"twitter_0acaa4f8768e7a76748f05631c9d3b14\";i:610;s:35:\"gp_0acaa4f8768e7a76748f05631c9d3b14\";i:611;s:42:\"pinterest_0acaa4f8768e7a76748f05631c9d3b14\";i:612;s:41:\"linkedin_0acaa4f8768e7a76748f05631c9d3b14\";i:613;s:35:\"fb_111773b8e75de96795d4109993e9ac80\";i:614;s:40:\"twitter_111773b8e75de96795d4109993e9ac80\";i:615;s:35:\"gp_111773b8e75de96795d4109993e9ac80\";i:616;s:42:\"pinterest_111773b8e75de96795d4109993e9ac80\";i:617;s:41:\"linkedin_111773b8e75de96795d4109993e9ac80\";i:618;s:35:\"fb_6166f1f633577233df960f7fcd032bb5\";i:619;s:40:\"twitter_6166f1f633577233df960f7fcd032bb5\";i:620;s:35:\"gp_6166f1f633577233df960f7fcd032bb5\";i:621;s:42:\"pinterest_6166f1f633577233df960f7fcd032bb5\";i:622;s:41:\"linkedin_6166f1f633577233df960f7fcd032bb5\";i:623;s:35:\"fb_a3465045f3b90b7d5423d2447f65a319\";i:624;s:40:\"twitter_a3465045f3b90b7d5423d2447f65a319\";i:625;s:35:\"gp_a3465045f3b90b7d5423d2447f65a319\";i:626;s:42:\"pinterest_a3465045f3b90b7d5423d2447f65a319\";i:627;s:41:\"linkedin_a3465045f3b90b7d5423d2447f65a319\";i:628;s:35:\"fb_62a76479a70802dd3a42362715f72f13\";i:629;s:40:\"twitter_62a76479a70802dd3a42362715f72f13\";i:630;s:35:\"gp_62a76479a70802dd3a42362715f72f13\";i:631;s:42:\"pinterest_62a76479a70802dd3a42362715f72f13\";i:632;s:41:\"linkedin_62a76479a70802dd3a42362715f72f13\";i:633;s:35:\"fb_9c94a5a24bd111d03d8939d58e85463e\";i:634;s:40:\"twitter_9c94a5a24bd111d03d8939d58e85463e\";i:635;s:35:\"gp_9c94a5a24bd111d03d8939d58e85463e\";i:636;s:42:\"pinterest_9c94a5a24bd111d03d8939d58e85463e\";i:637;s:41:\"linkedin_9c94a5a24bd111d03d8939d58e85463e\";i:638;s:35:\"fb_da3b88f1cf6236c103fff03e6926b8d4\";i:639;s:40:\"twitter_da3b88f1cf6236c103fff03e6926b8d4\";i:640;s:35:\"gp_da3b88f1cf6236c103fff03e6926b8d4\";i:641;s:42:\"pinterest_da3b88f1cf6236c103fff03e6926b8d4\";i:642;s:41:\"linkedin_da3b88f1cf6236c103fff03e6926b8d4\";i:643;s:35:\"fb_1290233d753eba40e80580efcbc114b7\";i:644;s:40:\"twitter_1290233d753eba40e80580efcbc114b7\";i:645;s:35:\"gp_1290233d753eba40e80580efcbc114b7\";i:646;s:42:\"pinterest_1290233d753eba40e80580efcbc114b7\";i:647;s:41:\"linkedin_1290233d753eba40e80580efcbc114b7\";i:648;s:35:\"fb_45ab776666809f85225cba5fbb208bf6\";i:649;s:40:\"twitter_45ab776666809f85225cba5fbb208bf6\";i:650;s:35:\"gp_45ab776666809f85225cba5fbb208bf6\";i:651;s:42:\"pinterest_45ab776666809f85225cba5fbb208bf6\";i:652;s:41:\"linkedin_45ab776666809f85225cba5fbb208bf6\";i:653;s:35:\"fb_ddc61262f909e834aea36a4bf5ac67ba\";i:654;s:40:\"twitter_ddc61262f909e834aea36a4bf5ac67ba\";i:655;s:35:\"gp_ddc61262f909e834aea36a4bf5ac67ba\";i:656;s:42:\"pinterest_ddc61262f909e834aea36a4bf5ac67ba\";i:657;s:41:\"linkedin_ddc61262f909e834aea36a4bf5ac67ba\";i:658;s:35:\"fb_cf4f5466010a3fbd63d62093453abc4e\";i:659;s:40:\"twitter_cf4f5466010a3fbd63d62093453abc4e\";i:660;s:35:\"gp_cf4f5466010a3fbd63d62093453abc4e\";i:661;s:42:\"pinterest_cf4f5466010a3fbd63d62093453abc4e\";i:662;s:41:\"linkedin_cf4f5466010a3fbd63d62093453abc4e\";i:663;s:35:\"fb_10154bce8821d90c9d72eb208adb86bf\";i:664;s:40:\"twitter_10154bce8821d90c9d72eb208adb86bf\";i:665;s:35:\"gp_10154bce8821d90c9d72eb208adb86bf\";i:666;s:42:\"pinterest_10154bce8821d90c9d72eb208adb86bf\";i:667;s:41:\"linkedin_10154bce8821d90c9d72eb208adb86bf\";i:668;s:35:\"fb_a77fa15733c87f31c8a55d4b608b042d\";i:669;s:40:\"twitter_a77fa15733c87f31c8a55d4b608b042d\";i:670;s:35:\"gp_a77fa15733c87f31c8a55d4b608b042d\";i:671;s:42:\"pinterest_a77fa15733c87f31c8a55d4b608b042d\";i:672;s:41:\"linkedin_a77fa15733c87f31c8a55d4b608b042d\";i:673;s:35:\"fb_537863f0fbbd4e2a5abc2edaecd25e87\";i:674;s:40:\"twitter_537863f0fbbd4e2a5abc2edaecd25e87\";i:675;s:35:\"gp_537863f0fbbd4e2a5abc2edaecd25e87\";i:676;s:42:\"pinterest_537863f0fbbd4e2a5abc2edaecd25e87\";i:677;s:41:\"linkedin_537863f0fbbd4e2a5abc2edaecd25e87\";i:678;s:35:\"fb_ec9cb63413b6a53eb6bdbef343249d89\";i:679;s:40:\"twitter_ec9cb63413b6a53eb6bdbef343249d89\";i:680;s:35:\"gp_ec9cb63413b6a53eb6bdbef343249d89\";i:681;s:42:\"pinterest_ec9cb63413b6a53eb6bdbef343249d89\";i:682;s:41:\"linkedin_ec9cb63413b6a53eb6bdbef343249d89\";i:683;s:35:\"fb_5aa33855aa576eb2ca07893586eec7ae\";i:684;s:40:\"twitter_5aa33855aa576eb2ca07893586eec7ae\";i:685;s:35:\"gp_5aa33855aa576eb2ca07893586eec7ae\";i:686;s:42:\"pinterest_5aa33855aa576eb2ca07893586eec7ae\";i:687;s:41:\"linkedin_5aa33855aa576eb2ca07893586eec7ae\";i:688;s:35:\"fb_05075c85581824f8ead159ddb9836e44\";i:689;s:40:\"twitter_05075c85581824f8ead159ddb9836e44\";i:690;s:35:\"gp_05075c85581824f8ead159ddb9836e44\";i:691;s:42:\"pinterest_05075c85581824f8ead159ddb9836e44\";i:692;s:41:\"linkedin_05075c85581824f8ead159ddb9836e44\";i:693;s:35:\"fb_20f660e085e42a1ad5298136574d0214\";i:694;s:40:\"twitter_20f660e085e42a1ad5298136574d0214\";i:695;s:35:\"gp_20f660e085e42a1ad5298136574d0214\";i:696;s:42:\"pinterest_20f660e085e42a1ad5298136574d0214\";i:697;s:41:\"linkedin_20f660e085e42a1ad5298136574d0214\";i:698;s:35:\"fb_af1847d40274a13b66a979d098f73be1\";i:699;s:40:\"twitter_af1847d40274a13b66a979d098f73be1\";i:700;s:35:\"gp_af1847d40274a13b66a979d098f73be1\";i:701;s:42:\"pinterest_af1847d40274a13b66a979d098f73be1\";i:702;s:41:\"linkedin_af1847d40274a13b66a979d098f73be1\";i:703;s:35:\"fb_090f6921966415d9e1af9f5c042eef2d\";i:704;s:40:\"twitter_090f6921966415d9e1af9f5c042eef2d\";i:705;s:35:\"gp_090f6921966415d9e1af9f5c042eef2d\";i:706;s:42:\"pinterest_090f6921966415d9e1af9f5c042eef2d\";i:707;s:41:\"linkedin_090f6921966415d9e1af9f5c042eef2d\";i:708;s:35:\"fb_e27868ec8ce41f33eef90636b72c411e\";i:709;s:40:\"twitter_e27868ec8ce41f33eef90636b72c411e\";i:710;s:35:\"gp_e27868ec8ce41f33eef90636b72c411e\";i:711;s:42:\"pinterest_e27868ec8ce41f33eef90636b72c411e\";i:712;s:41:\"linkedin_e27868ec8ce41f33eef90636b72c411e\";i:713;s:35:\"fb_b2656249e03de93c9721957508d48e83\";i:714;s:40:\"twitter_b2656249e03de93c9721957508d48e83\";i:715;s:35:\"gp_b2656249e03de93c9721957508d48e83\";i:716;s:42:\"pinterest_b2656249e03de93c9721957508d48e83\";i:717;s:41:\"linkedin_b2656249e03de93c9721957508d48e83\";i:718;s:35:\"fb_6ec4a2ffeada119fe6b8a8eecb567c25\";i:719;s:40:\"twitter_6ec4a2ffeada119fe6b8a8eecb567c25\";i:720;s:35:\"gp_6ec4a2ffeada119fe6b8a8eecb567c25\";i:721;s:42:\"pinterest_6ec4a2ffeada119fe6b8a8eecb567c25\";i:722;s:41:\"linkedin_6ec4a2ffeada119fe6b8a8eecb567c25\";i:723;s:35:\"fb_b4654ca727f2ce55145fa7f1fd2d45c8\";i:724;s:40:\"twitter_b4654ca727f2ce55145fa7f1fd2d45c8\";i:725;s:35:\"gp_b4654ca727f2ce55145fa7f1fd2d45c8\";i:726;s:42:\"pinterest_b4654ca727f2ce55145fa7f1fd2d45c8\";i:727;s:41:\"linkedin_b4654ca727f2ce55145fa7f1fd2d45c8\";i:728;s:35:\"fb_ea90ec5ed69828321412f3b2b595b5ba\";i:729;s:40:\"twitter_ea90ec5ed69828321412f3b2b595b5ba\";i:730;s:35:\"gp_ea90ec5ed69828321412f3b2b595b5ba\";i:731;s:42:\"pinterest_ea90ec5ed69828321412f3b2b595b5ba\";i:732;s:41:\"linkedin_ea90ec5ed69828321412f3b2b595b5ba\";i:733;s:35:\"fb_24b9caaf7ba9ca99c733ac3b012d38e0\";i:734;s:40:\"twitter_24b9caaf7ba9ca99c733ac3b012d38e0\";i:735;s:35:\"gp_24b9caaf7ba9ca99c733ac3b012d38e0\";i:736;s:42:\"pinterest_24b9caaf7ba9ca99c733ac3b012d38e0\";i:737;s:41:\"linkedin_24b9caaf7ba9ca99c733ac3b012d38e0\";i:738;s:35:\"fb_8268b41d52910fecb7d2a6e20536cb9c\";i:739;s:40:\"twitter_8268b41d52910fecb7d2a6e20536cb9c\";i:740;s:35:\"gp_8268b41d52910fecb7d2a6e20536cb9c\";i:741;s:42:\"pinterest_8268b41d52910fecb7d2a6e20536cb9c\";i:742;s:41:\"linkedin_8268b41d52910fecb7d2a6e20536cb9c\";i:743;s:35:\"fb_c0da2c4d45f5e783e7ced9d9635bd2bc\";i:744;s:40:\"twitter_c0da2c4d45f5e783e7ced9d9635bd2bc\";i:745;s:35:\"gp_c0da2c4d45f5e783e7ced9d9635bd2bc\";i:746;s:42:\"pinterest_c0da2c4d45f5e783e7ced9d9635bd2bc\";i:747;s:41:\"linkedin_c0da2c4d45f5e783e7ced9d9635bd2bc\";i:748;s:35:\"fb_970a521d953215f3ef5a4cbef894af46\";i:749;s:40:\"twitter_970a521d953215f3ef5a4cbef894af46\";i:750;s:35:\"gp_970a521d953215f3ef5a4cbef894af46\";i:751;s:42:\"pinterest_970a521d953215f3ef5a4cbef894af46\";i:752;s:41:\"linkedin_970a521d953215f3ef5a4cbef894af46\";i:753;s:35:\"fb_b73d97d4c09345450a9e4ad72e0c166d\";i:754;s:40:\"twitter_b73d97d4c09345450a9e4ad72e0c166d\";i:755;s:35:\"gp_b73d97d4c09345450a9e4ad72e0c166d\";i:756;s:42:\"pinterest_b73d97d4c09345450a9e4ad72e0c166d\";i:757;s:41:\"linkedin_b73d97d4c09345450a9e4ad72e0c166d\";i:758;s:35:\"fb_55cb657abd9920499d01eaaacff279fd\";i:759;s:40:\"twitter_55cb657abd9920499d01eaaacff279fd\";i:760;s:35:\"gp_55cb657abd9920499d01eaaacff279fd\";i:761;s:42:\"pinterest_55cb657abd9920499d01eaaacff279fd\";i:762;s:41:\"linkedin_55cb657abd9920499d01eaaacff279fd\";i:763;s:35:\"fb_226d56da4b386612cd9b0764047c3115\";i:764;s:40:\"twitter_226d56da4b386612cd9b0764047c3115\";i:765;s:35:\"gp_226d56da4b386612cd9b0764047c3115\";i:766;s:42:\"pinterest_226d56da4b386612cd9b0764047c3115\";i:767;s:41:\"linkedin_226d56da4b386612cd9b0764047c3115\";i:768;s:35:\"fb_7ed5c004ffa29d9e9390385b072b881b\";i:769;s:40:\"twitter_7ed5c004ffa29d9e9390385b072b881b\";i:770;s:35:\"gp_7ed5c004ffa29d9e9390385b072b881b\";i:771;s:42:\"pinterest_7ed5c004ffa29d9e9390385b072b881b\";i:772;s:41:\"linkedin_7ed5c004ffa29d9e9390385b072b881b\";i:773;s:35:\"fb_93cfae65594e95ee834faf3ecad0c554\";i:774;s:40:\"twitter_93cfae65594e95ee834faf3ecad0c554\";i:775;s:35:\"gp_93cfae65594e95ee834faf3ecad0c554\";i:776;s:42:\"pinterest_93cfae65594e95ee834faf3ecad0c554\";i:777;s:41:\"linkedin_93cfae65594e95ee834faf3ecad0c554\";i:778;s:35:\"fb_82a1ecd4fece2c39a9d12351dafbe1ef\";i:779;s:40:\"twitter_82a1ecd4fece2c39a9d12351dafbe1ef\";i:780;s:35:\"gp_82a1ecd4fece2c39a9d12351dafbe1ef\";i:781;s:42:\"pinterest_82a1ecd4fece2c39a9d12351dafbe1ef\";i:782;s:41:\"linkedin_82a1ecd4fece2c39a9d12351dafbe1ef\";i:783;s:35:\"fb_4f3d59a94e9a39f573e6c41b0d2f1b8e\";i:784;s:40:\"twitter_4f3d59a94e9a39f573e6c41b0d2f1b8e\";i:785;s:35:\"gp_4f3d59a94e9a39f573e6c41b0d2f1b8e\";i:786;s:42:\"pinterest_4f3d59a94e9a39f573e6c41b0d2f1b8e\";i:787;s:41:\"linkedin_4f3d59a94e9a39f573e6c41b0d2f1b8e\";i:788;s:35:\"fb_ced002f42482df4bc5173115ca3bdf9f\";i:789;s:40:\"twitter_ced002f42482df4bc5173115ca3bdf9f\";i:790;s:35:\"gp_ced002f42482df4bc5173115ca3bdf9f\";i:791;s:42:\"pinterest_ced002f42482df4bc5173115ca3bdf9f\";i:792;s:41:\"linkedin_ced002f42482df4bc5173115ca3bdf9f\";i:793;s:35:\"fb_ce41edd06dce3f40abad834120c361e2\";i:794;s:40:\"twitter_ce41edd06dce3f40abad834120c361e2\";i:795;s:35:\"gp_ce41edd06dce3f40abad834120c361e2\";i:796;s:42:\"pinterest_ce41edd06dce3f40abad834120c361e2\";i:797;s:41:\"linkedin_ce41edd06dce3f40abad834120c361e2\";i:798;s:35:\"fb_f206fe657b265ed0928d915bb1f696dc\";i:799;s:40:\"twitter_f206fe657b265ed0928d915bb1f696dc\";i:800;s:35:\"gp_f206fe657b265ed0928d915bb1f696dc\";i:801;s:42:\"pinterest_f206fe657b265ed0928d915bb1f696dc\";i:802;s:41:\"linkedin_f206fe657b265ed0928d915bb1f696dc\";i:803;s:35:\"fb_deafe87a1e927900e7c00d4e389536c1\";i:804;s:40:\"twitter_deafe87a1e927900e7c00d4e389536c1\";i:805;s:35:\"gp_deafe87a1e927900e7c00d4e389536c1\";i:806;s:42:\"pinterest_deafe87a1e927900e7c00d4e389536c1\";i:807;s:41:\"linkedin_deafe87a1e927900e7c00d4e389536c1\";i:808;s:35:\"fb_6a7f58b7b1d530966b9c582f6163de26\";i:809;s:40:\"twitter_6a7f58b7b1d530966b9c582f6163de26\";i:810;s:35:\"gp_6a7f58b7b1d530966b9c582f6163de26\";i:811;s:42:\"pinterest_6a7f58b7b1d530966b9c582f6163de26\";i:812;s:41:\"linkedin_6a7f58b7b1d530966b9c582f6163de26\";i:813;s:35:\"fb_fbdca2d6b3bea181549fbba081e300cf\";i:814;s:40:\"twitter_fbdca2d6b3bea181549fbba081e300cf\";i:815;s:35:\"gp_fbdca2d6b3bea181549fbba081e300cf\";i:816;s:42:\"pinterest_fbdca2d6b3bea181549fbba081e300cf\";i:817;s:41:\"linkedin_fbdca2d6b3bea181549fbba081e300cf\";i:818;s:35:\"fb_6be0b8bb310db68bc11f8b832378ead3\";i:819;s:40:\"twitter_6be0b8bb310db68bc11f8b832378ead3\";i:820;s:35:\"gp_6be0b8bb310db68bc11f8b832378ead3\";i:821;s:42:\"pinterest_6be0b8bb310db68bc11f8b832378ead3\";i:822;s:41:\"linkedin_6be0b8bb310db68bc11f8b832378ead3\";i:823;s:35:\"fb_6eb6d3d0e6f0931095bd8019c48c31f8\";i:824;s:40:\"twitter_6eb6d3d0e6f0931095bd8019c48c31f8\";i:825;s:35:\"gp_6eb6d3d0e6f0931095bd8019c48c31f8\";i:826;s:42:\"pinterest_6eb6d3d0e6f0931095bd8019c48c31f8\";i:827;s:41:\"linkedin_6eb6d3d0e6f0931095bd8019c48c31f8\";i:828;s:35:\"fb_1b9e239828732af048b8f6b3da5a0bee\";i:829;s:40:\"twitter_1b9e239828732af048b8f6b3da5a0bee\";i:830;s:35:\"gp_1b9e239828732af048b8f6b3da5a0bee\";i:831;s:42:\"pinterest_1b9e239828732af048b8f6b3da5a0bee\";i:832;s:41:\"linkedin_1b9e239828732af048b8f6b3da5a0bee\";i:833;s:35:\"fb_ac104f67e863cc4d5a96f16da5293e2e\";i:834;s:40:\"twitter_ac104f67e863cc4d5a96f16da5293e2e\";i:835;s:35:\"gp_ac104f67e863cc4d5a96f16da5293e2e\";i:836;s:42:\"pinterest_ac104f67e863cc4d5a96f16da5293e2e\";i:837;s:41:\"linkedin_ac104f67e863cc4d5a96f16da5293e2e\";i:838;s:35:\"fb_1c569717f84a64010eb65cf312294346\";i:839;s:40:\"twitter_1c569717f84a64010eb65cf312294346\";i:840;s:35:\"gp_1c569717f84a64010eb65cf312294346\";i:841;s:42:\"pinterest_1c569717f84a64010eb65cf312294346\";i:842;s:41:\"linkedin_1c569717f84a64010eb65cf312294346\";i:843;s:35:\"fb_d46689f380b405580328a9a8484684f9\";i:844;s:40:\"twitter_d46689f380b405580328a9a8484684f9\";i:845;s:35:\"gp_d46689f380b405580328a9a8484684f9\";i:846;s:42:\"pinterest_d46689f380b405580328a9a8484684f9\";i:847;s:41:\"linkedin_d46689f380b405580328a9a8484684f9\";i:848;s:35:\"fb_4d03f1b40761aca595b1222303f8795e\";i:849;s:40:\"twitter_4d03f1b40761aca595b1222303f8795e\";i:850;s:35:\"gp_4d03f1b40761aca595b1222303f8795e\";i:851;s:42:\"pinterest_4d03f1b40761aca595b1222303f8795e\";i:852;s:41:\"linkedin_4d03f1b40761aca595b1222303f8795e\";i:853;s:35:\"fb_4c545b0502077772f9ec0085c1ff8619\";i:854;s:40:\"twitter_4c545b0502077772f9ec0085c1ff8619\";i:855;s:35:\"gp_4c545b0502077772f9ec0085c1ff8619\";i:856;s:42:\"pinterest_4c545b0502077772f9ec0085c1ff8619\";i:857;s:41:\"linkedin_4c545b0502077772f9ec0085c1ff8619\";i:858;s:35:\"fb_a8678e48bbf5459adc84ef1574d461f1\";i:859;s:40:\"twitter_a8678e48bbf5459adc84ef1574d461f1\";i:860;s:35:\"gp_a8678e48bbf5459adc84ef1574d461f1\";i:861;s:42:\"pinterest_a8678e48bbf5459adc84ef1574d461f1\";i:862;s:41:\"linkedin_a8678e48bbf5459adc84ef1574d461f1\";i:863;s:35:\"fb_18bb6ae6e102a624194bb79e40575c3b\";i:864;s:40:\"twitter_18bb6ae6e102a624194bb79e40575c3b\";i:865;s:35:\"gp_18bb6ae6e102a624194bb79e40575c3b\";i:866;s:42:\"pinterest_18bb6ae6e102a624194bb79e40575c3b\";i:867;s:41:\"linkedin_18bb6ae6e102a624194bb79e40575c3b\";i:868;s:35:\"fb_e647ede90e2b4f4894e84756fb60a16c\";i:869;s:40:\"twitter_e647ede90e2b4f4894e84756fb60a16c\";i:870;s:35:\"gp_e647ede90e2b4f4894e84756fb60a16c\";i:871;s:42:\"pinterest_e647ede90e2b4f4894e84756fb60a16c\";i:872;s:41:\"linkedin_e647ede90e2b4f4894e84756fb60a16c\";i:873;s:35:\"fb_79391cc186bb22dbe63cb75307c8f695\";i:874;s:40:\"twitter_79391cc186bb22dbe63cb75307c8f695\";i:875;s:35:\"gp_79391cc186bb22dbe63cb75307c8f695\";i:876;s:42:\"pinterest_79391cc186bb22dbe63cb75307c8f695\";i:877;s:41:\"linkedin_79391cc186bb22dbe63cb75307c8f695\";i:878;s:35:\"fb_f9fef9ff7906cbeb21800ae09ecdaee8\";i:879;s:40:\"twitter_f9fef9ff7906cbeb21800ae09ecdaee8\";i:880;s:35:\"gp_f9fef9ff7906cbeb21800ae09ecdaee8\";i:881;s:42:\"pinterest_f9fef9ff7906cbeb21800ae09ecdaee8\";i:882;s:41:\"linkedin_f9fef9ff7906cbeb21800ae09ecdaee8\";i:883;s:35:\"fb_5592ffb78ec72a9e934c0bbb16527d83\";i:884;s:40:\"twitter_5592ffb78ec72a9e934c0bbb16527d83\";i:885;s:35:\"gp_5592ffb78ec72a9e934c0bbb16527d83\";i:886;s:42:\"pinterest_5592ffb78ec72a9e934c0bbb16527d83\";i:887;s:41:\"linkedin_5592ffb78ec72a9e934c0bbb16527d83\";i:888;s:35:\"fb_94ef95bf1726a881e07c3fde1d91086c\";i:889;s:40:\"twitter_94ef95bf1726a881e07c3fde1d91086c\";i:890;s:35:\"gp_94ef95bf1726a881e07c3fde1d91086c\";i:891;s:42:\"pinterest_94ef95bf1726a881e07c3fde1d91086c\";i:892;s:41:\"linkedin_94ef95bf1726a881e07c3fde1d91086c\";i:893;s:35:\"fb_6c16c85dec15719bb5c348413fea8caa\";i:894;s:40:\"twitter_6c16c85dec15719bb5c348413fea8caa\";i:895;s:35:\"gp_6c16c85dec15719bb5c348413fea8caa\";i:896;s:42:\"pinterest_6c16c85dec15719bb5c348413fea8caa\";i:897;s:41:\"linkedin_6c16c85dec15719bb5c348413fea8caa\";i:898;s:35:\"fb_1f8650ac7b07dbaa60d70c44d6d0a065\";i:899;s:40:\"twitter_1f8650ac7b07dbaa60d70c44d6d0a065\";i:900;s:35:\"gp_1f8650ac7b07dbaa60d70c44d6d0a065\";i:901;s:42:\"pinterest_1f8650ac7b07dbaa60d70c44d6d0a065\";i:902;s:41:\"linkedin_1f8650ac7b07dbaa60d70c44d6d0a065\";i:903;s:35:\"fb_0a681d9518a6fc11990deff3824f3876\";i:904;s:40:\"twitter_0a681d9518a6fc11990deff3824f3876\";i:905;s:35:\"gp_0a681d9518a6fc11990deff3824f3876\";i:906;s:42:\"pinterest_0a681d9518a6fc11990deff3824f3876\";i:907;s:41:\"linkedin_0a681d9518a6fc11990deff3824f3876\";i:908;s:35:\"fb_ca4ae0cde0907534f11f29779a5285e1\";i:909;s:40:\"twitter_ca4ae0cde0907534f11f29779a5285e1\";i:910;s:35:\"gp_ca4ae0cde0907534f11f29779a5285e1\";i:911;s:42:\"pinterest_ca4ae0cde0907534f11f29779a5285e1\";i:912;s:41:\"linkedin_ca4ae0cde0907534f11f29779a5285e1\";i:913;s:35:\"fb_5058d6e4560f8dee82e14cebdc9e7f5b\";i:914;s:40:\"twitter_5058d6e4560f8dee82e14cebdc9e7f5b\";i:915;s:35:\"gp_5058d6e4560f8dee82e14cebdc9e7f5b\";i:916;s:42:\"pinterest_5058d6e4560f8dee82e14cebdc9e7f5b\";i:917;s:41:\"linkedin_5058d6e4560f8dee82e14cebdc9e7f5b\";i:918;s:35:\"fb_f39f6d2135554b1e6a830abc99e42919\";i:919;s:40:\"twitter_f39f6d2135554b1e6a830abc99e42919\";i:920;s:35:\"gp_f39f6d2135554b1e6a830abc99e42919\";i:921;s:42:\"pinterest_f39f6d2135554b1e6a830abc99e42919\";i:922;s:41:\"linkedin_f39f6d2135554b1e6a830abc99e42919\";i:923;s:35:\"fb_02dac947e1dec41983983f7be29db7d9\";i:924;s:40:\"twitter_02dac947e1dec41983983f7be29db7d9\";i:925;s:35:\"gp_02dac947e1dec41983983f7be29db7d9\";i:926;s:42:\"pinterest_02dac947e1dec41983983f7be29db7d9\";i:927;s:41:\"linkedin_02dac947e1dec41983983f7be29db7d9\";i:928;s:35:\"fb_2cee69fd056503249e913cc32e70b512\";i:929;s:40:\"twitter_2cee69fd056503249e913cc32e70b512\";i:930;s:35:\"gp_2cee69fd056503249e913cc32e70b512\";i:931;s:42:\"pinterest_2cee69fd056503249e913cc32e70b512\";i:932;s:41:\"linkedin_2cee69fd056503249e913cc32e70b512\";i:933;s:35:\"fb_f4aecf63f7514321f572e34cd7bffdd1\";i:934;s:40:\"twitter_f4aecf63f7514321f572e34cd7bffdd1\";i:935;s:35:\"gp_f4aecf63f7514321f572e34cd7bffdd1\";i:936;s:42:\"pinterest_f4aecf63f7514321f572e34cd7bffdd1\";i:937;s:41:\"linkedin_f4aecf63f7514321f572e34cd7bffdd1\";i:938;s:35:\"fb_50b45397a50c7a9b6a2ac024a6f8bfe5\";i:939;s:40:\"twitter_50b45397a50c7a9b6a2ac024a6f8bfe5\";i:940;s:35:\"gp_50b45397a50c7a9b6a2ac024a6f8bfe5\";i:941;s:42:\"pinterest_50b45397a50c7a9b6a2ac024a6f8bfe5\";i:942;s:41:\"linkedin_50b45397a50c7a9b6a2ac024a6f8bfe5\";i:943;s:35:\"fb_012d187fcacccb68eebfd9fd3eac2081\";i:944;s:40:\"twitter_012d187fcacccb68eebfd9fd3eac2081\";i:945;s:35:\"gp_012d187fcacccb68eebfd9fd3eac2081\";i:946;s:42:\"pinterest_012d187fcacccb68eebfd9fd3eac2081\";i:947;s:41:\"linkedin_012d187fcacccb68eebfd9fd3eac2081\";i:948;s:35:\"fb_6c44847aeb94d3d554ad1d6752d7dc3e\";i:949;s:40:\"twitter_6c44847aeb94d3d554ad1d6752d7dc3e\";i:950;s:35:\"gp_6c44847aeb94d3d554ad1d6752d7dc3e\";i:951;s:42:\"pinterest_6c44847aeb94d3d554ad1d6752d7dc3e\";i:952;s:41:\"linkedin_6c44847aeb94d3d554ad1d6752d7dc3e\";i:953;s:35:\"fb_bf873be509261f0bd39b1842c11a5756\";i:954;s:40:\"twitter_bf873be509261f0bd39b1842c11a5756\";i:955;s:35:\"gp_bf873be509261f0bd39b1842c11a5756\";i:956;s:42:\"pinterest_bf873be509261f0bd39b1842c11a5756\";i:957;s:41:\"linkedin_bf873be509261f0bd39b1842c11a5756\";i:958;s:35:\"fb_298bc67f7e5a2b26093c271a1e54ac00\";i:959;s:40:\"twitter_298bc67f7e5a2b26093c271a1e54ac00\";i:960;s:35:\"gp_298bc67f7e5a2b26093c271a1e54ac00\";i:961;s:42:\"pinterest_298bc67f7e5a2b26093c271a1e54ac00\";i:962;s:41:\"linkedin_298bc67f7e5a2b26093c271a1e54ac00\";i:963;s:35:\"fb_aa1228d370a7a9613c0e1005e6c577f6\";i:964;s:40:\"twitter_aa1228d370a7a9613c0e1005e6c577f6\";i:965;s:35:\"gp_aa1228d370a7a9613c0e1005e6c577f6\";i:966;s:42:\"pinterest_aa1228d370a7a9613c0e1005e6c577f6\";i:967;s:41:\"linkedin_aa1228d370a7a9613c0e1005e6c577f6\";i:968;s:35:\"fb_36d9ef2306512208bc6ff7a10f26bad8\";i:969;s:40:\"twitter_36d9ef2306512208bc6ff7a10f26bad8\";i:970;s:35:\"gp_36d9ef2306512208bc6ff7a10f26bad8\";i:971;s:42:\"pinterest_36d9ef2306512208bc6ff7a10f26bad8\";i:972;s:41:\"linkedin_36d9ef2306512208bc6ff7a10f26bad8\";i:973;s:35:\"fb_0a59e905147c91fe7c5846720775c532\";i:974;s:40:\"twitter_0a59e905147c91fe7c5846720775c532\";i:975;s:35:\"gp_0a59e905147c91fe7c5846720775c532\";i:976;s:42:\"pinterest_0a59e905147c91fe7c5846720775c532\";i:977;s:41:\"linkedin_0a59e905147c91fe7c5846720775c532\";i:978;s:35:\"fb_0005634089f9cc13baa4216a3a27b418\";i:979;s:40:\"twitter_0005634089f9cc13baa4216a3a27b418\";i:980;s:35:\"gp_0005634089f9cc13baa4216a3a27b418\";i:981;s:42:\"pinterest_0005634089f9cc13baa4216a3a27b418\";i:982;s:41:\"linkedin_0005634089f9cc13baa4216a3a27b418\";i:983;s:35:\"fb_037e36f572d83c5451102d3ab6f4fd29\";i:984;s:40:\"twitter_037e36f572d83c5451102d3ab6f4fd29\";i:985;s:35:\"gp_037e36f572d83c5451102d3ab6f4fd29\";i:986;s:42:\"pinterest_037e36f572d83c5451102d3ab6f4fd29\";i:987;s:41:\"linkedin_037e36f572d83c5451102d3ab6f4fd29\";i:988;s:35:\"fb_2fd73891ece1db226a580488407161e7\";i:989;s:40:\"twitter_2fd73891ece1db226a580488407161e7\";i:990;s:35:\"gp_2fd73891ece1db226a580488407161e7\";i:991;s:42:\"pinterest_2fd73891ece1db226a580488407161e7\";i:992;s:41:\"linkedin_2fd73891ece1db226a580488407161e7\";i:993;s:35:\"fb_ea93b1d7420c07f477a5a2fd2eb56ed1\";i:994;s:40:\"twitter_ea93b1d7420c07f477a5a2fd2eb56ed1\";i:995;s:35:\"gp_ea93b1d7420c07f477a5a2fd2eb56ed1\";i:996;s:42:\"pinterest_ea93b1d7420c07f477a5a2fd2eb56ed1\";i:997;s:41:\"linkedin_ea93b1d7420c07f477a5a2fd2eb56ed1\";i:998;s:35:\"fb_cb2eb504cd12c37f29c7b457a58f9750\";i:999;s:40:\"twitter_cb2eb504cd12c37f29c7b457a58f9750\";i:1000;s:35:\"gp_cb2eb504cd12c37f29c7b457a58f9750\";i:1001;s:42:\"pinterest_cb2eb504cd12c37f29c7b457a58f9750\";i:1002;s:41:\"linkedin_cb2eb504cd12c37f29c7b457a58f9750\";i:1003;s:35:\"fb_bc65fa50f20b9cb7c4de3690ee0ba1f6\";i:1004;s:40:\"twitter_bc65fa50f20b9cb7c4de3690ee0ba1f6\";i:1005;s:35:\"gp_bc65fa50f20b9cb7c4de3690ee0ba1f6\";i:1006;s:42:\"pinterest_bc65fa50f20b9cb7c4de3690ee0ba1f6\";i:1007;s:41:\"linkedin_bc65fa50f20b9cb7c4de3690ee0ba1f6\";i:1008;s:35:\"fb_298076f7912d98c4ea788cbc0d4bcd3c\";i:1009;s:40:\"twitter_298076f7912d98c4ea788cbc0d4bcd3c\";i:1010;s:35:\"gp_298076f7912d98c4ea788cbc0d4bcd3c\";i:1011;s:42:\"pinterest_298076f7912d98c4ea788cbc0d4bcd3c\";i:1012;s:41:\"linkedin_298076f7912d98c4ea788cbc0d4bcd3c\";i:1013;s:35:\"fb_7bf3efe9af8a1db52dbcb71be47e05d1\";i:1014;s:40:\"twitter_7bf3efe9af8a1db52dbcb71be47e05d1\";i:1015;s:35:\"gp_7bf3efe9af8a1db52dbcb71be47e05d1\";i:1016;s:42:\"pinterest_7bf3efe9af8a1db52dbcb71be47e05d1\";i:1017;s:41:\"linkedin_7bf3efe9af8a1db52dbcb71be47e05d1\";i:1018;s:35:\"fb_a3d29aa04a2f7cf3610af0d0fc47159b\";i:1019;s:40:\"twitter_a3d29aa04a2f7cf3610af0d0fc47159b\";i:1020;s:35:\"gp_a3d29aa04a2f7cf3610af0d0fc47159b\";i:1021;s:42:\"pinterest_a3d29aa04a2f7cf3610af0d0fc47159b\";i:1022;s:41:\"linkedin_a3d29aa04a2f7cf3610af0d0fc47159b\";i:1023;s:35:\"fb_24ff520c6fb1c8e300999e768206cf4c\";i:1024;s:40:\"twitter_24ff520c6fb1c8e300999e768206cf4c\";i:1025;s:35:\"gp_24ff520c6fb1c8e300999e768206cf4c\";i:1026;s:42:\"pinterest_24ff520c6fb1c8e300999e768206cf4c\";i:1027;s:41:\"linkedin_24ff520c6fb1c8e300999e768206cf4c\";i:1028;s:35:\"fb_caa53f024b439b7316e29f947737de34\";i:1029;s:40:\"twitter_caa53f024b439b7316e29f947737de34\";i:1030;s:35:\"gp_caa53f024b439b7316e29f947737de34\";i:1031;s:42:\"pinterest_caa53f024b439b7316e29f947737de34\";i:1032;s:41:\"linkedin_caa53f024b439b7316e29f947737de34\";i:1033;s:35:\"fb_d3e5c2c364da37b06dac813822efd85e\";i:1034;s:40:\"twitter_d3e5c2c364da37b06dac813822efd85e\";i:1035;s:35:\"gp_d3e5c2c364da37b06dac813822efd85e\";i:1036;s:42:\"pinterest_d3e5c2c364da37b06dac813822efd85e\";i:1037;s:41:\"linkedin_d3e5c2c364da37b06dac813822efd85e\";i:1038;s:35:\"fb_36fd9f5a4cf64305ca751e696517fd84\";i:1039;s:40:\"twitter_36fd9f5a4cf64305ca751e696517fd84\";i:1040;s:35:\"gp_36fd9f5a4cf64305ca751e696517fd84\";i:1041;s:42:\"pinterest_36fd9f5a4cf64305ca751e696517fd84\";i:1042;s:41:\"linkedin_36fd9f5a4cf64305ca751e696517fd84\";i:1043;s:35:\"fb_8ed289a873d761cde07b9b4edda3e7e2\";i:1044;s:40:\"twitter_8ed289a873d761cde07b9b4edda3e7e2\";i:1045;s:35:\"gp_8ed289a873d761cde07b9b4edda3e7e2\";i:1046;s:42:\"pinterest_8ed289a873d761cde07b9b4edda3e7e2\";i:1047;s:41:\"linkedin_8ed289a873d761cde07b9b4edda3e7e2\";i:1048;s:35:\"fb_660396681818d4542d929c8918d86898\";i:1049;s:40:\"twitter_660396681818d4542d929c8918d86898\";i:1050;s:35:\"gp_660396681818d4542d929c8918d86898\";i:1051;s:42:\"pinterest_660396681818d4542d929c8918d86898\";i:1052;s:41:\"linkedin_660396681818d4542d929c8918d86898\";i:1053;s:35:\"fb_f0eb21537d285a8d4ef5e59507eafd5f\";i:1054;s:40:\"twitter_f0eb21537d285a8d4ef5e59507eafd5f\";i:1055;s:35:\"gp_f0eb21537d285a8d4ef5e59507eafd5f\";i:1056;s:42:\"pinterest_f0eb21537d285a8d4ef5e59507eafd5f\";i:1057;s:41:\"linkedin_f0eb21537d285a8d4ef5e59507eafd5f\";i:1058;s:35:\"fb_6fc6f724fb954ea553763409436ebf94\";i:1059;s:40:\"twitter_6fc6f724fb954ea553763409436ebf94\";i:1060;s:35:\"gp_6fc6f724fb954ea553763409436ebf94\";i:1061;s:42:\"pinterest_6fc6f724fb954ea553763409436ebf94\";i:1062;s:41:\"linkedin_6fc6f724fb954ea553763409436ebf94\";i:1063;s:35:\"fb_2cf1bc7a92e10a6287a04b19f22f7b03\";i:1064;s:40:\"twitter_2cf1bc7a92e10a6287a04b19f22f7b03\";i:1065;s:35:\"gp_2cf1bc7a92e10a6287a04b19f22f7b03\";i:1066;s:42:\"pinterest_2cf1bc7a92e10a6287a04b19f22f7b03\";i:1067;s:41:\"linkedin_2cf1bc7a92e10a6287a04b19f22f7b03\";i:1068;s:35:\"fb_efb8b8aab8aee155a8fb50f746f1f3f6\";i:1069;s:40:\"twitter_efb8b8aab8aee155a8fb50f746f1f3f6\";i:1070;s:35:\"gp_efb8b8aab8aee155a8fb50f746f1f3f6\";i:1071;s:42:\"pinterest_efb8b8aab8aee155a8fb50f746f1f3f6\";i:1072;s:41:\"linkedin_efb8b8aab8aee155a8fb50f746f1f3f6\";i:1073;s:35:\"fb_ba7614ef11a645cd3cc0e23da8b5ab89\";i:1074;s:40:\"twitter_ba7614ef11a645cd3cc0e23da8b5ab89\";i:1075;s:35:\"gp_ba7614ef11a645cd3cc0e23da8b5ab89\";i:1076;s:42:\"pinterest_ba7614ef11a645cd3cc0e23da8b5ab89\";i:1077;s:41:\"linkedin_ba7614ef11a645cd3cc0e23da8b5ab89\";i:1078;s:35:\"fb_92affd46fc22198ca56d5f8383af9de9\";i:1079;s:40:\"twitter_92affd46fc22198ca56d5f8383af9de9\";i:1080;s:35:\"gp_92affd46fc22198ca56d5f8383af9de9\";i:1081;s:42:\"pinterest_92affd46fc22198ca56d5f8383af9de9\";i:1082;s:41:\"linkedin_92affd46fc22198ca56d5f8383af9de9\";i:1083;s:35:\"fb_f3af76421d12e3134cfe46b21014e282\";i:1084;s:40:\"twitter_f3af76421d12e3134cfe46b21014e282\";i:1085;s:35:\"gp_f3af76421d12e3134cfe46b21014e282\";i:1086;s:42:\"pinterest_f3af76421d12e3134cfe46b21014e282\";i:1087;s:41:\"linkedin_f3af76421d12e3134cfe46b21014e282\";i:1088;s:35:\"fb_fc547bf69334b9956f51f6af2ab002e7\";i:1089;s:40:\"twitter_fc547bf69334b9956f51f6af2ab002e7\";i:1090;s:35:\"gp_fc547bf69334b9956f51f6af2ab002e7\";i:1091;s:42:\"pinterest_fc547bf69334b9956f51f6af2ab002e7\";i:1092;s:41:\"linkedin_fc547bf69334b9956f51f6af2ab002e7\";i:1093;s:35:\"fb_c5abe9fd26ba78f10b5f6f2efbeb5021\";i:1094;s:40:\"twitter_c5abe9fd26ba78f10b5f6f2efbeb5021\";i:1095;s:35:\"gp_c5abe9fd26ba78f10b5f6f2efbeb5021\";i:1096;s:42:\"pinterest_c5abe9fd26ba78f10b5f6f2efbeb5021\";i:1097;s:41:\"linkedin_c5abe9fd26ba78f10b5f6f2efbeb5021\";i:1098;s:35:\"fb_3eb9e5ada55e27d87fc0c2d5db8fafe1\";i:1099;s:40:\"twitter_3eb9e5ada55e27d87fc0c2d5db8fafe1\";i:1100;s:35:\"gp_3eb9e5ada55e27d87fc0c2d5db8fafe1\";i:1101;s:42:\"pinterest_3eb9e5ada55e27d87fc0c2d5db8fafe1\";i:1102;s:41:\"linkedin_3eb9e5ada55e27d87fc0c2d5db8fafe1\";i:1103;s:35:\"fb_f66b24242b1388e6c457eeb2c072fb5d\";i:1104;s:40:\"twitter_f66b24242b1388e6c457eeb2c072fb5d\";i:1105;s:35:\"gp_f66b24242b1388e6c457eeb2c072fb5d\";i:1106;s:42:\"pinterest_f66b24242b1388e6c457eeb2c072fb5d\";i:1107;s:41:\"linkedin_f66b24242b1388e6c457eeb2c072fb5d\";i:1108;s:35:\"fb_e6a8089b72ac07503347246dcde22b5a\";i:1109;s:40:\"twitter_e6a8089b72ac07503347246dcde22b5a\";i:1110;s:35:\"gp_e6a8089b72ac07503347246dcde22b5a\";i:1111;s:42:\"pinterest_e6a8089b72ac07503347246dcde22b5a\";i:1112;s:41:\"linkedin_e6a8089b72ac07503347246dcde22b5a\";i:1113;s:35:\"fb_0afd82510a11ad7f3682d6d8b0b33e76\";i:1114;s:40:\"twitter_0afd82510a11ad7f3682d6d8b0b33e76\";i:1115;s:35:\"gp_0afd82510a11ad7f3682d6d8b0b33e76\";i:1116;s:42:\"pinterest_0afd82510a11ad7f3682d6d8b0b33e76\";i:1117;s:41:\"linkedin_0afd82510a11ad7f3682d6d8b0b33e76\";i:1118;s:35:\"fb_46aa0d1976df0e49bdb153b90efe785e\";i:1119;s:40:\"twitter_46aa0d1976df0e49bdb153b90efe785e\";i:1120;s:35:\"gp_46aa0d1976df0e49bdb153b90efe785e\";i:1121;s:42:\"pinterest_46aa0d1976df0e49bdb153b90efe785e\";i:1122;s:41:\"linkedin_46aa0d1976df0e49bdb153b90efe785e\";i:1123;s:35:\"fb_606f2b7d608f3a5c9dffa99946eb2f6e\";i:1124;s:40:\"twitter_606f2b7d608f3a5c9dffa99946eb2f6e\";i:1125;s:35:\"gp_606f2b7d608f3a5c9dffa99946eb2f6e\";i:1126;s:42:\"pinterest_606f2b7d608f3a5c9dffa99946eb2f6e\";i:1127;s:41:\"linkedin_606f2b7d608f3a5c9dffa99946eb2f6e\";i:1128;s:35:\"fb_8e50c3abb228caedafcf788294077932\";i:1129;s:40:\"twitter_8e50c3abb228caedafcf788294077932\";i:1130;s:35:\"gp_8e50c3abb228caedafcf788294077932\";i:1131;s:42:\"pinterest_8e50c3abb228caedafcf788294077932\";i:1132;s:41:\"linkedin_8e50c3abb228caedafcf788294077932\";i:1133;s:35:\"fb_21cbb3b1908bccb6c083d15b9223a2db\";i:1134;s:40:\"twitter_21cbb3b1908bccb6c083d15b9223a2db\";i:1135;s:35:\"gp_21cbb3b1908bccb6c083d15b9223a2db\";i:1136;s:42:\"pinterest_21cbb3b1908bccb6c083d15b9223a2db\";i:1137;s:41:\"linkedin_21cbb3b1908bccb6c083d15b9223a2db\";i:1138;s:35:\"fb_b9101362b7da5c60ffa662c7d0c04283\";i:1139;s:40:\"twitter_b9101362b7da5c60ffa662c7d0c04283\";i:1140;s:35:\"gp_b9101362b7da5c60ffa662c7d0c04283\";i:1141;s:42:\"pinterest_b9101362b7da5c60ffa662c7d0c04283\";i:1142;s:41:\"linkedin_b9101362b7da5c60ffa662c7d0c04283\";i:1143;s:35:\"fb_494d4e06d55ca09cf007e0b102527678\";i:1144;s:40:\"twitter_494d4e06d55ca09cf007e0b102527678\";i:1145;s:35:\"gp_494d4e06d55ca09cf007e0b102527678\";i:1146;s:42:\"pinterest_494d4e06d55ca09cf007e0b102527678\";i:1147;s:41:\"linkedin_494d4e06d55ca09cf007e0b102527678\";i:1148;s:35:\"fb_1ea869cfcc8bd313d9f53ca4402c273c\";i:1149;s:40:\"twitter_1ea869cfcc8bd313d9f53ca4402c273c\";i:1150;s:35:\"gp_1ea869cfcc8bd313d9f53ca4402c273c\";i:1151;s:42:\"pinterest_1ea869cfcc8bd313d9f53ca4402c273c\";i:1152;s:41:\"linkedin_1ea869cfcc8bd313d9f53ca4402c273c\";i:1153;s:35:\"fb_196a10232caeccf4df6274232c0135fc\";i:1154;s:40:\"twitter_196a10232caeccf4df6274232c0135fc\";i:1155;s:35:\"gp_196a10232caeccf4df6274232c0135fc\";i:1156;s:42:\"pinterest_196a10232caeccf4df6274232c0135fc\";i:1157;s:41:\"linkedin_196a10232caeccf4df6274232c0135fc\";i:1158;s:35:\"fb_17e3865846608a6c17f23584ef872dd7\";i:1159;s:40:\"twitter_17e3865846608a6c17f23584ef872dd7\";i:1160;s:35:\"gp_17e3865846608a6c17f23584ef872dd7\";i:1161;s:42:\"pinterest_17e3865846608a6c17f23584ef872dd7\";i:1162;s:41:\"linkedin_17e3865846608a6c17f23584ef872dd7\";i:1163;s:35:\"fb_c43e8868b354e9d65a3a86537876bf72\";i:1164;s:40:\"twitter_c43e8868b354e9d65a3a86537876bf72\";i:1165;s:35:\"gp_c43e8868b354e9d65a3a86537876bf72\";i:1166;s:42:\"pinterest_c43e8868b354e9d65a3a86537876bf72\";i:1167;s:41:\"linkedin_c43e8868b354e9d65a3a86537876bf72\";i:1168;s:35:\"fb_998ca9facbc76dba851fd96ddb6b4b39\";i:1169;s:40:\"twitter_998ca9facbc76dba851fd96ddb6b4b39\";i:1170;s:35:\"gp_998ca9facbc76dba851fd96ddb6b4b39\";i:1171;s:42:\"pinterest_998ca9facbc76dba851fd96ddb6b4b39\";i:1172;s:41:\"linkedin_998ca9facbc76dba851fd96ddb6b4b39\";i:1173;s:35:\"fb_aa31ceff1906b18e6470babc5c1524a2\";i:1174;s:40:\"twitter_aa31ceff1906b18e6470babc5c1524a2\";i:1175;s:35:\"gp_aa31ceff1906b18e6470babc5c1524a2\";i:1176;s:42:\"pinterest_aa31ceff1906b18e6470babc5c1524a2\";i:1177;s:41:\"linkedin_aa31ceff1906b18e6470babc5c1524a2\";i:1178;s:35:\"fb_b3eda2ffb86e252711f57b3f9afda5b3\";i:1179;s:40:\"twitter_b3eda2ffb86e252711f57b3f9afda5b3\";i:1180;s:35:\"gp_b3eda2ffb86e252711f57b3f9afda5b3\";i:1181;s:42:\"pinterest_b3eda2ffb86e252711f57b3f9afda5b3\";i:1182;s:41:\"linkedin_b3eda2ffb86e252711f57b3f9afda5b3\";i:1183;s:35:\"fb_4298f793c7849d22a9d823c62e9e465b\";i:1184;s:40:\"twitter_4298f793c7849d22a9d823c62e9e465b\";i:1185;s:35:\"gp_4298f793c7849d22a9d823c62e9e465b\";i:1186;s:42:\"pinterest_4298f793c7849d22a9d823c62e9e465b\";i:1187;s:41:\"linkedin_4298f793c7849d22a9d823c62e9e465b\";i:1188;s:35:\"fb_ec37147dfde1ea500551725fe63fe676\";i:1189;s:40:\"twitter_ec37147dfde1ea500551725fe63fe676\";i:1190;s:35:\"gp_ec37147dfde1ea500551725fe63fe676\";i:1191;s:42:\"pinterest_ec37147dfde1ea500551725fe63fe676\";i:1192;s:41:\"linkedin_ec37147dfde1ea500551725fe63fe676\";i:1193;s:35:\"fb_9f26b2ee3bbba794f39d1df6e229ca75\";i:1194;s:40:\"twitter_9f26b2ee3bbba794f39d1df6e229ca75\";i:1195;s:35:\"gp_9f26b2ee3bbba794f39d1df6e229ca75\";i:1196;s:42:\"pinterest_9f26b2ee3bbba794f39d1df6e229ca75\";i:1197;s:41:\"linkedin_9f26b2ee3bbba794f39d1df6e229ca75\";i:1198;s:35:\"fb_260f5ec04786a09ee554ab7a4424d3b1\";i:1199;s:40:\"twitter_260f5ec04786a09ee554ab7a4424d3b1\";i:1200;s:35:\"gp_260f5ec04786a09ee554ab7a4424d3b1\";i:1201;s:42:\"pinterest_260f5ec04786a09ee554ab7a4424d3b1\";i:1202;s:41:\"linkedin_260f5ec04786a09ee554ab7a4424d3b1\";i:1203;s:35:\"fb_117244b8c89bcd068cad1706d667fbaf\";i:1204;s:40:\"twitter_117244b8c89bcd068cad1706d667fbaf\";i:1205;s:35:\"gp_117244b8c89bcd068cad1706d667fbaf\";i:1206;s:42:\"pinterest_117244b8c89bcd068cad1706d667fbaf\";i:1207;s:41:\"linkedin_117244b8c89bcd068cad1706d667fbaf\";i:1208;s:35:\"fb_d1d94c7478762be268394278935fa10e\";i:1209;s:40:\"twitter_d1d94c7478762be268394278935fa10e\";i:1210;s:35:\"gp_d1d94c7478762be268394278935fa10e\";i:1211;s:42:\"pinterest_d1d94c7478762be268394278935fa10e\";i:1212;s:41:\"linkedin_d1d94c7478762be268394278935fa10e\";i:1213;s:35:\"fb_fc52086d8929b8d32859bc880f8be9a8\";i:1214;s:40:\"twitter_fc52086d8929b8d32859bc880f8be9a8\";i:1215;s:35:\"gp_fc52086d8929b8d32859bc880f8be9a8\";i:1216;s:42:\"pinterest_fc52086d8929b8d32859bc880f8be9a8\";i:1217;s:41:\"linkedin_fc52086d8929b8d32859bc880f8be9a8\";i:1218;s:35:\"fb_96be823e33a77ae90322a8af87bd916a\";i:1219;s:40:\"twitter_96be823e33a77ae90322a8af87bd916a\";i:1220;s:35:\"gp_96be823e33a77ae90322a8af87bd916a\";i:1221;s:42:\"pinterest_96be823e33a77ae90322a8af87bd916a\";i:1222;s:41:\"linkedin_96be823e33a77ae90322a8af87bd916a\";i:1223;s:35:\"fb_bee9e1bb7b5240202e9bfe80297789ce\";i:1224;s:40:\"twitter_bee9e1bb7b5240202e9bfe80297789ce\";i:1225;s:35:\"gp_bee9e1bb7b5240202e9bfe80297789ce\";i:1226;s:42:\"pinterest_bee9e1bb7b5240202e9bfe80297789ce\";i:1227;s:41:\"linkedin_bee9e1bb7b5240202e9bfe80297789ce\";i:1228;s:35:\"fb_c3e5d304f052b57977d90c5b998d53e8\";i:1229;s:40:\"twitter_c3e5d304f052b57977d90c5b998d53e8\";i:1230;s:35:\"gp_c3e5d304f052b57977d90c5b998d53e8\";i:1231;s:42:\"pinterest_c3e5d304f052b57977d90c5b998d53e8\";i:1232;s:41:\"linkedin_c3e5d304f052b57977d90c5b998d53e8\";i:1233;s:35:\"fb_99d6150147205fd877ca9f15bf313502\";i:1234;s:40:\"twitter_99d6150147205fd877ca9f15bf313502\";i:1235;s:35:\"gp_99d6150147205fd877ca9f15bf313502\";i:1236;s:42:\"pinterest_99d6150147205fd877ca9f15bf313502\";i:1237;s:41:\"linkedin_99d6150147205fd877ca9f15bf313502\";i:1238;s:35:\"fb_114cb080aa65e2d751d1bdcc2c9b763f\";i:1239;s:40:\"twitter_114cb080aa65e2d751d1bdcc2c9b763f\";i:1240;s:35:\"gp_114cb080aa65e2d751d1bdcc2c9b763f\";i:1241;s:42:\"pinterest_114cb080aa65e2d751d1bdcc2c9b763f\";i:1242;s:41:\"linkedin_114cb080aa65e2d751d1bdcc2c9b763f\";i:1243;s:35:\"fb_85a7f41c7af40bbe2aa756e3380feb7e\";i:1244;s:40:\"twitter_85a7f41c7af40bbe2aa756e3380feb7e\";i:1245;s:35:\"gp_85a7f41c7af40bbe2aa756e3380feb7e\";i:1246;s:42:\"pinterest_85a7f41c7af40bbe2aa756e3380feb7e\";i:1247;s:41:\"linkedin_85a7f41c7af40bbe2aa756e3380feb7e\";i:1248;s:35:\"fb_d970ef0b0e04f98a660000bdc0683b1e\";i:1249;s:40:\"twitter_d970ef0b0e04f98a660000bdc0683b1e\";i:1250;s:35:\"gp_d970ef0b0e04f98a660000bdc0683b1e\";i:1251;s:42:\"pinterest_d970ef0b0e04f98a660000bdc0683b1e\";i:1252;s:41:\"linkedin_d970ef0b0e04f98a660000bdc0683b1e\";i:1253;s:35:\"fb_5a32e8fb192e75b679caeb65d95349b6\";i:1254;s:40:\"twitter_5a32e8fb192e75b679caeb65d95349b6\";i:1255;s:35:\"gp_5a32e8fb192e75b679caeb65d95349b6\";i:1256;s:42:\"pinterest_5a32e8fb192e75b679caeb65d95349b6\";i:1257;s:41:\"linkedin_5a32e8fb192e75b679caeb65d95349b6\";i:1258;s:35:\"fb_f0514f73f0f80ec495a00c3b432d8b4d\";i:1259;s:40:\"twitter_f0514f73f0f80ec495a00c3b432d8b4d\";i:1260;s:35:\"gp_f0514f73f0f80ec495a00c3b432d8b4d\";i:1261;s:42:\"pinterest_f0514f73f0f80ec495a00c3b432d8b4d\";i:1262;s:41:\"linkedin_f0514f73f0f80ec495a00c3b432d8b4d\";i:1263;s:35:\"fb_27de1aa5f734ad68111a22b8215279fb\";i:1264;s:40:\"twitter_27de1aa5f734ad68111a22b8215279fb\";i:1265;s:35:\"gp_27de1aa5f734ad68111a22b8215279fb\";i:1266;s:42:\"pinterest_27de1aa5f734ad68111a22b8215279fb\";i:1267;s:41:\"linkedin_27de1aa5f734ad68111a22b8215279fb\";i:1268;s:35:\"fb_b0a8944d3b1c8999630625832f259385\";i:1269;s:40:\"twitter_b0a8944d3b1c8999630625832f259385\";i:1270;s:35:\"gp_b0a8944d3b1c8999630625832f259385\";i:1271;s:42:\"pinterest_b0a8944d3b1c8999630625832f259385\";i:1272;s:41:\"linkedin_b0a8944d3b1c8999630625832f259385\";i:1273;s:35:\"fb_b0422629db51e50d981cd395de76dad2\";i:1274;s:40:\"twitter_b0422629db51e50d981cd395de76dad2\";i:1275;s:35:\"gp_b0422629db51e50d981cd395de76dad2\";i:1276;s:42:\"pinterest_b0422629db51e50d981cd395de76dad2\";i:1277;s:41:\"linkedin_b0422629db51e50d981cd395de76dad2\";i:1278;s:35:\"fb_0fc2ea87eb127254c8f422cc56dc80a5\";i:1279;s:40:\"twitter_0fc2ea87eb127254c8f422cc56dc80a5\";i:1280;s:35:\"gp_0fc2ea87eb127254c8f422cc56dc80a5\";i:1281;s:42:\"pinterest_0fc2ea87eb127254c8f422cc56dc80a5\";i:1282;s:41:\"linkedin_0fc2ea87eb127254c8f422cc56dc80a5\";i:1283;s:35:\"fb_2401cd0a0bf3589cf9b56627d8f5d21c\";i:1284;s:40:\"twitter_2401cd0a0bf3589cf9b56627d8f5d21c\";i:1285;s:35:\"gp_2401cd0a0bf3589cf9b56627d8f5d21c\";i:1286;s:42:\"pinterest_2401cd0a0bf3589cf9b56627d8f5d21c\";i:1287;s:41:\"linkedin_2401cd0a0bf3589cf9b56627d8f5d21c\";i:1288;s:35:\"fb_7b704851d843443dd8ff644a4c4fec6d\";i:1289;s:40:\"twitter_7b704851d843443dd8ff644a4c4fec6d\";i:1290;s:35:\"gp_7b704851d843443dd8ff644a4c4fec6d\";i:1291;s:42:\"pinterest_7b704851d843443dd8ff644a4c4fec6d\";i:1292;s:41:\"linkedin_7b704851d843443dd8ff644a4c4fec6d\";i:1293;s:35:\"fb_741b7a281e2c17b451c7fd307d4f9161\";i:1294;s:40:\"twitter_741b7a281e2c17b451c7fd307d4f9161\";i:1295;s:35:\"gp_741b7a281e2c17b451c7fd307d4f9161\";i:1296;s:42:\"pinterest_741b7a281e2c17b451c7fd307d4f9161\";i:1297;s:41:\"linkedin_741b7a281e2c17b451c7fd307d4f9161\";i:1298;s:35:\"fb_7e1ba2a4dfe33a652f0dc80fe4fd3e35\";i:1299;s:40:\"twitter_7e1ba2a4dfe33a652f0dc80fe4fd3e35\";i:1300;s:35:\"gp_7e1ba2a4dfe33a652f0dc80fe4fd3e35\";i:1301;s:42:\"pinterest_7e1ba2a4dfe33a652f0dc80fe4fd3e35\";i:1302;s:41:\"linkedin_7e1ba2a4dfe33a652f0dc80fe4fd3e35\";i:1303;s:35:\"fb_2269cc05c59236efa8aef895648c6847\";i:1304;s:40:\"twitter_2269cc05c59236efa8aef895648c6847\";i:1305;s:35:\"gp_2269cc05c59236efa8aef895648c6847\";i:1306;s:42:\"pinterest_2269cc05c59236efa8aef895648c6847\";i:1307;s:41:\"linkedin_2269cc05c59236efa8aef895648c6847\";i:1308;s:35:\"fb_536e779c3a11ce4052aee5067cb17138\";i:1309;s:40:\"twitter_536e779c3a11ce4052aee5067cb17138\";i:1310;s:35:\"gp_536e779c3a11ce4052aee5067cb17138\";i:1311;s:42:\"pinterest_536e779c3a11ce4052aee5067cb17138\";i:1312;s:41:\"linkedin_536e779c3a11ce4052aee5067cb17138\";i:1313;s:35:\"fb_9d68728545c6d417dee659e82d281a08\";i:1314;s:40:\"twitter_9d68728545c6d417dee659e82d281a08\";i:1315;s:35:\"gp_9d68728545c6d417dee659e82d281a08\";i:1316;s:42:\"pinterest_9d68728545c6d417dee659e82d281a08\";i:1317;s:41:\"linkedin_9d68728545c6d417dee659e82d281a08\";i:1318;s:35:\"fb_57057598bf9cd185868e7e24f93d3ee3\";i:1319;s:40:\"twitter_57057598bf9cd185868e7e24f93d3ee3\";i:1320;s:35:\"gp_57057598bf9cd185868e7e24f93d3ee3\";i:1321;s:42:\"pinterest_57057598bf9cd185868e7e24f93d3ee3\";i:1322;s:41:\"linkedin_57057598bf9cd185868e7e24f93d3ee3\";i:1323;s:35:\"fb_d1cac85182992253e174c20977dfc87f\";i:1324;s:40:\"twitter_d1cac85182992253e174c20977dfc87f\";i:1325;s:35:\"gp_d1cac85182992253e174c20977dfc87f\";i:1326;s:42:\"pinterest_d1cac85182992253e174c20977dfc87f\";i:1327;s:41:\"linkedin_d1cac85182992253e174c20977dfc87f\";i:1328;s:35:\"fb_3715163c91c7d82b96d70f98df958617\";i:1329;s:40:\"twitter_3715163c91c7d82b96d70f98df958617\";i:1330;s:35:\"gp_3715163c91c7d82b96d70f98df958617\";i:1331;s:42:\"pinterest_3715163c91c7d82b96d70f98df958617\";i:1332;s:41:\"linkedin_3715163c91c7d82b96d70f98df958617\";i:1333;s:35:\"fb_67fc18caaa51ba33c96b1a9def812d91\";i:1334;s:40:\"twitter_67fc18caaa51ba33c96b1a9def812d91\";i:1335;s:35:\"gp_67fc18caaa51ba33c96b1a9def812d91\";i:1336;s:42:\"pinterest_67fc18caaa51ba33c96b1a9def812d91\";i:1337;s:41:\"linkedin_67fc18caaa51ba33c96b1a9def812d91\";i:1338;s:35:\"fb_ca7db918a48a7e1b86e18dcf1e12ca56\";i:1339;s:40:\"twitter_ca7db918a48a7e1b86e18dcf1e12ca56\";i:1340;s:35:\"gp_ca7db918a48a7e1b86e18dcf1e12ca56\";i:1341;s:42:\"pinterest_ca7db918a48a7e1b86e18dcf1e12ca56\";i:1342;s:41:\"linkedin_ca7db918a48a7e1b86e18dcf1e12ca56\";i:1343;s:35:\"fb_3fec0d9ca844683ca5bc52368f1c335a\";i:1344;s:40:\"twitter_3fec0d9ca844683ca5bc52368f1c335a\";i:1345;s:35:\"gp_3fec0d9ca844683ca5bc52368f1c335a\";i:1346;s:42:\"pinterest_3fec0d9ca844683ca5bc52368f1c335a\";i:1347;s:41:\"linkedin_3fec0d9ca844683ca5bc52368f1c335a\";i:1348;s:35:\"fb_f1b4896a4d57183893f4a6d2f738cf8b\";i:1349;s:40:\"twitter_f1b4896a4d57183893f4a6d2f738cf8b\";i:1350;s:35:\"gp_f1b4896a4d57183893f4a6d2f738cf8b\";i:1351;s:42:\"pinterest_f1b4896a4d57183893f4a6d2f738cf8b\";i:1352;s:41:\"linkedin_f1b4896a4d57183893f4a6d2f738cf8b\";i:1353;s:35:\"fb_ea2959327a76a0d14f430ba6c7e4339c\";i:1354;s:40:\"twitter_ea2959327a76a0d14f430ba6c7e4339c\";i:1355;s:35:\"gp_ea2959327a76a0d14f430ba6c7e4339c\";i:1356;s:42:\"pinterest_ea2959327a76a0d14f430ba6c7e4339c\";i:1357;s:41:\"linkedin_ea2959327a76a0d14f430ba6c7e4339c\";i:1358;s:35:\"fb_76f6d79287c179644d7ce38d8942410b\";i:1359;s:40:\"twitter_76f6d79287c179644d7ce38d8942410b\";i:1360;s:35:\"gp_76f6d79287c179644d7ce38d8942410b\";i:1361;s:42:\"pinterest_76f6d79287c179644d7ce38d8942410b\";i:1362;s:41:\"linkedin_76f6d79287c179644d7ce38d8942410b\";i:1363;s:35:\"fb_1f3e7f959f23438e4708701ab0eb3306\";i:1364;s:40:\"twitter_1f3e7f959f23438e4708701ab0eb3306\";i:1365;s:35:\"gp_1f3e7f959f23438e4708701ab0eb3306\";i:1366;s:42:\"pinterest_1f3e7f959f23438e4708701ab0eb3306\";i:1367;s:41:\"linkedin_1f3e7f959f23438e4708701ab0eb3306\";i:1368;s:35:\"fb_172830127bfc84be6b9c709ecf1314b2\";i:1369;s:40:\"twitter_172830127bfc84be6b9c709ecf1314b2\";i:1370;s:35:\"gp_172830127bfc84be6b9c709ecf1314b2\";i:1371;s:42:\"pinterest_172830127bfc84be6b9c709ecf1314b2\";i:1372;s:41:\"linkedin_172830127bfc84be6b9c709ecf1314b2\";i:1373;s:35:\"fb_62a2afef25b531f5c14b8556263d5214\";i:1374;s:40:\"twitter_62a2afef25b531f5c14b8556263d5214\";i:1375;s:35:\"gp_62a2afef25b531f5c14b8556263d5214\";i:1376;s:42:\"pinterest_62a2afef25b531f5c14b8556263d5214\";i:1377;s:41:\"linkedin_62a2afef25b531f5c14b8556263d5214\";i:1378;s:35:\"fb_bfbf0fd496b73cac5ec86bca587c254e\";i:1379;s:40:\"twitter_bfbf0fd496b73cac5ec86bca587c254e\";i:1380;s:35:\"gp_bfbf0fd496b73cac5ec86bca587c254e\";i:1381;s:42:\"pinterest_bfbf0fd496b73cac5ec86bca587c254e\";i:1382;s:41:\"linkedin_bfbf0fd496b73cac5ec86bca587c254e\";i:1383;s:35:\"fb_4aa017f62a59a33e853f99bae57de350\";i:1384;s:40:\"twitter_4aa017f62a59a33e853f99bae57de350\";i:1385;s:35:\"gp_4aa017f62a59a33e853f99bae57de350\";i:1386;s:42:\"pinterest_4aa017f62a59a33e853f99bae57de350\";i:1387;s:41:\"linkedin_4aa017f62a59a33e853f99bae57de350\";i:1388;s:35:\"fb_931334a1f014e55c0f5703c667e24215\";i:1389;s:40:\"twitter_931334a1f014e55c0f5703c667e24215\";i:1390;s:35:\"gp_931334a1f014e55c0f5703c667e24215\";i:1391;s:42:\"pinterest_931334a1f014e55c0f5703c667e24215\";i:1392;s:41:\"linkedin_931334a1f014e55c0f5703c667e24215\";i:1393;s:35:\"fb_19624cde17ffef9bccca1f8912037c17\";i:1394;s:40:\"twitter_19624cde17ffef9bccca1f8912037c17\";i:1395;s:35:\"gp_19624cde17ffef9bccca1f8912037c17\";i:1396;s:42:\"pinterest_19624cde17ffef9bccca1f8912037c17\";i:1397;s:41:\"linkedin_19624cde17ffef9bccca1f8912037c17\";i:1398;s:35:\"fb_fd9ae982a8de7a6a558d8fdb429a6fe2\";i:1399;s:40:\"twitter_fd9ae982a8de7a6a558d8fdb429a6fe2\";i:1400;s:35:\"gp_fd9ae982a8de7a6a558d8fdb429a6fe2\";i:1401;s:42:\"pinterest_fd9ae982a8de7a6a558d8fdb429a6fe2\";i:1402;s:41:\"linkedin_fd9ae982a8de7a6a558d8fdb429a6fe2\";i:1403;s:35:\"fb_73aa32f1a45a72e17c158ac47db447d3\";i:1404;s:40:\"twitter_73aa32f1a45a72e17c158ac47db447d3\";i:1405;s:35:\"gp_73aa32f1a45a72e17c158ac47db447d3\";i:1406;s:42:\"pinterest_73aa32f1a45a72e17c158ac47db447d3\";i:1407;s:41:\"linkedin_73aa32f1a45a72e17c158ac47db447d3\";i:1408;s:35:\"fb_da2da736680882c2b6c0acf00144f443\";i:1409;s:40:\"twitter_da2da736680882c2b6c0acf00144f443\";i:1410;s:35:\"gp_da2da736680882c2b6c0acf00144f443\";i:1411;s:42:\"pinterest_da2da736680882c2b6c0acf00144f443\";i:1412;s:41:\"linkedin_da2da736680882c2b6c0acf00144f443\";i:1413;s:35:\"fb_ffd59eade3be40a23b3ea0117c837017\";i:1414;s:40:\"twitter_ffd59eade3be40a23b3ea0117c837017\";i:1415;s:35:\"gp_ffd59eade3be40a23b3ea0117c837017\";i:1416;s:42:\"pinterest_ffd59eade3be40a23b3ea0117c837017\";i:1417;s:41:\"linkedin_ffd59eade3be40a23b3ea0117c837017\";i:1418;s:35:\"fb_344a54f20af60dffc4788a4a8aabb2d7\";i:1419;s:40:\"twitter_344a54f20af60dffc4788a4a8aabb2d7\";i:1420;s:35:\"gp_344a54f20af60dffc4788a4a8aabb2d7\";i:1421;s:42:\"pinterest_344a54f20af60dffc4788a4a8aabb2d7\";i:1422;s:41:\"linkedin_344a54f20af60dffc4788a4a8aabb2d7\";i:1423;s:35:\"fb_67b68f564d45d6f869c600b7a3e77e74\";i:1424;s:40:\"twitter_67b68f564d45d6f869c600b7a3e77e74\";i:1425;s:35:\"gp_67b68f564d45d6f869c600b7a3e77e74\";i:1426;s:42:\"pinterest_67b68f564d45d6f869c600b7a3e77e74\";i:1427;s:41:\"linkedin_67b68f564d45d6f869c600b7a3e77e74\";i:1428;s:35:\"fb_55d6edc04c18142f4be6daa6614820a1\";i:1429;s:40:\"twitter_55d6edc04c18142f4be6daa6614820a1\";i:1430;s:35:\"gp_55d6edc04c18142f4be6daa6614820a1\";i:1431;s:42:\"pinterest_55d6edc04c18142f4be6daa6614820a1\";i:1432;s:41:\"linkedin_55d6edc04c18142f4be6daa6614820a1\";i:1433;s:35:\"fb_f8f7e9d8f5df22f456d18efb1814214b\";i:1434;s:40:\"twitter_f8f7e9d8f5df22f456d18efb1814214b\";i:1435;s:35:\"gp_f8f7e9d8f5df22f456d18efb1814214b\";i:1436;s:42:\"pinterest_f8f7e9d8f5df22f456d18efb1814214b\";i:1437;s:41:\"linkedin_f8f7e9d8f5df22f456d18efb1814214b\";i:1438;s:35:\"fb_9f458f7ce03d11d125007d9c173ec250\";i:1439;s:40:\"twitter_9f458f7ce03d11d125007d9c173ec250\";i:1440;s:35:\"gp_9f458f7ce03d11d125007d9c173ec250\";i:1441;s:42:\"pinterest_9f458f7ce03d11d125007d9c173ec250\";i:1442;s:41:\"linkedin_9f458f7ce03d11d125007d9c173ec250\";i:1443;s:35:\"fb_a66a600f1486fb6d02f775e80e07caa5\";i:1444;s:40:\"twitter_a66a600f1486fb6d02f775e80e07caa5\";i:1445;s:35:\"gp_a66a600f1486fb6d02f775e80e07caa5\";i:1446;s:42:\"pinterest_a66a600f1486fb6d02f775e80e07caa5\";i:1447;s:41:\"linkedin_a66a600f1486fb6d02f775e80e07caa5\";i:1448;s:35:\"fb_58b3752bd8d478a60d53705a116c6d8c\";i:1449;s:40:\"twitter_58b3752bd8d478a60d53705a116c6d8c\";i:1450;s:35:\"gp_58b3752bd8d478a60d53705a116c6d8c\";i:1451;s:42:\"pinterest_58b3752bd8d478a60d53705a116c6d8c\";i:1452;s:41:\"linkedin_58b3752bd8d478a60d53705a116c6d8c\";i:1453;s:35:\"fb_8a6ddc908747ac60505effbee70009c8\";i:1454;s:40:\"twitter_8a6ddc908747ac60505effbee70009c8\";i:1455;s:35:\"gp_8a6ddc908747ac60505effbee70009c8\";i:1456;s:42:\"pinterest_8a6ddc908747ac60505effbee70009c8\";i:1457;s:41:\"linkedin_8a6ddc908747ac60505effbee70009c8\";i:1458;s:35:\"fb_a2ec86d7ceb0117d59e253c7826c6f38\";i:1459;s:40:\"twitter_a2ec86d7ceb0117d59e253c7826c6f38\";i:1460;s:35:\"gp_a2ec86d7ceb0117d59e253c7826c6f38\";i:1461;s:42:\"pinterest_a2ec86d7ceb0117d59e253c7826c6f38\";i:1462;s:41:\"linkedin_a2ec86d7ceb0117d59e253c7826c6f38\";i:1463;s:35:\"fb_ba118727a0703fdb296fd86989fcbf6c\";i:1464;s:40:\"twitter_ba118727a0703fdb296fd86989fcbf6c\";i:1465;s:35:\"gp_ba118727a0703fdb296fd86989fcbf6c\";i:1466;s:42:\"pinterest_ba118727a0703fdb296fd86989fcbf6c\";i:1467;s:41:\"linkedin_ba118727a0703fdb296fd86989fcbf6c\";i:1468;s:35:\"fb_2acd549ee17542187232239f4af7be56\";i:1469;s:40:\"twitter_2acd549ee17542187232239f4af7be56\";i:1470;s:35:\"gp_2acd549ee17542187232239f4af7be56\";i:1471;s:42:\"pinterest_2acd549ee17542187232239f4af7be56\";i:1472;s:41:\"linkedin_2acd549ee17542187232239f4af7be56\";i:1473;s:35:\"fb_e50e36ba9dc9289a1cf67a84cb9bd211\";i:1474;s:40:\"twitter_e50e36ba9dc9289a1cf67a84cb9bd211\";i:1475;s:35:\"gp_e50e36ba9dc9289a1cf67a84cb9bd211\";i:1476;s:42:\"pinterest_e50e36ba9dc9289a1cf67a84cb9bd211\";i:1477;s:41:\"linkedin_e50e36ba9dc9289a1cf67a84cb9bd211\";i:1478;s:35:\"fb_6a4664a67cfabcea3ddd9010a086a0f1\";i:1479;s:40:\"twitter_6a4664a67cfabcea3ddd9010a086a0f1\";i:1480;s:35:\"gp_6a4664a67cfabcea3ddd9010a086a0f1\";i:1481;s:42:\"pinterest_6a4664a67cfabcea3ddd9010a086a0f1\";i:1482;s:41:\"linkedin_6a4664a67cfabcea3ddd9010a086a0f1\";i:1483;s:35:\"fb_becb2277b179cb1bedd307c1c7561698\";i:1484;s:40:\"twitter_becb2277b179cb1bedd307c1c7561698\";i:1485;s:35:\"gp_becb2277b179cb1bedd307c1c7561698\";i:1486;s:42:\"pinterest_becb2277b179cb1bedd307c1c7561698\";i:1487;s:41:\"linkedin_becb2277b179cb1bedd307c1c7561698\";i:1488;s:35:\"fb_ee95d60f674723cc27e146aacb3de9db\";i:1489;s:40:\"twitter_ee95d60f674723cc27e146aacb3de9db\";i:1490;s:35:\"gp_ee95d60f674723cc27e146aacb3de9db\";i:1491;s:42:\"pinterest_ee95d60f674723cc27e146aacb3de9db\";i:1492;s:41:\"linkedin_ee95d60f674723cc27e146aacb3de9db\";i:1493;s:35:\"fb_153c5f61872ce5c9e9576616bde3582f\";i:1494;s:40:\"twitter_153c5f61872ce5c9e9576616bde3582f\";i:1495;s:35:\"gp_153c5f61872ce5c9e9576616bde3582f\";i:1496;s:42:\"pinterest_153c5f61872ce5c9e9576616bde3582f\";i:1497;s:41:\"linkedin_153c5f61872ce5c9e9576616bde3582f\";i:1498;s:35:\"fb_724fe35f7e9608f5132d71eeeeebbda1\";i:1499;s:40:\"twitter_724fe35f7e9608f5132d71eeeeebbda1\";i:1500;s:35:\"gp_724fe35f7e9608f5132d71eeeeebbda1\";i:1501;s:42:\"pinterest_724fe35f7e9608f5132d71eeeeebbda1\";i:1502;s:41:\"linkedin_724fe35f7e9608f5132d71eeeeebbda1\";i:1503;s:35:\"fb_737871076b847ca427713ca4787d46f5\";i:1504;s:40:\"twitter_737871076b847ca427713ca4787d46f5\";i:1505;s:35:\"gp_737871076b847ca427713ca4787d46f5\";i:1506;s:42:\"pinterest_737871076b847ca427713ca4787d46f5\";i:1507;s:41:\"linkedin_737871076b847ca427713ca4787d46f5\";i:1508;s:35:\"fb_73fe6a2482b69fb02701fbf1d2fba44e\";i:1509;s:40:\"twitter_73fe6a2482b69fb02701fbf1d2fba44e\";i:1510;s:35:\"gp_73fe6a2482b69fb02701fbf1d2fba44e\";i:1511;s:42:\"pinterest_73fe6a2482b69fb02701fbf1d2fba44e\";i:1512;s:41:\"linkedin_73fe6a2482b69fb02701fbf1d2fba44e\";i:1513;s:35:\"fb_3e6460325f8529bf2c3c5772677adac2\";i:1514;s:40:\"twitter_3e6460325f8529bf2c3c5772677adac2\";i:1515;s:35:\"gp_3e6460325f8529bf2c3c5772677adac2\";i:1516;s:42:\"pinterest_3e6460325f8529bf2c3c5772677adac2\";i:1517;s:41:\"linkedin_3e6460325f8529bf2c3c5772677adac2\";i:1518;s:35:\"fb_65f2e589bb2ef0de3e751d3fc2f3021c\";i:1519;s:40:\"twitter_65f2e589bb2ef0de3e751d3fc2f3021c\";i:1520;s:35:\"gp_65f2e589bb2ef0de3e751d3fc2f3021c\";i:1521;s:42:\"pinterest_65f2e589bb2ef0de3e751d3fc2f3021c\";i:1522;s:41:\"linkedin_65f2e589bb2ef0de3e751d3fc2f3021c\";i:1523;s:35:\"fb_e3fa8ff9775faed4e8c26e8c18924253\";i:1524;s:40:\"twitter_e3fa8ff9775faed4e8c26e8c18924253\";i:1525;s:35:\"gp_e3fa8ff9775faed4e8c26e8c18924253\";i:1526;s:42:\"pinterest_e3fa8ff9775faed4e8c26e8c18924253\";i:1527;s:41:\"linkedin_e3fa8ff9775faed4e8c26e8c18924253\";i:1528;s:35:\"fb_566ba6a310ebbf964491bb9670db3150\";i:1529;s:40:\"twitter_566ba6a310ebbf964491bb9670db3150\";i:1530;s:35:\"gp_566ba6a310ebbf964491bb9670db3150\";i:1531;s:42:\"pinterest_566ba6a310ebbf964491bb9670db3150\";i:1532;s:41:\"linkedin_566ba6a310ebbf964491bb9670db3150\";i:1533;s:35:\"fb_33004dd473527c60d57db07860d2be95\";i:1534;s:40:\"twitter_33004dd473527c60d57db07860d2be95\";i:1535;s:35:\"gp_33004dd473527c60d57db07860d2be95\";i:1536;s:42:\"pinterest_33004dd473527c60d57db07860d2be95\";i:1537;s:41:\"linkedin_33004dd473527c60d57db07860d2be95\";i:1538;s:35:\"fb_7a507aa0038b4f6e2195b84c9559c179\";i:1539;s:40:\"twitter_7a507aa0038b4f6e2195b84c9559c179\";i:1540;s:35:\"gp_7a507aa0038b4f6e2195b84c9559c179\";i:1541;s:42:\"pinterest_7a507aa0038b4f6e2195b84c9559c179\";i:1542;s:41:\"linkedin_7a507aa0038b4f6e2195b84c9559c179\";i:1543;s:35:\"fb_9f70a8334e1d8bce76d6ef42a293ffdf\";i:1544;s:40:\"twitter_9f70a8334e1d8bce76d6ef42a293ffdf\";i:1545;s:35:\"gp_9f70a8334e1d8bce76d6ef42a293ffdf\";i:1546;s:42:\"pinterest_9f70a8334e1d8bce76d6ef42a293ffdf\";i:1547;s:41:\"linkedin_9f70a8334e1d8bce76d6ef42a293ffdf\";i:1548;s:35:\"fb_33791057a00ff94e6756a58465523b5a\";i:1549;s:40:\"twitter_33791057a00ff94e6756a58465523b5a\";i:1550;s:35:\"gp_33791057a00ff94e6756a58465523b5a\";i:1551;s:42:\"pinterest_33791057a00ff94e6756a58465523b5a\";i:1552;s:41:\"linkedin_33791057a00ff94e6756a58465523b5a\";i:1553;s:35:\"fb_a15219357197eed61be117e8ddf49b1e\";i:1554;s:40:\"twitter_a15219357197eed61be117e8ddf49b1e\";i:1555;s:35:\"gp_a15219357197eed61be117e8ddf49b1e\";i:1556;s:42:\"pinterest_a15219357197eed61be117e8ddf49b1e\";i:1557;s:41:\"linkedin_a15219357197eed61be117e8ddf49b1e\";i:1558;s:35:\"fb_88e55f6b85bb4e30b0984dd272eb812f\";i:1559;s:40:\"twitter_88e55f6b85bb4e30b0984dd272eb812f\";i:1560;s:35:\"gp_88e55f6b85bb4e30b0984dd272eb812f\";i:1561;s:42:\"pinterest_88e55f6b85bb4e30b0984dd272eb812f\";i:1562;s:41:\"linkedin_88e55f6b85bb4e30b0984dd272eb812f\";i:1563;s:42:\"pinterest_afeaa9791e2fc01720f6a730febaf111\";i:1564;s:41:\"linkedin_afeaa9791e2fc01720f6a730febaf111\";i:1565;s:35:\"fb_6f355871875334caa5ca24e7fd10e49e\";i:1566;s:40:\"twitter_6f355871875334caa5ca24e7fd10e49e\";i:1567;s:35:\"gp_6f355871875334caa5ca24e7fd10e49e\";i:1568;s:42:\"pinterest_6f355871875334caa5ca24e7fd10e49e\";i:1569;s:41:\"linkedin_6f355871875334caa5ca24e7fd10e49e\";i:1570;s:35:\"fb_e5420d6883d620ec01102f725a40edcd\";i:1571;s:40:\"twitter_e5420d6883d620ec01102f725a40edcd\";i:1572;s:35:\"gp_e5420d6883d620ec01102f725a40edcd\";i:1573;s:42:\"pinterest_e5420d6883d620ec01102f725a40edcd\";i:1574;s:41:\"linkedin_e5420d6883d620ec01102f725a40edcd\";i:1575;s:35:\"fb_9d56ed7e3648b7ac329c1fbf3b9ad28d\";i:1576;s:40:\"twitter_9d56ed7e3648b7ac329c1fbf3b9ad28d\";i:1577;s:35:\"gp_9d56ed7e3648b7ac329c1fbf3b9ad28d\";i:1578;s:42:\"pinterest_9d56ed7e3648b7ac329c1fbf3b9ad28d\";i:1579;s:41:\"linkedin_9d56ed7e3648b7ac329c1fbf3b9ad28d\";i:1580;s:35:\"fb_33ab7f1e377e921ae4686e4758ed239a\";i:1581;s:40:\"twitter_33ab7f1e377e921ae4686e4758ed239a\";i:1582;s:35:\"gp_33ab7f1e377e921ae4686e4758ed239a\";i:1583;s:42:\"pinterest_33ab7f1e377e921ae4686e4758ed239a\";i:1584;s:41:\"linkedin_33ab7f1e377e921ae4686e4758ed239a\";i:1585;s:35:\"fb_4f2d2b7daff952e6a06e043e1d09b228\";i:1586;s:40:\"twitter_4f2d2b7daff952e6a06e043e1d09b228\";i:1587;s:35:\"gp_4f2d2b7daff952e6a06e043e1d09b228\";i:1588;s:42:\"pinterest_4f2d2b7daff952e6a06e043e1d09b228\";i:1589;s:41:\"linkedin_4f2d2b7daff952e6a06e043e1d09b228\";i:1590;s:35:\"fb_911b96fbad9225862e854a8bfae67a7b\";i:1591;s:40:\"twitter_911b96fbad9225862e854a8bfae67a7b\";i:1592;s:35:\"gp_911b96fbad9225862e854a8bfae67a7b\";i:1593;s:42:\"pinterest_911b96fbad9225862e854a8bfae67a7b\";i:1594;s:41:\"linkedin_911b96fbad9225862e854a8bfae67a7b\";i:1595;s:35:\"fb_c1e0252b8a2a0e219a22f5488220ccad\";i:1596;s:40:\"twitter_c1e0252b8a2a0e219a22f5488220ccad\";i:1597;s:35:\"gp_c1e0252b8a2a0e219a22f5488220ccad\";i:1598;s:42:\"pinterest_c1e0252b8a2a0e219a22f5488220ccad\";i:1599;s:41:\"linkedin_c1e0252b8a2a0e219a22f5488220ccad\";i:1600;s:35:\"fb_7d63286d35f3489bb7a38263dbcc2f1c\";i:1601;s:40:\"twitter_7d63286d35f3489bb7a38263dbcc2f1c\";i:1602;s:35:\"gp_7d63286d35f3489bb7a38263dbcc2f1c\";i:1603;s:42:\"pinterest_7d63286d35f3489bb7a38263dbcc2f1c\";i:1604;s:41:\"linkedin_7d63286d35f3489bb7a38263dbcc2f1c\";i:1605;s:35:\"fb_3420a6fd9aeb792f5f0d897f23a81650\";i:1606;s:40:\"twitter_3420a6fd9aeb792f5f0d897f23a81650\";i:1607;s:35:\"gp_3420a6fd9aeb792f5f0d897f23a81650\";i:1608;s:42:\"pinterest_3420a6fd9aeb792f5f0d897f23a81650\";i:1609;s:41:\"linkedin_3420a6fd9aeb792f5f0d897f23a81650\";i:1610;s:35:\"fb_90f44ab6cdc6f032c5cd9879e64d5901\";i:1611;s:40:\"twitter_90f44ab6cdc6f032c5cd9879e64d5901\";i:1612;s:35:\"gp_90f44ab6cdc6f032c5cd9879e64d5901\";i:1613;s:42:\"pinterest_90f44ab6cdc6f032c5cd9879e64d5901\";i:1614;s:41:\"linkedin_90f44ab6cdc6f032c5cd9879e64d5901\";i:1615;s:35:\"fb_e4233a3bac6c9d9a0a986e9cdc0af7f3\";i:1616;s:40:\"twitter_e4233a3bac6c9d9a0a986e9cdc0af7f3\";i:1617;s:35:\"gp_e4233a3bac6c9d9a0a986e9cdc0af7f3\";i:1618;s:42:\"pinterest_e4233a3bac6c9d9a0a986e9cdc0af7f3\";i:1619;s:41:\"linkedin_e4233a3bac6c9d9a0a986e9cdc0af7f3\";i:1620;s:35:\"fb_bbd01b89c6071c2fd671ee277e577f16\";i:1621;s:40:\"twitter_bbd01b89c6071c2fd671ee277e577f16\";i:1622;s:35:\"gp_bbd01b89c6071c2fd671ee277e577f16\";i:1623;s:42:\"pinterest_bbd01b89c6071c2fd671ee277e577f16\";i:1624;s:41:\"linkedin_bbd01b89c6071c2fd671ee277e577f16\";i:1625;s:35:\"fb_d3db1a42758eda60fe754889aaf8bd48\";i:1626;s:40:\"twitter_d3db1a42758eda60fe754889aaf8bd48\";i:1627;s:35:\"gp_d3db1a42758eda60fe754889aaf8bd48\";i:1628;s:42:\"pinterest_d3db1a42758eda60fe754889aaf8bd48\";i:1629;s:41:\"linkedin_d3db1a42758eda60fe754889aaf8bd48\";i:1630;s:35:\"fb_7fd9f8e624028f01fdc52b289f2ee8d0\";i:1631;s:40:\"twitter_7fd9f8e624028f01fdc52b289f2ee8d0\";i:1632;s:35:\"gp_7fd9f8e624028f01fdc52b289f2ee8d0\";i:1633;s:42:\"pinterest_7fd9f8e624028f01fdc52b289f2ee8d0\";i:1634;s:41:\"linkedin_7fd9f8e624028f01fdc52b289f2ee8d0\";i:1635;s:35:\"fb_f8677f1834fe1dee022822001967ed30\";i:1636;s:40:\"twitter_f8677f1834fe1dee022822001967ed30\";i:1637;s:35:\"gp_f8677f1834fe1dee022822001967ed30\";i:1638;s:42:\"pinterest_f8677f1834fe1dee022822001967ed30\";i:1639;s:41:\"linkedin_f8677f1834fe1dee022822001967ed30\";i:1640;s:35:\"fb_41bb9bef73ac1067c5968f8b749e4b82\";i:1641;s:40:\"twitter_41bb9bef73ac1067c5968f8b749e4b82\";i:1642;s:35:\"gp_41bb9bef73ac1067c5968f8b749e4b82\";i:1643;s:42:\"pinterest_41bb9bef73ac1067c5968f8b749e4b82\";i:1644;s:41:\"linkedin_41bb9bef73ac1067c5968f8b749e4b82\";i:1645;s:35:\"fb_a6fa4bd24e5fca801b40dd9b1bcd32bf\";i:1646;s:40:\"twitter_a6fa4bd24e5fca801b40dd9b1bcd32bf\";i:1647;s:35:\"gp_a6fa4bd24e5fca801b40dd9b1bcd32bf\";i:1648;s:42:\"pinterest_a6fa4bd24e5fca801b40dd9b1bcd32bf\";i:1649;s:41:\"linkedin_a6fa4bd24e5fca801b40dd9b1bcd32bf\";i:1650;s:35:\"fb_edf4ef9ff27c5598f8c3c4174342e7d4\";i:1651;s:40:\"twitter_edf4ef9ff27c5598f8c3c4174342e7d4\";i:1652;s:35:\"gp_edf4ef9ff27c5598f8c3c4174342e7d4\";i:1653;s:42:\"pinterest_edf4ef9ff27c5598f8c3c4174342e7d4\";i:1654;s:41:\"linkedin_edf4ef9ff27c5598f8c3c4174342e7d4\";i:1655;s:35:\"fb_6ddb0b3434081a7141e9646860ad283d\";i:1656;s:40:\"twitter_6ddb0b3434081a7141e9646860ad283d\";i:1657;s:35:\"gp_6ddb0b3434081a7141e9646860ad283d\";i:1658;s:42:\"pinterest_6ddb0b3434081a7141e9646860ad283d\";i:1659;s:41:\"linkedin_6ddb0b3434081a7141e9646860ad283d\";i:1660;s:35:\"fb_cf01431cf2dc49dfae0da5f38ea7e92d\";i:1661;s:40:\"twitter_cf01431cf2dc49dfae0da5f38ea7e92d\";i:1662;s:35:\"gp_cf01431cf2dc49dfae0da5f38ea7e92d\";i:1663;s:42:\"pinterest_cf01431cf2dc49dfae0da5f38ea7e92d\";i:1664;s:41:\"linkedin_cf01431cf2dc49dfae0da5f38ea7e92d\";i:1665;s:35:\"fb_6fdd7efc3a04c64ae087c84f5add9347\";i:1666;s:40:\"twitter_6fdd7efc3a04c64ae087c84f5add9347\";i:1667;s:35:\"gp_6fdd7efc3a04c64ae087c84f5add9347\";i:1668;s:42:\"pinterest_6fdd7efc3a04c64ae087c84f5add9347\";i:1669;s:41:\"linkedin_6fdd7efc3a04c64ae087c84f5add9347\";i:1670;s:35:\"fb_7e6d91a6686afd1759665ea2ccd311e8\";i:1671;s:40:\"twitter_7e6d91a6686afd1759665ea2ccd311e8\";i:1672;s:35:\"gp_7e6d91a6686afd1759665ea2ccd311e8\";i:1673;s:42:\"pinterest_7e6d91a6686afd1759665ea2ccd311e8\";i:1674;s:41:\"linkedin_7e6d91a6686afd1759665ea2ccd311e8\";i:1675;s:35:\"fb_ea47b9c13bd683569c4998a6c11e7a83\";i:1676;s:40:\"twitter_ea47b9c13bd683569c4998a6c11e7a83\";i:1677;s:35:\"gp_ea47b9c13bd683569c4998a6c11e7a83\";i:1678;s:42:\"pinterest_ea47b9c13bd683569c4998a6c11e7a83\";i:1679;s:41:\"linkedin_ea47b9c13bd683569c4998a6c11e7a83\";i:1680;s:35:\"fb_aabe91d984265eddcd458d53cb29a2c3\";i:1681;s:40:\"twitter_aabe91d984265eddcd458d53cb29a2c3\";i:1682;s:35:\"gp_aabe91d984265eddcd458d53cb29a2c3\";i:1683;s:42:\"pinterest_aabe91d984265eddcd458d53cb29a2c3\";i:1684;s:41:\"linkedin_aabe91d984265eddcd458d53cb29a2c3\";i:1685;s:35:\"fb_01fc91026184b2c33b24d7832e822246\";i:1686;s:40:\"twitter_01fc91026184b2c33b24d7832e822246\";i:1687;s:35:\"gp_01fc91026184b2c33b24d7832e822246\";i:1688;s:42:\"pinterest_01fc91026184b2c33b24d7832e822246\";i:1689;s:41:\"linkedin_01fc91026184b2c33b24d7832e822246\";i:1690;s:35:\"fb_258d9bdb236dd742032d13b897d5c0e5\";i:1691;s:40:\"twitter_258d9bdb236dd742032d13b897d5c0e5\";i:1692;s:35:\"gp_258d9bdb236dd742032d13b897d5c0e5\";i:1693;s:42:\"pinterest_258d9bdb236dd742032d13b897d5c0e5\";i:1694;s:41:\"linkedin_258d9bdb236dd742032d13b897d5c0e5\";i:1695;s:35:\"fb_db7796acd2b70ff48ae739099ec46f96\";i:1696;s:40:\"twitter_db7796acd2b70ff48ae739099ec46f96\";i:1697;s:35:\"gp_db7796acd2b70ff48ae739099ec46f96\";i:1698;s:42:\"pinterest_db7796acd2b70ff48ae739099ec46f96\";i:1699;s:41:\"linkedin_db7796acd2b70ff48ae739099ec46f96\";i:1700;s:35:\"fb_3ca7aeb99523350e3fc91c052a809f1c\";i:1701;s:40:\"twitter_3ca7aeb99523350e3fc91c052a809f1c\";i:1702;s:35:\"gp_3ca7aeb99523350e3fc91c052a809f1c\";i:1703;s:42:\"pinterest_3ca7aeb99523350e3fc91c052a809f1c\";i:1704;s:41:\"linkedin_3ca7aeb99523350e3fc91c052a809f1c\";i:1705;s:35:\"fb_b3c3c42c8c9b8d8bc626e92e898d7d2b\";i:1706;s:40:\"twitter_b3c3c42c8c9b8d8bc626e92e898d7d2b\";i:1707;s:35:\"gp_b3c3c42c8c9b8d8bc626e92e898d7d2b\";i:1708;s:42:\"pinterest_b3c3c42c8c9b8d8bc626e92e898d7d2b\";i:1709;s:41:\"linkedin_b3c3c42c8c9b8d8bc626e92e898d7d2b\";i:1710;s:35:\"fb_93efdb46dd18be9c3a17eeef7def4f22\";i:1711;s:40:\"twitter_93efdb46dd18be9c3a17eeef7def4f22\";i:1712;s:35:\"gp_93efdb46dd18be9c3a17eeef7def4f22\";i:1713;s:42:\"pinterest_93efdb46dd18be9c3a17eeef7def4f22\";i:1714;s:41:\"linkedin_93efdb46dd18be9c3a17eeef7def4f22\";i:1715;s:35:\"fb_389c7897d3d150bbf0556a3208191423\";i:1716;s:40:\"twitter_389c7897d3d150bbf0556a3208191423\";i:1717;s:35:\"gp_389c7897d3d150bbf0556a3208191423\";i:1718;s:42:\"pinterest_389c7897d3d150bbf0556a3208191423\";i:1719;s:41:\"linkedin_389c7897d3d150bbf0556a3208191423\";i:1720;s:35:\"fb_c5c12d9e27e13945ef716bc2dd616fd6\";i:1721;s:40:\"twitter_c5c12d9e27e13945ef716bc2dd616fd6\";i:1722;s:35:\"gp_c5c12d9e27e13945ef716bc2dd616fd6\";i:1723;s:42:\"pinterest_c5c12d9e27e13945ef716bc2dd616fd6\";i:1724;s:41:\"linkedin_c5c12d9e27e13945ef716bc2dd616fd6\";i:1725;s:35:\"fb_149715aa4215f39c2a6d90de5ed29051\";i:1726;s:40:\"twitter_149715aa4215f39c2a6d90de5ed29051\";i:1727;s:35:\"gp_149715aa4215f39c2a6d90de5ed29051\";i:1728;s:42:\"pinterest_149715aa4215f39c2a6d90de5ed29051\";i:1729;s:41:\"linkedin_149715aa4215f39c2a6d90de5ed29051\";i:1730;s:35:\"fb_5bc9e6f45b486aa441b007e336292b84\";i:1731;s:40:\"twitter_5bc9e6f45b486aa441b007e336292b84\";i:1732;s:35:\"gp_5bc9e6f45b486aa441b007e336292b84\";i:1733;s:42:\"pinterest_5bc9e6f45b486aa441b007e336292b84\";i:1734;s:41:\"linkedin_5bc9e6f45b486aa441b007e336292b84\";i:1735;s:35:\"fb_44ff87314d199372a7d62f50c97f5248\";i:1736;s:40:\"twitter_44ff87314d199372a7d62f50c97f5248\";i:1737;s:35:\"gp_44ff87314d199372a7d62f50c97f5248\";i:1738;s:42:\"pinterest_44ff87314d199372a7d62f50c97f5248\";i:1739;s:41:\"linkedin_44ff87314d199372a7d62f50c97f5248\";i:1740;s:35:\"fb_2af22f1c15f4614394caccad32a4be83\";i:1741;s:40:\"twitter_2af22f1c15f4614394caccad32a4be83\";i:1742;s:35:\"gp_2af22f1c15f4614394caccad32a4be83\";i:1743;s:42:\"pinterest_2af22f1c15f4614394caccad32a4be83\";i:1744;s:41:\"linkedin_2af22f1c15f4614394caccad32a4be83\";i:1745;s:35:\"fb_d210e8b8d9e28074fbf9650a41dcb443\";i:1746;s:40:\"twitter_d210e8b8d9e28074fbf9650a41dcb443\";i:1747;s:35:\"gp_d210e8b8d9e28074fbf9650a41dcb443\";i:1748;s:42:\"pinterest_d210e8b8d9e28074fbf9650a41dcb443\";i:1749;s:41:\"linkedin_d210e8b8d9e28074fbf9650a41dcb443\";i:1750;s:35:\"fb_df2fcc7ac47cb7940c5eb9dc73f43d4d\";i:1751;s:40:\"twitter_df2fcc7ac47cb7940c5eb9dc73f43d4d\";i:1752;s:35:\"gp_df2fcc7ac47cb7940c5eb9dc73f43d4d\";i:1753;s:42:\"pinterest_df2fcc7ac47cb7940c5eb9dc73f43d4d\";i:1754;s:41:\"linkedin_df2fcc7ac47cb7940c5eb9dc73f43d4d\";i:1755;s:35:\"fb_19ddd0a78fa05bb729b3f7eca4788f45\";i:1756;s:40:\"twitter_19ddd0a78fa05bb729b3f7eca4788f45\";i:1757;s:35:\"gp_19ddd0a78fa05bb729b3f7eca4788f45\";i:1758;s:42:\"pinterest_19ddd0a78fa05bb729b3f7eca4788f45\";i:1759;s:41:\"linkedin_19ddd0a78fa05bb729b3f7eca4788f45\";i:1760;s:35:\"fb_7b8d0e8790ccde4c48d600c95a9eb4b0\";i:1761;s:40:\"twitter_7b8d0e8790ccde4c48d600c95a9eb4b0\";i:1762;s:35:\"gp_7b8d0e8790ccde4c48d600c95a9eb4b0\";i:1763;s:42:\"pinterest_7b8d0e8790ccde4c48d600c95a9eb4b0\";i:1764;s:41:\"linkedin_7b8d0e8790ccde4c48d600c95a9eb4b0\";i:1765;s:35:\"fb_7cb7f17c043a743f390db97db4303262\";i:1766;s:40:\"twitter_7cb7f17c043a743f390db97db4303262\";i:1767;s:35:\"gp_7cb7f17c043a743f390db97db4303262\";i:1768;s:42:\"pinterest_7cb7f17c043a743f390db97db4303262\";i:1769;s:41:\"linkedin_7cb7f17c043a743f390db97db4303262\";i:1770;s:35:\"fb_adf138f3a0b26cf20cea26237dcdb6e1\";i:1771;s:40:\"twitter_adf138f3a0b26cf20cea26237dcdb6e1\";i:1772;s:35:\"gp_adf138f3a0b26cf20cea26237dcdb6e1\";i:1773;s:42:\"pinterest_adf138f3a0b26cf20cea26237dcdb6e1\";i:1774;s:41:\"linkedin_adf138f3a0b26cf20cea26237dcdb6e1\";i:1775;s:35:\"fb_89b308f08def1a794f60cebd9e54431b\";i:1776;s:40:\"twitter_89b308f08def1a794f60cebd9e54431b\";i:1777;s:35:\"gp_89b308f08def1a794f60cebd9e54431b\";i:1778;s:42:\"pinterest_89b308f08def1a794f60cebd9e54431b\";i:1779;s:41:\"linkedin_89b308f08def1a794f60cebd9e54431b\";i:1780;s:35:\"fb_612c81f81063e1502219a44886e2d222\";i:1781;s:40:\"twitter_612c81f81063e1502219a44886e2d222\";i:1782;s:35:\"gp_612c81f81063e1502219a44886e2d222\";i:1783;s:42:\"pinterest_612c81f81063e1502219a44886e2d222\";i:1784;s:41:\"linkedin_612c81f81063e1502219a44886e2d222\";i:1785;s:35:\"fb_42b6ba4a15a66e238dd44b53db55d36f\";i:1786;s:40:\"twitter_42b6ba4a15a66e238dd44b53db55d36f\";i:1787;s:35:\"gp_42b6ba4a15a66e238dd44b53db55d36f\";i:1788;s:42:\"pinterest_42b6ba4a15a66e238dd44b53db55d36f\";i:1789;s:41:\"linkedin_42b6ba4a15a66e238dd44b53db55d36f\";i:1790;s:35:\"fb_beed09b8668980ddfde0c6ce8debf146\";i:1791;s:40:\"twitter_beed09b8668980ddfde0c6ce8debf146\";i:1792;s:35:\"gp_beed09b8668980ddfde0c6ce8debf146\";i:1793;s:42:\"pinterest_beed09b8668980ddfde0c6ce8debf146\";i:1794;s:41:\"linkedin_beed09b8668980ddfde0c6ce8debf146\";i:1795;s:35:\"fb_8cd45fe24423010e4ea8860f43030ee8\";i:1796;s:40:\"twitter_8cd45fe24423010e4ea8860f43030ee8\";i:1797;s:35:\"gp_8cd45fe24423010e4ea8860f43030ee8\";i:1798;s:42:\"pinterest_8cd45fe24423010e4ea8860f43030ee8\";i:1799;s:41:\"linkedin_8cd45fe24423010e4ea8860f43030ee8\";i:1800;s:35:\"fb_2e230609d9d601800105f6794b3130f8\";i:1801;s:40:\"twitter_2e230609d9d601800105f6794b3130f8\";i:1802;s:35:\"gp_2e230609d9d601800105f6794b3130f8\";i:1803;s:42:\"pinterest_2e230609d9d601800105f6794b3130f8\";i:1804;s:41:\"linkedin_2e230609d9d601800105f6794b3130f8\";i:1805;s:35:\"fb_19098bee94ed7159fb4848ff534d1e67\";i:1806;s:40:\"twitter_19098bee94ed7159fb4848ff534d1e67\";i:1807;s:35:\"gp_19098bee94ed7159fb4848ff534d1e67\";i:1808;s:42:\"pinterest_19098bee94ed7159fb4848ff534d1e67\";i:1809;s:41:\"linkedin_19098bee94ed7159fb4848ff534d1e67\";i:1810;s:35:\"fb_796db431f2a8ac4fc819449dd63459ce\";i:1811;s:40:\"twitter_796db431f2a8ac4fc819449dd63459ce\";i:1812;s:35:\"gp_796db431f2a8ac4fc819449dd63459ce\";i:1813;s:42:\"pinterest_796db431f2a8ac4fc819449dd63459ce\";i:1814;s:41:\"linkedin_796db431f2a8ac4fc819449dd63459ce\";i:1815;s:35:\"fb_bb5bdb369ecc600f5f639653c5ec6b85\";i:1816;s:40:\"twitter_bb5bdb369ecc600f5f639653c5ec6b85\";i:1817;s:35:\"gp_bb5bdb369ecc600f5f639653c5ec6b85\";i:1818;s:42:\"pinterest_bb5bdb369ecc600f5f639653c5ec6b85\";i:1819;s:41:\"linkedin_bb5bdb369ecc600f5f639653c5ec6b85\";i:1820;s:35:\"fb_4400cc16d9e0b101a512df38095d34cd\";i:1821;s:40:\"twitter_4400cc16d9e0b101a512df38095d34cd\";i:1822;s:35:\"gp_4400cc16d9e0b101a512df38095d34cd\";i:1823;s:42:\"pinterest_4400cc16d9e0b101a512df38095d34cd\";i:1824;s:41:\"linkedin_4400cc16d9e0b101a512df38095d34cd\";i:1825;s:35:\"fb_ce98cc24e9c57835f554a5512d54571b\";i:1826;s:40:\"twitter_ce98cc24e9c57835f554a5512d54571b\";i:1827;s:35:\"gp_ce98cc24e9c57835f554a5512d54571b\";i:1828;s:42:\"pinterest_ce98cc24e9c57835f554a5512d54571b\";i:1829;s:41:\"linkedin_ce98cc24e9c57835f554a5512d54571b\";i:1830;s:35:\"fb_d3ca3529de0ee51749a9943da1428234\";i:1831;s:40:\"twitter_d3ca3529de0ee51749a9943da1428234\";i:1832;s:35:\"gp_d3ca3529de0ee51749a9943da1428234\";i:1833;s:42:\"pinterest_d3ca3529de0ee51749a9943da1428234\";i:1834;s:41:\"linkedin_d3ca3529de0ee51749a9943da1428234\";i:1835;s:35:\"fb_70e3704093485ed9e312dd2738ac7b2e\";i:1836;s:40:\"twitter_70e3704093485ed9e312dd2738ac7b2e\";i:1837;s:35:\"gp_70e3704093485ed9e312dd2738ac7b2e\";i:1838;s:42:\"pinterest_70e3704093485ed9e312dd2738ac7b2e\";i:1839;s:41:\"linkedin_70e3704093485ed9e312dd2738ac7b2e\";i:1840;s:35:\"fb_ec676cc3bbfe0bce64bc580a8b9a5519\";i:1841;s:40:\"twitter_ec676cc3bbfe0bce64bc580a8b9a5519\";i:1842;s:35:\"gp_ec676cc3bbfe0bce64bc580a8b9a5519\";i:1843;s:42:\"pinterest_ec676cc3bbfe0bce64bc580a8b9a5519\";i:1844;s:41:\"linkedin_ec676cc3bbfe0bce64bc580a8b9a5519\";i:1845;s:35:\"fb_712230ba8ed3c1b823292a7620be0563\";i:1846;s:40:\"twitter_712230ba8ed3c1b823292a7620be0563\";i:1847;s:35:\"gp_712230ba8ed3c1b823292a7620be0563\";i:1848;s:42:\"pinterest_712230ba8ed3c1b823292a7620be0563\";i:1849;s:41:\"linkedin_712230ba8ed3c1b823292a7620be0563\";i:1850;s:35:\"fb_cce8dfa2d56b3578038adfa0e234c0dc\";i:1851;s:40:\"twitter_cce8dfa2d56b3578038adfa0e234c0dc\";i:1852;s:35:\"gp_cce8dfa2d56b3578038adfa0e234c0dc\";i:1853;s:42:\"pinterest_cce8dfa2d56b3578038adfa0e234c0dc\";i:1854;s:41:\"linkedin_cce8dfa2d56b3578038adfa0e234c0dc\";i:1855;s:35:\"fb_87fdb69242ae52816941c91f89ed5077\";i:1856;s:40:\"twitter_87fdb69242ae52816941c91f89ed5077\";i:1857;s:35:\"gp_87fdb69242ae52816941c91f89ed5077\";i:1858;s:42:\"pinterest_87fdb69242ae52816941c91f89ed5077\";i:1859;s:41:\"linkedin_87fdb69242ae52816941c91f89ed5077\";i:1860;s:35:\"fb_b716dd3412d042d00d7a1b9a185dcf31\";i:1861;s:40:\"twitter_b716dd3412d042d00d7a1b9a185dcf31\";i:1862;s:35:\"gp_b716dd3412d042d00d7a1b9a185dcf31\";i:1863;s:42:\"pinterest_b716dd3412d042d00d7a1b9a185dcf31\";i:1864;s:41:\"linkedin_b716dd3412d042d00d7a1b9a185dcf31\";i:1865;s:35:\"fb_6fc7158d79a90110c19ee391c015126e\";i:1866;s:40:\"twitter_6fc7158d79a90110c19ee391c015126e\";i:1867;s:35:\"gp_6fc7158d79a90110c19ee391c015126e\";i:1868;s:42:\"pinterest_6fc7158d79a90110c19ee391c015126e\";i:1869;s:41:\"linkedin_6fc7158d79a90110c19ee391c015126e\";i:1870;s:35:\"fb_ec10bafa7cf10f1543f86c09733f8ac2\";i:1871;s:40:\"twitter_ec10bafa7cf10f1543f86c09733f8ac2\";i:1872;s:35:\"gp_ec10bafa7cf10f1543f86c09733f8ac2\";i:1873;s:42:\"pinterest_ec10bafa7cf10f1543f86c09733f8ac2\";i:1874;s:41:\"linkedin_ec10bafa7cf10f1543f86c09733f8ac2\";i:1875;s:35:\"fb_e0a30cfeebc6ec42ca99c5c78a2b8ea6\";i:1876;s:40:\"twitter_e0a30cfeebc6ec42ca99c5c78a2b8ea6\";i:1877;s:35:\"gp_e0a30cfeebc6ec42ca99c5c78a2b8ea6\";i:1878;s:42:\"pinterest_e0a30cfeebc6ec42ca99c5c78a2b8ea6\";i:1879;s:41:\"linkedin_e0a30cfeebc6ec42ca99c5c78a2b8ea6\";i:1880;s:35:\"fb_ba5dd59c5e80e720e7a6cf93d9151446\";i:1881;s:40:\"twitter_ba5dd59c5e80e720e7a6cf93d9151446\";i:1882;s:35:\"gp_ba5dd59c5e80e720e7a6cf93d9151446\";i:1883;s:42:\"pinterest_ba5dd59c5e80e720e7a6cf93d9151446\";i:1884;s:41:\"linkedin_ba5dd59c5e80e720e7a6cf93d9151446\";i:1885;s:35:\"fb_961d42c1e933cb7a281e20f25f40a5d1\";i:1886;s:40:\"twitter_961d42c1e933cb7a281e20f25f40a5d1\";i:1887;s:35:\"gp_961d42c1e933cb7a281e20f25f40a5d1\";i:1888;s:42:\"pinterest_961d42c1e933cb7a281e20f25f40a5d1\";i:1889;s:41:\"linkedin_961d42c1e933cb7a281e20f25f40a5d1\";i:1890;s:35:\"fb_fd63376d7fa4e42bb5e16fdb28075ac6\";i:1891;s:40:\"twitter_fd63376d7fa4e42bb5e16fdb28075ac6\";i:1892;s:35:\"gp_fd63376d7fa4e42bb5e16fdb28075ac6\";i:1893;s:42:\"pinterest_fd63376d7fa4e42bb5e16fdb28075ac6\";i:1894;s:41:\"linkedin_fd63376d7fa4e42bb5e16fdb28075ac6\";i:1895;s:35:\"fb_858dda2cf0209785edb9011ccba8fe4b\";i:1896;s:40:\"twitter_858dda2cf0209785edb9011ccba8fe4b\";i:1897;s:35:\"gp_858dda2cf0209785edb9011ccba8fe4b\";i:1898;s:42:\"pinterest_858dda2cf0209785edb9011ccba8fe4b\";i:1899;s:41:\"linkedin_858dda2cf0209785edb9011ccba8fe4b\";i:1900;s:35:\"fb_fa884f060ad70a97c10d957a15589248\";i:1901;s:40:\"twitter_fa884f060ad70a97c10d957a15589248\";i:1902;s:35:\"gp_fa884f060ad70a97c10d957a15589248\";i:1903;s:42:\"pinterest_fa884f060ad70a97c10d957a15589248\";i:1904;s:41:\"linkedin_fa884f060ad70a97c10d957a15589248\";i:1905;s:35:\"fb_92eae30a36d630428914d1108a31c03c\";i:1906;s:40:\"twitter_92eae30a36d630428914d1108a31c03c\";i:1907;s:35:\"gp_92eae30a36d630428914d1108a31c03c\";i:1908;s:42:\"pinterest_92eae30a36d630428914d1108a31c03c\";i:1909;s:41:\"linkedin_92eae30a36d630428914d1108a31c03c\";i:1910;s:35:\"fb_36d4eb84a3c4b5ddbd802edf44b7ce1e\";i:1911;s:40:\"twitter_36d4eb84a3c4b5ddbd802edf44b7ce1e\";i:1912;s:35:\"gp_36d4eb84a3c4b5ddbd802edf44b7ce1e\";i:1913;s:42:\"pinterest_36d4eb84a3c4b5ddbd802edf44b7ce1e\";i:1914;s:41:\"linkedin_36d4eb84a3c4b5ddbd802edf44b7ce1e\";i:1915;s:35:\"fb_1f7124c0e8cc2b9d6899fd90085011b3\";i:1916;s:40:\"twitter_1f7124c0e8cc2b9d6899fd90085011b3\";i:1917;s:35:\"gp_1f7124c0e8cc2b9d6899fd90085011b3\";i:1918;s:42:\"pinterest_1f7124c0e8cc2b9d6899fd90085011b3\";i:1919;s:41:\"linkedin_1f7124c0e8cc2b9d6899fd90085011b3\";i:1920;s:35:\"fb_37ac5385f8a3a74798bf6a138b845620\";i:1921;s:40:\"twitter_37ac5385f8a3a74798bf6a138b845620\";i:1922;s:35:\"gp_37ac5385f8a3a74798bf6a138b845620\";i:1923;s:42:\"pinterest_37ac5385f8a3a74798bf6a138b845620\";i:1924;s:41:\"linkedin_37ac5385f8a3a74798bf6a138b845620\";i:1925;s:35:\"fb_9fe9e6f8cd8516f2e1f2f408ed71076b\";i:1926;s:40:\"twitter_9fe9e6f8cd8516f2e1f2f408ed71076b\";i:1927;s:35:\"gp_9fe9e6f8cd8516f2e1f2f408ed71076b\";i:1928;s:42:\"pinterest_9fe9e6f8cd8516f2e1f2f408ed71076b\";i:1929;s:41:\"linkedin_9fe9e6f8cd8516f2e1f2f408ed71076b\";i:1930;s:35:\"fb_63fd8ebfcdafc4bc8e17fbeceb2ba67a\";i:1931;s:40:\"twitter_63fd8ebfcdafc4bc8e17fbeceb2ba67a\";i:1932;s:35:\"gp_63fd8ebfcdafc4bc8e17fbeceb2ba67a\";i:1933;s:42:\"pinterest_63fd8ebfcdafc4bc8e17fbeceb2ba67a\";i:1934;s:41:\"linkedin_63fd8ebfcdafc4bc8e17fbeceb2ba67a\";i:1935;s:35:\"fb_4ee8012d48d75c1384c6fdac0c84e12b\";i:1936;s:40:\"twitter_4ee8012d48d75c1384c6fdac0c84e12b\";i:1937;s:35:\"gp_4ee8012d48d75c1384c6fdac0c84e12b\";i:1938;s:42:\"pinterest_4ee8012d48d75c1384c6fdac0c84e12b\";i:1939;s:41:\"linkedin_4ee8012d48d75c1384c6fdac0c84e12b\";i:1940;s:35:\"fb_8f7fa39b9ab70ff928dff14dab8c0d27\";i:1941;s:40:\"twitter_8f7fa39b9ab70ff928dff14dab8c0d27\";i:1942;s:35:\"gp_8f7fa39b9ab70ff928dff14dab8c0d27\";i:1943;s:42:\"pinterest_8f7fa39b9ab70ff928dff14dab8c0d27\";i:1944;s:41:\"linkedin_8f7fa39b9ab70ff928dff14dab8c0d27\";i:1945;s:35:\"fb_efeab8524ef6701b36c253c276485871\";i:1946;s:40:\"twitter_efeab8524ef6701b36c253c276485871\";i:1947;s:35:\"gp_efeab8524ef6701b36c253c276485871\";i:1948;s:42:\"pinterest_efeab8524ef6701b36c253c276485871\";i:1949;s:41:\"linkedin_efeab8524ef6701b36c253c276485871\";i:1950;s:35:\"fb_d791727045d03d6c297eb8839a00a8c3\";i:1951;s:40:\"twitter_d791727045d03d6c297eb8839a00a8c3\";i:1952;s:35:\"gp_d791727045d03d6c297eb8839a00a8c3\";i:1953;s:42:\"pinterest_d791727045d03d6c297eb8839a00a8c3\";i:1954;s:41:\"linkedin_d791727045d03d6c297eb8839a00a8c3\";i:1955;s:35:\"fb_f2bbad44c49b58f0a0a50134dd65c671\";i:1956;s:40:\"twitter_f2bbad44c49b58f0a0a50134dd65c671\";i:1957;s:35:\"gp_f2bbad44c49b58f0a0a50134dd65c671\";i:1958;s:42:\"pinterest_f2bbad44c49b58f0a0a50134dd65c671\";i:1959;s:41:\"linkedin_f2bbad44c49b58f0a0a50134dd65c671\";i:1960;s:35:\"fb_3873f8bf9a31cb04dd552c6ad9f3379c\";i:1961;s:40:\"twitter_3873f8bf9a31cb04dd552c6ad9f3379c\";i:1962;s:35:\"gp_3873f8bf9a31cb04dd552c6ad9f3379c\";i:1963;s:42:\"pinterest_3873f8bf9a31cb04dd552c6ad9f3379c\";i:1964;s:41:\"linkedin_3873f8bf9a31cb04dd552c6ad9f3379c\";i:1965;s:35:\"fb_68bbec80fb1e306177adcff353e7ec37\";i:1966;s:40:\"twitter_68bbec80fb1e306177adcff353e7ec37\";i:1967;s:35:\"gp_68bbec80fb1e306177adcff353e7ec37\";i:1968;s:42:\"pinterest_68bbec80fb1e306177adcff353e7ec37\";i:1969;s:41:\"linkedin_68bbec80fb1e306177adcff353e7ec37\";i:1970;s:35:\"fb_d8822bb6a1f17f29b9fce86ac2a37ccf\";i:1971;s:40:\"twitter_d8822bb6a1f17f29b9fce86ac2a37ccf\";i:1972;s:35:\"gp_d8822bb6a1f17f29b9fce86ac2a37ccf\";i:1973;s:42:\"pinterest_d8822bb6a1f17f29b9fce86ac2a37ccf\";i:1974;s:41:\"linkedin_d8822bb6a1f17f29b9fce86ac2a37ccf\";i:1975;s:35:\"fb_d2399e255295a9a65c38a9ba2270fc8c\";i:1976;s:40:\"twitter_d2399e255295a9a65c38a9ba2270fc8c\";i:1977;s:35:\"gp_d2399e255295a9a65c38a9ba2270fc8c\";i:1978;s:42:\"pinterest_d2399e255295a9a65c38a9ba2270fc8c\";i:1979;s:41:\"linkedin_d2399e255295a9a65c38a9ba2270fc8c\";i:1980;s:35:\"fb_42363a4cf62331e06806e8b9c4d5fd92\";i:1981;s:40:\"twitter_42363a4cf62331e06806e8b9c4d5fd92\";i:1982;s:35:\"gp_42363a4cf62331e06806e8b9c4d5fd92\";i:1983;s:42:\"pinterest_42363a4cf62331e06806e8b9c4d5fd92\";i:1984;s:41:\"linkedin_42363a4cf62331e06806e8b9c4d5fd92\";i:1985;s:35:\"fb_4b8bb59e1473148b0959fd3e88693a8e\";i:1986;s:40:\"twitter_4b8bb59e1473148b0959fd3e88693a8e\";i:1987;s:35:\"gp_4b8bb59e1473148b0959fd3e88693a8e\";i:1988;s:42:\"pinterest_4b8bb59e1473148b0959fd3e88693a8e\";i:1989;s:41:\"linkedin_4b8bb59e1473148b0959fd3e88693a8e\";i:1990;s:35:\"fb_836dc3f77addabbeb4d4a47225a29a54\";i:1991;s:40:\"twitter_836dc3f77addabbeb4d4a47225a29a54\";i:1992;s:35:\"gp_836dc3f77addabbeb4d4a47225a29a54\";i:1993;s:42:\"pinterest_836dc3f77addabbeb4d4a47225a29a54\";i:1994;s:41:\"linkedin_836dc3f77addabbeb4d4a47225a29a54\";i:1995;s:35:\"fb_52a750575b4fc3fe7d8d75a58a3e1b0e\";i:1996;s:40:\"twitter_52a750575b4fc3fe7d8d75a58a3e1b0e\";i:1997;s:35:\"gp_52a750575b4fc3fe7d8d75a58a3e1b0e\";i:1998;s:42:\"pinterest_52a750575b4fc3fe7d8d75a58a3e1b0e\";i:1999;s:41:\"linkedin_52a750575b4fc3fe7d8d75a58a3e1b0e\";i:2000;s:35:\"fb_703f262d9d4664968831d836c2172a40\";i:2001;s:40:\"twitter_703f262d9d4664968831d836c2172a40\";i:2002;s:35:\"gp_703f262d9d4664968831d836c2172a40\";i:2003;s:42:\"pinterest_703f262d9d4664968831d836c2172a40\";i:2004;s:41:\"linkedin_703f262d9d4664968831d836c2172a40\";i:2005;s:35:\"fb_985a9941e2f868f0143194ecc97cc2cd\";i:2006;s:40:\"twitter_985a9941e2f868f0143194ecc97cc2cd\";i:2007;s:35:\"fb_d922bcd1cabadc96e0a5cdf4da9631c3\";i:2008;s:40:\"twitter_d922bcd1cabadc96e0a5cdf4da9631c3\";i:2009;s:35:\"gp_d922bcd1cabadc96e0a5cdf4da9631c3\";i:2010;s:42:\"pinterest_d922bcd1cabadc96e0a5cdf4da9631c3\";i:2011;s:41:\"linkedin_d922bcd1cabadc96e0a5cdf4da9631c3\";i:2012;s:35:\"fb_c9cb7e290c35885aea5c5cee9f42a3c1\";i:2013;s:40:\"twitter_c9cb7e290c35885aea5c5cee9f42a3c1\";i:2014;s:35:\"gp_c9cb7e290c35885aea5c5cee9f42a3c1\";i:2015;s:42:\"pinterest_c9cb7e290c35885aea5c5cee9f42a3c1\";i:2016;s:41:\"linkedin_c9cb7e290c35885aea5c5cee9f42a3c1\";i:2017;s:35:\"fb_172fde0e9ea0e354139b13916c114eca\";i:2018;s:40:\"twitter_172fde0e9ea0e354139b13916c114eca\";i:2019;s:35:\"gp_172fde0e9ea0e354139b13916c114eca\";i:2020;s:42:\"pinterest_172fde0e9ea0e354139b13916c114eca\";i:2021;s:41:\"linkedin_172fde0e9ea0e354139b13916c114eca\";i:2022;s:35:\"fb_39d31fdcde8bbf73df81e3d8d8d5c5b7\";i:2023;s:40:\"twitter_39d31fdcde8bbf73df81e3d8d8d5c5b7\";i:2024;s:35:\"gp_39d31fdcde8bbf73df81e3d8d8d5c5b7\";i:2025;s:42:\"pinterest_39d31fdcde8bbf73df81e3d8d8d5c5b7\";i:2026;s:41:\"linkedin_39d31fdcde8bbf73df81e3d8d8d5c5b7\";i:2027;s:35:\"fb_2ec07399fe86d333a70bf517f0bdfe75\";i:2028;s:40:\"twitter_2ec07399fe86d333a70bf517f0bdfe75\";i:2029;s:35:\"gp_2ec07399fe86d333a70bf517f0bdfe75\";i:2030;s:42:\"pinterest_2ec07399fe86d333a70bf517f0bdfe75\";i:2031;s:41:\"linkedin_2ec07399fe86d333a70bf517f0bdfe75\";i:2032;s:35:\"fb_c80d5a349093fe7c45d754d0c877dde9\";i:2033;s:40:\"twitter_c80d5a349093fe7c45d754d0c877dde9\";i:2034;s:35:\"gp_c80d5a349093fe7c45d754d0c877dde9\";i:2035;s:42:\"pinterest_c80d5a349093fe7c45d754d0c877dde9\";i:2036;s:41:\"linkedin_c80d5a349093fe7c45d754d0c877dde9\";i:2037;s:35:\"fb_e9c3447f2a0262297480d64a9d8f8589\";i:2038;s:40:\"twitter_e9c3447f2a0262297480d64a9d8f8589\";i:2039;s:35:\"gp_e9c3447f2a0262297480d64a9d8f8589\";i:2040;s:42:\"pinterest_e9c3447f2a0262297480d64a9d8f8589\";i:2041;s:41:\"linkedin_e9c3447f2a0262297480d64a9d8f8589\";i:2042;s:35:\"fb_bad478b097b2ad257bd5710fb162b8ad\";i:2043;s:40:\"twitter_bad478b097b2ad257bd5710fb162b8ad\";i:2044;s:35:\"gp_bad478b097b2ad257bd5710fb162b8ad\";i:2045;s:42:\"pinterest_bad478b097b2ad257bd5710fb162b8ad\";i:2046;s:41:\"linkedin_bad478b097b2ad257bd5710fb162b8ad\";i:2047;s:35:\"fb_312cd44046a983c6ade2189901994718\";i:2048;s:40:\"twitter_312cd44046a983c6ade2189901994718\";i:2049;s:35:\"gp_312cd44046a983c6ade2189901994718\";i:2050;s:42:\"pinterest_312cd44046a983c6ade2189901994718\";i:2051;s:41:\"linkedin_312cd44046a983c6ade2189901994718\";i:2052;s:35:\"fb_f316b290955b4da6666989b8fa9c6c63\";i:2053;s:40:\"twitter_f316b290955b4da6666989b8fa9c6c63\";i:2054;s:35:\"gp_f316b290955b4da6666989b8fa9c6c63\";i:2055;s:42:\"pinterest_f316b290955b4da6666989b8fa9c6c63\";i:2056;s:41:\"linkedin_f316b290955b4da6666989b8fa9c6c63\";i:2057;s:35:\"fb_3b68193049b2930d9ea00ffca1c289cc\";i:2058;s:40:\"twitter_3b68193049b2930d9ea00ffca1c289cc\";i:2059;s:35:\"gp_3b68193049b2930d9ea00ffca1c289cc\";i:2060;s:42:\"pinterest_3b68193049b2930d9ea00ffca1c289cc\";i:2061;s:41:\"linkedin_3b68193049b2930d9ea00ffca1c289cc\";i:2062;s:35:\"fb_01cb7e0fb54230891d5735ec045226e3\";i:2063;s:40:\"twitter_01cb7e0fb54230891d5735ec045226e3\";i:2064;s:35:\"gp_01cb7e0fb54230891d5735ec045226e3\";i:2065;s:42:\"pinterest_01cb7e0fb54230891d5735ec045226e3\";i:2066;s:41:\"linkedin_01cb7e0fb54230891d5735ec045226e3\";i:2067;s:35:\"fb_670401f7768c950bdb64dce300014fc6\";i:2068;s:40:\"twitter_670401f7768c950bdb64dce300014fc6\";i:2069;s:35:\"gp_670401f7768c950bdb64dce300014fc6\";i:2070;s:42:\"pinterest_670401f7768c950bdb64dce300014fc6\";i:2071;s:41:\"linkedin_670401f7768c950bdb64dce300014fc6\";i:2072;s:35:\"fb_3cd2311bb932d6e2802740e59530e332\";i:2073;s:40:\"twitter_3cd2311bb932d6e2802740e59530e332\";i:2074;s:35:\"gp_3cd2311bb932d6e2802740e59530e332\";i:2075;s:42:\"pinterest_3cd2311bb932d6e2802740e59530e332\";i:2076;s:41:\"linkedin_3cd2311bb932d6e2802740e59530e332\";i:2077;s:35:\"fb_dd2d33e610a3054aaf50390a1d88b9a1\";i:2078;s:40:\"twitter_dd2d33e610a3054aaf50390a1d88b9a1\";i:2079;s:35:\"gp_dd2d33e610a3054aaf50390a1d88b9a1\";i:2080;s:42:\"pinterest_dd2d33e610a3054aaf50390a1d88b9a1\";i:2081;s:41:\"linkedin_dd2d33e610a3054aaf50390a1d88b9a1\";i:2082;s:35:\"fb_c45a4255d414765c0d43dc2f305fb446\";i:2083;s:40:\"twitter_c45a4255d414765c0d43dc2f305fb446\";i:2084;s:35:\"gp_c45a4255d414765c0d43dc2f305fb446\";i:2085;s:42:\"pinterest_c45a4255d414765c0d43dc2f305fb446\";i:2086;s:41:\"linkedin_c45a4255d414765c0d43dc2f305fb446\";i:2087;s:35:\"fb_e5de33d7bad490d2e5845d673b0a440f\";i:2088;s:40:\"twitter_e5de33d7bad490d2e5845d673b0a440f\";i:2089;s:35:\"gp_e5de33d7bad490d2e5845d673b0a440f\";i:2090;s:42:\"pinterest_e5de33d7bad490d2e5845d673b0a440f\";i:2091;s:41:\"linkedin_e5de33d7bad490d2e5845d673b0a440f\";i:2092;s:35:\"fb_91fe133c418433f38fec76108bd3be6c\";i:2093;s:40:\"twitter_91fe133c418433f38fec76108bd3be6c\";i:2094;s:35:\"gp_91fe133c418433f38fec76108bd3be6c\";i:2095;s:42:\"pinterest_91fe133c418433f38fec76108bd3be6c\";i:2096;s:41:\"linkedin_91fe133c418433f38fec76108bd3be6c\";i:2097;s:35:\"fb_afe0d098a85557fb2e744678f34f7eca\";i:2098;s:40:\"twitter_afe0d098a85557fb2e744678f34f7eca\";i:2099;s:35:\"gp_afe0d098a85557fb2e744678f34f7eca\";i:2100;s:42:\"pinterest_afe0d098a85557fb2e744678f34f7eca\";i:2101;s:41:\"linkedin_afe0d098a85557fb2e744678f34f7eca\";i:2102;s:35:\"fb_64615571160580106e2baac53e2878e5\";i:2103;s:40:\"twitter_64615571160580106e2baac53e2878e5\";i:2104;s:35:\"gp_64615571160580106e2baac53e2878e5\";i:2105;s:42:\"pinterest_64615571160580106e2baac53e2878e5\";i:2106;s:41:\"linkedin_64615571160580106e2baac53e2878e5\";i:2107;s:35:\"fb_ff042d657f96d75cd4af5d72f9c3f332\";i:2108;s:40:\"twitter_ff042d657f96d75cd4af5d72f9c3f332\";i:2109;s:35:\"gp_ff042d657f96d75cd4af5d72f9c3f332\";i:2110;s:42:\"pinterest_ff042d657f96d75cd4af5d72f9c3f332\";i:2111;s:41:\"linkedin_ff042d657f96d75cd4af5d72f9c3f332\";i:2112;s:35:\"fb_3a21dcaeb3e6e1ab89cd8494d96ee096\";i:2113;s:40:\"twitter_3a21dcaeb3e6e1ab89cd8494d96ee096\";i:2114;s:35:\"gp_3a21dcaeb3e6e1ab89cd8494d96ee096\";i:2115;s:42:\"pinterest_3a21dcaeb3e6e1ab89cd8494d96ee096\";i:2116;s:41:\"linkedin_3a21dcaeb3e6e1ab89cd8494d96ee096\";i:2117;s:35:\"fb_9b9fd1acb13f0310c849d4f6232c6140\";i:2118;s:40:\"twitter_9b9fd1acb13f0310c849d4f6232c6140\";i:2119;s:35:\"gp_9b9fd1acb13f0310c849d4f6232c6140\";i:2120;s:42:\"pinterest_9b9fd1acb13f0310c849d4f6232c6140\";i:2121;s:41:\"linkedin_9b9fd1acb13f0310c849d4f6232c6140\";i:2122;s:35:\"fb_0e56280b351f2f257e09dcab5b151905\";i:2123;s:40:\"twitter_0e56280b351f2f257e09dcab5b151905\";i:2124;s:35:\"gp_0e56280b351f2f257e09dcab5b151905\";i:2125;s:42:\"pinterest_0e56280b351f2f257e09dcab5b151905\";i:2126;s:41:\"linkedin_0e56280b351f2f257e09dcab5b151905\";i:2127;s:35:\"fb_2b9efbe8a04e3db62d4d1b1f0223f98f\";i:2128;s:40:\"twitter_2b9efbe8a04e3db62d4d1b1f0223f98f\";i:2129;s:35:\"gp_2b9efbe8a04e3db62d4d1b1f0223f98f\";i:2130;s:42:\"pinterest_2b9efbe8a04e3db62d4d1b1f0223f98f\";i:2131;s:41:\"linkedin_2b9efbe8a04e3db62d4d1b1f0223f98f\";i:2132;s:35:\"fb_bad938d612212674ff9025e544f40e2f\";i:2133;s:40:\"twitter_bad938d612212674ff9025e544f40e2f\";i:2134;s:35:\"gp_bad938d612212674ff9025e544f40e2f\";i:2135;s:42:\"pinterest_bad938d612212674ff9025e544f40e2f\";i:2136;s:41:\"linkedin_bad938d612212674ff9025e544f40e2f\";i:2137;s:35:\"fb_33d768b887678d7bbcc509ec42c92546\";i:2138;s:40:\"twitter_33d768b887678d7bbcc509ec42c92546\";i:2139;s:35:\"gp_33d768b887678d7bbcc509ec42c92546\";i:2140;s:42:\"pinterest_33d768b887678d7bbcc509ec42c92546\";i:2141;s:41:\"linkedin_33d768b887678d7bbcc509ec42c92546\";i:2142;s:35:\"fb_dfeb92f21554869f4cb7c128d1d71933\";i:2143;s:40:\"twitter_dfeb92f21554869f4cb7c128d1d71933\";i:2144;s:35:\"gp_dfeb92f21554869f4cb7c128d1d71933\";i:2145;s:42:\"pinterest_dfeb92f21554869f4cb7c128d1d71933\";i:2146;s:41:\"linkedin_dfeb92f21554869f4cb7c128d1d71933\";i:2147;s:35:\"fb_76f7df9f7b9ed14bbcfe64078896dd82\";i:2148;s:40:\"twitter_76f7df9f7b9ed14bbcfe64078896dd82\";i:2149;s:35:\"gp_76f7df9f7b9ed14bbcfe64078896dd82\";i:2150;s:42:\"pinterest_76f7df9f7b9ed14bbcfe64078896dd82\";i:2151;s:41:\"linkedin_76f7df9f7b9ed14bbcfe64078896dd82\";i:2152;s:35:\"fb_0033b5ad092017714abb7945c5b71450\";i:2153;s:40:\"twitter_0033b5ad092017714abb7945c5b71450\";i:2154;s:35:\"gp_0033b5ad092017714abb7945c5b71450\";i:2155;s:42:\"pinterest_0033b5ad092017714abb7945c5b71450\";i:2156;s:41:\"linkedin_0033b5ad092017714abb7945c5b71450\";i:2157;s:35:\"fb_424e386c5ef5dae084b7e9d28333ae32\";i:2158;s:40:\"twitter_424e386c5ef5dae084b7e9d28333ae32\";i:2159;s:35:\"gp_424e386c5ef5dae084b7e9d28333ae32\";i:2160;s:42:\"pinterest_424e386c5ef5dae084b7e9d28333ae32\";i:2161;s:41:\"linkedin_424e386c5ef5dae084b7e9d28333ae32\";i:2162;s:35:\"fb_e783949a8eadd834a0daadf79078a0bf\";i:2163;s:40:\"twitter_e783949a8eadd834a0daadf79078a0bf\";i:2164;s:35:\"gp_e783949a8eadd834a0daadf79078a0bf\";i:2165;s:42:\"pinterest_e783949a8eadd834a0daadf79078a0bf\";i:2166;s:41:\"linkedin_e783949a8eadd834a0daadf79078a0bf\";i:2167;s:35:\"fb_dd4e878f4865c66d4862c734a235e36f\";i:2168;s:40:\"twitter_dd4e878f4865c66d4862c734a235e36f\";i:2169;s:35:\"gp_dd4e878f4865c66d4862c734a235e36f\";i:2170;s:42:\"pinterest_dd4e878f4865c66d4862c734a235e36f\";i:2171;s:41:\"linkedin_dd4e878f4865c66d4862c734a235e36f\";i:2172;s:35:\"fb_18dd114cfd3071f16f38a3ed5fb0da61\";i:2173;s:40:\"twitter_18dd114cfd3071f16f38a3ed5fb0da61\";i:2174;s:35:\"gp_18dd114cfd3071f16f38a3ed5fb0da61\";i:2175;s:42:\"pinterest_18dd114cfd3071f16f38a3ed5fb0da61\";i:2176;s:41:\"linkedin_18dd114cfd3071f16f38a3ed5fb0da61\";i:2177;s:35:\"fb_f1f2980d60c72058ff96347053670b81\";i:2178;s:40:\"twitter_f1f2980d60c72058ff96347053670b81\";i:2179;s:35:\"gp_f1f2980d60c72058ff96347053670b81\";i:2180;s:42:\"pinterest_f1f2980d60c72058ff96347053670b81\";i:2181;s:41:\"linkedin_f1f2980d60c72058ff96347053670b81\";i:2182;s:35:\"fb_6aa9629dabb2201250da1597063db737\";i:2183;s:40:\"twitter_6aa9629dabb2201250da1597063db737\";i:2184;s:35:\"gp_6aa9629dabb2201250da1597063db737\";i:2185;s:42:\"pinterest_6aa9629dabb2201250da1597063db737\";i:2186;s:41:\"linkedin_6aa9629dabb2201250da1597063db737\";i:2187;s:35:\"fb_b938f9160fa56dd542fff4bda6117fe9\";i:2188;s:40:\"twitter_b938f9160fa56dd542fff4bda6117fe9\";i:2189;s:35:\"gp_b938f9160fa56dd542fff4bda6117fe9\";i:2190;s:42:\"pinterest_b938f9160fa56dd542fff4bda6117fe9\";i:2191;s:41:\"linkedin_b938f9160fa56dd542fff4bda6117fe9\";i:2192;s:35:\"fb_e65b872b39df250fff74210ba73d517f\";i:2193;s:40:\"twitter_e65b872b39df250fff74210ba73d517f\";i:2194;s:35:\"gp_e65b872b39df250fff74210ba73d517f\";i:2195;s:42:\"pinterest_e65b872b39df250fff74210ba73d517f\";i:2196;s:41:\"linkedin_e65b872b39df250fff74210ba73d517f\";i:2197;s:35:\"fb_aa7832ebb9e8adb3a8627f5f8935c9b6\";i:2198;s:40:\"twitter_aa7832ebb9e8adb3a8627f5f8935c9b6\";i:2199;s:35:\"gp_aa7832ebb9e8adb3a8627f5f8935c9b6\";i:2200;s:42:\"pinterest_aa7832ebb9e8adb3a8627f5f8935c9b6\";i:2201;s:41:\"linkedin_aa7832ebb9e8adb3a8627f5f8935c9b6\";i:2202;s:35:\"fb_2db1cf8411b979511a112f1eafabf5d0\";i:2203;s:40:\"twitter_2db1cf8411b979511a112f1eafabf5d0\";i:2204;s:35:\"gp_2db1cf8411b979511a112f1eafabf5d0\";i:2205;s:42:\"pinterest_2db1cf8411b979511a112f1eafabf5d0\";i:2206;s:41:\"linkedin_2db1cf8411b979511a112f1eafabf5d0\";i:2207;s:35:\"fb_6403cfc2f037792a0bbd5e70073152e2\";i:2208;s:40:\"twitter_6403cfc2f037792a0bbd5e70073152e2\";i:2209;s:35:\"gp_6403cfc2f037792a0bbd5e70073152e2\";i:2210;s:42:\"pinterest_6403cfc2f037792a0bbd5e70073152e2\";i:2211;s:41:\"linkedin_6403cfc2f037792a0bbd5e70073152e2\";i:2212;s:35:\"fb_105ec516e03c504195ca808d21da00df\";i:2213;s:40:\"twitter_105ec516e03c504195ca808d21da00df\";i:2214;s:35:\"gp_105ec516e03c504195ca808d21da00df\";i:2215;s:42:\"pinterest_105ec516e03c504195ca808d21da00df\";i:2216;s:41:\"linkedin_105ec516e03c504195ca808d21da00df\";i:2217;s:35:\"fb_3b283f81b6bd49de566d618c003e826e\";i:2218;s:40:\"twitter_3b283f81b6bd49de566d618c003e826e\";i:2219;s:35:\"gp_3b283f81b6bd49de566d618c003e826e\";i:2220;s:42:\"pinterest_3b283f81b6bd49de566d618c003e826e\";i:2221;s:41:\"linkedin_3b283f81b6bd49de566d618c003e826e\";i:2222;s:35:\"fb_95fc1c7c5e8d0566f41cff282e70c04f\";i:2223;s:40:\"twitter_95fc1c7c5e8d0566f41cff282e70c04f\";i:2224;s:35:\"gp_95fc1c7c5e8d0566f41cff282e70c04f\";i:2225;s:42:\"pinterest_95fc1c7c5e8d0566f41cff282e70c04f\";i:2226;s:41:\"linkedin_95fc1c7c5e8d0566f41cff282e70c04f\";i:2227;s:35:\"fb_c6e2fecf6651c96d859f26ee293a31f9\";i:2228;s:40:\"twitter_c6e2fecf6651c96d859f26ee293a31f9\";i:2229;s:35:\"gp_c6e2fecf6651c96d859f26ee293a31f9\";i:2230;s:42:\"pinterest_c6e2fecf6651c96d859f26ee293a31f9\";i:2231;s:41:\"linkedin_c6e2fecf6651c96d859f26ee293a31f9\";i:2232;s:35:\"fb_52307697cb2592806ae30a30ee512744\";i:2233;s:40:\"twitter_52307697cb2592806ae30a30ee512744\";i:2234;s:35:\"gp_52307697cb2592806ae30a30ee512744\";i:2235;s:42:\"pinterest_52307697cb2592806ae30a30ee512744\";i:2236;s:41:\"linkedin_52307697cb2592806ae30a30ee512744\";i:2237;s:35:\"fb_032f6aa3928b3f91ea958a9ec843d01f\";i:2238;s:40:\"twitter_032f6aa3928b3f91ea958a9ec843d01f\";i:2239;s:35:\"gp_032f6aa3928b3f91ea958a9ec843d01f\";i:2240;s:42:\"pinterest_032f6aa3928b3f91ea958a9ec843d01f\";i:2241;s:41:\"linkedin_032f6aa3928b3f91ea958a9ec843d01f\";i:2242;s:35:\"fb_a737954d413e145ced1bf00ca6939d35\";i:2243;s:40:\"twitter_a737954d413e145ced1bf00ca6939d35\";i:2244;s:35:\"gp_a737954d413e145ced1bf00ca6939d35\";i:2245;s:42:\"pinterest_a737954d413e145ced1bf00ca6939d35\";i:2246;s:41:\"linkedin_a737954d413e145ced1bf00ca6939d35\";i:2247;s:35:\"fb_3d13f4521f42db73db3ef334efbdd20b\";i:2248;s:40:\"twitter_3d13f4521f42db73db3ef334efbdd20b\";i:2249;s:35:\"gp_3d13f4521f42db73db3ef334efbdd20b\";i:2250;s:42:\"pinterest_3d13f4521f42db73db3ef334efbdd20b\";i:2251;s:41:\"linkedin_3d13f4521f42db73db3ef334efbdd20b\";i:2252;s:35:\"fb_43d92fe9acf93d1ad0fb263f597dea0e\";i:2253;s:40:\"twitter_43d92fe9acf93d1ad0fb263f597dea0e\";i:2254;s:35:\"gp_43d92fe9acf93d1ad0fb263f597dea0e\";i:2255;s:42:\"pinterest_43d92fe9acf93d1ad0fb263f597dea0e\";i:2256;s:41:\"linkedin_43d92fe9acf93d1ad0fb263f597dea0e\";i:2257;s:35:\"fb_ecca0c1d4973f8d127e00bde69771172\";i:2258;s:40:\"twitter_ecca0c1d4973f8d127e00bde69771172\";i:2259;s:35:\"gp_ecca0c1d4973f8d127e00bde69771172\";i:2260;s:42:\"pinterest_ecca0c1d4973f8d127e00bde69771172\";i:2261;s:41:\"linkedin_ecca0c1d4973f8d127e00bde69771172\";i:2262;s:35:\"fb_af68f61911b54c22c89ea88ee9f046c1\";i:2263;s:40:\"twitter_af68f61911b54c22c89ea88ee9f046c1\";i:2264;s:35:\"gp_af68f61911b54c22c89ea88ee9f046c1\";i:2265;s:42:\"pinterest_af68f61911b54c22c89ea88ee9f046c1\";i:2266;s:41:\"linkedin_af68f61911b54c22c89ea88ee9f046c1\";i:2267;s:35:\"fb_73cf223b03da182ca5226c7004342e0b\";i:2268;s:40:\"twitter_73cf223b03da182ca5226c7004342e0b\";i:2269;s:35:\"gp_73cf223b03da182ca5226c7004342e0b\";i:2270;s:42:\"pinterest_73cf223b03da182ca5226c7004342e0b\";i:2271;s:41:\"linkedin_73cf223b03da182ca5226c7004342e0b\";i:2272;s:35:\"fb_fc0de16d63cf2761dae5cb6d806e5d1c\";i:2273;s:40:\"twitter_fc0de16d63cf2761dae5cb6d806e5d1c\";i:2274;s:35:\"gp_fc0de16d63cf2761dae5cb6d806e5d1c\";i:2275;s:42:\"pinterest_fc0de16d63cf2761dae5cb6d806e5d1c\";i:2276;s:41:\"linkedin_fc0de16d63cf2761dae5cb6d806e5d1c\";i:2277;s:35:\"fb_87819ee826011ce5a2650c8132458ea9\";i:2278;s:40:\"twitter_87819ee826011ce5a2650c8132458ea9\";i:2279;s:35:\"gp_87819ee826011ce5a2650c8132458ea9\";i:2280;s:42:\"pinterest_87819ee826011ce5a2650c8132458ea9\";i:2281;s:41:\"linkedin_87819ee826011ce5a2650c8132458ea9\";i:2282;s:35:\"fb_baddd0660586ad736b24c5a3f4552291\";i:2283;s:40:\"twitter_baddd0660586ad736b24c5a3f4552291\";i:2284;s:35:\"gp_baddd0660586ad736b24c5a3f4552291\";i:2285;s:42:\"pinterest_baddd0660586ad736b24c5a3f4552291\";i:2286;s:41:\"linkedin_baddd0660586ad736b24c5a3f4552291\";i:2287;s:35:\"fb_854181e1f9f5b1b710fcc1ac73df9950\";i:2288;s:40:\"twitter_854181e1f9f5b1b710fcc1ac73df9950\";i:2289;s:35:\"gp_854181e1f9f5b1b710fcc1ac73df9950\";i:2290;s:42:\"pinterest_854181e1f9f5b1b710fcc1ac73df9950\";i:2291;s:41:\"linkedin_854181e1f9f5b1b710fcc1ac73df9950\";i:2292;s:35:\"fb_f5f72328c6cf4cd3e186674e82148f9d\";i:2293;s:40:\"twitter_f5f72328c6cf4cd3e186674e82148f9d\";i:2294;s:35:\"gp_f5f72328c6cf4cd3e186674e82148f9d\";i:2295;s:42:\"pinterest_f5f72328c6cf4cd3e186674e82148f9d\";i:2296;s:41:\"linkedin_f5f72328c6cf4cd3e186674e82148f9d\";i:2297;s:35:\"fb_8526ec2e89fc58d5e77b66482c3c5d71\";i:2298;s:40:\"twitter_8526ec2e89fc58d5e77b66482c3c5d71\";i:2299;s:35:\"gp_8526ec2e89fc58d5e77b66482c3c5d71\";i:2300;s:42:\"pinterest_8526ec2e89fc58d5e77b66482c3c5d71\";i:2301;s:41:\"linkedin_8526ec2e89fc58d5e77b66482c3c5d71\";i:2302;s:35:\"fb_7f11078630e08700d31b75141490c4a9\";i:2303;s:40:\"twitter_7f11078630e08700d31b75141490c4a9\";i:2304;s:35:\"gp_7f11078630e08700d31b75141490c4a9\";i:2305;s:42:\"pinterest_7f11078630e08700d31b75141490c4a9\";i:2306;s:41:\"linkedin_7f11078630e08700d31b75141490c4a9\";i:2307;s:35:\"fb_022cf3a53307bd7dec6259cf84e7213e\";i:2308;s:40:\"twitter_022cf3a53307bd7dec6259cf84e7213e\";i:2309;s:35:\"gp_022cf3a53307bd7dec6259cf84e7213e\";i:2310;s:42:\"pinterest_022cf3a53307bd7dec6259cf84e7213e\";i:2311;s:41:\"linkedin_022cf3a53307bd7dec6259cf84e7213e\";i:2312;s:35:\"fb_fed1bf6fc64fa77229fdfdc37f18c5a2\";i:2313;s:40:\"twitter_fed1bf6fc64fa77229fdfdc37f18c5a2\";i:2314;s:35:\"gp_fed1bf6fc64fa77229fdfdc37f18c5a2\";i:2315;s:42:\"pinterest_fed1bf6fc64fa77229fdfdc37f18c5a2\";i:2316;s:41:\"linkedin_fed1bf6fc64fa77229fdfdc37f18c5a2\";i:2317;s:35:\"fb_2d13be03a02719c6995a52b13cb5a79c\";i:2318;s:40:\"twitter_2d13be03a02719c6995a52b13cb5a79c\";i:2319;s:35:\"gp_2d13be03a02719c6995a52b13cb5a79c\";i:2320;s:42:\"pinterest_2d13be03a02719c6995a52b13cb5a79c\";i:2321;s:41:\"linkedin_2d13be03a02719c6995a52b13cb5a79c\";i:2322;s:35:\"fb_aa5d34211cb48d334ad5d4c8586e85f9\";i:2323;s:40:\"twitter_aa5d34211cb48d334ad5d4c8586e85f9\";i:2324;s:35:\"gp_aa5d34211cb48d334ad5d4c8586e85f9\";i:2325;s:42:\"pinterest_aa5d34211cb48d334ad5d4c8586e85f9\";i:2326;s:41:\"linkedin_aa5d34211cb48d334ad5d4c8586e85f9\";i:2327;s:35:\"fb_741e8e6529cf4d13958b38afc0822723\";i:2328;s:40:\"twitter_741e8e6529cf4d13958b38afc0822723\";i:2329;s:35:\"gp_741e8e6529cf4d13958b38afc0822723\";i:2330;s:42:\"pinterest_741e8e6529cf4d13958b38afc0822723\";i:2331;s:41:\"linkedin_741e8e6529cf4d13958b38afc0822723\";i:2332;s:35:\"fb_aef3a5d28f1067dcd10039b12c56221a\";i:2333;s:40:\"twitter_aef3a5d28f1067dcd10039b12c56221a\";i:2334;s:35:\"gp_aef3a5d28f1067dcd10039b12c56221a\";i:2335;s:42:\"pinterest_aef3a5d28f1067dcd10039b12c56221a\";i:2336;s:41:\"linkedin_aef3a5d28f1067dcd10039b12c56221a\";i:2337;s:35:\"fb_958498abf44c7ff7c58b0f58fac03993\";i:2338;s:40:\"twitter_958498abf44c7ff7c58b0f58fac03993\";i:2339;s:35:\"gp_958498abf44c7ff7c58b0f58fac03993\";i:2340;s:42:\"pinterest_958498abf44c7ff7c58b0f58fac03993\";i:2341;s:41:\"linkedin_958498abf44c7ff7c58b0f58fac03993\";i:2342;s:35:\"fb_c6238d4fcf59ee5d234a11a8eace6a43\";i:2343;s:40:\"twitter_c6238d4fcf59ee5d234a11a8eace6a43\";i:2344;s:35:\"gp_c6238d4fcf59ee5d234a11a8eace6a43\";i:2345;s:42:\"pinterest_c6238d4fcf59ee5d234a11a8eace6a43\";i:2346;s:41:\"linkedin_c6238d4fcf59ee5d234a11a8eace6a43\";i:2347;s:35:\"fb_845805c17daa8fa820b3aae46e5a1961\";i:2348;s:40:\"twitter_845805c17daa8fa820b3aae46e5a1961\";i:2349;s:35:\"gp_845805c17daa8fa820b3aae46e5a1961\";i:2350;s:42:\"pinterest_845805c17daa8fa820b3aae46e5a1961\";i:2351;s:41:\"linkedin_845805c17daa8fa820b3aae46e5a1961\";i:2352;s:35:\"fb_7d53e8d6fd5c5a9613234b3d6376cf1a\";i:2353;s:40:\"twitter_7d53e8d6fd5c5a9613234b3d6376cf1a\";i:2354;s:35:\"gp_7d53e8d6fd5c5a9613234b3d6376cf1a\";i:2355;s:42:\"pinterest_7d53e8d6fd5c5a9613234b3d6376cf1a\";i:2356;s:41:\"linkedin_7d53e8d6fd5c5a9613234b3d6376cf1a\";i:2357;s:35:\"fb_04138f67bcd3f479493db9efaf0e15f1\";i:2358;s:40:\"twitter_04138f67bcd3f479493db9efaf0e15f1\";i:2359;s:35:\"gp_04138f67bcd3f479493db9efaf0e15f1\";i:2360;s:42:\"pinterest_04138f67bcd3f479493db9efaf0e15f1\";i:2361;s:41:\"linkedin_04138f67bcd3f479493db9efaf0e15f1\";i:2362;s:35:\"fb_caafba2b3cecb9060acbd7177bf79749\";i:2363;s:40:\"twitter_caafba2b3cecb9060acbd7177bf79749\";i:2364;s:35:\"gp_caafba2b3cecb9060acbd7177bf79749\";i:2365;s:42:\"pinterest_caafba2b3cecb9060acbd7177bf79749\";i:2366;s:41:\"linkedin_caafba2b3cecb9060acbd7177bf79749\";i:2367;s:35:\"fb_9c4336431362c2e877862f3854416531\";i:2368;s:40:\"twitter_9c4336431362c2e877862f3854416531\";i:2369;s:35:\"gp_9c4336431362c2e877862f3854416531\";i:2370;s:42:\"pinterest_9c4336431362c2e877862f3854416531\";i:2371;s:41:\"linkedin_9c4336431362c2e877862f3854416531\";i:2372;s:35:\"fb_6cab54b337751777db97c77576e48d5f\";i:2373;s:40:\"twitter_6cab54b337751777db97c77576e48d5f\";i:2374;s:35:\"gp_6cab54b337751777db97c77576e48d5f\";i:2375;s:42:\"pinterest_6cab54b337751777db97c77576e48d5f\";i:2376;s:41:\"linkedin_6cab54b337751777db97c77576e48d5f\";i:2377;s:35:\"fb_da36247347d12e50d731a6c4e82642fd\";i:2378;s:40:\"twitter_da36247347d12e50d731a6c4e82642fd\";i:2379;s:35:\"gp_da36247347d12e50d731a6c4e82642fd\";i:2380;s:42:\"pinterest_da36247347d12e50d731a6c4e82642fd\";i:2381;s:41:\"linkedin_da36247347d12e50d731a6c4e82642fd\";i:2382;s:35:\"fb_5953aa4abe171ae4369efb1629a8cc2b\";i:2383;s:40:\"twitter_5953aa4abe171ae4369efb1629a8cc2b\";i:2384;s:35:\"gp_5953aa4abe171ae4369efb1629a8cc2b\";i:2385;s:42:\"pinterest_5953aa4abe171ae4369efb1629a8cc2b\";i:2386;s:41:\"linkedin_5953aa4abe171ae4369efb1629a8cc2b\";i:2387;s:35:\"fb_3c77b0fe56db67a67a335cd08ae09d9d\";i:2388;s:40:\"twitter_3c77b0fe56db67a67a335cd08ae09d9d\";i:2389;s:35:\"gp_3c77b0fe56db67a67a335cd08ae09d9d\";i:2390;s:42:\"pinterest_3c77b0fe56db67a67a335cd08ae09d9d\";i:2391;s:41:\"linkedin_3c77b0fe56db67a67a335cd08ae09d9d\";i:2392;s:35:\"fb_be33ceeae7291cca100bf82fbd473c2b\";i:2393;s:40:\"twitter_be33ceeae7291cca100bf82fbd473c2b\";i:2394;s:35:\"gp_be33ceeae7291cca100bf82fbd473c2b\";i:2395;s:42:\"pinterest_be33ceeae7291cca100bf82fbd473c2b\";i:2396;s:41:\"linkedin_be33ceeae7291cca100bf82fbd473c2b\";i:2397;s:35:\"fb_bfa3fb54ee1dde4db45f894ac0cab9ff\";i:2398;s:40:\"twitter_bfa3fb54ee1dde4db45f894ac0cab9ff\";i:2399;s:35:\"gp_bfa3fb54ee1dde4db45f894ac0cab9ff\";i:2400;s:42:\"pinterest_bfa3fb54ee1dde4db45f894ac0cab9ff\";i:2401;s:41:\"linkedin_bfa3fb54ee1dde4db45f894ac0cab9ff\";i:2402;s:35:\"fb_c4f25bddb176bc472375bcc5abb06cdf\";i:2403;s:40:\"twitter_c4f25bddb176bc472375bcc5abb06cdf\";i:2404;s:35:\"gp_c4f25bddb176bc472375bcc5abb06cdf\";i:2405;s:42:\"pinterest_c4f25bddb176bc472375bcc5abb06cdf\";i:2406;s:41:\"linkedin_c4f25bddb176bc472375bcc5abb06cdf\";i:2407;s:35:\"fb_8d8d661dd37358487930b69457a72f6a\";i:2408;s:40:\"twitter_8d8d661dd37358487930b69457a72f6a\";i:2409;s:35:\"gp_8d8d661dd37358487930b69457a72f6a\";i:2410;s:42:\"pinterest_8d8d661dd37358487930b69457a72f6a\";i:2411;s:41:\"linkedin_8d8d661dd37358487930b69457a72f6a\";i:2412;s:35:\"fb_0b186286eafd7b1b8f8f3b1643d82886\";i:2413;s:40:\"twitter_0b186286eafd7b1b8f8f3b1643d82886\";i:2414;s:35:\"gp_0b186286eafd7b1b8f8f3b1643d82886\";i:2415;s:42:\"pinterest_0b186286eafd7b1b8f8f3b1643d82886\";i:2416;s:41:\"linkedin_0b186286eafd7b1b8f8f3b1643d82886\";i:2417;s:35:\"fb_048956496a1b8295877aea4de3a82de5\";i:2418;s:40:\"twitter_048956496a1b8295877aea4de3a82de5\";i:2419;s:35:\"gp_048956496a1b8295877aea4de3a82de5\";i:2420;s:42:\"pinterest_048956496a1b8295877aea4de3a82de5\";i:2421;s:41:\"linkedin_048956496a1b8295877aea4de3a82de5\";i:2422;s:35:\"fb_3c95bf43e5eb4613abf5cede314ea081\";i:2423;s:40:\"twitter_3c95bf43e5eb4613abf5cede314ea081\";i:2424;s:35:\"gp_3c95bf43e5eb4613abf5cede314ea081\";i:2425;s:42:\"pinterest_3c95bf43e5eb4613abf5cede314ea081\";i:2426;s:41:\"linkedin_3c95bf43e5eb4613abf5cede314ea081\";i:2427;s:35:\"fb_d612d690280618021a4c7e247bdc3a58\";i:2428;s:40:\"twitter_d612d690280618021a4c7e247bdc3a58\";i:2429;s:35:\"gp_d612d690280618021a4c7e247bdc3a58\";i:2430;s:42:\"pinterest_d612d690280618021a4c7e247bdc3a58\";i:2431;s:41:\"linkedin_d612d690280618021a4c7e247bdc3a58\";i:2432;s:35:\"fb_e001e9f0695c1976cd922a072d99e313\";i:2433;s:40:\"twitter_e001e9f0695c1976cd922a072d99e313\";i:2434;s:35:\"gp_e001e9f0695c1976cd922a072d99e313\";i:2435;s:42:\"pinterest_e001e9f0695c1976cd922a072d99e313\";i:2436;s:41:\"linkedin_e001e9f0695c1976cd922a072d99e313\";i:2437;s:35:\"fb_3d09a7e184d17475c0abb6f4c6bee690\";i:2438;s:40:\"twitter_3d09a7e184d17475c0abb6f4c6bee690\";i:2439;s:35:\"gp_3d09a7e184d17475c0abb6f4c6bee690\";i:2440;s:42:\"pinterest_3d09a7e184d17475c0abb6f4c6bee690\";i:2441;s:41:\"linkedin_3d09a7e184d17475c0abb6f4c6bee690\";i:2442;s:35:\"fb_46eee4ce9b922790bef25732e7d0e119\";i:2443;s:40:\"twitter_46eee4ce9b922790bef25732e7d0e119\";i:2444;s:35:\"gp_46eee4ce9b922790bef25732e7d0e119\";i:2445;s:42:\"pinterest_46eee4ce9b922790bef25732e7d0e119\";i:2446;s:41:\"linkedin_46eee4ce9b922790bef25732e7d0e119\";i:2447;s:35:\"fb_3c34d289d059d35d42000b085db68569\";i:2448;s:40:\"twitter_3c34d289d059d35d42000b085db68569\";i:2449;s:35:\"gp_3c34d289d059d35d42000b085db68569\";i:2450;s:42:\"pinterest_3c34d289d059d35d42000b085db68569\";i:2451;s:41:\"linkedin_3c34d289d059d35d42000b085db68569\";i:2452;s:35:\"fb_2d5cd167443bfa97e0089655c6132de4\";i:2453;s:40:\"twitter_2d5cd167443bfa97e0089655c6132de4\";i:2454;s:35:\"gp_2d5cd167443bfa97e0089655c6132de4\";i:2455;s:42:\"pinterest_2d5cd167443bfa97e0089655c6132de4\";i:2456;s:41:\"linkedin_2d5cd167443bfa97e0089655c6132de4\";i:2457;s:35:\"fb_7e9a56643a2d13abfaf99a5ac4aeb60a\";i:2458;s:40:\"twitter_7e9a56643a2d13abfaf99a5ac4aeb60a\";i:2459;s:35:\"gp_7e9a56643a2d13abfaf99a5ac4aeb60a\";i:2460;s:42:\"pinterest_7e9a56643a2d13abfaf99a5ac4aeb60a\";i:2461;s:41:\"linkedin_7e9a56643a2d13abfaf99a5ac4aeb60a\";i:2462;s:35:\"fb_009a0d0edd7dc37ad90991263050e11b\";i:2463;s:40:\"twitter_009a0d0edd7dc37ad90991263050e11b\";i:2464;s:35:\"gp_009a0d0edd7dc37ad90991263050e11b\";i:2465;s:42:\"pinterest_009a0d0edd7dc37ad90991263050e11b\";i:2466;s:41:\"linkedin_009a0d0edd7dc37ad90991263050e11b\";i:2467;s:35:\"fb_2b55617f882252af63012883b7f23122\";i:2468;s:40:\"twitter_2b55617f882252af63012883b7f23122\";i:2469;s:35:\"gp_2b55617f882252af63012883b7f23122\";i:2470;s:42:\"pinterest_2b55617f882252af63012883b7f23122\";i:2471;s:41:\"linkedin_2b55617f882252af63012883b7f23122\";i:2472;s:35:\"fb_de0f5bd6f0bb78491bdcaa86df3ed490\";i:2473;s:40:\"twitter_de0f5bd6f0bb78491bdcaa86df3ed490\";i:2474;s:35:\"gp_de0f5bd6f0bb78491bdcaa86df3ed490\";i:2475;s:42:\"pinterest_de0f5bd6f0bb78491bdcaa86df3ed490\";i:2476;s:41:\"linkedin_de0f5bd6f0bb78491bdcaa86df3ed490\";i:2477;s:35:\"fb_cf638b5e9a38ca43eecac2e0b794f577\";i:2478;s:40:\"twitter_cf638b5e9a38ca43eecac2e0b794f577\";i:2479;s:35:\"gp_cf638b5e9a38ca43eecac2e0b794f577\";i:2480;s:42:\"pinterest_cf638b5e9a38ca43eecac2e0b794f577\";i:2481;s:41:\"linkedin_cf638b5e9a38ca43eecac2e0b794f577\";i:2482;s:35:\"fb_cfdb5b8524d29436d481c27936b7f600\";i:2483;s:40:\"twitter_cfdb5b8524d29436d481c27936b7f600\";i:2484;s:35:\"gp_cfdb5b8524d29436d481c27936b7f600\";i:2485;s:42:\"pinterest_cfdb5b8524d29436d481c27936b7f600\";i:2486;s:41:\"linkedin_cfdb5b8524d29436d481c27936b7f600\";i:2487;s:35:\"fb_5dc8b7ab1e5357d2c021db35bf57a686\";i:2488;s:40:\"twitter_5dc8b7ab1e5357d2c021db35bf57a686\";i:2489;s:35:\"gp_5dc8b7ab1e5357d2c021db35bf57a686\";i:2490;s:42:\"pinterest_5dc8b7ab1e5357d2c021db35bf57a686\";i:2491;s:41:\"linkedin_5dc8b7ab1e5357d2c021db35bf57a686\";i:2492;s:35:\"fb_6f3bda94a7a2358ff68dedd18c9a49e3\";i:2493;s:40:\"twitter_6f3bda94a7a2358ff68dedd18c9a49e3\";i:2494;s:35:\"gp_6f3bda94a7a2358ff68dedd18c9a49e3\";i:2495;s:42:\"pinterest_6f3bda94a7a2358ff68dedd18c9a49e3\";i:2496;s:41:\"linkedin_6f3bda94a7a2358ff68dedd18c9a49e3\";i:2497;s:35:\"fb_47933be2779720c6c81eaa3b6df785b8\";i:2498;s:40:\"twitter_47933be2779720c6c81eaa3b6df785b8\";i:2499;s:35:\"gp_47933be2779720c6c81eaa3b6df785b8\";i:2500;s:42:\"pinterest_47933be2779720c6c81eaa3b6df785b8\";i:2501;s:41:\"linkedin_47933be2779720c6c81eaa3b6df785b8\";i:2502;s:35:\"fb_be1e8dce0c9470031f44a093296c9e0d\";i:2503;s:40:\"twitter_be1e8dce0c9470031f44a093296c9e0d\";i:2504;s:35:\"gp_be1e8dce0c9470031f44a093296c9e0d\";i:2505;s:42:\"pinterest_be1e8dce0c9470031f44a093296c9e0d\";i:2506;s:41:\"linkedin_be1e8dce0c9470031f44a093296c9e0d\";i:2507;s:35:\"fb_3086cb1040cbe9cbd39478885b69868a\";i:2508;s:40:\"twitter_3086cb1040cbe9cbd39478885b69868a\";i:2509;s:35:\"gp_3086cb1040cbe9cbd39478885b69868a\";i:2510;s:42:\"pinterest_3086cb1040cbe9cbd39478885b69868a\";i:2511;s:41:\"linkedin_3086cb1040cbe9cbd39478885b69868a\";i:2512;s:35:\"fb_bd4cef941d4b191d008c60d42169fcaf\";i:2513;s:40:\"twitter_bd4cef941d4b191d008c60d42169fcaf\";i:2514;s:35:\"gp_bd4cef941d4b191d008c60d42169fcaf\";i:2515;s:42:\"pinterest_bd4cef941d4b191d008c60d42169fcaf\";i:2516;s:41:\"linkedin_bd4cef941d4b191d008c60d42169fcaf\";i:2517;s:35:\"fb_d5e19e152fcd956f4102bcd6835d68ad\";i:2518;s:40:\"twitter_d5e19e152fcd956f4102bcd6835d68ad\";i:2519;s:35:\"gp_d5e19e152fcd956f4102bcd6835d68ad\";i:2520;s:42:\"pinterest_d5e19e152fcd956f4102bcd6835d68ad\";i:2521;s:41:\"linkedin_d5e19e152fcd956f4102bcd6835d68ad\";i:2522;s:35:\"fb_52a7b60b753191ff0455129d673770ca\";i:2523;s:40:\"twitter_52a7b60b753191ff0455129d673770ca\";i:2524;s:35:\"gp_52a7b60b753191ff0455129d673770ca\";i:2525;s:42:\"pinterest_52a7b60b753191ff0455129d673770ca\";i:2526;s:41:\"linkedin_52a7b60b753191ff0455129d673770ca\";i:2527;s:35:\"fb_011fc47d3bbe8a58de44ac23513ea6ec\";i:2528;s:40:\"twitter_011fc47d3bbe8a58de44ac23513ea6ec\";i:2529;s:35:\"gp_011fc47d3bbe8a58de44ac23513ea6ec\";i:2530;s:42:\"pinterest_011fc47d3bbe8a58de44ac23513ea6ec\";i:2531;s:41:\"linkedin_011fc47d3bbe8a58de44ac23513ea6ec\";i:2532;s:35:\"fb_fe39236f8e5777abac1fa6f1e49e18e4\";i:2533;s:40:\"twitter_fe39236f8e5777abac1fa6f1e49e18e4\";i:2534;s:35:\"gp_fe39236f8e5777abac1fa6f1e49e18e4\";i:2535;s:42:\"pinterest_fe39236f8e5777abac1fa6f1e49e18e4\";i:2536;s:41:\"linkedin_fe39236f8e5777abac1fa6f1e49e18e4\";i:2537;s:35:\"fb_7ec3fbb0081a7443ea897ce1e2aa5261\";i:2538;s:40:\"twitter_7ec3fbb0081a7443ea897ce1e2aa5261\";i:2539;s:35:\"gp_7ec3fbb0081a7443ea897ce1e2aa5261\";i:2540;s:42:\"pinterest_7ec3fbb0081a7443ea897ce1e2aa5261\";i:2541;s:41:\"linkedin_7ec3fbb0081a7443ea897ce1e2aa5261\";i:2542;s:35:\"fb_82468bbe8f1a4002f7807037c89bb54f\";i:2543;s:40:\"twitter_82468bbe8f1a4002f7807037c89bb54f\";i:2544;s:35:\"gp_82468bbe8f1a4002f7807037c89bb54f\";i:2545;s:42:\"pinterest_82468bbe8f1a4002f7807037c89bb54f\";i:2546;s:41:\"linkedin_82468bbe8f1a4002f7807037c89bb54f\";i:2547;s:35:\"fb_c4f39f3c9eb2159afdab03d108cfac53\";i:2548;s:40:\"twitter_c4f39f3c9eb2159afdab03d108cfac53\";i:2549;s:35:\"gp_c4f39f3c9eb2159afdab03d108cfac53\";i:2550;s:42:\"pinterest_c4f39f3c9eb2159afdab03d108cfac53\";i:2551;s:41:\"linkedin_c4f39f3c9eb2159afdab03d108cfac53\";i:2552;s:35:\"fb_bc3a405a73ccf8de252287c31a115a46\";i:2553;s:40:\"twitter_bc3a405a73ccf8de252287c31a115a46\";i:2554;s:35:\"gp_bc3a405a73ccf8de252287c31a115a46\";i:2555;s:42:\"pinterest_bc3a405a73ccf8de252287c31a115a46\";i:2556;s:41:\"linkedin_bc3a405a73ccf8de252287c31a115a46\";i:2557;s:35:\"fb_78bbd298480f53186f44c5e33207786e\";i:2558;s:40:\"twitter_78bbd298480f53186f44c5e33207786e\";i:2559;s:35:\"gp_78bbd298480f53186f44c5e33207786e\";i:2560;s:42:\"pinterest_78bbd298480f53186f44c5e33207786e\";i:2561;s:41:\"linkedin_78bbd298480f53186f44c5e33207786e\";i:2562;s:35:\"fb_6e8400eed971f5f7e8cb1063682b4946\";i:2563;s:40:\"twitter_6e8400eed971f5f7e8cb1063682b4946\";i:2564;s:35:\"gp_6e8400eed971f5f7e8cb1063682b4946\";i:2565;s:42:\"pinterest_6e8400eed971f5f7e8cb1063682b4946\";i:2566;s:41:\"linkedin_6e8400eed971f5f7e8cb1063682b4946\";i:2567;s:35:\"fb_7f5634629b189d370bae0b9028ba5829\";i:2568;s:40:\"twitter_7f5634629b189d370bae0b9028ba5829\";i:2569;s:35:\"gp_7f5634629b189d370bae0b9028ba5829\";i:2570;s:42:\"pinterest_7f5634629b189d370bae0b9028ba5829\";i:2571;s:41:\"linkedin_7f5634629b189d370bae0b9028ba5829\";i:2572;s:35:\"fb_db5c1bd8d3716c1029e71ce5636454d1\";i:2573;s:40:\"twitter_db5c1bd8d3716c1029e71ce5636454d1\";i:2574;s:35:\"gp_db5c1bd8d3716c1029e71ce5636454d1\";i:2575;s:42:\"pinterest_db5c1bd8d3716c1029e71ce5636454d1\";i:2576;s:41:\"linkedin_db5c1bd8d3716c1029e71ce5636454d1\";i:2577;s:35:\"fb_716617bd3110a48ee3180f21a5fcc944\";i:2578;s:40:\"twitter_716617bd3110a48ee3180f21a5fcc944\";i:2579;s:35:\"gp_716617bd3110a48ee3180f21a5fcc944\";i:2580;s:42:\"pinterest_716617bd3110a48ee3180f21a5fcc944\";i:2581;s:41:\"linkedin_716617bd3110a48ee3180f21a5fcc944\";i:2582;s:35:\"fb_bba21a35ea5cad36f73a56103b870392\";i:2583;s:40:\"twitter_bba21a35ea5cad36f73a56103b870392\";i:2584;s:35:\"gp_bba21a35ea5cad36f73a56103b870392\";i:2585;s:42:\"pinterest_bba21a35ea5cad36f73a56103b870392\";i:2586;s:41:\"linkedin_bba21a35ea5cad36f73a56103b870392\";i:2587;s:35:\"fb_32ded290d2558cc6d8446660d2981a33\";i:2588;s:40:\"twitter_32ded290d2558cc6d8446660d2981a33\";i:2589;s:35:\"gp_32ded290d2558cc6d8446660d2981a33\";i:2590;s:42:\"pinterest_32ded290d2558cc6d8446660d2981a33\";i:2591;s:41:\"linkedin_32ded290d2558cc6d8446660d2981a33\";i:2592;s:35:\"fb_8709fb4dbd1d48eb6855de505c80bd8d\";i:2593;s:40:\"twitter_8709fb4dbd1d48eb6855de505c80bd8d\";i:2594;s:35:\"gp_8709fb4dbd1d48eb6855de505c80bd8d\";i:2595;s:42:\"pinterest_8709fb4dbd1d48eb6855de505c80bd8d\";i:2596;s:41:\"linkedin_8709fb4dbd1d48eb6855de505c80bd8d\";i:2597;s:35:\"fb_fdacd0989e0b0462e78bb552ec0b7e77\";i:2598;s:40:\"twitter_fdacd0989e0b0462e78bb552ec0b7e77\";i:2599;s:35:\"gp_fdacd0989e0b0462e78bb552ec0b7e77\";i:2600;s:42:\"pinterest_fdacd0989e0b0462e78bb552ec0b7e77\";i:2601;s:41:\"linkedin_fdacd0989e0b0462e78bb552ec0b7e77\";i:2602;s:35:\"fb_300732ec6d639d67205c2dd9908a3b2c\";i:2603;s:40:\"twitter_300732ec6d639d67205c2dd9908a3b2c\";i:2604;s:35:\"gp_300732ec6d639d67205c2dd9908a3b2c\";i:2605;s:42:\"pinterest_300732ec6d639d67205c2dd9908a3b2c\";i:2606;s:41:\"linkedin_300732ec6d639d67205c2dd9908a3b2c\";i:2607;s:35:\"fb_53b7134b5688fcf936b745513abae5b4\";i:2608;s:40:\"twitter_53b7134b5688fcf936b745513abae5b4\";i:2609;s:35:\"gp_53b7134b5688fcf936b745513abae5b4\";i:2610;s:42:\"pinterest_53b7134b5688fcf936b745513abae5b4\";i:2611;s:41:\"linkedin_53b7134b5688fcf936b745513abae5b4\";i:2612;s:35:\"fb_aef2491e038931644f5d0304dec1cc99\";i:2613;s:40:\"twitter_aef2491e038931644f5d0304dec1cc99\";i:2614;s:35:\"gp_aef2491e038931644f5d0304dec1cc99\";i:2615;s:42:\"pinterest_aef2491e038931644f5d0304dec1cc99\";i:2616;s:41:\"linkedin_aef2491e038931644f5d0304dec1cc99\";i:2617;s:35:\"fb_37eb1174c58e7f26a361f4bb4e9fec16\";i:2618;s:40:\"twitter_37eb1174c58e7f26a361f4bb4e9fec16\";i:2619;s:35:\"gp_37eb1174c58e7f26a361f4bb4e9fec16\";i:2620;s:42:\"pinterest_37eb1174c58e7f26a361f4bb4e9fec16\";i:2621;s:41:\"linkedin_37eb1174c58e7f26a361f4bb4e9fec16\";i:2622;s:35:\"fb_955415260dd790a75172b3bf4c859c0e\";i:2623;s:40:\"twitter_955415260dd790a75172b3bf4c859c0e\";i:2624;s:35:\"gp_955415260dd790a75172b3bf4c859c0e\";i:2625;s:42:\"pinterest_955415260dd790a75172b3bf4c859c0e\";i:2626;s:41:\"linkedin_955415260dd790a75172b3bf4c859c0e\";i:2627;s:35:\"fb_1388cbba3ab6c1aa5105eada6fea320e\";i:2628;s:40:\"twitter_1388cbba3ab6c1aa5105eada6fea320e\";i:2629;s:35:\"gp_1388cbba3ab6c1aa5105eada6fea320e\";i:2630;s:42:\"pinterest_1388cbba3ab6c1aa5105eada6fea320e\";i:2631;s:41:\"linkedin_1388cbba3ab6c1aa5105eada6fea320e\";i:2632;s:35:\"fb_1b2793155ce08db75e088c82a9495981\";i:2633;s:40:\"twitter_1b2793155ce08db75e088c82a9495981\";i:2634;s:35:\"gp_1b2793155ce08db75e088c82a9495981\";i:2635;s:42:\"pinterest_1b2793155ce08db75e088c82a9495981\";i:2636;s:41:\"linkedin_1b2793155ce08db75e088c82a9495981\";i:2637;s:35:\"fb_7739282a40a1a5c6ea18de10a5b9c23e\";i:2638;s:40:\"twitter_7739282a40a1a5c6ea18de10a5b9c23e\";i:2639;s:35:\"gp_7739282a40a1a5c6ea18de10a5b9c23e\";i:2640;s:42:\"pinterest_7739282a40a1a5c6ea18de10a5b9c23e\";i:2641;s:41:\"linkedin_7739282a40a1a5c6ea18de10a5b9c23e\";i:2642;s:35:\"fb_8b518637cae51fa3af378995e874126e\";i:2643;s:40:\"twitter_8b518637cae51fa3af378995e874126e\";i:2644;s:35:\"gp_8b518637cae51fa3af378995e874126e\";i:2645;s:42:\"pinterest_8b518637cae51fa3af378995e874126e\";i:2646;s:41:\"linkedin_8b518637cae51fa3af378995e874126e\";i:2647;s:35:\"fb_77c7431fc08f4eda121bb6b9d2143367\";i:2648;s:40:\"twitter_77c7431fc08f4eda121bb6b9d2143367\";i:2649;s:35:\"gp_77c7431fc08f4eda121bb6b9d2143367\";i:2650;s:42:\"pinterest_77c7431fc08f4eda121bb6b9d2143367\";i:2651;s:41:\"linkedin_77c7431fc08f4eda121bb6b9d2143367\";i:2652;s:35:\"fb_048cb1a5670d97a552f9082a2736e10c\";i:2653;s:40:\"twitter_048cb1a5670d97a552f9082a2736e10c\";i:2654;s:35:\"gp_048cb1a5670d97a552f9082a2736e10c\";i:2655;s:42:\"pinterest_048cb1a5670d97a552f9082a2736e10c\";i:2656;s:41:\"linkedin_048cb1a5670d97a552f9082a2736e10c\";i:2657;s:35:\"fb_794c1ed80861c0aa54d70c6a41a88288\";i:2658;s:40:\"twitter_794c1ed80861c0aa54d70c6a41a88288\";i:2659;s:35:\"gp_794c1ed80861c0aa54d70c6a41a88288\";i:2660;s:42:\"pinterest_794c1ed80861c0aa54d70c6a41a88288\";i:2661;s:41:\"linkedin_794c1ed80861c0aa54d70c6a41a88288\";i:2662;s:35:\"fb_849df273c563d9ec6e01744f8e535e9e\";i:2663;s:40:\"twitter_849df273c563d9ec6e01744f8e535e9e\";i:2664;s:35:\"gp_849df273c563d9ec6e01744f8e535e9e\";i:2665;s:42:\"pinterest_849df273c563d9ec6e01744f8e535e9e\";i:2666;s:41:\"linkedin_849df273c563d9ec6e01744f8e535e9e\";i:2667;s:35:\"fb_6627683cd1aa929bd02ef4a967844a97\";i:2668;s:40:\"twitter_6627683cd1aa929bd02ef4a967844a97\";i:2669;s:35:\"gp_6627683cd1aa929bd02ef4a967844a97\";i:2670;s:42:\"pinterest_6627683cd1aa929bd02ef4a967844a97\";i:2671;s:41:\"linkedin_6627683cd1aa929bd02ef4a967844a97\";i:2672;s:35:\"fb_cb472f39222bd5306211add3557d4adc\";i:2673;s:40:\"twitter_cb472f39222bd5306211add3557d4adc\";i:2674;s:35:\"gp_cb472f39222bd5306211add3557d4adc\";i:2675;s:42:\"pinterest_cb472f39222bd5306211add3557d4adc\";i:2676;s:41:\"linkedin_cb472f39222bd5306211add3557d4adc\";i:2677;s:35:\"fb_1ad577db08116edc860b14cabcf19b70\";i:2678;s:40:\"twitter_1ad577db08116edc860b14cabcf19b70\";i:2679;s:35:\"gp_1ad577db08116edc860b14cabcf19b70\";i:2680;s:42:\"pinterest_1ad577db08116edc860b14cabcf19b70\";i:2681;s:41:\"linkedin_1ad577db08116edc860b14cabcf19b70\";i:2682;s:35:\"fb_5467ada5f01a7e65396f11a57bf96f92\";i:2683;s:40:\"twitter_5467ada5f01a7e65396f11a57bf96f92\";i:2684;s:35:\"gp_5467ada5f01a7e65396f11a57bf96f92\";i:2685;s:42:\"pinterest_5467ada5f01a7e65396f11a57bf96f92\";i:2686;s:41:\"linkedin_5467ada5f01a7e65396f11a57bf96f92\";i:2687;s:35:\"fb_7b5eca6b1d8b1b44a7042c0aa98f4efa\";i:2688;s:40:\"twitter_7b5eca6b1d8b1b44a7042c0aa98f4efa\";i:2689;s:35:\"gp_7b5eca6b1d8b1b44a7042c0aa98f4efa\";i:2690;s:42:\"pinterest_7b5eca6b1d8b1b44a7042c0aa98f4efa\";i:2691;s:41:\"linkedin_7b5eca6b1d8b1b44a7042c0aa98f4efa\";i:2692;s:35:\"fb_431429cabb9dd6b352d248ef15e4f824\";i:2693;s:40:\"twitter_431429cabb9dd6b352d248ef15e4f824\";i:2694;s:35:\"gp_431429cabb9dd6b352d248ef15e4f824\";i:2695;s:42:\"pinterest_431429cabb9dd6b352d248ef15e4f824\";i:2696;s:41:\"linkedin_431429cabb9dd6b352d248ef15e4f824\";i:2697;s:35:\"fb_b9c83552f7288682aa7469fd41b92ed6\";i:2698;s:40:\"twitter_b9c83552f7288682aa7469fd41b92ed6\";i:2699;s:35:\"gp_b9c83552f7288682aa7469fd41b92ed6\";i:2700;s:42:\"pinterest_b9c83552f7288682aa7469fd41b92ed6\";i:2701;s:41:\"linkedin_b9c83552f7288682aa7469fd41b92ed6\";i:2702;s:35:\"fb_8248000a0b0c4d2c631a8cbe2897e375\";i:2703;s:40:\"twitter_8248000a0b0c4d2c631a8cbe2897e375\";i:2704;s:35:\"gp_8248000a0b0c4d2c631a8cbe2897e375\";i:2705;s:42:\"pinterest_8248000a0b0c4d2c631a8cbe2897e375\";i:2706;s:41:\"linkedin_8248000a0b0c4d2c631a8cbe2897e375\";i:2707;s:35:\"fb_96045a60c8c6048ffef5d18a4bf3e62e\";i:2708;s:40:\"twitter_96045a60c8c6048ffef5d18a4bf3e62e\";i:2709;s:35:\"gp_96045a60c8c6048ffef5d18a4bf3e62e\";i:2710;s:42:\"pinterest_96045a60c8c6048ffef5d18a4bf3e62e\";i:2711;s:41:\"linkedin_96045a60c8c6048ffef5d18a4bf3e62e\";i:2712;s:35:\"fb_c288655d28f2733aadc3a0da480fde31\";i:2713;s:40:\"twitter_c288655d28f2733aadc3a0da480fde31\";i:2714;s:35:\"gp_c288655d28f2733aadc3a0da480fde31\";i:2715;s:42:\"pinterest_c288655d28f2733aadc3a0da480fde31\";i:2716;s:41:\"linkedin_c288655d28f2733aadc3a0da480fde31\";i:2717;s:35:\"fb_974e193d4a8873af95424b759ad1454a\";i:2718;s:40:\"twitter_974e193d4a8873af95424b759ad1454a\";i:2719;s:35:\"gp_974e193d4a8873af95424b759ad1454a\";i:2720;s:42:\"pinterest_974e193d4a8873af95424b759ad1454a\";i:2721;s:41:\"linkedin_974e193d4a8873af95424b759ad1454a\";i:2722;s:35:\"fb_dae756dfb85eee03620f1c56df587ad8\";i:2723;s:40:\"twitter_dae756dfb85eee03620f1c56df587ad8\";i:2724;s:35:\"gp_dae756dfb85eee03620f1c56df587ad8\";i:2725;s:42:\"pinterest_dae756dfb85eee03620f1c56df587ad8\";i:2726;s:41:\"linkedin_dae756dfb85eee03620f1c56df587ad8\";i:2727;s:35:\"fb_d5b3115277983d50ace07a73e330f43f\";i:2728;s:40:\"twitter_d5b3115277983d50ace07a73e330f43f\";i:2729;s:35:\"gp_d5b3115277983d50ace07a73e330f43f\";i:2730;s:42:\"pinterest_d5b3115277983d50ace07a73e330f43f\";i:2731;s:41:\"linkedin_d5b3115277983d50ace07a73e330f43f\";i:2732;s:35:\"fb_e103844713ee6ed7071e7628afbcbef6\";i:2733;s:40:\"twitter_e103844713ee6ed7071e7628afbcbef6\";i:2734;s:35:\"gp_e103844713ee6ed7071e7628afbcbef6\";i:2735;s:42:\"pinterest_e103844713ee6ed7071e7628afbcbef6\";i:2736;s:41:\"linkedin_e103844713ee6ed7071e7628afbcbef6\";i:2737;s:35:\"fb_3b97978b0eed094b80efbfbb9d3a52e3\";i:2738;s:40:\"twitter_3b97978b0eed094b80efbfbb9d3a52e3\";i:2739;s:35:\"gp_3b97978b0eed094b80efbfbb9d3a52e3\";i:2740;s:42:\"pinterest_3b97978b0eed094b80efbfbb9d3a52e3\";i:2741;s:41:\"linkedin_3b97978b0eed094b80efbfbb9d3a52e3\";i:2742;s:35:\"fb_b91adcbe4f459395102a0e4624ac0896\";i:2743;s:40:\"twitter_b91adcbe4f459395102a0e4624ac0896\";i:2744;s:35:\"gp_b91adcbe4f459395102a0e4624ac0896\";i:2745;s:42:\"pinterest_b91adcbe4f459395102a0e4624ac0896\";i:2746;s:41:\"linkedin_b91adcbe4f459395102a0e4624ac0896\";i:2747;s:35:\"fb_cebc891c0cdc94674d686bd3bb7353cb\";i:2748;s:40:\"twitter_cebc891c0cdc94674d686bd3bb7353cb\";i:2749;s:35:\"gp_cebc891c0cdc94674d686bd3bb7353cb\";i:2750;s:42:\"pinterest_cebc891c0cdc94674d686bd3bb7353cb\";i:2751;s:41:\"linkedin_cebc891c0cdc94674d686bd3bb7353cb\";i:2752;s:35:\"gp_985a9941e2f868f0143194ecc97cc2cd\";i:2753;s:42:\"pinterest_985a9941e2f868f0143194ecc97cc2cd\";i:2754;s:41:\"linkedin_985a9941e2f868f0143194ecc97cc2cd\";i:2755;s:35:\"fb_d4d1c6919d5dd47a376a4eaa30fe5b19\";i:2756;s:40:\"twitter_d4d1c6919d5dd47a376a4eaa30fe5b19\";i:2757;s:35:\"gp_d4d1c6919d5dd47a376a4eaa30fe5b19\";i:2758;s:42:\"pinterest_d4d1c6919d5dd47a376a4eaa30fe5b19\";i:2759;s:41:\"linkedin_d4d1c6919d5dd47a376a4eaa30fe5b19\";i:2760;s:35:\"fb_a18544b88d91dd6494e36d77a5c2a6ee\";i:2761;s:40:\"twitter_a18544b88d91dd6494e36d77a5c2a6ee\";i:2762;s:35:\"gp_a18544b88d91dd6494e36d77a5c2a6ee\";i:2763;s:42:\"pinterest_a18544b88d91dd6494e36d77a5c2a6ee\";i:2764;s:41:\"linkedin_a18544b88d91dd6494e36d77a5c2a6ee\";i:2765;s:35:\"fb_ca8cc2e641d72e687428db73dee0ce45\";i:2766;s:40:\"twitter_ca8cc2e641d72e687428db73dee0ce45\";i:2767;s:35:\"gp_ca8cc2e641d72e687428db73dee0ce45\";i:2768;s:42:\"pinterest_ca8cc2e641d72e687428db73dee0ce45\";i:2769;s:41:\"linkedin_ca8cc2e641d72e687428db73dee0ce45\";i:2770;s:35:\"fb_82c49bc2626e367e010d24e4cb55236d\";i:2771;s:40:\"twitter_82c49bc2626e367e010d24e4cb55236d\";i:2772;s:35:\"gp_82c49bc2626e367e010d24e4cb55236d\";i:2773;s:42:\"pinterest_82c49bc2626e367e010d24e4cb55236d\";i:2774;s:41:\"linkedin_82c49bc2626e367e010d24e4cb55236d\";i:2775;s:35:\"fb_6f58bd18d53db07206b51db6660aba72\";i:2776;s:40:\"twitter_6f58bd18d53db07206b51db6660aba72\";i:2777;s:35:\"gp_6f58bd18d53db07206b51db6660aba72\";i:2778;s:42:\"pinterest_6f58bd18d53db07206b51db6660aba72\";i:2779;s:41:\"linkedin_6f58bd18d53db07206b51db6660aba72\";i:2780;s:35:\"fb_06de4b1fb9b439ef1782baa096766255\";i:2781;s:40:\"twitter_06de4b1fb9b439ef1782baa096766255\";i:2782;s:35:\"gp_06de4b1fb9b439ef1782baa096766255\";i:2783;s:42:\"pinterest_06de4b1fb9b439ef1782baa096766255\";i:2784;s:41:\"linkedin_06de4b1fb9b439ef1782baa096766255\";i:2785;s:35:\"fb_730f0b84e760217162474462e4ebc1b7\";i:2786;s:40:\"twitter_730f0b84e760217162474462e4ebc1b7\";i:2787;s:35:\"gp_730f0b84e760217162474462e4ebc1b7\";i:2788;s:42:\"pinterest_730f0b84e760217162474462e4ebc1b7\";i:2789;s:41:\"linkedin_730f0b84e760217162474462e4ebc1b7\";i:2790;s:35:\"fb_418452e0619501bbe6f4bda7cefa4e8f\";i:2791;s:40:\"twitter_418452e0619501bbe6f4bda7cefa4e8f\";i:2792;s:35:\"gp_418452e0619501bbe6f4bda7cefa4e8f\";i:2793;s:42:\"pinterest_418452e0619501bbe6f4bda7cefa4e8f\";i:2794;s:41:\"linkedin_418452e0619501bbe6f4bda7cefa4e8f\";i:2795;s:35:\"fb_9a12013cfcc99244bf2ff4c3f7e022f0\";i:2796;s:40:\"twitter_9a12013cfcc99244bf2ff4c3f7e022f0\";i:2797;s:35:\"gp_9a12013cfcc99244bf2ff4c3f7e022f0\";i:2798;s:42:\"pinterest_9a12013cfcc99244bf2ff4c3f7e022f0\";i:2799;s:41:\"linkedin_9a12013cfcc99244bf2ff4c3f7e022f0\";i:2800;s:35:\"fb_a0d53da65199bdd6e3669f983dfdd381\";i:2801;s:40:\"twitter_a0d53da65199bdd6e3669f983dfdd381\";i:2802;s:35:\"gp_a0d53da65199bdd6e3669f983dfdd381\";i:2803;s:42:\"pinterest_a0d53da65199bdd6e3669f983dfdd381\";i:2804;s:41:\"linkedin_a0d53da65199bdd6e3669f983dfdd381\";i:2805;s:35:\"fb_4cd6cb4dc3e7148054c441cdd6942008\";i:2806;s:40:\"twitter_4cd6cb4dc3e7148054c441cdd6942008\";i:2807;s:35:\"gp_4cd6cb4dc3e7148054c441cdd6942008\";i:2808;s:42:\"pinterest_4cd6cb4dc3e7148054c441cdd6942008\";i:2809;s:41:\"linkedin_4cd6cb4dc3e7148054c441cdd6942008\";i:2810;s:35:\"fb_0fcce9c83cc70fcdaa81d42049d050df\";i:2811;s:40:\"twitter_0fcce9c83cc70fcdaa81d42049d050df\";i:2812;s:35:\"gp_0fcce9c83cc70fcdaa81d42049d050df\";i:2813;s:42:\"pinterest_0fcce9c83cc70fcdaa81d42049d050df\";i:2814;s:41:\"linkedin_0fcce9c83cc70fcdaa81d42049d050df\";i:2815;s:35:\"fb_015232e2cc50711957713132931b8c15\";i:2816;s:40:\"twitter_015232e2cc50711957713132931b8c15\";i:2817;s:35:\"gp_015232e2cc50711957713132931b8c15\";i:2818;s:42:\"pinterest_015232e2cc50711957713132931b8c15\";i:2819;s:41:\"linkedin_015232e2cc50711957713132931b8c15\";i:2820;s:35:\"fb_60ebbf70d812a9a65d45e065426a29f8\";i:2821;s:40:\"twitter_60ebbf70d812a9a65d45e065426a29f8\";i:2822;s:35:\"gp_60ebbf70d812a9a65d45e065426a29f8\";i:2823;s:42:\"pinterest_60ebbf70d812a9a65d45e065426a29f8\";i:2824;s:41:\"linkedin_60ebbf70d812a9a65d45e065426a29f8\";i:2825;s:35:\"fb_2dee6d7758e97c5bcc719d848c680157\";i:2826;s:40:\"twitter_2dee6d7758e97c5bcc719d848c680157\";i:2827;s:35:\"gp_2dee6d7758e97c5bcc719d848c680157\";i:2828;s:42:\"pinterest_2dee6d7758e97c5bcc719d848c680157\";i:2829;s:41:\"linkedin_2dee6d7758e97c5bcc719d848c680157\";i:2830;s:35:\"fb_57c22098e9a4697b8b553a1e455fae2c\";i:2831;s:40:\"twitter_57c22098e9a4697b8b553a1e455fae2c\";i:2832;s:35:\"gp_57c22098e9a4697b8b553a1e455fae2c\";i:2833;s:42:\"pinterest_57c22098e9a4697b8b553a1e455fae2c\";i:2834;s:41:\"linkedin_57c22098e9a4697b8b553a1e455fae2c\";i:2835;s:35:\"fb_b5f4e2bc91d5add8fde0b32ef0628db2\";i:2836;s:40:\"twitter_b5f4e2bc91d5add8fde0b32ef0628db2\";i:2837;s:35:\"gp_b5f4e2bc91d5add8fde0b32ef0628db2\";i:2838;s:42:\"pinterest_b5f4e2bc91d5add8fde0b32ef0628db2\";i:2839;s:41:\"linkedin_b5f4e2bc91d5add8fde0b32ef0628db2\";i:2840;s:35:\"fb_a81851a6f48140f4ffb65993c71824b1\";i:2841;s:40:\"twitter_a81851a6f48140f4ffb65993c71824b1\";i:2842;s:35:\"gp_a81851a6f48140f4ffb65993c71824b1\";i:2843;s:42:\"pinterest_a81851a6f48140f4ffb65993c71824b1\";i:2844;s:41:\"linkedin_a81851a6f48140f4ffb65993c71824b1\";i:2845;s:35:\"fb_f58ef862fd9556d82bf734db4ac84c4e\";i:2846;s:40:\"twitter_f58ef862fd9556d82bf734db4ac84c4e\";i:2847;s:35:\"gp_f58ef862fd9556d82bf734db4ac84c4e\";i:2848;s:42:\"pinterest_f58ef862fd9556d82bf734db4ac84c4e\";i:2849;s:41:\"linkedin_f58ef862fd9556d82bf734db4ac84c4e\";i:2850;s:35:\"fb_ae64d9993fce935bf900f85aa56fd791\";i:2851;s:40:\"twitter_ae64d9993fce935bf900f85aa56fd791\";i:2852;s:35:\"gp_ae64d9993fce935bf900f85aa56fd791\";i:2853;s:42:\"pinterest_ae64d9993fce935bf900f85aa56fd791\";i:2854;s:41:\"linkedin_ae64d9993fce935bf900f85aa56fd791\";i:2855;s:35:\"fb_683f709c8c1c26de0acfa8f62b24a1ad\";i:2856;s:40:\"twitter_683f709c8c1c26de0acfa8f62b24a1ad\";i:2857;s:35:\"gp_683f709c8c1c26de0acfa8f62b24a1ad\";i:2858;s:42:\"pinterest_683f709c8c1c26de0acfa8f62b24a1ad\";i:2859;s:41:\"linkedin_683f709c8c1c26de0acfa8f62b24a1ad\";i:2860;s:35:\"fb_edf4316cf0af8cf3ea58c55f2fe29d2d\";i:2861;s:40:\"twitter_edf4316cf0af8cf3ea58c55f2fe29d2d\";i:2862;s:35:\"gp_edf4316cf0af8cf3ea58c55f2fe29d2d\";i:2863;s:42:\"pinterest_edf4316cf0af8cf3ea58c55f2fe29d2d\";i:2864;s:41:\"linkedin_edf4316cf0af8cf3ea58c55f2fe29d2d\";i:2865;s:35:\"fb_5c13e77b28ede4a5ff0515c6168dc40f\";i:2866;s:40:\"twitter_5c13e77b28ede4a5ff0515c6168dc40f\";i:2867;s:35:\"gp_5c13e77b28ede4a5ff0515c6168dc40f\";i:2868;s:42:\"pinterest_5c13e77b28ede4a5ff0515c6168dc40f\";i:2869;s:41:\"linkedin_5c13e77b28ede4a5ff0515c6168dc40f\";i:2870;s:35:\"fb_d13e25e373635fcbe313f7decf32798a\";i:2871;s:40:\"twitter_d13e25e373635fcbe313f7decf32798a\";i:2872;s:35:\"gp_d13e25e373635fcbe313f7decf32798a\";i:2873;s:42:\"pinterest_d13e25e373635fcbe313f7decf32798a\";i:2874;s:41:\"linkedin_d13e25e373635fcbe313f7decf32798a\";i:2875;s:35:\"fb_789fb144fd31d5c54c5535ab44139485\";i:2876;s:40:\"twitter_789fb144fd31d5c54c5535ab44139485\";i:2877;s:35:\"gp_789fb144fd31d5c54c5535ab44139485\";i:2878;s:42:\"pinterest_789fb144fd31d5c54c5535ab44139485\";i:2879;s:41:\"linkedin_789fb144fd31d5c54c5535ab44139485\";i:2880;s:35:\"fb_dbfc889c5c2cbd82acbef2523a550d6b\";i:2881;s:40:\"twitter_dbfc889c5c2cbd82acbef2523a550d6b\";i:2882;s:35:\"gp_dbfc889c5c2cbd82acbef2523a550d6b\";i:2883;s:42:\"pinterest_dbfc889c5c2cbd82acbef2523a550d6b\";i:2884;s:41:\"linkedin_dbfc889c5c2cbd82acbef2523a550d6b\";i:2885;s:35:\"fb_e586b127c1f7f574f447c3824322a4ce\";i:2886;s:40:\"twitter_e586b127c1f7f574f447c3824322a4ce\";i:2887;s:35:\"gp_e586b127c1f7f574f447c3824322a4ce\";i:2888;s:42:\"pinterest_e586b127c1f7f574f447c3824322a4ce\";i:2889;s:41:\"linkedin_e586b127c1f7f574f447c3824322a4ce\";i:2890;s:35:\"fb_817c0e43b126140eea6ebe6eb28115ac\";i:2891;s:40:\"twitter_817c0e43b126140eea6ebe6eb28115ac\";i:2892;s:35:\"gp_817c0e43b126140eea6ebe6eb28115ac\";i:2893;s:42:\"pinterest_817c0e43b126140eea6ebe6eb28115ac\";i:2894;s:41:\"linkedin_817c0e43b126140eea6ebe6eb28115ac\";i:2895;s:35:\"fb_e59bb5f84e4136da107893048818b850\";i:2896;s:40:\"twitter_e59bb5f84e4136da107893048818b850\";i:2897;s:35:\"gp_e59bb5f84e4136da107893048818b850\";i:2898;s:42:\"pinterest_e59bb5f84e4136da107893048818b850\";i:2899;s:41:\"linkedin_e59bb5f84e4136da107893048818b850\";i:2900;s:35:\"fb_8bd1ac44e00186a5f9c7b04ba5ce52b5\";i:2901;s:40:\"twitter_8bd1ac44e00186a5f9c7b04ba5ce52b5\";i:2902;s:35:\"gp_8bd1ac44e00186a5f9c7b04ba5ce52b5\";i:2903;s:42:\"pinterest_8bd1ac44e00186a5f9c7b04ba5ce52b5\";i:2904;s:41:\"linkedin_8bd1ac44e00186a5f9c7b04ba5ce52b5\";i:2905;s:35:\"fb_d705dbe0b25b98966ae8934381de9fbc\";i:2906;s:40:\"twitter_d705dbe0b25b98966ae8934381de9fbc\";i:2907;s:35:\"gp_d705dbe0b25b98966ae8934381de9fbc\";i:2908;s:42:\"pinterest_d705dbe0b25b98966ae8934381de9fbc\";i:2909;s:41:\"linkedin_d705dbe0b25b98966ae8934381de9fbc\";i:2910;s:35:\"fb_861ad4e4296c3f57b983eb6b4631640f\";i:2911;s:40:\"twitter_861ad4e4296c3f57b983eb6b4631640f\";i:2912;s:35:\"gp_861ad4e4296c3f57b983eb6b4631640f\";i:2913;s:42:\"pinterest_861ad4e4296c3f57b983eb6b4631640f\";i:2914;s:41:\"linkedin_861ad4e4296c3f57b983eb6b4631640f\";i:2915;s:35:\"fb_06aa58f2c9acee1e11e9d540f9430d21\";i:2916;s:40:\"twitter_06aa58f2c9acee1e11e9d540f9430d21\";i:2917;s:35:\"gp_06aa58f2c9acee1e11e9d540f9430d21\";i:2918;s:42:\"pinterest_06aa58f2c9acee1e11e9d540f9430d21\";i:2919;s:41:\"linkedin_06aa58f2c9acee1e11e9d540f9430d21\";i:2920;s:35:\"fb_0c23f5f3982323de56a7e94545aa3a6f\";i:2921;s:40:\"twitter_0c23f5f3982323de56a7e94545aa3a6f\";i:2922;s:35:\"gp_0c23f5f3982323de56a7e94545aa3a6f\";i:2923;s:42:\"pinterest_0c23f5f3982323de56a7e94545aa3a6f\";i:2924;s:41:\"linkedin_0c23f5f3982323de56a7e94545aa3a6f\";i:2925;s:35:\"fb_5535a548efa7c2483e6c1f8decfa3d84\";i:2926;s:40:\"twitter_5535a548efa7c2483e6c1f8decfa3d84\";i:2927;s:35:\"gp_5535a548efa7c2483e6c1f8decfa3d84\";i:2928;s:42:\"pinterest_5535a548efa7c2483e6c1f8decfa3d84\";i:2929;s:41:\"linkedin_5535a548efa7c2483e6c1f8decfa3d84\";i:2930;s:35:\"fb_b981cb824e5b71abee3b899dad1103c6\";i:2931;s:40:\"twitter_b981cb824e5b71abee3b899dad1103c6\";i:2932;s:35:\"gp_b981cb824e5b71abee3b899dad1103c6\";i:2933;s:42:\"pinterest_b981cb824e5b71abee3b899dad1103c6\";i:2934;s:41:\"linkedin_b981cb824e5b71abee3b899dad1103c6\";i:2935;s:35:\"fb_8cfc2aa77a591c3670f5b3fdaa99659e\";i:2936;s:40:\"twitter_8cfc2aa77a591c3670f5b3fdaa99659e\";i:2937;s:35:\"gp_8cfc2aa77a591c3670f5b3fdaa99659e\";i:2938;s:42:\"pinterest_8cfc2aa77a591c3670f5b3fdaa99659e\";i:2939;s:41:\"linkedin_8cfc2aa77a591c3670f5b3fdaa99659e\";i:2940;s:35:\"fb_155ed56f85f013974262f462d50279ea\";i:2941;s:40:\"twitter_155ed56f85f013974262f462d50279ea\";i:2942;s:35:\"gp_155ed56f85f013974262f462d50279ea\";i:2943;s:42:\"pinterest_155ed56f85f013974262f462d50279ea\";i:2944;s:41:\"linkedin_155ed56f85f013974262f462d50279ea\";i:2945;s:35:\"fb_9c3edac7ac90ccfc8b2bc1456f261774\";i:2946;s:40:\"twitter_9c3edac7ac90ccfc8b2bc1456f261774\";i:2947;s:35:\"gp_9c3edac7ac90ccfc8b2bc1456f261774\";i:2948;s:42:\"pinterest_9c3edac7ac90ccfc8b2bc1456f261774\";i:2949;s:41:\"linkedin_9c3edac7ac90ccfc8b2bc1456f261774\";i:2950;s:35:\"fb_ec5b8cedda126641567e9e8b84d107e2\";i:2951;s:40:\"twitter_ec5b8cedda126641567e9e8b84d107e2\";i:2952;s:35:\"gp_ec5b8cedda126641567e9e8b84d107e2\";i:2953;s:42:\"pinterest_ec5b8cedda126641567e9e8b84d107e2\";i:2954;s:41:\"linkedin_ec5b8cedda126641567e9e8b84d107e2\";i:2955;s:35:\"fb_a05738f75d66cc1562c347783265d71a\";i:2956;s:40:\"twitter_a05738f75d66cc1562c347783265d71a\";i:2957;s:35:\"gp_a05738f75d66cc1562c347783265d71a\";i:2958;s:42:\"pinterest_a05738f75d66cc1562c347783265d71a\";i:2959;s:41:\"linkedin_a05738f75d66cc1562c347783265d71a\";i:2960;s:35:\"fb_cc1feef9e983c1243a96fd9422c727cb\";i:2961;s:40:\"twitter_cc1feef9e983c1243a96fd9422c727cb\";i:2962;s:35:\"gp_cc1feef9e983c1243a96fd9422c727cb\";i:2963;s:42:\"pinterest_cc1feef9e983c1243a96fd9422c727cb\";i:2964;s:41:\"linkedin_cc1feef9e983c1243a96fd9422c727cb\";i:2965;s:35:\"fb_ad18e9e8ad23a620f36ec90798a3b7ea\";i:2966;s:40:\"twitter_ad18e9e8ad23a620f36ec90798a3b7ea\";i:2967;s:35:\"gp_ad18e9e8ad23a620f36ec90798a3b7ea\";i:2968;s:42:\"pinterest_ad18e9e8ad23a620f36ec90798a3b7ea\";i:2969;s:41:\"linkedin_ad18e9e8ad23a620f36ec90798a3b7ea\";i:2970;s:35:\"fb_dae157332b740c73c30ec256a4a9721f\";i:2971;s:40:\"twitter_dae157332b740c73c30ec256a4a9721f\";i:2972;s:35:\"gp_dae157332b740c73c30ec256a4a9721f\";i:2973;s:42:\"pinterest_dae157332b740c73c30ec256a4a9721f\";i:2974;s:41:\"linkedin_dae157332b740c73c30ec256a4a9721f\";i:2975;s:35:\"fb_2fc1bdc4755662eb56b148cf4b966ee1\";i:2976;s:40:\"twitter_2fc1bdc4755662eb56b148cf4b966ee1\";i:2977;s:35:\"gp_2fc1bdc4755662eb56b148cf4b966ee1\";i:2978;s:42:\"pinterest_2fc1bdc4755662eb56b148cf4b966ee1\";i:2979;s:41:\"linkedin_2fc1bdc4755662eb56b148cf4b966ee1\";i:2980;s:35:\"fb_f6294c6b0dd53d1766732cf1727440ab\";i:2981;s:40:\"twitter_f6294c6b0dd53d1766732cf1727440ab\";i:2982;s:35:\"gp_f6294c6b0dd53d1766732cf1727440ab\";i:2983;s:42:\"pinterest_f6294c6b0dd53d1766732cf1727440ab\";i:2984;s:41:\"linkedin_f6294c6b0dd53d1766732cf1727440ab\";i:2985;s:35:\"fb_81b1eb67db9260f1d9643b1869d48bdc\";i:2986;s:40:\"twitter_81b1eb67db9260f1d9643b1869d48bdc\";i:2987;s:35:\"gp_81b1eb67db9260f1d9643b1869d48bdc\";i:2988;s:42:\"pinterest_81b1eb67db9260f1d9643b1869d48bdc\";i:2989;s:41:\"linkedin_81b1eb67db9260f1d9643b1869d48bdc\";i:2990;s:35:\"fb_e46dced57325c9f215c3098b0114eb00\";i:2991;s:40:\"twitter_e46dced57325c9f215c3098b0114eb00\";i:2992;s:35:\"gp_e46dced57325c9f215c3098b0114eb00\";i:2993;s:42:\"pinterest_e46dced57325c9f215c3098b0114eb00\";i:2994;s:41:\"linkedin_e46dced57325c9f215c3098b0114eb00\";i:2995;s:35:\"fb_5e0226089cb5454b3269b77aa0353be1\";i:2996;s:40:\"twitter_5e0226089cb5454b3269b77aa0353be1\";i:2997;s:35:\"gp_5e0226089cb5454b3269b77aa0353be1\";i:2998;s:42:\"pinterest_5e0226089cb5454b3269b77aa0353be1\";i:2999;s:41:\"linkedin_5e0226089cb5454b3269b77aa0353be1\";i:3000;s:35:\"fb_f2d807ee69f6157da7643b981053c6c7\";i:3001;s:40:\"twitter_f2d807ee69f6157da7643b981053c6c7\";i:3002;s:35:\"gp_f2d807ee69f6157da7643b981053c6c7\";i:3003;s:42:\"pinterest_f2d807ee69f6157da7643b981053c6c7\";i:3004;s:41:\"linkedin_f2d807ee69f6157da7643b981053c6c7\";i:3005;s:35:\"fb_25bcd8313b13bc54d71416ca6dd0e6d9\";i:3006;s:40:\"twitter_25bcd8313b13bc54d71416ca6dd0e6d9\";i:3007;s:35:\"gp_25bcd8313b13bc54d71416ca6dd0e6d9\";i:3008;s:42:\"pinterest_25bcd8313b13bc54d71416ca6dd0e6d9\";i:3009;s:41:\"linkedin_25bcd8313b13bc54d71416ca6dd0e6d9\";i:3010;s:35:\"fb_c92ac0464f8a02180042b4fc2c4c343e\";i:3011;s:40:\"twitter_c92ac0464f8a02180042b4fc2c4c343e\";i:3012;s:35:\"gp_c92ac0464f8a02180042b4fc2c4c343e\";i:3013;s:42:\"pinterest_c92ac0464f8a02180042b4fc2c4c343e\";i:3014;s:41:\"linkedin_c92ac0464f8a02180042b4fc2c4c343e\";i:3015;s:35:\"fb_3b78f9499497937062e12b98dd1ea43a\";i:3016;s:40:\"twitter_3b78f9499497937062e12b98dd1ea43a\";i:3017;s:35:\"gp_3b78f9499497937062e12b98dd1ea43a\";i:3018;s:42:\"pinterest_3b78f9499497937062e12b98dd1ea43a\";i:3019;s:41:\"linkedin_3b78f9499497937062e12b98dd1ea43a\";i:3020;s:35:\"fb_43bbf2da4482bf6ba7164a22882feb2d\";i:3021;s:40:\"twitter_43bbf2da4482bf6ba7164a22882feb2d\";i:3022;s:35:\"gp_43bbf2da4482bf6ba7164a22882feb2d\";i:3023;s:42:\"pinterest_43bbf2da4482bf6ba7164a22882feb2d\";i:3024;s:41:\"linkedin_43bbf2da4482bf6ba7164a22882feb2d\";i:3025;s:35:\"fb_8576f67efbbe78dee3098ca7d2ce74fa\";i:3026;s:40:\"twitter_8576f67efbbe78dee3098ca7d2ce74fa\";i:3027;s:35:\"gp_8576f67efbbe78dee3098ca7d2ce74fa\";i:3028;s:42:\"pinterest_8576f67efbbe78dee3098ca7d2ce74fa\";i:3029;s:41:\"linkedin_8576f67efbbe78dee3098ca7d2ce74fa\";i:3030;s:35:\"fb_b602c41797036844e978ed4ed4bdd2cb\";i:3031;s:40:\"twitter_b602c41797036844e978ed4ed4bdd2cb\";i:3032;s:35:\"gp_b602c41797036844e978ed4ed4bdd2cb\";i:3033;s:42:\"pinterest_b602c41797036844e978ed4ed4bdd2cb\";i:3034;s:41:\"linkedin_b602c41797036844e978ed4ed4bdd2cb\";i:3035;s:35:\"fb_cde00fa668b1ae302535b6a6c7b22e34\";i:3036;s:40:\"twitter_cde00fa668b1ae302535b6a6c7b22e34\";i:3037;s:35:\"gp_cde00fa668b1ae302535b6a6c7b22e34\";i:3038;s:42:\"pinterest_cde00fa668b1ae302535b6a6c7b22e34\";i:3039;s:41:\"linkedin_cde00fa668b1ae302535b6a6c7b22e34\";i:3040;s:35:\"fb_c840e3f67fe488e5b5b2b83b14a40289\";i:3041;s:40:\"twitter_c840e3f67fe488e5b5b2b83b14a40289\";i:3042;s:35:\"gp_c840e3f67fe488e5b5b2b83b14a40289\";i:3043;s:42:\"pinterest_c840e3f67fe488e5b5b2b83b14a40289\";i:3044;s:41:\"linkedin_c840e3f67fe488e5b5b2b83b14a40289\";i:3045;s:35:\"fb_b53a5be63fd33dcca948fcc3745f9558\";i:3046;s:40:\"twitter_b53a5be63fd33dcca948fcc3745f9558\";i:3047;s:35:\"gp_b53a5be63fd33dcca948fcc3745f9558\";i:3048;s:42:\"pinterest_b53a5be63fd33dcca948fcc3745f9558\";i:3049;s:41:\"linkedin_b53a5be63fd33dcca948fcc3745f9558\";i:3050;s:35:\"fb_a0531190fa358ef590d3b30c36d07c3e\";i:3051;s:40:\"twitter_a0531190fa358ef590d3b30c36d07c3e\";i:3052;s:35:\"gp_a0531190fa358ef590d3b30c36d07c3e\";i:3053;s:42:\"pinterest_a0531190fa358ef590d3b30c36d07c3e\";i:3054;s:41:\"linkedin_a0531190fa358ef590d3b30c36d07c3e\";i:3055;s:35:\"fb_1860727920a1bbffa1f7ac6961ad2174\";i:3056;s:40:\"twitter_1860727920a1bbffa1f7ac6961ad2174\";i:3057;s:35:\"gp_1860727920a1bbffa1f7ac6961ad2174\";i:3058;s:42:\"pinterest_1860727920a1bbffa1f7ac6961ad2174\";i:3059;s:41:\"linkedin_1860727920a1bbffa1f7ac6961ad2174\";i:3060;s:35:\"fb_c8f009ab70b014e9a7b05c2cb5c609dc\";i:3061;s:40:\"twitter_c8f009ab70b014e9a7b05c2cb5c609dc\";i:3062;s:35:\"gp_c8f009ab70b014e9a7b05c2cb5c609dc\";i:3063;s:42:\"pinterest_c8f009ab70b014e9a7b05c2cb5c609dc\";i:3064;s:41:\"linkedin_c8f009ab70b014e9a7b05c2cb5c609dc\";i:3065;s:35:\"fb_ca7a4323d4e3bd472f1587cc88963e88\";i:3066;s:40:\"twitter_ca7a4323d4e3bd472f1587cc88963e88\";i:3067;s:35:\"gp_ca7a4323d4e3bd472f1587cc88963e88\";i:3068;s:42:\"pinterest_ca7a4323d4e3bd472f1587cc88963e88\";i:3069;s:41:\"linkedin_ca7a4323d4e3bd472f1587cc88963e88\";i:3070;s:35:\"fb_079905e2349fa43c6b4a0f81a69b2c6b\";i:3071;s:40:\"twitter_079905e2349fa43c6b4a0f81a69b2c6b\";i:3072;s:35:\"gp_079905e2349fa43c6b4a0f81a69b2c6b\";i:3073;s:42:\"pinterest_079905e2349fa43c6b4a0f81a69b2c6b\";i:3074;s:41:\"linkedin_079905e2349fa43c6b4a0f81a69b2c6b\";i:3075;s:35:\"fb_b0e259502b93c7170259b3c63d76e290\";i:3076;s:40:\"twitter_b0e259502b93c7170259b3c63d76e290\";i:3077;s:35:\"gp_b0e259502b93c7170259b3c63d76e290\";i:3078;s:42:\"pinterest_b0e259502b93c7170259b3c63d76e290\";i:3079;s:41:\"linkedin_b0e259502b93c7170259b3c63d76e290\";i:3080;s:35:\"fb_9c8b1285b2e2089fd7ccff16df86108e\";i:3081;s:40:\"twitter_9c8b1285b2e2089fd7ccff16df86108e\";i:3082;s:35:\"gp_9c8b1285b2e2089fd7ccff16df86108e\";i:3083;s:42:\"pinterest_9c8b1285b2e2089fd7ccff16df86108e\";i:3084;s:41:\"linkedin_9c8b1285b2e2089fd7ccff16df86108e\";i:3085;s:35:\"fb_406e3efa7595ba68b6afc48427d706e7\";i:3086;s:40:\"twitter_406e3efa7595ba68b6afc48427d706e7\";i:3087;s:35:\"gp_406e3efa7595ba68b6afc48427d706e7\";i:3088;s:42:\"pinterest_406e3efa7595ba68b6afc48427d706e7\";i:3089;s:41:\"linkedin_406e3efa7595ba68b6afc48427d706e7\";i:3090;s:35:\"fb_8a636d836b461f39ab819ea2984a33bb\";i:3091;s:40:\"twitter_8a636d836b461f39ab819ea2984a33bb\";i:3092;s:35:\"gp_8a636d836b461f39ab819ea2984a33bb\";i:3093;s:42:\"pinterest_8a636d836b461f39ab819ea2984a33bb\";i:3094;s:41:\"linkedin_8a636d836b461f39ab819ea2984a33bb\";i:3095;s:35:\"fb_7d435dd189affe7452bafcaa0dd6af86\";i:3096;s:40:\"twitter_7d435dd189affe7452bafcaa0dd6af86\";i:3097;s:35:\"gp_7d435dd189affe7452bafcaa0dd6af86\";i:3098;s:42:\"pinterest_7d435dd189affe7452bafcaa0dd6af86\";i:3099;s:41:\"linkedin_7d435dd189affe7452bafcaa0dd6af86\";i:3100;s:35:\"fb_80c50ed791edba21a638f359d0e1b497\";i:3101;s:40:\"twitter_80c50ed791edba21a638f359d0e1b497\";i:3102;s:35:\"gp_80c50ed791edba21a638f359d0e1b497\";i:3103;s:42:\"pinterest_80c50ed791edba21a638f359d0e1b497\";i:3104;s:41:\"linkedin_80c50ed791edba21a638f359d0e1b497\";i:3105;s:35:\"fb_9fe670884a394b622f272b949b5f12c0\";i:3106;s:40:\"twitter_9fe670884a394b622f272b949b5f12c0\";i:3107;s:35:\"gp_9fe670884a394b622f272b949b5f12c0\";i:3108;s:42:\"pinterest_9fe670884a394b622f272b949b5f12c0\";i:3109;s:41:\"linkedin_9fe670884a394b622f272b949b5f12c0\";i:3110;s:35:\"fb_eff6f084a73b6f1776c7cf9b2c60b116\";i:3111;s:40:\"twitter_eff6f084a73b6f1776c7cf9b2c60b116\";i:3112;s:35:\"gp_eff6f084a73b6f1776c7cf9b2c60b116\";i:3113;s:42:\"pinterest_eff6f084a73b6f1776c7cf9b2c60b116\";i:3114;s:41:\"linkedin_eff6f084a73b6f1776c7cf9b2c60b116\";i:3115;s:35:\"fb_aed289cf03a280916b35eb226e8c8093\";i:3116;s:40:\"twitter_aed289cf03a280916b35eb226e8c8093\";i:3117;s:35:\"gp_aed289cf03a280916b35eb226e8c8093\";i:3118;s:42:\"pinterest_aed289cf03a280916b35eb226e8c8093\";i:3119;s:41:\"linkedin_aed289cf03a280916b35eb226e8c8093\";i:3120;s:35:\"fb_1ba372024171ed38c60986a432bb5237\";i:3121;s:40:\"twitter_1ba372024171ed38c60986a432bb5237\";i:3122;s:35:\"gp_1ba372024171ed38c60986a432bb5237\";i:3123;s:42:\"pinterest_1ba372024171ed38c60986a432bb5237\";i:3124;s:41:\"linkedin_1ba372024171ed38c60986a432bb5237\";i:3125;s:35:\"fb_1691ee7cdbffeee73ffde6ca06033133\";i:3126;s:40:\"twitter_1691ee7cdbffeee73ffde6ca06033133\";i:3127;s:35:\"gp_1691ee7cdbffeee73ffde6ca06033133\";i:3128;s:42:\"pinterest_1691ee7cdbffeee73ffde6ca06033133\";i:3129;s:41:\"linkedin_1691ee7cdbffeee73ffde6ca06033133\";i:3130;s:35:\"fb_d41d8cd98f00b204e9800998ecf8427e\";i:3131;s:40:\"twitter_d41d8cd98f00b204e9800998ecf8427e\";i:3132;s:35:\"gp_d41d8cd98f00b204e9800998ecf8427e\";i:3133;s:42:\"pinterest_d41d8cd98f00b204e9800998ecf8427e\";i:3134;s:41:\"linkedin_d41d8cd98f00b204e9800998ecf8427e\";i:3135;s:35:\"fb_f02232643d35a792270fe156f33aed52\";i:3136;s:40:\"twitter_f02232643d35a792270fe156f33aed52\";i:3137;s:35:\"gp_f02232643d35a792270fe156f33aed52\";i:3138;s:42:\"pinterest_f02232643d35a792270fe156f33aed52\";i:3139;s:41:\"linkedin_f02232643d35a792270fe156f33aed52\";i:3140;s:35:\"fb_231b44ab70c16492242b7e4b3ab33791\";i:3141;s:41:\"linkedin_231b44ab70c16492242b7e4b3ab33791\";i:3142;s:40:\"twitter_231b44ab70c16492242b7e4b3ab33791\";i:3143;s:35:\"gp_231b44ab70c16492242b7e4b3ab33791\";i:3144;s:42:\"pinterest_231b44ab70c16492242b7e4b3ab33791\";i:3145;s:35:\"fb_d599862d2e63a5a212781745fab9b9b2\";i:3146;s:40:\"twitter_d599862d2e63a5a212781745fab9b9b2\";i:3147;s:35:\"gp_d599862d2e63a5a212781745fab9b9b2\";i:3148;s:42:\"pinterest_d599862d2e63a5a212781745fab9b9b2\";i:3149;s:41:\"linkedin_d599862d2e63a5a212781745fab9b9b2\";i:3150;s:35:\"fb_effe44d20f0cde0d92774d9b431305d2\";i:3151;s:40:\"twitter_effe44d20f0cde0d92774d9b431305d2\";i:3152;s:35:\"gp_effe44d20f0cde0d92774d9b431305d2\";i:3153;s:42:\"pinterest_effe44d20f0cde0d92774d9b431305d2\";i:3154;s:41:\"linkedin_effe44d20f0cde0d92774d9b431305d2\";i:3155;s:35:\"fb_5c753f5d5bf2f24660ed6a91f6315f6b\";i:3156;s:40:\"twitter_5c753f5d5bf2f24660ed6a91f6315f6b\";i:3157;s:35:\"gp_5c753f5d5bf2f24660ed6a91f6315f6b\";i:3158;s:42:\"pinterest_5c753f5d5bf2f24660ed6a91f6315f6b\";i:3159;s:41:\"linkedin_5c753f5d5bf2f24660ed6a91f6315f6b\";i:3160;s:35:\"fb_528f1e2a0aa98f1055fe55afe70881b6\";i:3161;s:40:\"twitter_528f1e2a0aa98f1055fe55afe70881b6\";i:3162;s:35:\"gp_528f1e2a0aa98f1055fe55afe70881b6\";i:3163;s:42:\"pinterest_528f1e2a0aa98f1055fe55afe70881b6\";i:3164;s:41:\"linkedin_528f1e2a0aa98f1055fe55afe70881b6\";i:3165;s:35:\"fb_c0d525cfd353222467b6b1dce1a66d8b\";i:3166;s:40:\"twitter_c0d525cfd353222467b6b1dce1a66d8b\";i:3167;s:35:\"gp_c0d525cfd353222467b6b1dce1a66d8b\";i:3168;s:42:\"pinterest_c0d525cfd353222467b6b1dce1a66d8b\";i:3169;s:41:\"linkedin_c0d525cfd353222467b6b1dce1a66d8b\";i:3170;s:35:\"fb_00bfce620ee6abd01919654531b66bbc\";i:3171;s:40:\"twitter_00bfce620ee6abd01919654531b66bbc\";i:3172;s:35:\"gp_00bfce620ee6abd01919654531b66bbc\";i:3173;s:42:\"pinterest_00bfce620ee6abd01919654531b66bbc\";i:3174;s:41:\"linkedin_00bfce620ee6abd01919654531b66bbc\";i:3175;s:35:\"fb_31b5bccbb301a7dc28228b12fedd6598\";i:3176;s:40:\"twitter_31b5bccbb301a7dc28228b12fedd6598\";i:3177;s:35:\"gp_31b5bccbb301a7dc28228b12fedd6598\";i:3178;s:42:\"pinterest_31b5bccbb301a7dc28228b12fedd6598\";i:3179;s:41:\"linkedin_31b5bccbb301a7dc28228b12fedd6598\";i:3180;s:35:\"fb_7cfe9effde2a3352c7992766f38c73b3\";i:3181;s:40:\"twitter_7cfe9effde2a3352c7992766f38c73b3\";i:3182;s:35:\"gp_7cfe9effde2a3352c7992766f38c73b3\";i:3183;s:42:\"pinterest_7cfe9effde2a3352c7992766f38c73b3\";i:3184;s:41:\"linkedin_7cfe9effde2a3352c7992766f38c73b3\";i:3185;s:35:\"fb_8472e1e7f86c45367210548a4af437f9\";i:3186;s:40:\"twitter_8472e1e7f86c45367210548a4af437f9\";i:3187;s:35:\"gp_8472e1e7f86c45367210548a4af437f9\";i:3188;s:42:\"pinterest_8472e1e7f86c45367210548a4af437f9\";i:3189;s:41:\"linkedin_8472e1e7f86c45367210548a4af437f9\";i:3190;s:35:\"fb_5f8d9e307c9015bce52d165a797ba516\";i:3191;s:40:\"twitter_5f8d9e307c9015bce52d165a797ba516\";i:3192;s:35:\"gp_5f8d9e307c9015bce52d165a797ba516\";i:3193;s:42:\"pinterest_5f8d9e307c9015bce52d165a797ba516\";i:3194;s:41:\"linkedin_5f8d9e307c9015bce52d165a797ba516\";i:3195;s:35:\"fb_32c96574a435a6ac96261147d8dd88f8\";i:3196;s:40:\"twitter_32c96574a435a6ac96261147d8dd88f8\";i:3197;s:35:\"gp_32c96574a435a6ac96261147d8dd88f8\";i:3198;s:42:\"pinterest_32c96574a435a6ac96261147d8dd88f8\";i:3199;s:41:\"linkedin_32c96574a435a6ac96261147d8dd88f8\";}','yes'),(97541,'aptf_settings','a:14:{s:12:\"consumer_key\";s:0:\"\";s:15:\"consumer_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:19:\"access_token_secret\";s:0:\"\";s:16:\"twitter_username\";s:0:\"\";i:0;s:20:\"twitter_account_name\";s:12:\"cache_period\";s:0:\"\";s:10:\"total_feed\";s:1:\"5\";s:13:\"feed_template\";s:10:\"template-1\";s:11:\"time_format\";s:12:\"elapsed_time\";s:16:\"display_username\";i:1;s:23:\"display_twitter_actions\";i:1;s:16:\"fallback_message\";s:0:\"\";s:21:\"display_follow_button\";i:0;}','yes'),(83657,'widget_maskitto_slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83658,'widget_maskitto_services','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(83659,'widget_maskitto_projects','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343266,'theme_mods_customizr','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:18:\"jetpack_custom_css\";a:3:{s:12:\"preprocessor\";s:0:\"\";s:7:\"replace\";b:0;s:13:\"content_width\";s:0:\"\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1574789443;s:4:\"data\";a:20:{s:19:\"wp_inactive_widgets\";a:18:{i:0;s:10:\"calendar-3\";i:1;s:11:\"archives-18\";i:2;s:9:\"search-14\";i:3;s:6:\"text-6\";i:4;s:11:\"miniloops-6\";i:5;s:11:\"miniloops-7\";i:6;s:9:\"search-11\";i:7;s:9:\"search-12\";i:8;s:6:\"text-4\";i:9;s:11:\"miniloops-2\";i:10;s:11:\"miniloops-4\";i:11;s:15:\"miniminiloops-3\";i:12;s:20:\"siteorigin-masonry-3\";i:13;s:19:\"sow-post-carousel-4\";i:14;s:19:\"metaslider_widget-3\";i:15;s:19:\"blog_subscription-5\";i:16;s:11:\"top-posts-5\";i:17;s:23:\"spider_random_article-3\";}s:20:\"nimble-widget-area-1\";a:0:{}s:20:\"nimble-widget-area-2\";a:0:{}s:20:\"nimble-widget-area-3\";a:0:{}s:20:\"nimble-widget-area-4\";a:0:{}s:20:\"nimble-widget-area-5\";a:0:{}s:20:\"nimble-widget-area-6\";a:0:{}s:20:\"nimble-widget-area-7\";a:0:{}s:20:\"nimble-widget-area-8\";a:0:{}s:20:\"nimble-widget-area-9\";a:0:{}s:21:\"nimble-widget-area-10\";a:0:{}s:4:\"left\";a:4:{i:0;s:11:\"archives-20\";i:1;s:19:\"sow-post-carousel-6\";i:2;s:10:\"calendar-5\";i:3;s:6:\"text-8\";}s:5:\"right\";a:0:{}s:10:\"footer_one\";a:1:{i:0;s:19:\"blog_subscription-7\";}s:10:\"footer_two\";a:1:{i:0;s:6:\"text-9\";}s:12:\"footer_three\";a:1:{i:0;s:14:\"recent-posts-2\";}s:18:\"template_1_sidebar\";a:0:{}s:12:\"sidebar-left\";a:3:{i:0;s:18:\"facebook-likebox-3\";i:1;s:11:\"archives-16\";i:2;s:6:\"text-3\";}s:12:\"sidebar-blog\";a:0:{}s:14:\"sidebar-footer\";a:3:{i:0;s:8:\"search-9\";i:1;s:19:\"sow-post-carousel-3\";i:2;s:11:\"archives-14\";}}}}','no'),(107532,'theme_mods_annina','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"background_color\";s:6:\"f7fff9\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1485732330;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:27:{i:0;s:11:\"archives-10\";i:1;s:29:\"siteorigin-panels-postloop-11\";i:2;s:8:\"search-7\";i:3;s:17:\"impact_nav_menu-3\";i:4;s:28:\"siteorigin-panels-postloop-8\";i:5;s:28:\"siteorigin-panels-postloop-9\";i:6;s:19:\"metaslider_widget-6\";i:7;s:10:\"archives-6\";i:8;s:8:\"search-3\";i:9;s:8:\"search-4\";i:10;s:6:\"text-7\";i:11;s:39:\"facebook_comments_master_widget_viral-2\";i:12;s:39:\"facebook_comments_master_widget_basic-3\";i:13;s:19:\"blog_subscription-3\";i:14;s:11:\"top-posts-3\";i:15;s:18:\"twitter_timeline-2\";i:16;s:18:\"twitter_timeline-4\";i:17;s:10:\"calendar-2\";i:18;s:10:\"archives-3\";i:19;s:10:\"archives-4\";i:20;s:6:\"text-5\";i:21;s:12:\"categories-3\";i:22;s:14:\"recent-posts-3\";i:23;s:11:\"tag_cloud-3\";i:24;s:28:\"siteorigin-panels-postloop-3\";i:25;s:28:\"siteorigin-panels-postloop-4\";i:26;s:19:\"metaslider_widget-3\";}s:18:\"template_1_sidebar\";a:3:{i:0;s:14:\"recent-posts-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_1\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-9\";}s:18:\"orphaned_widgets_3\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_4\";a:3:{i:0;s:6:\"text-5\";i:1;s:18:\"twitter_timeline-2\";i:2;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_7\";a:2:{i:0;s:10:\"archives-4\";i:1;s:6:\"text-7\";}}}}','no'),(102417,'theme_mods_skt-white','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1459788181;s:4:\"data\";a:16:{s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-3\";}s:9:\"sidebar-1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:14:\"sidebar-footer\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:19:\"wp_inactive_widgets\";a:6:{i:0;s:39:\"facebook_comments_master_widget_basic-3\";i:1;s:10:\"archives-3\";i:2;s:28:\"siteorigin-panels-postloop-4\";i:3;s:28:\"siteorigin-panels-postloop-3\";i:4;s:19:\"metaslider_widget-3\";i:5;s:39:\"facebook_comments_master_widget_viral-2\";}s:12:\"left-sidebar\";a:5:{i:0;s:8:\"search-4\";i:1;s:14:\"recent-posts-3\";i:2;s:10:\"archives-4\";i:3;s:12:\"categories-3\";i:4;s:11:\"tag_cloud-3\";}s:13:\"right-sidebar\";a:4:{i:0;s:10:\"archives-6\";i:1;s:19:\"blog_subscription-3\";i:2;s:11:\"top-posts-3\";i:3;s:18:\"twitter_timeline-4\";}s:12:\"shop-sidebar\";a:5:{i:0;s:28:\"siteorigin-panels-postloop-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-5\";i:3;s:18:\"twitter_timeline-2\";i:4;s:10:\"calendar-2\";}s:11:\"textblock-1\";a:2:{i:0;s:6:\"text-3\";i:1;s:8:\"search-3\";}s:11:\"textblock-2\";a:0:{}s:11:\"textblock-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:1:{i:0;s:6:\"text-3\";}s:18:\"template_1_sidebar\";a:1:{i:0;s:6:\"text-3\";}}}s:18:\"custom_css_post_id\";i:-1;}','no'),(343278,'_transient_timeout_tc_second_menu_placehold','2098884681','no'),(343279,'_transient_tc_second_menu_placehold','disabled','no'),(343280,'_transient_timeout_tc_sidenav_help','2098884695','no'),(343262,'_transient_timeout_started_using_customizr','2332078126','no'),(343263,'_transient_started_using_customizr','with|3.4.21','no'),(3167605,'user_count','3','off'),(102420,'optionsframework_white','a:77:{s:11:\"colorscheme\";s:7:\"#00a8ff\";s:10:\"numsection\";s:1:\"2\";s:13:\"sectiontitle1\";s:12:\"Our Services\";s:10:\"menutitle1\";s:8:\"services\";s:15:\"sectionbgcolor1\";s:7:\"#ffffff\";s:15:\"sectionbgimage1\";s:0:\"\";s:13:\"sectionclass1\";s:8:\"services\";s:8:\"hidesec1\";b:0;s:15:\"sectioncontent1\";s:1819:\"<div id=\"services-box\">\r\n\r\n<img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/icon-web-design.png\" alt=\"\" />\r\n<h2>Web Design</h2>\r\nLorem Ipsum is simply dummy text of they printing and typesetting industry. Lore Ipsum has been the industry standard in dummy text ever since the 1500s, when an unknown printer took a galley of type andin scrambled it to make a type book.\r\n\r\n<a class=\"read-more\" href=\"#\">Read More</a>\r\n\r\n</div>\r\n<div id=\"services-box\">\r\n\r\n<img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/icon-web-design.png\" alt=\"\" />\r\n<h2>Web Development</h2>\r\nLorem Ipsum is simply dummy text of they printing and typesetting industry. Lore Ipsum has been the industrys standard in dummy text ever since the 1500s, when an unknown printer took a galley of type andin scrambled it to make a type book.\r\n\r\n<a class=\"read-more\" href=\"#\">Read More</a>\r\n\r\n</div>\r\n<div id=\"services-box\">\r\n\r\n<img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/icon-responsive.png\" alt=\"\" />\r\n<h2>Mobile Website</h2>\r\nLorem Ipsum is simply dummy text of they printing and typesetting industry. Lore Ipsum has been the industrys standard in dummy text ever since the 1500s, when an unknown printer took a galley of type andin scrambled it to make a type book.\r\n\r\n<a class=\"read-more\" href=\"#\">Read More</a>\r\n\r\n</div>\r\n<div id=\"services-box\">\r\n\r\n<img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/icon-wordpress.png\" alt=\"\" />\r\n<h2>WordPress Themes</h2>\r\nLorem Ipsum is simply dummy text of they printing and typesetting industry. Lore Ipsum has been the industrys standard in dummy text ever since the 1500s, when an unknown printer took a galley of type andin scrambled it to make a type book.\r\n\r\n<a class=\"read-more\" href=\"#\">Read More</a>\r\n\r\n</div>\";s:13:\"sectiontitle2\";s:0:\"\";s:10:\"menutitle2\";s:0:\"\";s:15:\"sectionbgcolor2\";s:0:\"\";s:15:\"sectionbgimage2\";s:81:\"http://www.monicarenata.com/wp-content/themes/skt-white/images/contact-banner.jpg\";s:13:\"sectionclass2\";s:14:\"contact-banner\";s:8:\"hidesec2\";b:0;s:15:\"sectioncontent2\";s:124:\"<h3>Do you like SKT White? Is it everything you wanted from a theme?</h3>\r\n<a class=\"contact-button\" href=\"#\">Contact Us</a>\";s:13:\"sectiontitle3\";s:26:\"A message from our manager\";s:10:\"menutitle3\";s:0:\"\";s:15:\"sectionbgcolor3\";s:7:\"#ffffff\";s:15:\"sectionbgimage3\";s:0:\"\";s:13:\"sectionclass3\";s:7:\"gry-row\";s:8:\"hidesec3\";b:0;s:15:\"sectioncontent3\";s:1802:\"<div class=\"one_half\">\r\n<div class=\"message-thumb\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/manager-img.jpg\" alt=\"\" /></div>\r\n</div>\r\n<div class=\"one_half last\">\r\n<div class=\"message-desc\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas imperdiet ex at mauris varius interdum. Fusce mattis gravida libero, nec sollicitudin eros finibus at. Praesent ex diam, mattis vitae efficitur vel, egestas sed neque. Sed congue interdum cursus. Nullam in tincidunt neque. Cras enim tortor, porta id tempor vel, placerat et tellus. Vestibulum eget ullamcorper orci. Suspendisse potenti. Proin rutrum magna ac gravida scelerisque. Nunc eu sodales nisi. Curabitur ligula quam, maximus commodo sodales ut, pretium eget ipsum. Proin lobortis, nibh vel fringilla dictum, ipsum tortor cursus ex, facilisis cursus sapien sem at sem. Mauris in risus ac massa congue volutpat sit amet at metus. Ut in metus posuere, rutrum risus eget, aliquam arcu. Curabitur tincidunt, nulla ut pellentesque aliquet, mi risus pharetra sem, at euismod tortor eros imperdiet turpis.\r\n\r\nDonec ut ex ac nulla pellentesque mollis in a enim. Praesent placerat sapien mauris, vitae sodales tellus venenatis ac. Suspendisse suscipit velit id ultricies auctor. Duis turpis arcu, aliquet sed sollicitudin sed, porta quis urna. Quisque velit nibh, egestas et erat a, vehicula interdum augue. Morbi ut elementum justo. Fusce mattis gravida libero, nec sollicitudin eros finibus at. Praesent ex diam, mattis vitae efficitur vel, egestas sed neque. Sed congue interdum cursus. Nullam in tincidunt neque. Cras enim tortor, porta id tempor vel, placerat et tellus. Vestibulum eget ullamcorper orci. Suspendisse potenti. Proin rutrum magna ac gravida scelerisque. Nunc eu sodales nisi.\r\n\r\n</div>\r\n</div>\";s:13:\"sectiontitle4\";s:14:\"Our Statistics\";s:10:\"menutitle4\";s:4:\"stat\";s:15:\"sectionbgcolor4\";s:0:\"\";s:15:\"sectionbgimage4\";s:78:\"http://www.monicarenata.com/wp-content/themes/skt-white/images/stat-banner.jpg\";s:13:\"sectionclass4\";s:4:\"stat\";s:8:\"hidesec4\";b:0;s:15:\"sectioncontent4\";s:243:\"<div>\r\n<ul id=\"some-facts\">\r\n <li>\r\n<h2>2000</h2>\r\n<h5>Download</h5>\r\n</li>\r\n <li>\r\n<h2>300</h2>\r\n<h5>Projects Done</h5>\r\n</li>\r\n <li>\r\n<h2>400</h2>\r\n<h5>Happy Clients</h5>\r\n</li>\r\n <li>\r\n<h2>100</h2>\r\n<h5>Awards Won</h5>\r\n</li>\r\n</ul>\r\n</div>\";s:13:\"sectiontitle5\";s:11:\"Our Support\";s:10:\"menutitle5\";s:7:\"support\";s:15:\"sectionbgcolor5\";s:7:\"#ffffff\";s:15:\"sectionbgimage5\";s:0:\"\";s:13:\"sectionclass5\";s:8:\"our-team\";s:8:\"hidesec5\";b:0;s:15:\"sectioncontent5\";s:746:\"<div class=\"team-desc\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas lacinia malesuada mi vitae tristique. Donec fringilla ullamcorper nulla sed gravida. Vestibulum quis sollicitudin nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis odio augue, efficitur non viverra a, fermentum sit amet felis. Cras scelerisque purus eu pellentesque feugiat. Curabitur ut bibendum ante. Sed et ex blandit, auctor purus mollis, euismod mi. Fusce vel nisi sit amet dolor condimentum ultricies. Morbi sagittis arcu sed odio finibus eleifend. Pellentesque nunc purus, scelerisque rutrum sem eu, accumsan tempor orci. Aliquam neque neque, elementum et nunc non, sodales fringilla turpis.</div>\";s:13:\"sectiontitle6\";s:12:\"Our Projects\";s:10:\"menutitle6\";s:9:\"portfolio\";s:15:\"sectionbgcolor6\";s:7:\"#ffffff\";s:15:\"sectionbgimage6\";s:0:\"\";s:13:\"sectionclass6\";s:12:\"our-projects\";s:8:\"hidesec6\";b:0;s:15:\"sectioncontent6\";s:2210:\"<a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-seventh.jpg\" data-lightbox=\"example-set\" data-title=\"Title 1\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-seventh.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-sixth.jpg\" data-lightbox=\"example-set\" data-title=\"Title 2\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-sixth.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fifth.jpg\" data-lightbox=\"example-set\" data-title=\"Title 3\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fifth.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fourth.jpg\" data-lightbox=\"example-set\" data-title=\"Title 4\"><img style=\"margin-right: 0;\" src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fourth.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-nine.jpg\" data-lightbox=\"example-set\" data-title=\"Title 5\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-nine.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-ten.jpg\" data-lightbox=\"example-set\" data-title=\"Title 6\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-ten.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-sixth.jpg\" data-lightbox=\"example-set\" data-title=\"Title 7\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-sixth.jpg\" alt=\"\" /></a><a class=\"example-image-link\" href=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fifth.jpg\" data-lightbox=\"example-set\" data-title=\"Title 8\"><img style=\"margin-right: 0;\" src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/banner-fifth.jpg\" alt=\"\" /></a>\";s:13:\"sectiontitle7\";s:11:\"Our Clients\";s:10:\"menutitle7\";s:7:\"contact\";s:15:\"sectionbgcolor7\";s:7:\"#ffffff\";s:15:\"sectionbgimage7\";s:0:\"\";s:13:\"sectionclass7\";s:13:\"client_banner\";s:8:\"hidesec7\";b:0;s:15:\"sectioncontent7\";s:1464:\"<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/compact-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/tv-digital-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/changes-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/finance-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client last\"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/thousand-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/finance-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/thousand-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/changes-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client \"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/tv-digital-logo.jpg\" alt=\"\" /></a></div>\r\n<div class=\"client last\"><a href=\"#\"><img src=\"http://www.monicarenata.com/wp-content/themes/skt-white/images/compact-logo.jpg\" alt=\"\" /></a></div>\";s:15:\"innerpageslider\";s:4:\"hide\";s:12:\"header_title\";s:139:\"<h1 style=\"text-align: center;\"><em>Monica Renata</em></h1>\r\n<p style=\"text-align: center;\">Author of \"The Awkward Butterfly\" and poet.</p>\";s:6:\"slide1\";s:81:\"http://www.monicarenata.com/wp-content/themes/skt-white/images/slides/slider1.jpg\";s:6:\"slide2\";s:0:\"\";s:6:\"slide3\";s:81:\"http://www.monicarenata.com/wp-content/themes/skt-white/images/slides/slider3.jpg\";s:6:\"slide4\";s:81:\"http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\";s:6:\"slide5\";s:70:\"http://www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif\";s:11:\"socialtitle\";s:18:\"We Are Everywhere!\";s:8:\"facebook\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:7:\"twitter\";s:36:\"http://www.twitter.com/monica_renata\";s:5:\"gplus\";s:6:\"#gplus\";s:8:\"linkedin\";s:9:\"#linkedin\";s:4:\"pint\";s:10:\"#pinterest\";s:7:\"youtube\";s:8:\"#youtube\";s:5:\"vimeo\";s:6:\"#vimeo\";s:3:\"rss\";s:4:\"#rss\";s:5:\"insta\";s:38:\"http://www.instagram.com/monicarenata_\";s:14:\"footerabttitle\";s:0:\"\";s:13:\"footerabttext\";s:0:\"\";s:11:\"recenttitle\";s:12:\"Recent Posts\";s:12:\"addresstitle\";s:13:\"Monica Renata\";s:7:\"address\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:27:\"monicawilliams517@gmail.com\";s:7:\"weblink\";s:27:\"http://www.monicarenata.com\";s:8:\"copytext\";s:42:\"© 2016 Monica Renata. All Rights Reserved\";}','yes'),(358577,'_transient_timeout_tc_thumbnail_help','2099868127','no'),(358578,'_transient_tc_thumbnail_help','disabled','no'),(343232,'widget_ci-about','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343233,'widget_ci-latest-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343234,'widget_ci-socials','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343241,'_transient_nulis_categories','2','yes'),(343261,'tc_theme_options','a:187:{s:14:\"tc_logo_upload\";N;s:14:\"tc_logo_resize\";b:1;s:21:\"tc_sticky_logo_upload\";N;s:13:\"tc_fav_upload\";N;s:7:\"tc_skin\";s:9:\"blue2.css\";s:14:\"tc_skin_random\";b:0;s:8:\"tc_fonts\";s:17:\"_g_playfair_alice\";s:17:\"tc_body_font_size\";i:14;s:6:\"tc_rss\";s:0:\"\";s:8:\"tc_email\";s:27:\"monicawilliams517@gmail.com\";s:10:\"tc_twitter\";s:17:\"javascript:void()\";s:11:\"tc_facebook\";s:17:\"javascript:void()\";s:9:\"tc_google\";s:17:\"javascript:void()\";s:12:\"tc_instagram\";s:38:\"http://www.instagram.com/monicarenata_\";s:9:\"tc_tumblr\";N;s:9:\"tc_flickr\";N;s:12:\"tc_wordpress\";N;s:10:\"tc_youtube\";N;s:12:\"tc_pinterest\";N;s:9:\"tc_github\";N;s:11:\"tc_dribbble\";N;s:11:\"tc_linkedin\";s:17:\"javascript:void()\";s:5:\"tc_vk\";N;s:7:\"tc_yelp\";N;s:7:\"tc_xing\";N;s:11:\"tc_snapchat\";N;s:18:\"tc_show_title_icon\";b:1;s:23:\"tc_show_page_title_icon\";b:1;s:23:\"tc_show_post_title_icon\";b:0;s:26:\"tc_show_archive_title_icon\";b:1;s:28:\"tc_show_post_list_title_icon\";b:0;s:27:\"tc_show_sidebar_widget_icon\";b:1;s:26:\"tc_show_footer_widget_icon\";b:1;s:14:\"tc_link_scroll\";b:1;s:20:\"tc_link_hover_effect\";b:1;s:17:\"tc_ext_link_style\";b:0;s:18:\"tc_ext_link_target\";b:1;s:11:\"tc_fancybox\";b:1;s:21:\"tc_fancybox_autoscale\";b:1;s:17:\"tc_retina_support\";b:0;s:18:\"tc_slider_parallax\";b:1;s:23:\"tc_display_slide_loader\";b:0;s:20:\"tc_center_slider_img\";b:1;s:13:\"tc_center_img\";b:1;s:18:\"tc_resp_slider_img\";b:1;s:18:\"tc_resp_thumbs_img\";b:0;s:16:\"tc_block_reorder\";b:1;s:19:\"tc_show_author_info\";b:1;s:15:\"tc_smoothscroll\";b:1;s:16:\"tc_header_layout\";s:8:\"centered\";s:13:\"tc_top_border\";b:0;s:15:\"tc_show_tagline\";b:1;s:26:\"tc_woocommerce_header_cart\";b:1;s:19:\"tc_social_in_header\";b:0;s:23:\"tc_display_boxed_navbar\";b:1;s:16:\"tc_sticky_header\";b:0;s:22:\"tc_sticky_show_tagline\";b:0;s:33:\"tc_woocommerce_header_cart_sticky\";b:1;s:25:\"tc_sticky_show_title_logo\";b:1;s:27:\"tc_sticky_shrink_title_logo\";b:1;s:19:\"tc_sticky_show_menu\";b:1;s:31:\"tc_sticky_transparent_on_scroll\";b:1;s:17:\"tc_sticky_z_index\";i:100;s:22:\"tc_display_second_menu\";b:0;s:13:\"tc_menu_style\";s:5:\"aside\";s:39:\"tc_menu_resp_dropdown_limit_to_viewport\";b:0;s:21:\"tc_display_menu_label\";b:0;s:16:\"tc_menu_position\";s:15:\"pull-menu-right\";s:23:\"tc_second_menu_position\";s:14:\"pull-menu-left\";s:12:\"tc_menu_type\";s:5:\"hover\";s:27:\"tc_menu_submenu_fade_effect\";b:1;s:32:\"tc_menu_submenu_item_move_effect\";b:1;s:27:\"tc_second_menu_resp_setting\";s:12:\"in-sn-before\";s:17:\"tc_hide_all_menus\";b:0;s:28:\"tc_show_post_navigation_home\";b:1;s:23:\"tc_blog_restrict_by_cat\";a:0:{}s:15:\"tc_front_layout\";s:1:\"f\";s:15:\"tc_front_slider\";s:15:\"tc_posts_slider\";s:22:\"tc_posts_slider_number\";s:3:\"500\";s:24:\"tc_posts_slider_stickies\";b:0;s:21:\"tc_posts_slider_title\";b:1;s:20:\"tc_posts_slider_text\";b:1;s:20:\"tc_posts_slider_link\";s:3:\"cta\";s:27:\"tc_posts_slider_button_text\";s:17:\"Read more »\";s:15:\"tc_slider_width\";b:1;s:15:\"tc_slider_delay\";i:5000;s:24:\"tc_slider_default_height\";i:500;s:34:\"tc_slider_default_height_apply_all\";b:1;s:33:\"tc_slider_change_default_img_size\";b:0;s:22:\"tc_show_featured_pages\";i:1;s:26:\"tc_show_featured_pages_img\";b:1;s:28:\"tc_featured_page_button_text\";s:17:\"Read more »\";s:20:\"tc_featured_page_one\";s:4:\"1308\";s:20:\"tc_featured_page_two\";s:4:\"1304\";s:22:\"tc_featured_page_three\";s:4:\"1306\";s:20:\"tc_featured_text_one\";s:90:\"KeyWord: \nLove\n </p> \n<font size ="4"> \nA collection of Love poems. \";s:20:\"tc_featured_text_two\";s:125:\"The Awkward Butterfly By: Monica Renata\n\n</p> \n<font size ="4"> \nA book about personal transformation. \";s:22:\"tc_featured_text_three\";s:108:\"KeyWord: \nInner Strength \n\n</p> \n<font size ="4"> \nA collection of encouraging poems. \";s:24:\"tc_sidebar_global_layout\";s:1:\"l\";s:23:\"tc_sidebar_force_layout\";b:1;s:22:\"tc_sidebar_post_layout\";s:1:\"l\";s:19:\"tc_post_list_length\";s:7:\"excerpt\";s:22:\"tc_sidebar_page_layout\";s:1:\"l\";s:22:\"tc_comment_show_bubble\";b:1;s:23:\"tc_comment_bubble_shape\";s:7:\"default\";s:28:\"tc_comment_bubble_color_type\";s:4:\"skin\";s:23:\"tc_comment_bubble_color\";s:7:\"#5a5a5a\";s:16:\"tc_page_comments\";b:1;s:16:\"tc_post_comments\";b:1;s:20:\"tc_show_comment_list\";b:1;s:13:\"tc_breadcrumb\";b:1;s:23:\"tc_show_breadcrumb_home\";b:1;s:27:\"tc_show_breadcrumb_in_pages\";b:1;s:34:\"tc_show_breadcrumb_in_single_posts\";b:1;s:32:\"tc_show_breadcrumb_in_post_lists\";b:1;s:18:\"tc_show_post_metas\";b:1;s:20:\"tc_post_metas_design\";s:10:\"no-buttons\";s:23:\"tc_show_post_metas_home\";b:1;s:30:\"tc_show_post_metas_single_post\";b:1;s:29:\"tc_show_post_metas_post_lists\";b:1;s:29:\"tc_show_post_metas_categories\";b:0;s:23:\"tc_show_post_metas_tags\";b:0;s:35:\"tc_show_post_metas_publication_date\";b:1;s:25:\"tc_show_post_metas_author\";b:1;s:30:\"tc_show_post_metas_update_date\";b:0;s:32:\"tc_post_metas_update_date_format\";s:4:\"date\";s:36:\"tc_post_metas_update_notice_in_title\";b:0;s:36:\"tc_post_metas_update_notice_interval\";i:10;s:32:\"tc_post_metas_update_notice_text\";s:18:\"Recently updated !\";s:34:\"tc_post_metas_update_notice_format\";s:13:\"label-default\";s:27:\"tc_post_list_excerpt_length\";i:50;s:23:\"tc_post_list_show_thumb\";b:1;s:36:\"tc_post_list_use_attachment_as_thumb\";b:1;s:26:\"tc_post_list_default_thumb\";s:0:\"\";s:24:\"tc_post_list_thumb_shape\";s:7:\"rounded\";s:25:\"tc_post_list_thumb_height\";i:250;s:27:\"tc_post_list_thumb_position\";s:5:\"right\";s:28:\"tc_post_list_thumb_alternate\";b:1;s:12:\"tc_cat_title\";s:0:\"\";s:12:\"tc_tag_title\";s:0:\"\";s:15:\"tc_author_title\";s:0:\"\";s:15:\"tc_search_title\";s:20:\"Search Results for :\";s:17:\"tc_post_list_grid\";s:4:\"grid\";s:15:\"tc_grid_columns\";s:1:\"3\";s:23:\"tc_grid_expand_featured\";b:1;s:15:\"tc_grid_in_blog\";b:1;s:18:\"tc_grid_in_archive\";b:1;s:17:\"tc_grid_in_search\";b:1;s:14:\"tc_grid_shadow\";b:1;s:21:\"tc_grid_bottom_border\";b:1;s:13:\"tc_grid_icons\";b:1;s:17:\"tc_grid_num_words\";i:20;s:20:\"tc_grid_thumb_height\";i:350;s:29:\"tc_single_post_thumb_location\";s:25:\"__before_main_wrapper|200\";s:27:\"tc_single_post_thumb_height\";i:250;s:17:\"tc_enable_gallery\";b:1;s:19:\"tc_gallery_fancybox\";b:1;s:16:\"tc_gallery_style\";b:1;s:17:\"tc_enable_dropcap\";b:1;s:19:\"tc_dropcap_minwords\";i:5;s:17:\"tc_dropcap_design\";s:11:\"skin-shadow\";s:15:\"tc_post_dropcap\";b:0;s:15:\"tc_page_dropcap\";b:0;s:23:\"tc_show_post_navigation\";b:1;s:28:\"tc_show_post_navigation_page\";b:1;s:30:\"tc_show_post_navigation_single\";b:1;s:31:\"tc_show_post_navigation_archive\";b:1;s:25:\"tc_social_in_left-sidebar\";b:1;s:26:\"tc_social_in_right-sidebar\";b:0;s:26:\"tc_social_in_sidebar_title\";s:12:\"Social links\";s:19:\"tc_social_in_footer\";b:1;s:16:\"tc_sticky_footer\";b:1;s:19:\"tc_show_back_to_top\";b:1;s:23:\"tc_back_to_top_position\";s:5:\"right\";s:13:\"tc_custom_css\";N;s:16:\"tc_minified_skin\";b:1;s:17:\"tc_img_smart_load\";b:0;s:21:\"tc_display_front_help\";b:1;s:21:\"tc_font_awesome_icons\";b:1;s:19:\"tc_font_awesome_css\";b:0;s:3:\"ver\";s:6:\"3.4.21\";s:8:\"defaults\";a:172:{s:18:\"tc_show_title_icon\";b:1;s:23:\"tc_show_page_title_icon\";b:0;s:23:\"tc_show_post_title_icon\";b:0;s:26:\"tc_show_archive_title_icon\";b:1;s:28:\"tc_show_post_list_title_icon\";b:0;s:27:\"tc_show_sidebar_widget_icon\";b:1;s:26:\"tc_show_footer_widget_icon\";b:1;s:14:\"tc_logo_resize\";b:1;s:21:\"tc_sticky_logo_upload\";N;s:13:\"tc_fav_upload\";N;s:14:\"tc_site_layout\";s:4:\"wide\";s:23:\"tc_header_topbar_layout\";s:4:\"wide\";s:23:\"tc_header_navbar_layout\";s:4:\"wide\";s:25:\"tc_footer_colophon_layout\";s:4:\"wide\";s:7:\"tc_skin\";s:9:\"blue3.css\";s:14:\"tc_skin_random\";b:0;s:8:\"tc_fonts\";s:19:\"_g_fjalla_cantarell\";s:17:\"tc_body_font_size\";i:15;s:15:\"tc_social_links\";a:0:{}s:14:\"tc_link_scroll\";b:0;s:20:\"tc_link_hover_effect\";b:1;s:17:\"tc_ext_link_style\";b:0;s:18:\"tc_ext_link_target\";b:0;s:17:\"tc_enable_dropcap\";b:0;s:19:\"tc_dropcap_minwords\";i:50;s:17:\"tc_dropcap_design\";s:11:\"skin-shadow\";s:15:\"tc_post_dropcap\";b:0;s:15:\"tc_page_dropcap\";b:0;s:11:\"tc_fancybox\";b:1;s:17:\"tc_retina_support\";b:0;s:20:\"tc_center_slider_img\";b:1;s:13:\"tc_center_img\";b:1;s:18:\"tc_resp_thumbs_img\";b:0;s:21:\"tc_fancybox_autoscale\";b:1;s:23:\"tc_display_slide_loader\";b:1;s:18:\"tc_resp_slider_img\";b:0;s:18:\"tc_slider_parallax\";b:1;s:19:\"tc_show_author_info\";b:1;s:15:\"tc_smoothscroll\";b:1;s:13:\"tc_top_border\";b:1;s:31:\"tc_sticky_transparent_on_scroll\";b:1;s:17:\"tc_sticky_z_index\";i:100;s:19:\"tc_social_in_header\";b:1;s:15:\"tc_show_tagline\";b:1;s:26:\"tc_woocommerce_header_cart\";b:1;s:23:\"tc_display_boxed_navbar\";b:0;s:16:\"tc_sticky_header\";b:1;s:22:\"tc_sticky_show_tagline\";b:0;s:33:\"tc_woocommerce_header_cart_sticky\";b:1;s:25:\"tc_sticky_show_title_logo\";b:1;s:19:\"tc_sticky_show_menu\";b:1;s:16:\"tc_header_layout\";s:4:\"left\";s:27:\"tc_sticky_shrink_title_logo\";b:1;s:22:\"tc_display_second_menu\";b:0;s:13:\"tc_menu_style\";s:5:\"aside\";s:16:\"tc_menu_position\";s:15:\"pull-menu-right\";s:23:\"tc_second_menu_position\";s:14:\"pull-menu-left\";s:12:\"tc_menu_type\";s:5:\"hover\";s:27:\"tc_menu_submenu_fade_effect\";b:1;s:32:\"tc_menu_submenu_item_move_effect\";b:1;s:17:\"tc_hide_all_menus\";b:0;s:39:\"tc_menu_resp_dropdown_limit_to_viewport\";b:0;s:21:\"tc_display_menu_label\";b:0;s:27:\"tc_second_menu_resp_setting\";s:12:\"in-sn-before\";s:28:\"tc_show_post_navigation_home\";b:1;s:23:\"tc_blog_restrict_by_cat\";a:0:{}s:15:\"tc_front_layout\";s:1:\"f\";s:15:\"tc_front_slider\";s:15:\"tc_posts_slider\";s:22:\"tc_posts_slider_number\";i:4;s:24:\"tc_posts_slider_stickies\";b:0;s:21:\"tc_posts_slider_title\";b:1;s:20:\"tc_posts_slider_text\";b:1;s:20:\"tc_posts_slider_link\";s:3:\"cta\";s:27:\"tc_posts_slider_button_text\";s:17:\"Read more »\";s:15:\"tc_slider_width\";b:1;s:15:\"tc_slider_delay\";i:5000;s:24:\"tc_slider_default_height\";i:500;s:34:\"tc_slider_default_height_apply_all\";b:1;s:33:\"tc_slider_change_default_img_size\";b:0;s:22:\"tc_show_featured_pages\";i:1;s:26:\"tc_show_featured_pages_img\";b:1;s:28:\"tc_featured_page_button_text\";s:17:\"Read more »\";s:20:\"tc_featured_page_one\";i:0;s:20:\"tc_featured_page_two\";i:0;s:22:\"tc_featured_page_three\";i:0;s:20:\"tc_featured_text_one\";N;s:20:\"tc_featured_text_two\";N;s:22:\"tc_featured_text_three\";N;s:24:\"tc_sidebar_global_layout\";s:1:\"l\";s:23:\"tc_sidebar_force_layout\";b:0;s:22:\"tc_sidebar_post_layout\";s:1:\"l\";s:22:\"tc_sidebar_page_layout\";s:1:\"l\";s:22:\"tc_comment_show_bubble\";b:1;s:16:\"tc_page_comments\";b:0;s:16:\"tc_post_comments\";b:1;s:20:\"tc_show_comment_list\";b:1;s:23:\"tc_comment_bubble_shape\";s:7:\"default\";s:28:\"tc_comment_bubble_color_type\";s:4:\"skin\";s:23:\"tc_comment_bubble_color\";s:7:\"#27CBCD\";s:13:\"tc_breadcrumb\";b:1;s:23:\"tc_show_breadcrumb_home\";b:0;s:27:\"tc_show_breadcrumb_in_pages\";b:1;s:34:\"tc_show_breadcrumb_in_single_posts\";b:1;s:32:\"tc_show_breadcrumb_in_post_lists\";b:1;s:19:\"tc_breadcrumb_yoast\";b:0;s:18:\"tc_show_post_metas\";b:1;s:23:\"tc_show_post_metas_home\";b:0;s:30:\"tc_show_post_metas_single_post\";b:1;s:29:\"tc_show_post_metas_post_lists\";b:1;s:29:\"tc_show_post_metas_categories\";b:1;s:23:\"tc_show_post_metas_tags\";b:1;s:25:\"tc_show_post_metas_author\";b:1;s:35:\"tc_show_post_metas_publication_date\";b:1;s:30:\"tc_show_post_metas_update_date\";b:0;s:20:\"tc_post_metas_design\";s:10:\"no-buttons\";s:32:\"tc_post_metas_update_date_format\";s:4:\"days\";s:36:\"tc_post_metas_update_notice_in_title\";b:0;s:36:\"tc_post_metas_update_notice_interval\";i:10;s:32:\"tc_post_metas_update_notice_text\";s:18:\"Recently updated !\";s:34:\"tc_post_metas_update_notice_format\";s:13:\"label-default\";s:27:\"tc_post_list_excerpt_length\";i:50;s:23:\"tc_post_list_show_thumb\";b:1;s:36:\"tc_post_list_use_attachment_as_thumb\";b:1;s:24:\"tc_post_list_thumb_shape\";s:7:\"rounded\";s:27:\"tc_post_list_thumb_position\";s:5:\"right\";s:28:\"tc_post_list_thumb_alternate\";b:1;s:12:\"tc_cat_title\";s:0:\"\";s:12:\"tc_tag_title\";s:0:\"\";s:15:\"tc_author_title\";s:0:\"\";s:15:\"tc_search_title\";s:20:\"Search Results for :\";s:17:\"tc_post_list_grid\";s:4:\"grid\";s:15:\"tc_grid_columns\";s:1:\"3\";s:23:\"tc_grid_expand_featured\";b:1;s:14:\"tc_grid_shadow\";b:1;s:21:\"tc_grid_bottom_border\";b:1;s:17:\"tc_grid_num_words\";i:10;s:19:\"tc_post_list_length\";s:7:\"excerpt\";s:15:\"tc_grid_in_blog\";b:1;s:18:\"tc_grid_in_archive\";b:1;s:17:\"tc_grid_in_search\";b:1;s:13:\"tc_grid_icons\";b:1;s:26:\"tc_post_list_default_thumb\";N;s:25:\"tc_post_list_thumb_height\";i:250;s:20:\"tc_grid_thumb_height\";i:350;s:29:\"tc_single_post_thumb_location\";s:4:\"hide\";s:27:\"tc_single_post_thumb_height\";i:250;s:38:\"tc_single_post_thumb_smartphone_height\";i:200;s:29:\"tc_single_page_thumb_location\";s:4:\"hide\";s:27:\"tc_single_page_thumb_height\";i:250;s:38:\"tc_single_page_thumb_smartphone_height\";i:200;s:17:\"tc_enable_gallery\";b:1;s:19:\"tc_gallery_fancybox\";b:1;s:16:\"tc_gallery_style\";b:1;s:23:\"tc_show_post_navigation\";b:1;s:28:\"tc_show_post_navigation_page\";b:0;s:30:\"tc_show_post_navigation_single\";b:1;s:31:\"tc_show_post_navigation_archive\";b:1;s:25:\"tc_social_in_left-sidebar\";b:0;s:26:\"tc_social_in_right-sidebar\";b:0;s:26:\"tc_social_in_sidebar_title\";s:12:\"Social links\";s:19:\"tc_social_in_footer\";b:1;s:16:\"tc_sticky_footer\";b:1;s:19:\"tc_show_back_to_top\";b:1;s:23:\"tc_back_to_top_position\";s:5:\"right\";s:16:\"tc_minified_skin\";b:1;s:17:\"tc_img_smart_load\";b:0;s:24:\"tc_slider_img_smart_load\";b:0;s:21:\"tc_display_front_help\";b:1;s:21:\"tc_font_awesome_icons\";b:1;s:16:\"tc_block_reorder\";b:1;s:8:\"tc_style\";s:7:\"classic\";s:3:\"ver\";s:6:\"4.1.47\";}s:18:\"last_update_notice\";a:2:{s:7:\"version\";s:6:\"4.1.45\";s:13:\"display_count\";i:2;}s:10:\"tc_sliders\";a:1:{s:23:\"monica-renata-main-page\";a:4:{i:1;s:3:\"575\";i:2;s:3:\"482\";i:3;s:3:\"405\";i:4;s:3:\"384\";}}s:15:\"tc_social_links\";a:7:{i:0;a:3:{s:10:\"is_mod_opt\";b:1;s:9:\"module_id\";s:26:\"tc_social_links_czr_module\";s:11:\"social-size\";s:2:\"15\";}i:1;a:6:{s:2:\"id\";s:19:\"czr_social_module_1\";s:5:\"title\";s:6:\"E-mail\";s:11:\"social-icon\";s:11:\"fa-envelope\";s:11:\"social-link\";s:34:\"mailto:monicawilliams517@gmail.com\";s:12:\"social-color\";s:13:\"rgb(90,90,90)\";s:13:\"social-target\";i:1;}i:2;a:6:{s:2:\"id\";s:19:\"czr_social_module_2\";s:5:\"title\";s:20:\"Follow me on Twitter\";s:11:\"social-icon\";s:10:\"fa-twitter\";s:11:\"social-link\";s:35:\"http://www.twitter.com/SavorMyWords\";s:12:\"social-color\";s:7:\"#b3d6f9\";s:13:\"social-target\";i:1;}i:3;a:6:{s:2:\"id\";s:19:\"czr_social_module_4\";s:5:\"title\";s:22:\"Follow me on Instagram\";s:11:\"social-icon\";s:12:\"fa-instagram\";s:11:\"social-link\";s:38:\"http://www.instagram.com/monicarenata_\";s:12:\"social-color\";s:7:\"#8224e3\";s:13:\"social-target\";i:1;}i:4;a:6:{s:2:\"id\";s:19:\"czr_social_module_5\";s:5:\"title\";s:21:\"Follow me on LinkedIn\";s:11:\"social-icon\";s:11:\"fa-linkedin\";s:11:\"social-link\";s:43:\"https://www.linkedin.com/in/monicarwilliams\";s:12:\"social-color\";s:7:\"#7cadd9\";s:13:\"social-target\";i:1;}i:5;a:6:{s:2:\"id\";s:19:\"czr_social_module_6\";s:5:\"title\";s:19:\"Follow us on Amazon\";s:11:\"social-icon\";s:9:\"fa-amazon\";s:11:\"social-link\";s:49:\"https://www.amazon.com/Monica-Renata/e/B00J69UZBK\";s:12:\"social-color\";s:7:\"#90900d\";s:13:\"social-target\";i:1;}i:6;a:6:{s:2:\"id\";s:19:\"czr_social_module_7\";s:5:\"title\";s:21:\"Follow us on Facebook\";s:11:\"social-icon\";s:11:\"fa-facebook\";s:11:\"social-link\";s:46:\"https://www.facebook.com/MonicaRenataWilliams/\";s:12:\"social-color\";s:7:\"#1e73be\";s:13:\"social-target\";i:1;}}s:12:\"__moved_opts\";a:2:{i:0;s:11:\"old_socials\";i:1;s:10:\"custom_css\";}s:23:\"started_using_customizr\";s:11:\"with|3.4.21\";}','yes'),(343472,'_transient_timeout_tc_widget_placehold_footer','2098889202','no'),(343473,'_transient_tc_widget_placehold_footer','disabled','no'),(574504,'jetpack_callables_sync_checksum','a:42:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1399550805;s:8:\"site_url\";i:3591042256;s:8:\"home_url\";i:1399550805;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:4250137593;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:872561619;s:10:\"post_types\";i:3389376472;s:18:\"post_type_features\";i:3701289860;s:10:\"shortcodes\";i:219179895;s:27:\"rest_api_allowed_post_types\";i:1765992367;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:3310426249;s:11:\"get_plugins\";i:3040572921;s:24:\"get_plugins_action_links\";i:402374862;s:14:\"active_modules\";i:2838448732;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:2609168050;s:5:\"roles\";i:238137668;s:8:\"timezone\";i:24056537;s:14:\"paused_plugins\";i:2765466680;s:13:\"paused_themes\";i:223132457;s:24:\"available_jetpack_blocks\";i:1454353008;s:21:\"get_loaded_extensions\";i:3847753607;s:10:\"get_themes\";i:4257484945;s:12:\"is_fse_theme\";i:734881840;s:26:\"main_network_site_wpcom_id\";i:2488881250;s:13:\"theme_support\";i:3011491647;s:23:\"wp_get_environment_type\";i:1138987844;s:33:\"jetpack_connection_active_plugins\";i:1117076940;s:27:\"jetpack_sync_active_modules\";i:3829104773;s:24:\"jetpack_package_versions\";i:2965880521;}','yes'),(574375,'jetpack_sync_settings_disable','0','on'),(574376,'jetpack_sync_settings_max_queue_size','1000','on'),(574377,'jetpack_sync_settings_max_queue_lag','900','on'),(1431713,'jetpack_sync_full__started','1537231939','no'),(1431714,'jetpack_sync_full__params','a:4:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:0;}}','no'),(1431715,'jetpack_sync_full_config','a:3:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;}','no'),(574471,'do_activate','0','yes'),(574385,'jetpack_sync_settings_max_queue_size_full_sync','1000','on'),(574386,'jetpack_sync_settings_max_enqueue_full_sync','100','on'),(574458,'jetpack_next_sync_time_full_sync','1481292446','yes'),(574393,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(574394,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(574395,'jetpack_portfolio','0','yes'),(574444,'jpsq_sync_checkout','0:0','no'),(574434,'jetpack_sync_settings_comment_meta_whitelist','a:4:{i:0;s:9:\"hc_avatar\";i:1;s:10:\"hc_post_as\";i:2;s:15:\"hc_wpcom_id_sig\";i:3;s:18:\"hc_foreign_user_id\";}','yes'),(574446,'jpsq_full_sync_checkout','0:0','no'),(574445,'jetpack_next_sync_time_full-sync-enqueue','1721466685','on'),(574443,'jetpack_constants_sync_checksum','a:21:{s:16:\"EMPTY_TRASH_DAYS\";i:1790921346;s:17:\"WP_POST_REVISIONS\";i:2226203566;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3124550110;s:14:\"WP_CONTENT_DIR\";i:221988932;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3993108362;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:289485416;s:11:\"PHP_VERSION\";i:794370206;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:8:\"WP_DEBUG\";i:734881840;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;}','yes'),(574448,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(574449,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(574432,'jetpack_sync_settings_render_filtered_content','0','on'),(574433,'jetpack_sync_settings_post_meta_whitelist','a:63:{i:0;s:24:\"_feedback_akismet_values\";i:1;s:15:\"_feedback_email\";i:2;s:22:\"_feedback_extra_fields\";i:3;s:21:\"_g_feedback_shortcode\";i:4;s:23:\"_jetpack_post_thumbnail\";i:5;s:18:\"_menu_item_classes\";i:6;s:27:\"_menu_item_menu_item_parent\";i:7;s:17:\"_menu_item_object\";i:8;s:20:\"_menu_item_object_id\";i:9;s:19:\"_menu_item_orphaned\";i:10;s:15:\"_menu_item_type\";i:11;s:14:\"_menu_item_xfn\";i:12;s:24:\"_publicize_facebook_user\";i:13;s:23:\"_publicize_twitter_user\";i:14;s:13:\"_thumbnail_id\";i:15;s:17:\"_wp_attached_file\";i:16;s:27:\"_wp_attachment_backup_sizes\";i:17;s:22:\"_wp_attachment_context\";i:18;s:24:\"_wp_attachment_image_alt\";i:19;s:35:\"_wp_attachment_is_custom_background\";i:20;s:31:\"_wp_attachment_is_custom_header\";i:21;s:23:\"_wp_attachment_metadata\";i:22;s:17:\"_wp_page_template\";i:23;s:30:\"_wp_trash_meta_comments_status\";i:24;s:10:\"_wpas_mess\";i:25;s:13:\"content_width\";i:26;s:14:\"custom_css_add\";i:27;s:23:\"custom_css_preprocessor\";i:28;s:9:\"enclosure\";i:29;s:9:\"imagedata\";i:30;s:10:\"nova_price\";i:31;s:17:\"publicize_results\";i:32;s:16:\"sharing_disabled\";i:33;s:18:\"switch_like_status\";i:34;s:15:\"videopress_guid\";i:35;s:18:\"vimeo_poster_image\";i:36;s:24:\"advanced_seo_description\";i:37;s:14:\"spay_paypal_id\";i:38;s:11:\"spay_status\";i:39;s:15:\"spay_product_id\";i:40;s:13:\"spay_quantity\";i:41;s:10:\"spay_price\";i:42;s:19:\"spay_customer_email\";i:43;s:13:\"spay_currency\";i:44;s:8:\"spay_cta\";i:45;s:10:\"spay_email\";i:46;s:13:\"spay_multiple\";i:47;s:20:\"spay_formatted_price\";i:48;s:25:\"_last_editor_used_jetpack\";i:49;s:21:\"_wpas_feature_enabled\";i:50;s:13:\"_wpas_options\";i:51;s:28:\"_jetpack_blogging_prompt_key\";i:52;s:26:\"_jetpack_newsletter_access\";i:53;s:32:\"_jetpack_dont_email_post_to_subs\";i:54;s:47:\"_jetpack_memberships_contains_paywalled_content\";i:55;s:42:\"_jetpack_memberships_contains_paid_content\";i:56;s:25:\"jetpack_memberships_price\";i:57;s:28:\"jetpack_memberships_currency\";i:58;s:35:\"jetpack_memberships_site_subscriber\";i:59;s:30:\"jetpack_memberships_product_id\";i:60;s:24:\"jetpack_memberships_tier\";i:61;s:30:\"jetpack_memberships_is_deleted\";i:62;s:32:\"jetpack_memberships_is_sandboxed\";}','on'),(574430,'jetpack_sync_settings_queue_max_writes_sec','100','on'),(574431,'jetpack_sync_settings_post_types_blacklist','a:39:{i:0;s:11:\"ai1ec_event\";i:1;s:9:\"bwg_album\";i:2;s:11:\"bwg_gallery\";i:3;s:19:\"customize_changeset\";i:4;s:12:\"dn_wp_yt_log\";i:5;s:4:\"http\";i:6;s:8:\"idx_page\";i:7;s:17:\"jetpack_migration\";i:8;s:17:\"postman_sent_mail\";i:9;s:10:\"rssap-feed\";i:10;s:15:\"rssmi_feed_item\";i:11;s:20:\"secupress_log_action\";i:12;s:17:\"sg_optimizer_jobs\";i:13;s:6:\"snitch\";i:14;s:17:\"wpephpcompat_jobs\";i:15;s:15:\"wprss_feed_item\";i:16;s:12:\"wp_automatic\";i:17;s:10:\"_term_meta\";i:18;s:6:\"ai_log\";i:19;s:17:\"amp_validated_url\";i:20;s:16:\"flamingo_contact\";i:21;s:16:\"flamingo_inbound\";i:22;s:17:\"flamingo_outbound\";i:23;s:19:\"jetpack_inspect_log\";i:24;s:14:\"jp_img_sitemap\";i:25;s:20:\"jp_img_sitemap_index\";i:26;s:10:\"jp_sitemap\";i:27;s:16:\"jp_sitemap_index\";i:28;s:17:\"jp_sitemap_master\";i:29;s:14:\"jp_vid_sitemap\";i:30;s:20:\"jp_vid_sitemap_index\";i:31;s:11:\"msm_sitemap\";i:32;s:16:\"scheduled-action\";i:33;s:14:\"sl-insta-media\";i:34;s:19:\"vip-legacy-redirect\";i:35;s:15:\"wp-rest-api-log\";i:36;s:6:\"wp_log\";i:37;s:18:\"memberships_coupon\";i:38;s:16:\"memberships_gift\";}','on'),(574429,'jetpack_sync_settings_enqueue_wait_time','10','on'),(574428,'jetpack_sync_settings_sync_wait_threshold','5','on'),(574426,'jetpack_sync_settings_upload_max_rows','500','on'),(574427,'jetpack_sync_settings_sync_wait_time','10','on'),(574424,'jetpack_sync_settings_dequeue_max_bytes','500000','on'),(574425,'jetpack_sync_settings_upload_max_bytes','600000','on'),(574521,'fresh_site','0','off'),(574399,'jetpack_testimonial','0','yes'),(574447,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(574401,'jetpack_sync_settings_sync_via_cron','1','on'),(3763935,'wp_notes_notify','1','on'),(3167614,'https_detection_errors','a:0:{}','off'),(3300411,'wp_calendar_block_has_published_posts','1','auto'),(3300367,'nimble_global_css','','off'),(661898,'theme_mods_ember','a:14:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:9:\"copyright\";s:129:\"All information in on this website belongs to Monica R. Williams. No post can be used without written permission from the owner. \";s:17:\"fp_pp_banner_page\";s:3:\"573\";s:19:\"fp-pp-banner-toggle\";s:4:\"post\";s:18:\"fp_pp_banner_posts\";s:4:\"1296\";s:27:\"sub-banner-background-color\";s:7:\"#02B6E2\";s:27:\"ember_blog_sidebar_position\";s:1:\"1\";s:16:\"background_color\";s:6:\"ffffff\";s:18:\"ember_facebook_url\";s:45:\"https://www.facebook.com/TheAwkwardButterfly/\";s:19:\"ember_instagram_url\";s:40:\"https://www.instagram.com/monicarenata_/\";s:17:\"ember_twitter_url\";s:32:\"https://twitter.com/savormywords\";s:14:\"ember_mail_url\";s:27:\"monicawilliams517@gmail.com\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484547240;s:4:\"data\";a:70:{s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_3\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_4\";a:4:{i:0;s:6:\"text-7\";i:1;s:6:\"text-5\";i:2;s:18:\"twitter_timeline-2\";i:3;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_6\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_7\";a:1:{i:0;s:6:\"text-9\";}s:19:\"wp_inactive_widgets\";a:22:{i:0;s:17:\"impact_nav_menu-3\";i:1;s:10:\"archives-6\";i:2;s:8:\"search-3\";i:3;s:8:\"search-4\";i:4;s:6:\"text-7\";i:5;s:39:\"facebook_comments_master_widget_viral-2\";i:6;s:39:\"facebook_comments_master_widget_basic-3\";i:7;s:28:\"siteorigin-panels-postloop-6\";i:8;s:19:\"blog_subscription-3\";i:9;s:11:\"top-posts-3\";i:10;s:18:\"twitter_timeline-2\";i:11;s:18:\"twitter_timeline-4\";i:12;s:10:\"calendar-2\";i:13;s:10:\"archives-3\";i:14;s:10:\"archives-4\";i:15;s:6:\"text-5\";i:16;s:12:\"categories-3\";i:17;s:14:\"recent-posts-3\";i:18;s:11:\"tag_cloud-3\";i:19;s:28:\"siteorigin-panels-postloop-3\";i:20;s:28:\"siteorigin-panels-postloop-4\";i:21;s:19:\"metaslider_widget-3\";}s:23:\"frontpage-featured-left\";a:0:{}s:25:\"frontpage-featured-center\";a:1:{i:0;s:8:\"search-7\";}s:24:\"frontpage-featured-right\";a:1:{i:0;s:28:\"siteorigin-panels-postloop-9\";}s:15:\"frontpage-about\";a:0:{}s:19:\"frontpage-team-left\";a:0:{}s:26:\"frontpage-team-center-left\";a:0:{}s:27:\"frontpage-team-center-right\";a:0:{}s:20:\"frontpage-team-right\";a:0:{}s:22:\"frontpage-social-media\";a:0:{}s:13:\"sidebar_pages\";a:0:{}s:12:\"sidebar_blog\";a:2:{i:0;s:19:\"metaslider_widget-6\";i:1;s:28:\"siteorigin-panels-postloop-8\";}s:9:\"sidebar_1\";a:0:{}s:9:\"sidebar_2\";a:0:{}s:9:\"sidebar_3\";a:0:{}s:9:\"sidebar_4\";a:0:{}s:9:\"sidebar_5\";a:0:{}s:9:\"sidebar_6\";a:0:{}s:9:\"sidebar_7\";a:0:{}s:9:\"sidebar_8\";a:0:{}s:9:\"sidebar_9\";a:0:{}s:10:\"sidebar_10\";a:0:{}s:10:\"sidebar_11\";a:0:{}s:10:\"sidebar_12\";a:0:{}s:10:\"sidebar_13\";a:0:{}s:10:\"sidebar_14\";a:0:{}s:10:\"sidebar_15\";a:0:{}s:10:\"sidebar_16\";a:0:{}s:10:\"sidebar_17\";a:0:{}s:10:\"sidebar_18\";a:0:{}s:10:\"sidebar_19\";a:0:{}s:10:\"sidebar_20\";a:0:{}s:10:\"sidebar_21\";a:0:{}s:10:\"sidebar_22\";a:0:{}s:10:\"sidebar_23\";a:0:{}s:10:\"sidebar_24\";a:0:{}s:10:\"sidebar_25\";a:0:{}s:10:\"sidebar_26\";a:0:{}s:10:\"sidebar_27\";a:0:{}s:10:\"sidebar_28\";a:0:{}s:10:\"sidebar_29\";a:0:{}s:10:\"sidebar_30\";a:0:{}s:10:\"sidebar_31\";a:0:{}s:10:\"sidebar_32\";a:0:{}s:10:\"sidebar_33\";a:0:{}s:10:\"sidebar_34\";a:0:{}s:10:\"sidebar_35\";a:0:{}s:10:\"sidebar_36\";a:0:{}s:10:\"sidebar_37\";a:0:{}s:10:\"sidebar_38\";a:0:{}s:10:\"sidebar_39\";a:0:{}s:10:\"sidebar_40\";a:0:{}s:10:\"sidebar_41\";a:0:{}s:10:\"sidebar_42\";a:0:{}s:10:\"sidebar_43\";a:0:{}s:10:\"sidebar_44\";a:0:{}s:10:\"sidebar_45\";a:0:{}s:10:\"sidebar_46\";a:0:{}s:10:\"sidebar_47\";a:0:{}s:10:\"sidebar_48\";a:0:{}s:10:\"sidebar_49\";a:0:{}s:10:\"sidebar_50\";a:0:{}s:18:\"template_1_sidebar\";a:0:{}}}}','no'),(663617,'wpcf-version','2.2.9','yes'),(663618,'wp_installer_settings','eJzs/etuI0mWJor+ngTyHRzsmZKiS5RE6hrKSx+lIiJLPRGZ0SFFZdceDFQu0iV5Bkln08lQqBoF9GPsDcwG5ud5iYMDzKP0C5xXOOtqtszNnKSUGVXV2LNnoytDdDczt8uydfnWt/KTvZN/rU96/ZPOrJhWdTmvZmVRd77KT/r4w/5J5346HuG/e/LvYT7P6d/0ALxYDjtf1Sd7x/xod35XdO+r2XA6K+q6O16M5uWonNwu8lF3OlrclhN8GtqZ5OOC/nP3pPPT2zevs252eVdkP8Grb/HV7I15NXvrXsWxTmfVcDGYd10b3ASN46SzmI3owcOTzt18Pq1PdnZwZNvV7Bb/3oen4UOLqw/FQ301zif5bTEuJvMreW+vF7+3kw8G1WIy38EX6x0dR72YTqvZ/Gqe39YyR+XJrpm8pQPce57o6KaaLcb1zryaloMutEu/QId//nN9AlM8zQcfYLy6QuXJ/kFvt3cM/zoKlgM/Ppj7wbhuTDw+Eszx2ZsL+jt8/7CoB7NyOi8rnvNdaBhXZ1CNp6NiXmQyjq3stqqGGQw6yycPme0xw6naysrJYLQYwp+yfFRX4RM/VdVZNR4Xs0GRyVRuY3cwL+UYWtcVOUytyP20O6gmc1i4ncV0VOXDeqe/29vf2T2mZ7qj6rbqdXd729MJLfvBSQe2VjHrfIVLBI3iZM7gdf3DsdtXfv/3D+Jp7MLXdkflTeFPgZlVfKM5qzQ//EZyeuEEyAins3JQyC7pPT+g549wn127F67mD9MCx3x41O9hh/3E71fz4tN8veE0my8nNxW9CT9cmB+y+3J+l02qrPg0LWcP9MhxquviXxblx3xEM+u+ze/6g93EYv5DPhx251V3kM/m3/QO+7t7z3+Tj6dfXS8eribV/Te9Di8QrFdxDxsJp3735F/5TCymt7N8WJg/wtBZ1vCplGMJAz7ko5+QTXQ+yhOa0T0RZfV8Br9257N8Uo9yXq3ypC+Tw9LO/9b1ogQf25PJlZbKwYcH2DWTD9TNvggQ+hH31CT/iH8/oMMmfx8XwzKnlca/Hshf89GoW47xrOBPRyLQ7qtqIEcp+C585lj2AczSx3L+AKs/rqOHnvMGzAc3Y/p3D+erp0J9Ch/WvV6UIzhA8AF/pjM6rO4ndPB04v/cJncS5+QR0idxPGDqjp6vOB295ytPR+sg2g5FDz77D0U+Gz1k9vfPfRgOVh4Gup1xI0TSSp7Chw6asmo/IRzc87wWA9hv/XzQWIvEKj2HuXz5CeTxMHuoFrMsaliu0Oz6Ae6KCtSEWfYAU7mVgdT9WNIVgQK9nCyqRa33ATw6zPSAbye2wd7zJ83oUXNG/xzLEtZ4+ktugK483r2ZVWPd6kfNu7+/RATrt2XYgj0Da897rwcff5F/LLJxNSkeaMLu8roeFTjT3DzO7bzKcupyXo4LXYzt7A/VAiT7aATrPijKj25ANTWkq4DDJSUN/qP4WMyilcD7qne4zn312KXa78WbH/twisUVXUjFkMX3n/+3+P+rif8//1n00cNYHz1qHKNr0M+aCulR46B8J88kdv2BKKTXeV0OeGvCtqzhV6OSBsomdlj/7aiXJFxaZiV1XT5ibtL3ZX/lfXm8+r5sHcXf2IW5v+aF2VTvcf6X3phNdRon4OlX5tGSK5Na/jx3Zu/gSZN6uMadyft2b+07Uzd8dGnurX1p2pOw/q15AAf0vW1m7qRJvAxwd+LPNwu4J6NRvdY7VWxifFovU1g/dGXg3QuvVjckqTZquKqHi5HcsTeLCQ04H4F0XnrBHn6eC3b3cRcs9JDSM9da1r2UxvkrrCa6Un6d1fw1FjF15g521zFXHn0mj3+hcnT4ON0oVk767crJ3hrKyX5D7zhYYyjt6kfiF5LzsUK4upccmmoI/554KlMmIzoVoYvOGuNPbuGj4760DnN1XU5gXwXqiygjWb6Y31Wol7I/ZlrdFzPYyZnRRDOviW5n53N+poYWZrAy+bwgzxxv2xIujRJdelkxqRa3dyRi8fDewhvbX37x5RdfD0fffj2cf3u5mE1q4521g/t6Bx74ejj89iVIroesGFHfWTkxz18X8F2Nj9rOLu9gBLxZUX7eFjVcbVU9h/9Bn+pWNoDx3pJPGv57Uc/xaMOR4dGDoJxktLUm83obRjGkof6+nM1xykY59gJneQgnYMCebXpPf8Cu4cebmwIVtWxYjXPYIu5r0DQa5PhEPR3lD3aK6c33717jnTu4y/I6+7oYf1t8ynEut2FIO0W98/UO/G0r+uVmxr9kMNXlxLlUQUOKhrKFz4C86Lp/T0ED0OH7Lz6rJjAVJb5p9wHumVk18l/00x1MGKga2ceyuCchOCphslGm0eTT7Mj8w2MbIO7qosju7/I5yLt8NCvyoZ+HYkjP468ZKCdsS+KEgZQKJ8uJZOyuS53Dh93flbjxhuVc9RjcsfxRO7DtRFcf3MH3FnotHDw/hqP29d3+t3vbh9t7X+/Af30Nllo1uf32VfmpgI+Vf9HuXYzgf//T16OSfgSDFjZhdgtCenAHn4u7fTirpigx/Hap7+nnGTQF7wWvX8DJof18cnJbzEEvno2v8uHPsDGvyiHfGXNYKPrW6vpn2HX49/ImmxTFsBhuZzTEbFzWNX7zT2eZ2ATZx3xW8mzFvRazGQwUFhTmcTLvFjTpsJILbgSFBvT5ppiADni9mLNkgFOlzvq6mC+mcbOwZlmdf8RZKea4BjU3m8Pgbifkso8nhf0IcOIW3E2eoXjE/mHhC+gTPtO/tfm74npW3G9lZ3co0oqtbHt7+1k8FFoWHC9MwXVJihBM0UKWKB4EdIdDSMzVvJzDpqrzCeyqP/ExoI/6HpYKRrg5LF68fEb79gU8U9/BX/IXp8+MTACrLUPRDZsxbh4GeIeLDNIQ/gVqOW6DOxj9Ff1CXcn61yDxjLBhrZxWLJQ/KnWaXQ2LmxyEZTaqQA8qaCJomnIQEoO5meXUu9SojkSOFtq7TlHBdRznMJv8xGJm5A5KNtvm6XQ6Kt0q0XGkoct1VX0AwXqSoQZwNStQgs2oK3IrXdP2w8370xk8jZNwVQ5GV9LjlZue8GmQhnBqFjWudZ3RhQTnaBJ/Keg2JN1LPh5jHLsLVUQ3wAN+tnvCzXD82GZO31zzg7MKjsqUdiAepcQGvsnncOPwQR0uZu5c0vPZZg3aQNZ/RpIAm6rgiF2PSMuExZlAp/ifP721YlM6+XqHZBj8h8i107fnRsZFEg42J1x0H3EEt6CPwYUMopv8HbC1b0Bi8QqSSxBWvjkHwboPh7Tl4bvF+QOtg30+o/sdxBgIQvwRt+aL8mOJDY6LxKGBGwXelNvgrpzSG5d0j7NexgcHhBEOiy6guBUSCPggnM/gdsErB44h3tMymYUISL1bclgTWE5UJqj15Y3jDbYALXs4g/nK+P+WqMFQUyQc8eqD6UwsV7NNlmBmUfhayPDqoEOU2+2n9/8cloiWB+e7qM0W3aR5LOiyuZ9eofiRi4ZaTGxN92lwYUyHOU/I5IH3J52wm7IYDfn0sI8B/9rWkJ77exCvMyPecF+TQMH2UcP0P9HRLGq8k2o4JqMlTdN48uG4NPcxDX0+exAvNgqI3P5aghCD9cEB4NKBLACjjcbY2NTRUXpV5CDJ23UGagQMq6yGPdZ2F80LuGbzOYtEXDPxF8LjeGTsx56jPgbXPW4fUAnuYdtOCjASsxp0+jnenS19kGzVP1/pn23TL8To4dXVm4YdzNXkprzd/jQeUevsluSzKhf+x7wc5SCP2ubpzN7MbZP1rhhXqEycfsyHeSA1cGZAjZ/ROdm2o35X1NUIX0re/SR7Ny7vYbgP2QVq+/OimPxRho5fabVdUGIv6Ycfpy16lJwEbPXlBFcHJGMg3bBJXBb2/Aet31ezDzej6n5pqzjnqH2AhOiq4vEjn/ezHFYMt2kxwZnWBfpp7/IsOSH/eIE3ww0ILdHnTs9eZW9n1Zbc//TyHy7Of/rD93x+67bFuyjgro3Wzf0IJhuCNeQhaCvSoZP3jjlE5WhOynJ6W/xmVP/L9Ve4EcEALbp7z3t7v5nhnzK+XmhrO/F8JSfiSpYAjhRpHagEsbQnJRsO3ADvLtDTBiQNUaVoa8ROjBoO/aWGgxn+6+gsOmUZFUUUDuwfovucZOi4gm2c0srcgsJWde1euDOOq0zmMdrjIPZnqHPN80/VpBqXonEZxAyYpHBZwIaFW/N22RUk15pOpQhhns4tkliJweTeSnHWG2u0OahHTkKRIWD7PRsV+cwquX7iBtWoAlmATaOsdpcRNg0LiWahbekCB0tafnZfzPiCcZKKzBC6ilNGSihz2fKMhjMsc9AreQLQDELTaY6nFsYHqgSfUtGYYNU+0OUNOvXcqZd1MWJlox5VgU7xQzUvb0rdsSh0nSghbSQUjqi/4D66Rg2gxlkvhqnNE0lIK8qgFZYonZ/yGRpvJ9n569cvvz99nV1cvjv/4fvsx1evLl5eZhuvT3/4/v3p9y+vzn588XKj05A+oP1CZxVDfsjm4O3udClvz9SNizopx8xA8W7npYcNSLe50+vhDM1AJ1ZjyJq3kVMk8IHYPt/rhoJ+YG3LP0HTIDTn6J/As4qKA2ybjUE1fdgAgT7ZmNOswdEqPsECgZp/7y7xF989Ygn+UOWgo128/JFukO8Ww+EDe710UWCFO+8n8K/buzl0NijY79fsoraNXlDQOLsrcrqaplM5WDLAn1j/MjN1dgcHNaF+WyHgZKT4efho3bHijc12figK0F3ocBYdXKl5aGa7lYWFLAeiQUzzWr8T/qsaoCsDPeezWf5A3iW0ANhxR3bO1T+BeHuwzb6d0f2evdTJEbUPjVO6Or1tJrreYFbQd8AexX/ew/XV1GFU2vce6yby2iYaFtNZBXtuTl8yqeBq5yvdKNagiYPVi0ovSA/cV7DXlhuJ8W7I/v3f/s/zyUfYuMPT2e0CTSw3Gf/+b/9XoOyJ0SYe0Vi28fn1V1SJ7hA5EizSWJ6jccqKvG0+vvPE34JTz5OB8dw79Jq5VaqrBd9KqvTf0J/1tYRt02J6OgXGqxjvQRov1T1fqLzGdi+MMC8Tfj1zg4fSvZynNs/u+ptHVWCWi2TLuN5v2Naga5j877PFhJxs3ke+v32Eu/muvL0TZVRc40O4i0V9RpkJBgP7Tj2656e34kx33dSy8Kx4s8HouyrncHndBLr4Kdi8YMCVGHV7yDSIwsq2eIY5hmL8Vxgt4wtOzC7303a8/Um3IctQVJB2gfrTW5iMw9+KYKsXk1lZF4km81Uy2biHUkOCnWheoaAhXgLk6PB+JSNj/aezY6i4paCfcd9mm8X27TYoTd2z02dBlz9O/BSw2kHONpqRhlIJFxYq1TTCh3FFgnvGU3Hd1RcW0+SM4AaZBON31jVvPBq5/xA2Dxcz9mnwJZtsOG7yB+jpE163iL0J2123WTP9g1FFB2KCxhyLWJCG6kIBEYs68YP8lGiKtCq1xrP6YTKAC3GiXuDyxv+GYS9WBkQGNYxSMi+G2cWkAlUBxgV3mt8hcHv9bj6f8p8ftyfJW0OieXMD12IxG208a10YcnQsmTr0Tlx9ByewmAyv3rGjiOMS+c/5pytxHZHbIPG2CWVc4Vxd8WVyxc4gmBoQ00M0Zr0yhakfjZlieceeKrS2BmqKkwv3JZjD6GPHr2j6Wtnj5xaJhRhdF9tp1xDPPTlkvOKRD4fOZciGCsVIYEba9xq+p3qQf5nUxDu8OjSiiJNwbVWmJU2iNBblnfQgugB4oDIucXRSN+iQJ1W2nhagK43QJTtzqieFMJYfFVXKUT2D2wAjtrz9RRu7pT0+pZgHfArK8wJDQalPSO5WL/G+ryr0abyFNi+moBtml1U1orGeTkkxg7NJcmA7oc5RKGKB9lo+htHUFLXFIJEosvHd/P7d62UrNzMaBmLMZmNxz4jaReEsngSv3qqm+LHMs9N/PP3nDK+4oJfLpIUIA1TnU/kJXU8bKIqqudjHgwVa8jePauhVeRM3NM1nqJ3BKt2VwyGM/fqBVapyWFzns6CDc7HiBznaLZviHnjYEmDAFh7SwsVxSeeGO2VwB5dz/WyrxRRWPbKcfCBZC3Jy/hC6v8Rol1h4YyOdUggUZhhDK+jNn7IPFO4LCZaxCMd14XAlSzfQPpcJOJJAZHbfgImd1xiypTbQgqOYMY+b/V/bTf1xbe3xjEJaQ9FXOaZRzx9GJHYuQETBsqFQfBWAfOJISQ7TNOPA6XUFm0OlAevAcPvI8Ek2VhO7lYNrWAOI8ErrR61yXb8rhoVEKtJrvomOTpZT78+3yO15+vb82XasAh9s76kF1bST4EzTGZwMisB0vfiRv9R1iza7BiXtt6a7a3bm1PsJ25WqpJGxlDtXBTmYsilo86ELiBwDeP7947Cj/kiex7K+oj9f3RWfrqiBPwYxUjiWoEaDKk+v0JFgB/of6ZD9cXZ7/UfxbKU+RfyM02+/vlbT4frbr3emZrmyZhxcvd9eBuesOLLmp5MXeNNbG8HlkOnqGgUu9d4SxcXaKIe/DV9+Oalp13KkeYYdRMYgrDlMoUjmGm7npnv95+qa7lv7N7A0Pz2Eff1I4anrxS37qRung6f5rd+TrbMNp4OiMDjmyWJ8jSbzjfhc3T3MNwhCVkhLsFaNHU1wBsYIzC0UkBQPzh/b9MDe19YjyKp8yjemUtRIDZg93KbGOPNnbrOcZ+Towu+6Lydg3W3j570RaXdfXMenX8ds5Gd60Of81RjTkCfV+rd6UNa5BH0ErrhihhfSQ1ND76Qm17dopzZ10noqo/Tfwb92zb/2/bP8lWZD5GoEk45AW/L8LJ+8RgwG6MBi6+CfUX7jDN/BVk9Isf1gAPs6ANehmzO8MgeI36LsBau7oNuYosRBtJtUVO9NQdBh7X0q1ayELZNriFWEJ8PX4Oe7WXGDGwSupHnO+Lnyxm12zBtCv7btbwtvaDDMMPINd9iGs5yufRTeut0aHSZcU4LtwF/P3l4aW6y9xX+Sg9k0jmmyUha7j7OZVl7BKYWzPV2gFXJdjBTqI/4s1H74GMHQyhk/6XEu37ooSW3adLai3hD/+XeXl2+v3p3+dPX2x4vLqxenl6d/ZBn6x+nd9GRnh5r9ox0WCV83UZQklFEufskOrFNy/ZJ86X4rMC+87t5dvm544BMHY2/7OHV1Uwsn2aWLXZPGmOPesdgT+L825KTYAwkSumdE/ZGTiqAW0qjYoVKgd7maqUj493/7H+jSrsku/fd/+795KyLaE9Ven9eACsldVX2w/Xy3+BR0bT/zyBy3ve1D+hd5xGDQBSjLxuiSmKe7RrYyCr0P4LkJqqSTYbtQR9l3UfCnOWTi9hjnZOTMVLH1GACwxQEgRZzjfYJzITiqbR3xAY3YededZ+q6mN8XhQNbzVi5R6j6D/nHLYUSwfYtXJ7fPSqEfkfNsM0F3/rS2X4k/qRbE60mE420iGC/y4OM90aYDCr6xWwbdnf8uCgkMuFWJ3F2WPw4qcuR+yZSiv5lUQnowuvXqZGi0jTOp3XQ/U9vMVpDhjk5CqNB2IeXh6BoPX56m1nPpgS10F3nAxemD77c4OhWpM3UWeu2Zl24m1k7WI8hAzBhDcwSUCikmpE/m4JbQ7UmUUJtcpopqHkViMxnzkmfo08ZDggMHr7y6urF+burqyyrBgjTk8Dn29+91Rw7uJsIL0HXDpoHOtq+jDYAjPDH8WgJ9PXlF93s3Bwq/un3ZXFf874ADTsfI2RqAHsHlQU8o0kvrAdQYqM8re/PG4rsjQq8QI/d10Evjw51I+cLy1wxFNksviOZhUPwqvRsgpY1Sh72W6BjjjwyKOE3nzmTWleLvq/zXwTx/vBfOvSEiwBAl2/1bemIImNiHwtK1OKC9y7PEg9OHSKrmsy9o8D9paUFBoYNArnQ9qzxIXmwgUEqOy94dL4ayC9UDAijLc5DfEc7UVNb7meOKF69zWewsU9Opvi/7DDefObXxcXGxx/gWG4+O8l+qBjCT+Ibu9LT6k1tY1DYfSGQHlxWNnc8QOv64Qo2L+kScnnYC8W/63RMRMyDYnZL/6D1oGsC7MrFeJKG4GTZJmLzoxyhYTWg2CGJzR1JCdwRIBju0m4+LfnfdL12GbIL49qhibpQKBqcqAz+v27230L0GX4Ge4n/+xYM8wPfhW3PZJy/tcW4Ccoznwwl/ijeLlbJ6Oktwq+Xc7KAQB8kzhgSYhKKJb+IgwaBSNrmxSUIkg44MRbq40r6YMjgwHh94pHIOL34pEZhnZZ8pAgUo4j0RS0hoXKCmoPArObl7d28oA3M5DlOtONyca//uBiVVfYWjCfEaKLgxtdJfH35xVsyETS++7Fk/FGZjqxuBao+eYs1qUV9xSiJTGIH3l4jn0IDHcK+mMrTk4Q3X/yvd9U9GcuS6exAR+Su/PIL5hCaPgjYVIwV3vGa4RTmQ0ocUz1+eDPczvLpHWusOEZ2As9J/l7O0Es4bGaz0DyVt5PKrGdkmXz5hcT+H+AdN3DYdJj97G8ZmHrjYIA1dYpG5AyrGzdwORgxloFDWLpFWFf993/7f+vdkfCqkTMNkfYwB4upfB80S+bfFmGgZoggRtMJrxwPAX3zcH5x+ob8rPpjgfDvAjqE/18Hwern3/0dZ6h8+cXfZ08cjRBQfGS/FSWE8di8n4XXRPeqjEoHsh8N5IKnl2FiFWzzMY1gK9xcWwJLhg/VXUi38GwxJYiWS3HhK8B/Ibb7SfwknJInNuZ9/uCi9FvZcMGgM0QdomiYDMRDZoaY2wHOCkkZIAtddIASzyGiFgtsAXbCR+9+9w5798qElXeGxevtX8txnt9Ryh6O//27c44l3ZTqiWu0qdPL0unsrhigsbtJuas0DTxAzlN6xgH4vVCPAlH7Jq2a0xG9ATVaYAsUsa7Jit/WY2UVao8ECJyZaF298LM7wEFKlq2KqBHqbhxopJ6GBVwR0mg5KceLsaYoDFVZhUabbsMvv3DuF7O71RbrixrLdrLcNiSdPs1rn4fDwAh9pWdeCbVPSZO64Yw7xVJwdNUbo5qTpmOg5n6Ady6NR/S7vP5QzLdQXShC8DP6pTDWuIX24rzhldQl2eaEzvIjRze+6YzhYJaTk34x/gr2KoVST7Ie/uuayCzgH1N05o5Al/m7491Xr4534ad88OF2Vi0mwy75vU+yv3sFP73a/aoDt97et6dzFOM4qMBzNhiV7LqDR3AcdFrhQ0GyFnx3CHuBfWs7e8vG+32uuEtiStCU8QV0NMru8RMnMKJBM4mM3ggb/Kmg20C1bsrAkTw56OL04pSQNCheJM0BrpgcjKCPhbe3xnRHMkZO0mR3YFrl0u9tPzfXfiAVaJ/iGbKJI+4lvgj+PrsIwdju9wP5vXMOFuYtbJoxKuY3qCYKPw2Dy1AinbnEWRTMYXZbEMjzzbPkZV9OQPxjjKb+tn9+T58v+boWO4szrGpFyU66igLAIDcoSphZ7Bvpm4myAW6TCmRC8ywYg6xdgzhyjfZMo+hf9R4Q+iA7KByqf5Pec9PPC6w/Hsv6XIxR6zBOIUqlK1CdLOuxpPuMKyfcyLTwfRzLMiabORf3wUyVVNp+d8VoStovp+zItvMN7pvPdb6WiT0JLpPNePO2op3IKRUSUbY/mL540S/m6uzj0YDSfePxqwYsk2pNrDy4awvOlqTPIi+K8TUGieK+f94vGtGDKbvxBid1mupwqm4anwZGBAbsNDKt88b5p0UJFw82zNvfDyqae3r+Tf5zNdPfyIGc/GronxITMN1ingpruGaP5DP/PlOEzRjMwfxDgb5zFv45bOKHMbK+qL685dDGdhG8x+aGPDhfH2zved2HovLkLVzUAtoUSMm4APViCILNDckeKr6tZMaTzAPuPZ4h+gi3u+kOYSSwrHxu1EN2NSQnhk/gd3qRL3fV6kt83l4tIsBhKNz2tp8Lcw6vI/6KM3awfUCEHkcnHZlMofegBHThfiC0tPAd9Xd7R93dXndvN+vtnuz2TnYbfDv7ByluD0VcfnO4e3z8G+nqG9cJ0rzdwInpgvC6nxKXrSOWQv3ZsVSsZs9YynCW4L3YE2aKC1aFLu3jIfPFsobTtBcHmM2v7g2MtddBrgTrXAqMQvWJ1H7eIopHZaQsA8Tccp6ikNluZCxNwdAW3Ud0F1AUQW9hHoo6Y/ICzN3itok/QxTKWkllCqJ0aKECYWoHTFJaUO/QI/WNlm88f45uRtx8dXDxylEkwfUAqwH/TfPBQQj+kScoJxD/DDUy9hUKxw3uX3ZObWc/4CEZjR4IBPRArxiDnyXH9rji62rLEwnMl45cWhN/jWlwhh4OtvOxmZb1wS95Yb+NQndoNc7vOCUhnwt6YNbFFBSyKYgpGjf5Ro2RI5j/QlZPiTbEFRxMG31ydQPaKczuwu8ZTid0BuIm+bTIOmGM1jPdYLLftinTQzefspeMMac26E8CP4jm4z2Kka4ugShT1BZH+7t7zGzR98CRR6Qs3HHS2INoDuRAZNCRfKddvTdOUIMBXt9dV40UACGe+IR7UZxtU9kaNoeEz3nkxlVjKYUVVYA6p6LaPChaa3eL3gW7iexYl2sQOo5KTVcZhuiF9cFS34M5MzWfg7DuWkLMJZrZ7pOyHfEENWM1fQ85WJ1U+C4va1kysrNIiYezqUk45Gu0sfAr3P9XuH/Y4YgBo9Fc2DgIoST6vMXVcFR6xgHWimfOMYi0J1u08guApi+OTr4cKV4qLqDFhBxdKs7cvsAPATE2m0su5pU8ccVTPPOqEeeBEkr1iltzz0prqSl/RHJGE/EfZpXrkmPQbu75lXbRcYYX4bLkAQpCEcpVW5FYS3A7/FQOUYf3PDet7dFBQEfWHWZ9TVxwyOTAD+gi40m+LpA0Ts1Yt4corUcpliQ9HreKTypIjMH7CClLiV1QmqiCFx4SoywdPId9xio42Pe3rcJjZQ7Gi5evTt+/viTILJ433e4E74tM+zcPF//0GjS0owQaEzYBrkl9B0Kc1oOzrN4VDAfOLi6zF99JIIYOmeQWd+F78UfxMSRGvHHGLbz9kT5qo+Gyriv0JLgbnbLqxvXtYP5p3lGnHruoEm2zNk7jQT8hGiHqBxTMdxRFizCiS3K2g9NciKcOnmKohWHrd+EOObeBNdjaX4i9SwkRixUTg4MgVRs1WemoqojnE/f4RHYzes0qr/CxckS7PwRHO68eIWkMHcIYbh+4GjHEvRhPFVlDfAEbfDlzhYmNmiOp6tucMs9W2/euulhCZ4rBNxaG8kHPsYYKglsxgpb1t/edu9H09Na6mKzJCrJ+WpUYZZ9JoCLedKgm2qwKDsUTYFDi8U1gUDCadTGubnmGIORdpgg5izTGR/nHJIVwfTCrX/YfmE4N9KWAjiZ6sDGbhzMwKCzUSMEgsjXBZuyIuqA4HV0A3XHrY051Ciz4sB9g//oe+7daLxDjWg66ucf1SiLZCpNCSs+AgSYcsUbHAGUz4s96Dcnkpc6IepxA0BkDeisrJCVl9CBCPGdMwIz05Bk7TzHJjEBMRlFKncf/WhRT/Aww9uFh1kt1ssmfx2A3ZkFiekOORwhZnPxoJkKfc6sWgBXjnQ2qGy+1BBMYtBGm5YVYHONZaIOcrpAAZkHRgX9dfTIgQpjvOdbQYKPBRxXQTiI4lVWMtrMzpsnC1UUyPpk7WgP/sIapG8lsZofuiWtT/2Uxgf4sSdKdgjxwCvBsjSn5y7HTtG7PGBHYzFql+xVxSMUnQVUnFlHC1A/8UOpbPNQvfabo58TBClM90ebDA48fDoZjjjyOjumVVus3t/Ov5F5g1yi9ZO+HhMnk9abGBbaTuL0ymhpo704wOD8RNjuxkVnfF70yQs4Lrn4kxDCdVzOTFt4J924wb83dG0/dKeUVZddlRXF3TA+mzCsN+1kzJX0sU0uoOfktCE2Mr/3twDP7Dp6ZQEw+BgiZe+Y3sxc5QoH8BRRo5vzEBsC7vstZAmc10i3KJDM7aMhy0ybRUquw/x8GXNiPoJANKBpXqHhJyAZmGtHXlntSuplNYiXt23EbdN4qjIUXwZCIBL4udpY5r5qmfTGM3PpA9f7hbmuPa+i88tQQJ9kZJRxvEKztp7cvvrvCrJANmn1yXLl2ZK8UlHzvMXbdM1SiBOcK/4Q7B6Qt6kSUpK8T05MYg1PLOPl0XAhuDVXWkJIwYkyAleu8I+YexwvpXegdjDMEjTP65T6fjQXQ4IwFt+0ZleSMcPYicq/WuAYDa5OvEo8Iq6V9RUxLEyw562fy2eYeVOiNQ2fxgjiQYDm5IgaTzWfoCStwIwgyFUbTl21AT2xlExQeBO9IQITEQ1dV7CVEm1VzjZxPC/fshlDqsAJgmeDEgMekE02taRAuOJxFrP/xvYsJLo2EJzMQB4kIZCvFg5ryPI2ekLgtIoCCZ3vZGedTw/+ORvm0LnTyD0xAqSWRMEXE1gAfBdsTpBE6a7QHxRKloEQd4VqBBWSyFTLTiOcUZQm6VGA3bT7rkGyKUEM54cQY5a0YMRHE0rlESsX2g5nUWIxxj4W+EsqOdi5X5zKBjSmNaEfqjExet38LIJr+40E0fWfV/gQ3TO3FV0bwGm227Qn+uSdLnsBZbusTewE0A7/HUGra2FMTQlW7JtpGQSgKUuMiyETf2YhPBkzo/CTwCf3t3e3efuuojsEIdY/tLXlszz2VjLOrULa+W3FEixI1RvDpR1C6pn7U0FrbwlJE3z+2u+QxfShEdzSwNf9MOTIedeFj4niI6XqVG2oSmy++C1FNC4HGGcQfbhc4dfjUMdxWQ+IQIxAf32+cBZYIlwl7LF/UXJqLUj3FeevILSjDR4OPpB0TopGub8MmRjJyC66TD+rvFaUWz3cDDUwwD0L6QfcLMu3xKUmQeybdgMqzGA3xRiMwH364m5BjM+NN+KNZKBo7yTRyNtMFRRT2Ql6jhWK02aPW5T5yXR+afejLkBEWQJKb1wcDYHsHpr1mTogiADTqr++0HyxzrAyoB4aEp0VTOs2o8Tl+QZuUrm2zu9SoopGa3fYReSVPHLdIInym755JHz58pqfPtD7Bvx+1tgEjEOSOfgleyVWGFp682/pmElRBsc91QBV7u48EVTzvO1CF62RtUMUyYMOf1ygIl0BVHAmqIh2WbSIrVnWQrovTP9z18IrL9hiwxu0QaUaY50b9BlJFMZDj15nyd/528BWuTomMG/NjK0wiltIXSHfEyjWn1xMpCXxMOUE+U7N9a+Er9roA3BnbmW+X36c0ZgQkKO564HyTLnznuMIZjTEOmUApkKIFPAq8j5hlKVHBw33FKX/ALVFgO9wq3j9cVONmrVodxPAYUCcreo2QFYzmQJYG/0khMwM66vWrzSwpJTMonCB5b3E+/SfanQc2B7lHtGwM+t58O5SGnvNDlC4gfBHo6QoXYkgcnvg9OCQ0CoRnJmdyr4rSjpCbhgDEtdNS/LAuymHRvX7o4v8G34hrW83C0ilGO6QCKVQd5boSkIxDJTSZqd3MS8qRr5QycIVbYDehG0ISYyZF5ni4qGnUvbe4JCelqzgj9/dlvZAuf3eJVRAxdOM/z5H6MblP4JWTL2uf0PtqBmeDuWyQSHAmKfIawrYI6YA8UEChzoFPASgiTSAbIvbnh8tKZ0sH4SNm5J5As4douisGCBWjWgvhtNWMOTrYPVZgjSZkPRkxUHuq1ABhWg4+wM0HdlaCgLWJOfAmBhXjdPxUdD1+z2U6s1f8E7tE8VlaXqmtlHAQ4800RRALYiuJLcnhm6JdHTKGW+/1OC9HFDRT+mJh2SodqVELPzoezuW8XZjfmJXoB2RWLrT/0NtUeyw6oZZnEs6iycLtTB7tU9hkjoCh0xaNaYk/pyPQDUdHGsfq4VGJsIo6kNYO7dn5cFTfI6r2dVvN/RoGLFeU5MYwiASS66XIqebUt3L5CJG8syYsK629oMihz1II0z1AL0hNwMGjjxO5gquRQkzKQNfA+/9DMQ+Jgq5zLteEYKcJmG4STy88a0YQ0CMKcvHy0KsN2qEqmL+3yDIEk1COkAwdevhYlUOLcaNrJ81tp00yX9piUjJW9Z9fn796FeJdgjnbj8P3rngCLE64ckQzifV1yL+sVXKQMk49gfjO9QzRRaJVJftMsIBINMluAI7RMtk0fQux/RWces3ziPceZpCWE6Ecmrkypfd3FV3e5i4H7QXRmJikspjVwnvKfY3R0Us96b7m60HK06GY8DR9wcfsrYs4eEm83nJ4pJ6jVDqJ90DABqPpvysJtn4RS1d72YvT4UcUTMPsjL1Qr/gbRG1OtBeSm73JB9mPF9mfWJwkNuTfFp9WsLpr12ZYQ9DNimkhlDXpGw90HGwCd28k/JL0giEJ+hLOtFxZcCj4z5yxpS8AQ39FOrUAuQZDfsdDptCe7Nxmmrdc5OyalDwajpEMTRmYBGyCOTiSNmADQBdiUIsr1OWu5mgDzi34FP0csZoX99yYeBcj43c9op+ztSfD0EUeGKNCKIlknnBal5dg+gHUxe+x+htXwkot1mosyNOgH4yA8DTkdtZfqE7BkRkujuS5EvNyRoS55YT3SSSqkpg3R0gS3HZKrNdy5cWwyffn+Hhod8vuuSC++Mv82sOOFYtKwdO7auSA8zPdFmpx4lw2sUhKm+lnSVAyl2/w/xiTwMyTNTgJKEbi3CZ5poSKOu3bVsh08JhGPzOPnA+K6L+aPHK/AgHZJdWswjF0sNLfQ6e5Ht1v7faps83gX/+Edvozkk/35OXLawmXBuxr2EuH8s5x63Q4MGWxUWv1MuVSY/cCdmGon7E9tCeyP6Hlzmtkgeegtm2OLBBiCsVodYeaFDOk1vAqbn16s57n46lqWyNskM0922faryYkjrU/nMUn5R3xOZJxHvcybjWOEOKH77AcFh31URMZbzT11Cp106gInNJ728efCVujWX1PxnMFFQFV29HqYbsb2eafiln1DLeluwZdPaEBFthIqYTpi5H7/WOA1khU8thoq+OxoSngDN/YuOQaTxVhlT3qwcTUcooIEhTOZjtv/DGWowEOVstKOivTWTSwIa4XI4oJF0Q+D8KWiQU0GKV3R+yubLHvtd4sk7/amgtabcRu8fxjIQhc9owR4h1v/h063aTZ0OXRULkSAIYX3zklE5F0rarlo1Fvv0N3YP0Ak676XwBQMeFhVdHQ50dsnZhuEy8OKCLFbJKPunpYjE6+Ze7Tu3I2JOvuwXE60K+CTLRuRkOVHpzjg/9IyLpeOxfhesi6NcFuvf9ATHpeW3kspZ1nOqv0PVfsOkQhtOPhSD0XAYWZTU5XDUnNm0ifusH+ZuUcjlPfw6nVXMsdPBUTngdPo2exDmHY1uF42PFMzmoXUrfS+4KPjiO3nVWEbL4Tyr1rNJjU64oS0FXPofEz7VhJRD0I+FKjmhbYQZrxowKdjkJHjaCxipqTL784VYU5qPheczW7BJWLYMKbdb+s+gtmKtEuKSIbfj4/e331u/MXL68u353+cPH69PL8xx+uLl6++/352csLtzF1kHwmnAnRosWgNgcylvIDFHE4cilyiXn/myDywe9rhQspYGh3GeaoEapPQY6IbcRvVfrnbhtKB39NB/WVx0MeSsfjBaKj6IAl8Ilj98zhCoiFp5X5dSAWnkdmfYiF55Jph1h4Vpc1IRZt8AkPr2gHPew52MNqeEU7NMLDK9ogEAqvOHwEvMIDK9JLC+/wzweOQSoo5qgpAkoTqcu2H9D/0Illn47U5RPsFCd667uGmacUSiKHWSMgpm/do+7qgOxDfJ7BRWy/9sC10Dfj4+rJihY26nIQg5/4Uob4yZvCLYniB15/pg33lFQEd5RoTK7XXeFLY5ttgA63ArTMsZ6V4AZoBn1vJOLhP1dwpLXGMMuBm6O9gENMFbU65rDiWOxNjqQO8fIfuK25J4MPqHYbOj0pZFaR3ZJaXIotsHwU7ExlA4Vcoi0Inv720ToInoP9xyJ49g2CRzpZG8GzCkDzZ2jryKF8sPRml4yQFHand+QYUahG52t+MEDstDSWxOkcPzcsKJeL2YT9GrTOqOmrlxTjLZNr0Fs+oNawhXc/qNojZjskMkU5mbT/N7RmvWO2/9uB62A5qXqL/b0I0lSysi1mgsfTIduSq4bidHDlA2EeJd4uRKvUBaNnvfPZEWxm5y+Q9gTL0lOpJQ/B4MEzb+UCAz23FUemzl/UjvmxIEpIzbnZysAknMzLmwdN6VKNDL5zmyleSg3QSEUH8U85Jzc+DSarDDL6lMkWY1VyOzz0/bsAOeFZpPx1bZIklU+JXnM8kTSqnzRmRwghHgGBVzYwoRAMuo3F7ehhw0Hq+c3sd9U90rBsaRi+LknjpEaIgs9VMXwARRyRozJttdiIi2kXLDePA6HBONwLR0aEvdSXBBH9gseP6uFiQGQhyvXKXxsuEHlaAvP065wKXXzT2fkHnMOrcvjNwfP9zrf2tHLg8nZRImAj/zbJyNLv7R8xcKT3yCxeW9GDspqpY1dfS7e2r+1tNrzHmwdehMngjiBW4rkaOUIU2WpspjrSP7y6Rzg9NGUxEUsguhoEBiZBsRm3CdDWWIBC7+BSad2mPgYhZwEFiRhpcOcVczSqoYEIKePMRTY0PaSYTTYKtDNmWTxjUUHRptlPl+pzo53DP4/Dfx4578OjfA9hF21a9h4D6umZg9Zn+u6Z/XBsrDN9BkPK9bDCPqJnVhhI9MwKG0nTj5+S+qAtHLdbVXtLTaF9fajdFjp2M9K2St5e2gvsm19uL2le42Pspb0lGShqL9lWAziidtxPKr76226QZOEVWFJJTcIMmgcsfAKBElB0YoIrs3TDxXJKvhW12s1LhhWCL1CmyaHxqLXmeSeD4babWCC2bSHl0PZAG0LoqOKEf9czb5tzR9DWrB7ThHvSrsamQ2bSnmcitEyZgeGT5N5M6Ph7zkTtGfLPpGFlPqtuyHy0BNwNlO6m57ppeIqa9MK1WuUKJJHX+uFr1ppwkYmpr6fsEpyZckkaWWKg9YKNuuJOMxFpZW0TdBVzHZBzCXTFWQmWovuIXZ+3hTcPurLT7Lh+unbdqGZUg5qd8OJBHDAzC5Z9VXmctKNI50jbUYfd3eNu7yDr7Z/sHZ7s7T3Wjtp1dpTrZF07qsWsQeupL78MxnV3kn9MGk59MZykflHTZoqaSJpLB8fPvbnEXExI0vWxvBWQq4BklUT3QbRO9Nuzp3/ywMlqfzsGkeYvfIe4/cEMjjEKgdJD/y/ukBsz578GCv8dugqEqMig2q/zmZkUn0KAqheX0oBzoFODBUikOa06i59WU6e0a5mIRALwiMImKVfe3l1XMxt0kxG8mFXTLu45Sj9rfMXc0DfCYyPMGDQ1GzhxfnBXjqSSAxM+DoMm9RDWRHLItUx0wTmWxvo0l5bmg8e+IXR5FKORDrYNNt57frzntf9AjdwP1ch9p0a2GghxhPGP/xkV/S5yjJDPGs2rP9Iey3ALdAkEL9VFUMByeh6rwujxj4OxKH19nMkllndIjcWoa0fo+yg5xRU2INNDsMDkdYJt2v3h9PdoYgjCRvL3yDLB8Kynm0jHgmnRNoTb0GvvMyIXavA0uilcWrKNwZI+Vvl5wpE0Ds/08WSeD6VUJpkvBTi46IaYbDPxo825KsgVyLsrOKtXA89G1zQz9tsTfJ2Zsd+e3et08X3V+t0/e5/XzNhfYh74QbV56/vuUt1vDYu4Ro7abYT9per/vutjtQGw/ysbAPtPMAD21zAA0rvFxje43wAdJGlgagXYMgaq+HKovdZJDp3YmhHRoqj3W+b3V1DUFeLuFfVQJWWPe3EfeL89NX/PwcrfgMQZPTRetBofjSYsUjTxKvOua86WNgjMJrZ2vb4iVDZbLfXCaADC3/HiO7g4/1QsNeHcj7vL9FbBlWMdqexUCsSr3Lx2SkjN+kZDFX+EKmwV9DqyJLda58S6yRz3wq+hWR+yZt173qpaH3b7FKI42D/p9xqq9eEq1fowUK25l7V160j9RbV6V/5IFQuSSvWuKNVv+IkwcbhvX1+Dkf0QWag5+N+oPBwuMXUmsAm5ZzkTUGEOjpwH7bnFlG7NodRd2CzHHADIF8Oy2sLUR3L+F/PB9rPQeWCHsOXomKXAFBO2cuOmuIM6DwL/N+gRBWxUHoCU2XN1b7Fz+qIAzkAfVOFICIOFl7/vpGymxTonvkuT0Snws4aWwS2D0dkSIBrQeX675eeK50Zm0+XHoDALOsOPi4dM0BXW+Aipz1JzqI02IX3YyPlcgLtt805QwdpkrTL9bbA5QFIxtQTmEiv9VSJRLe1of37Y0wxNEFz7vyxFk0ikcQS81GJRZJ0fZ7dYoqXIxg+yHyWmNobtctelBx9gtrt4JoeiNdYdjZ8jzfhkwIWzrPZ7UYSThaz9C/GA57C0gzuKyJWWOD2FT+uvndWU4k12xN5NIeqH8PT0ntNhTihZn1E3Ksew/5kLRFBtTUIquc5dwotSnFy9efni/PTqu9PLs99dvT5/c37p8XKIhwf5OaNkbJQsH/PRokiiHPtei6V/NpH4wlYiUy6h7vA4eF5TTk7tvHCHu/Fg46BLaVYuKBhp/+5rGp3zdqR9IUYUn3kiPSYhlPxOX7r+cehol08i8AjHVc5C43V5PUPqg5p9rsk57ikTzn8QKGnP85o+LZpDjbQFE/aUHqm3LOLjmKiWRHx67pn9YBN/3ogP9bASEddbGvHxDS0N+eATrcW0+ttt4KuQq6rNq2/5oNpgUJZEqPerItw8ZPkxJEK9lQg3D81dm0Sol4b3WPbvwP+oxolHRr6vxW1JioeTGGNQOyijlfEL7BiXeOx4Wk2oK1ButjOsqvTgXXGm6wClhjC07zGzDH2O4/yD9BpaUaLFJ3QaopseUFr3bFuJDhPBDgEdu8pedFyUrzi8mBB566C1hLQNFbVcytP40EWj6iWRBDa0qyWF6Xqtlu/zwF7/rhFCadZbS1q+MaVdA0fHQGbKZJozpheH79F1IVtf28ymcHlrmaBcIG2FH6RpKeJn0H4R8L1RZLw5gVmgftMY2gbJikUndSUQRU+mOeFopPdRRfxdRhpExTaX2qLb2WuloaFUFWRGZRIfZ127cVxXnxQqoQoBGSVkR8yoMAFp89QK+ry3yH4gTlf0G/NHBwmw8PMWz1ouxbTEGuDKc3OTB5SdmgnF8TpSbjWfksYza+ir8X39xxrPR/tHFt+nvawN8Fti6KIZfSA/w7x0mXIzaUsfiC2NfCPn8lgYo0o1lK5tBiPiJoJihpZUyZ2o7eydRpF+ems6z35DYiJpNe33j9RoUiR/pATiLcTZai+Jc6Ey5hEPPpETjy/9IIUTaHcKzw8WlFEl5AZZau9CS0jBBu8n5b+AqvlfC8pXlH+dM3qOaplTVGOUXxcRYsdfTSGdOimGjiiVE6041hPSE8/kKss5qVxTpTxPyJ1F/cd9GCZl+XK7GPl1XfjkCT79wg8/r+Zk/jKRN9YYAyMYBJ3e3z0OsybQsrttRQQPu71et98jV9TRyX4zynu0/DT1d/v9njlPu48rI5jc5sh0B+O8rypxtRVBgcEkzR38d5tC0nRVLW06ecSe92DYZJ5s3IKhuKFWA6sYzJDAlAkccSXz4SE8jkVXexTmEXJf/K//6VCEOMs4yXBWqagizTRlLg2V03/HjHung3fBN51Jxdjczrfm+xFrSLdK1LouYfw2HD6CKGJAlj9sqrzkzJRQzRREYekrtsBQmNceuinEYaEaxCE61x7fUKUnnt7mzEmfMWlsTfYNvMZO0Nnlibq8DvShnAyp9KjdAtJbgHHktoQGz97jgcMKL0h5eRlk2EM4woIxAUeZ1+f8hGYfQR9UUTJRtS5oBEuapFTmObSl1djJaEMvJTSLaZtBAxcFTgkRbXHlE66LLarGmEsKyipwuoax5cPv4Ru+RAq5OVY3Iuo9zcvC/gkqbmZN/F1uCwTNvZxwESwt95WjBLsdFcHa8WZjPVvxOwwNGJRh2mXqxjo46B085ztr391ZX9B2Mv4Ty0fkEy9hveb5J1PXWBPUg2zK6ayEtw5Q2Yb2eCRffKEd9psdajZJS60wIThpkAxbkjKTdi5zfIXbWm4oBMflIx4/k9+K09ombR4lh9pLzw1uUCz6K2q5ca9BF3rX7PPlRK16d6H7CMdPKbk9Dh+BnFJkCnG4XqskObJuSnA8EdOK1WIpdq1VpZL9MSQgOrcGGGDOInfnRERQF2YiOAC4purkpO2m15cyAtyKKjNTYUg6lJUhmzmLnpI9ic9J9veDZ/fjxGNXGoekQcM8lKPveBoDkT1vVoZQ0hapei7P+r5S30EV4fzCcQMk43VBvainYFpwSk2zYWbxIunV8Nt0FNZwk7fymusjGGTotJouRrkv24eMby7dd/0xLKbwG1W2MGKob4fjeeVamJj+UCFnBxVthc1aLsYnoG0zR0HtMkZcSVHZesQRoTnC9haSU8jr9ohR2PEjhw7H2GYnTOzILN9C/4eyexnbJFyoOaJEfO/iNjhxBFBSQFA2HX0Mn1gntpl7UT6fttAmwuiLfMjcXTlIBuSfo4PxLNEV6Q7daf7gasy5OmWILyq6YcEOuMxulBnrGrbmB3buRwd5z6WkRtIvF/51S6K1R5z7JNOmjpjPagy0WHY2kj3ut/QYBFk0Q2NGptFmXYAsGaITXUXEMw1fOFb2GaWhT4KEHydQnESDZsr0fpq0bSGuy4RYgB9ADJyev8m+h715D6vRqBrqo3GDGXFr0FqrjpJYV3yUGB8b+0eKlg29u8wBvDxdKCs2jzgW74qP1WjB2eOjEtrz72rWJaGkkLVILEc8je4IZsYk4O0MUgbswNwmzI/qkNS3ZZItrp0EEJIi1Xcle0NxtZor7kq48Cw3zjhsundUalSaaJls1wOhken04N1oaVEl9Db4UEyEHXT9Xlk1tpAzlXFUvcR/U6BlPl6ovZ2hCDiffKzKQRFtgXaqQ9CI66Js3gi5TeudYdkjghAuUEWlanLxC2ZNSB4M2fmHUfhhMQBlfpQ++y16qHFB4pIoRtKjYeEE84XL+ADBZvplk5rLdN5oDZxdoN7iQTHDYNoSAeBLc9baXrANfHWLxI2I4zclIrxXV6fDaTqRaGLFTKTZsJgk92BCR8KZEia+5jRH2rc7BFjfyicAXNxVU70diT+Up9/hX4ULpzXMwYDj5ScNTQk9Z7mU/WlQDyupp+1HNWw2M/pC3hj2c9nEzJCoKudNUeVIqBCaa3pPNElZ/CRrxW6sxX/oDEaRzC2miU3mC1s+DdlfcfFCBLE3W0jqL4kt7WWb6GDEcK3RFqSEmsLmQaXAA0zfrowwTHnOjgjnmAjukXAf9WLjyH2P3fkpgmNUnohwJ7AaN4X46mD78Fm6y2USwpYPomJk1eCDjTHwIoN9wL51XZ98MEOAtbUCEgskmEih1iKNyVpINemKVKYLeyUt8q66V1HhyHtazgOTwlfMuRVqN3o6lAIpuHSTC5M2vhJVuxuaPO4bRNoghGAxxfVAGNj2ttlF57rBWfhG2bN1XQ1KjyNs+LPWFRXeymK3oaPcCznonXuJ85eb7zfe1UwjUvRI1Sd3lYwsukiW23y0tu5OIZ/zGi2J9xo0dXKpjQvQHIdNcB8ewrGUHMtwGZwv3Ilz+D9vMHXGm31RhVx+yBX8a534enFNSRyUfB89mlyWe86qw4KXSi4nJ+6CEVfy55PQ1g7vp9Q5cBpTzTEJK5rvmFsBdGF7mU9d7cWfzsR2k9KK6WPm1kbdrVwyUY+Yr7ouIUOUDnx4Eka7a9lf50E1KwmO5LVh2OeEBNkpMl2oIydaDbwsIOGSirYo4jg96AaYwuoYO6eFnj5hPdbaRHCutN6mMUeJTCbRSiAK1e2p9tmkyqaLGRiwdSGUps+2mra0FiPwCw0Tt/FqVhQb2SYLk0YTT9SOv2N+hfqkKWd1r3m90d8Ryj9BKnoWb2IBYkt5SQVBN9njI1SIcT+s+prAiYftI4s6CBHVhH7auzxr3oBLRNEqWyC0J1h1OCXVIXXlHAu8JLyYjT2F4HZDxcBL40vXVILSSalxaBS6ezdsEc9WpOVHijGfdfKzMkNvw9paIpK4CNEyhdgRmEpsy99QsfPQNUuuHDYIZXQGEhF8xLBkVVu8ogFqQUClelRL87UtBxQTRx6yokvFRSQFbY4oiQD64AbFeAfRd/klkmaF53chvTe5IVo8R+OKyf1xLwdeSsOeESxy3WbuN/cy8jcvOTJ2Q2PyY3bBQZXfJ1yIbtKS7m9/KVlvecNoGeesrcFkOjiHtpZL+mjgRpwwuAu+IjEOL/tJ/ia8ElWF3kRnmqpQZ/BNuKl8+46UAH7kfAdyyW9/Go/CugmkjZxQIRQVl0RJlpgdQsrwFIQGqaucazz39MmcH+SJNN2+8vxayR0WeQrddEXoy3zMZTHknh/ko8FCafF12ZiWLeFW2vSqgXcBkeqAASARaSlz5Th2aPA9YbU1PUnxXR2FXEOi2+DGRQUr5QwXjwwb6rY9qVgOesR1wbTuXnLZUgGPviykDpar2H3m9hF0ucn6jywH+ltAi3vqRW6uJbIdA+WLFcio6fW+gdlky6QQf+WLhjCmbJ0GVedIHG3j4nCSPbf1rTVtYgPTrjGqsKF2CG7nRa1REeNONLE9zjHfsk6Ixcxq1mJWJkbWEMORLl5Znci6LdMRwnZna9h86+E0R1LmCze186ARc2/KhZbSKYZD9ik5EWaiLzLhE30KiwmFRfcqcYKNUClG7491baRmMhkNbLFk+Ns8dGNYjQnmj1OQALXSLqC6RzZ8nBjEryoUk/aKKmle7XwYX1ejtJq28Yq9ytcP6K8eFBuyVZNytN1jSZOnNUrMtWiIenVYVsdqjfaYq5+uudZYg25XDc7LZ1H6D8bhhHDdqXo+CLXJi4QJ5t7wlKpBxTAV4AvjEkWbCtIIjlrnC39vORssxpgSM0ifSv+uBhJTHsJ5cSfoukLCAPypjt9zHpDfpb6HfGSanxUYyKv0qmA+uR3NeFsuXAPJwPLxgUlCgjPp4giqebOnpyE9m4udVqk4vkcLDXbrncZLqErXTBEoeInYq6IlpEK5znRiTrKN+8F4dKUwF9YKrni/bjTfrJk4u1CnTEtlOQUeC89l028XaHjp2N16F2EqKra3vfvb1cp8ixLw4gE0YphTlCHQGF8tVHbByjZcxImuGgrCbigkU5/AmKbQ9D3x5ZD0BPqtkZRcLQ7rtb/v9Of8U3YGgxVRJ3CAWAQFd/gjO/EuES/Er+Vv3i3TEnqqbm+Jg1wBNqy6h9C2dQeFrZ8OETuAsKBLrFSHfxtHkdDVrSxmi3H63fadii963c+psKaYX0ONsID+oTjLqonVxULVQap+upUb58MCyxX+yyJl9XmpqC4qIn1WhYcXZnE9J4K+Yba7vduzDuJGHV2X/VDFvng3WFJDhAyfoGwiMlNoKy3TUHL1QvTg6P2EwgT2A94KJtkkdUAiA4kJpQss2Lwlco/qCRONc1GMhBF5bPByJEI5JWvfyL+IZKIwZtVdSrf3JN11K961gWnlrqDtyR2XCeREwKHUrAytaDHHHelawhv+Mq/LImKGRm5GG0ag1Io5eWpxHkI8XT53Lja32OJqngaggiQbXHNrvHt5cZmdvj33r10gE8Xt3RyevsdEhJqqkUlWgsC72+INdpdPhrjHzpkxFEuHKFa8uIGm56TdU2jVGd1OdRW0d7gr5XJLA68oZoNZCRJXoXBHgfWu5ZGmV4J1NSY9xlx7JntSG5zif/Ua6vGl2UJ2UrjAr94m5DShwrMlbm5zuf6wgOfRzxDmQsl2s/Eee6yONDHWnKyzVfG/QzDPPXr+CsMXV1hDhwMzteJLn2qup67+zQbipmFexqZlSju+NPH1pKIcapfeEglXL3FjuS4Sl2X2m7/bO/4qO52SnsyuHAJJ10GeD92RS+pZhf0wQDL08wR29yShkYUKWWMbtAL4Aufod6dnFy4seSvwNWtVMQrFqMGlOolJ6miAfZoALa2or7o8HNL4mjZwoPuaEJKYctSdZG+q0agsoiisjbE37IYNeeUtvxLFcTZCFaEx6MgJ6LeV8TLk2e2ousYK8i6qXU5GzFSGCVEON+adFi2oMQmtwfFlvI4vr0N+XvLAPQphtnylThp1i6lM6INYN96pmMeCVkF/7Pl+QsdM7eHm4w5DlEgZ5eYSJFcYaETLDFoA4w5LFpFt50PKse0c3ZV++RUAIKel9rJ8hhcVA24bRnkQwVdLkW1CLuvgYboBly2S+qpk+1M1kTtAN25gTiqtfjlpSvf05ow8KxHkjnRUdthVUwEGSenX/d19rUeCEUgDUj9orrKrt2EqeFF83Ey6gH+W4hVSWIikmA7eGmHFjui+Nj40lbGSzdzEgDUmrR32RNZnO/JbvRu8w7jAtVoejUSENgSDFbc3VLad9KemfhERRrW5ap2JnAe5I/52DXAvnQsGNY0ewmh/I5be4jXrRGAmrCzuEU0JcHhgDzEIvxG2D3gc2WBQgSDHHDvzzWmFd7RiSX9dAYxKFYijZHunD1P8qq0sHM67SZ1YckQadzJdXjnmQrAV0DAriXqFzLU0dCdE+bDzJ72bo2QdHQ4H5hqGdTLoJ5bVZu555TEiicy3os49Rmt8U4zJa0ZO1QswxW8JdnzSjG9gpXjiy1Pm6oJEL4omnGyQTi2HiHV7od/VLWlAxRbkp2QWcQZSlpRBIWyHm6vlzjjnOjIyQ06kLw99lK1hlpQE9IoLKvK5FGgQn4F6Ayvh8QlOEl+UNNOUWcPf7kAxGIsaUyHsZQDZc/v1W4kb1WZ2UuNeHUe8jwVRbkRu1u14EwWY0hAx62ts0dlAB0Hom0KBtoFZ5W5GN1LOES2S2NBu0/bUJXqc6uwNZivCHf2GSLretkQR+ZY12X+5AUZXanJSgMkjAByuRb3ZPp50E5xQ3dhSyiHduUPVW2dTkI24gaHvbRjAfCOrFzeYh8ljC0I6vIcecci/n4E0hz+9qlALsH7WH5MQo6MY19pIGtEKafYISxq61xraQpPNtipyrFCCssKXkXUOl7MYuiJs/rRRmw7Q1DCl0t8T+b5s7MBrhapOLL/hKTCjp207SJFftWUjN3DW234OstzVTatI/iRuOauk8+2ol+VTnQQXjElgH5zEicvbSReU9JvCx8t0eUU29pOYvF/ScR7B8UG7v70ljV5IuGmbNRLMV4XaXpmSsOvZO41xubjclgXFwQzJBKUUr6dOiVi7ms5Wn8gmtxEQb+jsuHLqeCjQ39ye2GbuALVOqffTyUMMMyAFCvNSXBK+t5DvxYA2kMd08Lv04tAyUfCY8eqYZZrE20EeSa/HymL5yK+GGzu2nmNu6Hza7Fw/6+VoSSwGS4JfUGDTVH6lmHHjdiSqRKe+k1WRco/Bp3y0eESeYWSjkEnAc81AR/gYyjc0weMWDQrTdghiI0gI3QdpL4O5XBy4omVFvMOgnC/VNLA0NxIMk4hYcJk5bPyuyH3NdPIZ3yxcGksqbKfKAoMaBfF5V5E3QQCjgqYrUx7JtGw/WnFXRclsocAhO9VzoNCHvILR0gFMBrXC/FTrOUAhNCTXPKwZhYIRQ7j8/VYgUfM1805kwSm+K9tk+9uCVRtLwAACD5NxG8dsaIVYu1zEK7wVr/gPvsoM9tpQ1skZbOy1IuQXCdlafNm35MKmcM6F52R3yFZvLzkgRNOrCD3aAls+urpMMZGioJSeox4BztXxUGRJowv8Qhr4RgSQAH+UrBuXKMhdSUGn1gy7rtikTX03cCu5JKjrwBVnEumEIYAksvdgbNoMXMfs+dsUIvNoSUL7MncAttqgNtnb7mebicy2lAhWrcDph2wcNk0h0mzkPvRf3QUbBe7F/4Kn9r9s2FwMcvHa3H3bp0PjeP/oDbNrYV0WYpwrlAUcRR2VYidKsmLomP7UbZdt2iuK1vwke3543Iv1vMZGpeq1lBmbP7zFA6Iu9BZojjkuCny0sMjcACNlzyIgZ/koXHa8R8n/9JZtwZNsI5/N8oeNBkjNzvIdsZGhGwWbSO6qlXEJ4z4JwxFZwKwYu9Jd2mey3xZ8cRDPjQHERg5vhtmEzxyPIwz8BhRa8eWk/NfLu/KB1/w6yMHcbPHm/4pdw8wqcRTYQMTqXIf9qqXzGb73muLaXK4n6FNNXA58P6FrZjqLACzNqhhtzUXJRzHSZX3FGZXlPOULxEM6nMF9bvNvhNGFUnAW1yPPV7jKdZbQQ3yNWrJQCef1zKjBgwldfeuk9PKNxzmsmA4t2A2fXEf0LrKgTPUS+7OYYoVdygkcZJPOJjGMMNzLhAkCPiS6VCqSZmYYRAiBgAeSfkS6NvPpDappufbnJwgDrGveBSgsD5S9slxdq18YEzBodrvpvSSnrFnkcW9VPTyx0GYsQemO8U8g3DB1SROokozWq2py5cw5xVnWV+XkigmeiNPSX9C+moC/4JmaS7Uqb5OG4ruFBi3FcEz2n9Ici+23Cao9yM0wEWTZ0j86UcoDA0M4IBOPjjjCef0QQdoTwNhH950A4m2mrSWpjF3c80+DZvbGMpXMuOmDTO5UgiCtvDlt6is3yoJ1WjSoTgLJk0Bpu4l1ItJlWCDBYY36GpLPNxSnmwVhJeWldCaH0z9LUGP49FoXjC1oZ4m28sim41VqAhVEaElBAj0GSLDriwcnzhu5CIK5JSUIJ1/BJU7GBI95TxMCI9BG99J2KBkzdJDhz8TgRUje/GEa4s/MLUB5iDgZd+WUJX3kzvEqXHCf+fLf0U+SGbCdPPpRCPmsJX6YdNDiF657lasqCiZtxTvbmcqtumdqyKtVTfUMtrCvB0AtA5bAneeQfWz+QQtagHrT8DGzbffbX5757aSZ1PPxxqRBnyFkAAVAtukKi7Z4y49/hSE5NuicCAVnEq5QTYAts2Z54+qJYxNjzLmvTdGehFagxd7VIIuiiZIWPGcUKoYd+VGwc3IkWU0+OKyWuUjXT/wz2VySno+Xr8c8oPB04F1H5XFDXPHu77c5J9GmQN6RowY/QjNisK3SsUqagm1eKFhhT87Q0YL9tiUxcQ8oWM7iYxJR1MVArVTCFQohV5gFumI/n4slNm1bT3eVDlM4YHDCF9Iat0uBpt29iuZQDMHAwDRos6w7YeHYMJ1xBTAjCI2k9Gro+Irdlts/11wWh0V2Lom85N7VQtSk2CFcZFIUwzb7JA99OFsGTrBMaWijlSC3vs+GDa6QoAH3ckqXUR57edCX02hQkWqGBnbzkdN06ZxiEWFGcDSzF9phpsFNbli6GjoBKzWIYYYZE0xBnlEYlZOP2qJsiRvoMAG88lrlWn51jhdNwmClsOqr/rGJpWCebx+l/IeHCbSMm4azwNwJHStNkjFGLYGG4TjhNi7Q1hP43oZwnCQm+62HBKWYoXIPjrkznKXoKYSbBO4KL21K497idKlpWtBsIO8Fe8j83kIaIA7pJGpVNj3d6OKlXLvf+uHxaHWjLWYjeiLRfXON2+PWXb0KcHAu881d9jbJV+huyOYs+MawPr/71E1wafFXxJrkqUUMsi/Wth9xz+EA3xbDIRL2tvjQsS46pbfSW5pEHGw+m+wXm+5NDGq9rsRtuLA8/6jCLIgKNTFzFy7+1+JPYhVDwiKL28hvlbsPdPp2K9gtYoEKT3AEI/FHq3Fy0/hNISoJ5LjZ7wk2dvELNXFF/e19LcYVz5inJWkhH3GBc4P4ity7tIL1FG45Y4vJgR23wcfmdxHT2TrOnRCkZlOl6ZBtZZOqMZvuUjMIFcM0y4cLy5lyfRF7+vJZgt+zdUe41/gKQwIeMD4rwtjAzy9eXpwlt0qcnSbZuKCf45dh5bs1zDYsqvwp24yWZ8vDOVLX+rnT7yxDlcEIYj/JrBoqQC96xOhBUDwwkXrh4bcdpLpskaqujqrGh3IVql4ESFLolohYMZ2irHi1Z1o3fssQgkPAflkZAUsEj1PkEcYm+dQxRvEj6/ftelJrgS7BIqLwNu6+lQwYy2Y6j3q0eRzxjLthTD2Thsn6WDqODYaa/NP8YUO45FQ8jyossNrMNyosz8wSXPFh7DDwipKToOuQLHgzJ75Yt7Ni+3YbbZHs9z+8EFLzCf73ycv378JqArhr9na3dnd3T3qpBSF3lOdGiUifExwB9np1eo2tmpDf2vBkOD8tSIIWsuOc8ms1HBvy4protA9OJ/uMot8vxbRvik+3JUP5Jt6eViUtUSxO/HySTtkAjip+K8prcueIdzuocwmPUmIYp3TTpiNT5MqAC8AvqYPG6ON8P2xF09EU3Yk7GR2By3VGe3Bu8nLE3i5UGo2vAJMuy6GYcq4EtFLb0M/Ct/qAz6nixrk0NOPog5G60GjnLaM3Q7VsCceZ+sImlSExU24Fd3pTyu1iyhGz9TCOTbVykw41PdYGf0r4tBigaihRm0zyTXpzPw0kAl2hhYiC5J7xagTrwXlRN7XAwhoJdhHLmjHdQlRwTCbRyBuTKg7JmLBr9Xv2xp8arS8BcksR8MIeXAXhj15qEMM0elkG2MMk+U/wbLaRb5BkJD1dsZtNxpEESYfhynaJZxJ+xZQPrwcmorTJjJG2E+H8ZpphF10IXvNfxuG0XuGBcL7VgDNxJI5ciDpcL8ZjvCUdH52jg0BQVVZqCoBXGElm1861rkErYkSGSUkHZ2xmqpdDRoCRCiazu+VLVJk0Bbe6RPlIGlKio/ezUcJ6SGTmRWHpCECUs8c0kGObjrFIKZWfBXa+9VUWdxKFXOvYhctG/8k5/UEVjiUnfJVTIAiMRjQ3DV8kegA/wUKgC4XOQS43LhI08X2G2rckPqH/mnXGkuO36CUbkH8eO2NaBNzMID2rPO2La2dffJvP6oKP54lWC6N/bWWLSfFpyiDuy6u3p6dvTv9w/ubqh5f/9f2LHy/xv7H0TVhU5nC7lzaOmhxeba4F/AInB1zBhyaIsMket92q46zIZ29cZsm5W1rnYrXG1/RfYlk/1AEveN9eRvs27L2dTO3Uy0uKCbOhs8zMMQD8dNQvdQ02mVSU7buFZTWkGyRTspgYy2YFq5m5GFP9JLrYADNfZ2JDcsam+aRI3ZaXHHG5rW1CXUJ8aRfRzdHwTQhHTEtPcbkTG4sy1bNNlISZX1wBAk173Gz4A5KnDPskkqN8+DN8WlYO60atcC5GoQ70ILUXT8P94Ao6c1xlpKa29LNRk5eZQMBRES5xVJvwmldolLEkOOSp82t1cacQgFo3pXyD5viDDMz1si+TqM86n4CA+lNxxRizRlwA2n6RYwVfCsV8j+hXy/LvCPwRKTkW5mmXkDg3Xm683MwOOKMa8UgI5Ft7oZgG3qyM/eUI/L0wfIguu4WKhGyrLT7kabJf72loF5hhCMZZto1sTUblmn2kxIrwkX6f9gX04Z7OOfDIerl/g3HD8KWOIL1O4TAOYxyGTcJTSyswI5voLFar9ELQYpgCVugnZgVb5kpCPBkoGmpDQ8GEYqMw73RJ2mcZpHl67GA5LNR00dAgLml6qdhF7UxxorZVYcNAWs1BJKHlaEaCB7GX22pSbGenSGhEWkfggnEAKulvVnQ1YlPcuXaS47Ms8EGHvHGnyPfjlr5JZcM7mFlBKZzg2GuStltqAEatLoOQS4oU1AT58sCJ57BdqS7YPMIxEOJAG+TrVYhV2sHclNZjsAh1qgvntY9wta1yEL0morQtSzPw1AZuY07xS+J7IQpYMDsHBeiZuIQKLadDIkFMxhl+LFqScjrjstTOt1RrkgtewbZkD+7yxST/CDo89rLdabtBHNIOUQ1FKK9Ui7BuJ0db6i3UhqcrKo++XI1xgUKuQtTZ7ch/JUpYtAMyXctvqiGWgx9mWGzDG782vU/AgRHXZWQyag2B5G0hcijAkTPAmQmMKfSXFNPt5WTV26O1kzSCWKvK0EKIm1C9mnj7p8TB2qf7redBDPjfT7Kb4h75Zq+zf1kUXEcb2S9gFrez91Psen/3v8AVSumVFbIXzG6lQro54RcNCr8N3EobYbZMitYPQzUWovqj+2C6P+yF45VPSsStZs3d3OJTUS2ASR3DsPUGHNdJ4dCVfrdsYNnaLl+KywTaKVHbO6ABJXs4QMyqqlMpL7G+q1SdTYvSpbKmRrNxPpHE2o1GrFP1f8QfUXZTGCxyHglSs6nIQ5sG2wZrykfkU2R0U+rlC2af/FEILpm/7gwhgBmSYFgZXYWb5Ud2dC7xmUkNWxje+dsf0KnjEmrFe+Vvfm/fei+eD5Drzc2VBil7LNWngZK6mreGBMbnG6+ig/nJRlIi1arhghcVayvc9ZqxxggXT+mtj6ck2kEcipEhFUOHJMobLt0A29XINYmiJ3b9EC/00Y+4Ke4uQU1Og/0sX5FRZS8KkAX4kNTPUqoIW3pMWcM+FA9Zx/JKDlAEjkbF8IpUsCtVcztBGq5v6SV51TStm7OdON2bthjPg4LAPXK8LdGb1/o3f3fc7x1+dSY7jP559JWgrqg44ZItj0ukfpn8GpUIzazlvgWSS/tYTqUe/5h6PozlgdwfDQPgT7hr2rxutGtyRC9KrY9YEpJJmJJ4jfmO9+FbjJxfEhMqVjyo+U7ab4WKH8QOLtOoVvw2JLW01zp/gCGr0UaR7A5nfPJl2roSnNmD5u/QMJk177s0HqT90xMCRoWJGGSUA4PO9GVTJ0ldOQUINZ7uneTt8fOD2E23gr2lv723/Sk5ltYZR1xfh78mr1fN82sVioNqtBhP0p6nmJ4s2Za6AKkCoxNr6Qy6iHg526jLPxUbyYZfSYYUqFhE8OTS+gjk6oQCSkAyJVZpCJa59bJ1s/w4IZQNIsrnd6hENyW3syra6SDt3rszanhIe7MUekZxs5inrLWPSLELGaQ3FefPmoLC+T2an9MuQaerZhZxk8ggaCnKiANBFDfISxRSKDfx8JvSUlqhkfkBXLkVlD5pLx82CVpYDdNEitaGkekG9yzaXciY1fAMC1t3w35Nd6nJiilqn9YMNz0FsLFibyK2eppIwMr9ZRL4RIIC98nAqS57S4KADTlazIZGOG3N7CCHoFlFJRRjbVyZJAasTeQxsGIHSV3NVKurc5EcI6Q1+lIBRjTpzJpKqrWh17as6IM1rpNs88ZVtokM+y01zU0Zv1F++ywagTE8PRShgYGc+LiWqcFLOkh6l6r5EPssTFmJFPxVODYoHZnDuagOI3LaPWl23rMVvXOSZTQGI8kwZkB2Dj26+Yy+1f0Rax7I3zUYYWJ6wg2fVQKgThhSOJqfzBZndgLqhDU4GWEY9peD4Gsi6klgZ3RQCzFx6sKbSXOpbon7/oH/KreFKfYuHBB6HS5L6PZiiAzr/1oUU1cpjPzM0BM6mj/AD85eRpehL4o7ITesc15sNRNI2KvO+3apHMx+hhuPk3Oabn8VM2E1H+NETRew9HcW30lSc7c9aKOndmU1MDvsX09wMyuP5kxQnD2oCc+0W02PlI+pwr+ECw0+gJJqCRDkCAYjSFnLLrdWYDVXjIITPg1CvZVtzAqUsA2fRpQrm54UY2p7u5ITUimevRXeM5qhMck2ik9TSg6tmddiQ/YUnO063InhPeADGLPbxVjMoFl+z7WShDkqcb3sL7VfPCw7zoNkQKh6Av1XtosGMUSNxtKwRRtumUhVIb+3lMlM74ELd379hNhoDwIG9VLQABCDf4SoFqFvLYYFKWdiwbOfjJNXRVyGVUyat0rrhPR3v/q98NM1o+Qoc+mR3leWfy8yEqSuGFzSI/FXOvU7YQO3XFg26sdh9HIgS2LKvqWWpNXycSB9Fw/zGeQUMyxrZStNeNmbx1F2T427/fpBdw47GG8rWdzrUaVrs+R0escvT5ffLJRZrpAutfhKrUEzcrspjgVS5Cp5wGLmiwHqVpXEXlNxV8ts7wNEYbPtxOxtqnQ1Zj8hIgtcLh4iEWiR4iphCmpbXpuV71vUk8DsxPruKd048uWc+iNnVdnAGm5jgI2EYAwVSVX30Rp8jAlxeTSB3PLYEdPJe4ez9TkvNtwiRz5OSWp3T7JNFn2IVEa0RCg1hgu1fGUUTrTFskJbNH3Mz1sLV7qdL9mvRu9bu6mw3IyhtYjKba+KQZNbidUKkXwbLz8RCpQnhBDKG+5K57i4Kh9O9djOLtzDxiHCDbX1GsOOQu501QQ8Fb33ePCj4hFa5xsv78Jk0no+g+OKJCdYAXcqCq6nDVwzGzANUsEO3wija7IsrF8eYa1kMZEHuy3bjBO/nyGGBq7GdJ8vU9VSsNSVSeClX+U+DGjK9QJkNgVhxZWpbVCc64qlghAJEcSKMMIQDXAeV6u7IjXUsSP+5u8Od7/K+tv97b9PdhmpVivdmn3r1jxFNJpSYi+veMFOJ7K0qIpcDNx663yEdfx6UB+PMaL5B6zeRoi3tu22rThj04tyQxBhQARAw2j1ljHkbzkD1lr33vVJ5KAwSbAbJLJANnlEmonccjEclEuZqwq+lEoc/XiKmG5KZI19iP7NlboirNLUfHYzEiPmT1uRyJPsO3zJyVCxz9XTGGKV/KXZwlpqlC6pMobh1aZ1zy6vVfT/KYs4PHFR5/E+ijDt3i5MFA1uZwJJdCBXqbMIsmFVEKnFoJo+NBKCwvyd8JSmywKdZBuvveVIm2BDQMJ1eKkl8R/eSy3DDBJLUlVlTR40FuETGIpLGslNXlLDbSCvvyGM4ynRnZIF6KpgBqxpotXaM0sctZhfQcUwqYcb45Vb1IozSeKeg+bj/SjwLro6FeYa4E3X4d/QJTnDpZVA38Zys7HFg/SCC3623R16KlSQfQMyvv+VRSQ1Qcun6GrKNmzYl21uOW9XXEhiIxZcJP9bgezppsmncYVy6wqP9gbJzrYnYPOgavuUrt2ecswPZUD8YFTRznCWswxHnaWDS+pY7GT6LlC/b6HrwpBSeDz8FSBZuhWeajf69nMTKmjqZ2otiZ4G00vRV3M7roOrqR12HnroKoRJUJEMYxI3HhwtD8bCE50ALcfcV9SSOp9YKUsUtY3l5RkzPWRSgT4OfMQXyamHmeHJR0pOb+mGFaiWq/OhmI3s1YuowkJj5RrE+jb9zNHeaZRmO9ZBnNZBic7d1ZSr8iRW0vr//X//PyxT6MIvAyTimsiZeER10wPehFd3PZhH/dHuiSC+0wkb6vB8OICrlDcqahym2i3OjROlZVzOqgVWPb2rKr7QEsUSJZZuNGXcfj+mK5MHUL1qmqAQDrXe3m898MC/C8IemdMXmFHIPgon8elRMST8ToHVC+bc5CXcVeJxjFJ4aUtYpEB7JmOwn5u7uR3zWLkq0sgMRiqiRP1iSCNlLJLLbKE1/AYNBgGDO6oIMf2RizF///6cnn8ThqSrJmeYPhc5TWrMk0HTmDNa0JKN1OF0qC46Rxr4w9ICLqQO4m8SpOG2TBlbJGdvXl9dYgrNyYmT/FfawRXN4mb+sSqHtpQClz40o77A7CmWzDZXUYotk8OnVeV8UUyRg5ojNXx4lpRdnDWoG3u26B2WYTD3j2cIx091ap1HUVImgyl2iHAmwtoy7gIEhJEuLyouhUDKglfhqISRDzUxs1D8lcpPBxJvMCpyjMBlBEsSLQv+TtIF/rfGyTR1S+AD8Fe89dFKDfzDAjoIRckbMaIYSIahv/tZiWW9veGBFDjT8ajL8AwuyElR2OIT3n2lueJeI5IdBvBCVtBp+zgoceyyApFWMm1Rc2+KRCnRTI/pUp4LtkjrIjL05CprCpiGg8GXbUZfuDLclMliHiGi5SeqVnI3hUnBeln/siCSf2QbSmM6BF9AT5HlbLItQj+NGV7Dp9kskZPR3FLhbjelgVOMQMwJSDjzDuQSwK40F8CFloeVuXNVZQuA0mYUZophjwlil+H1gfM1uqlJSVXZdAe3g6IfXXy7zcB1BkD2mnIFPDh1MQmpB0QJahppb+CczVz6bGhlcOUAOvWwv5gIvVVp9E3ChMkfuyoYcXnSbAjNudgO2iFxq6OhQ12JzSajkbOAa+SaZoQCelfJFoHfjBYtBbMZc+pqEtUSmWyPVDujW+rvMUHG/6uYPNNML8QKtMTB2lMS/mlRwv4jx3aY1CkLQq7K5tGFLzpDMYqa8ERj0zITP51dXXCI9up3OaY/z05O4MbcfBZMw6u4xkVAmE80BxyXgE5QBsuMBa04n3TZxMY5tiq+BP1Oh11ZjuiXWXED15KrsdpYeFA8YAinuOt17+Su7kHh8yuRAtAMSFVvE7CQOoGpY2cw/1TdLO3eUXUncpGafFBC/pKg8MWz4J8mmnTub1f8IDxY5PUMJN4JseMzYpLVE1jVPKiHoFlMMBGKbGo0gcA8eBB6ocjw+IHXE3utktlZbC7D7+4vlMbGLp6w4Euw/NTbWwe9JybXO4IRKEllC/J7TUtl/WVQxVgvsRNznaG7UWTGsMBMjYabZxVa84RUDMw8smgRnE366ipEdYuLUsDKgRlAP/Bmbg8D+wK7Qv4gsGG2Ke7AKAgzUd3TWjErRW2cpgVQ9cnfQukFV8LoOIYS2F2viAg+n98109OlAksxFqNq+9Oz5h5ynzwjtJ/x5zi+3IBRpHn9Nxv8vqke8JFC9E8ineUke3Ftg0FS43oFciLMPfPCvtF0ysdfJMIKligy8Bc1h1q4SJoxlQhjoV7g8oYELNxsVAwgnUB2o4AwW4kXVhsxa/A/241ufVTVnSzOdzQQk2IYYy4QoMJwpcDZ6w26MJ2vUQPNjW2zYZjHe+jXnue3WkXOeZWi6JQLf6rj3RlMPsQAL7VU2omu4IaBLHeqJX6HdUl4AfCICvlrGcO8vbJPOOHkJSblnxKDPCOeXvGF3YjZh8TxkQYbJg0M7qoaT1JosiQ60N3B6Vq6KVxAVZZvx1NFxHaSdX/0Y3de0tpJe9ik8XIe18B5Qji2v7273d9NDXKN8KspVx9sfKO4h9tF0ConLoEgYL+dWqKdNdqIaLT9/eFbjd1ETcpgCs0FgdNs01eXax7hl6yL05k0qaORo1w0CUQMYaFWNt5Mwlg67+WEDTKpQccYTLTqQ2fuamJ+VtMatjiHMxFtxJAPQyKXdBovEV6B94YYrjV+qBaidVpWs+bQ3pOKtaE7eyMUvAMku0ANAbfJqHTXGNOW+rea0pAzSGcFJv3VpoIgvuvozyozec1dYg9A7HI3UKuGPrZZgoXDDi8iCtAZfJZ99/LyNN6CrUXhMBx/Dlr6a3TGoXdwc9pSpc3syx+X+hXtdicSb2OJLNVT3fYhuDtB5qmyXN1AlRdzlKp3aMeVQpshpUZTEv4kddv5bDx3QJKvcubiLdcFcfEMNkKCiEYtBHcPtN2pCF0tOZPTBI6AW7+YPxC7hO45otxRNiT8rNNZfl0Omu+izoWFGq0fPOB2Y/M92WVMVaGXFt8unIkndiuVbAvdTBbOZ5o1uPOR431RN5P++IKq7xFHZ2L778YHAK5BLnNsinH8/E8LDKW4SkEjuNc3I9JNGlRguDnqYNrmw9Xuz2gX4KJ2zgzZOxoWnaA0dPJtC3MRFCYORetcd5ExLildxZtSF0gN+SwCMUpbdBHU02piC+oaXa9B+RUBCiTDYFTeTpw/H5QnZhvawdoPqEpJKKfJT7ESBcBT8CLaY+EGW4bTD3ZZaYEj7AA2LCbp6KNBx+AKnrNLmF0UjjxHAplEMOit3gcY8I2hW3lX1NWIpcaScsNwb9VgZl7nswDJQNe1uaEcJVD7ZBLFGbpHBoQC3GwUf/UswbQdo9fTx+I8IqvONo0iQzIrKK8tkVRKycGj9MwGpM2DhUg+SoQ0tQflA43keOmz2E6wQg+h1yNjaP2t9k6LvIcIYlbQN9UXmGvYH7HPrgMMYIh6SKiyZ41JR0EhRSTYxAyQFxQ/2vwtk309g8OMgD4HOdTiYebTRwMOC5Wc4GfgqHAsERtwN80oTV1fOCeHxc2DnncYz4cJBnA0nYwyX9ETA19Twr24gK3tKJcwc701tT7btGhuD65Gdxv+BbpJ1ZqJC83MFMqI4Ur8bwwM3Iyq+7QmUuT1QxJK7x83KJFG3D2GDqTj89HA+ymMJ5wLuBSoGB85riw6KZmXGRwp4jSYepRXbUMKIyGGYE6CMLxYWOoIZTwR9oio8Hv4KruhQ7UfY31uEOq9J7hkI7/nAjm9DaKz9icb2ciI1l0PdPilYivnP+efXAN8M2VBulJjqQPq9hnVXHM6Xbb5dZ7dzYqbbzp38/n0ZGfn/v5++76qJDsSBOyOHv+da3p5p4P25jedSXVTYQS18+3ab369k39rBOI5ch828hnsTf0yvs1oDti9ldskroXUqsGNn2I1pz1mTCnORkE9QgyvMNqd3LiRdUwrmSOZnSpwgh2wdJ9e4zUSSGi54aRjE5tDvMtIFFUgf57p3UJbiTanj2YZq1UrZgVIFq3xGiBoI4WRyWTxTUxrnE0w8oQ2cMg/ER7mGKTUT4GUBP0ySfggkLL2IFF8oB/LhHeFcA4H1aMnxrPIIR2luHVXFB/jkEMzTNQ59ambBRW3F8CLGD5eP2L2cNE2Gowh5RzVErOVtSheE6GEIWFe7NgEIsgS2Viusp0l0aaNaWNaATufsaSMTZ8b3ngCwMm920Y//4KQgkLg6h2cPsul8d0B3tk3g7iTAJRuCl4IFDIgzc/H1udgcQU+LsUiLYbbpy0rxGnjBEzyjy6ppAw8wM4pGopiNZ31JjtrCl+7TyMR8FaJFRwlvYYPNbDk4Nrp20tk+tj6VgyX2lxCn+QcYSgwPO3dbXZw0VFErc5DedRh5qqpivISTH4gizckhZPcUwKcfY1q7tu8ruGGHm4kDGuPyBLb2Ptc7KFNqRkn2RRjzjYVQCpXkOMI9jX0eAvGJvJ6zpkiFBF7dboxkq3NZAIXoEIk2MwSFvRT+/Hco6xOmCz8Hy92zi4uWFpTW0FFSLsekY6GsxOKVxxeSJmQ3iU2gZBfJN0Q9dyWy86tAnLxUzIcrQTXdrVLTiffaRMEOtGR/XSWhek1uJ9UMccKgY1AlChx4RnTHlw0VnID6lQPZwqoGvhgp5/SXsztwYd/rDlaemAMF2sMhjG34WX+QQCBczJZmSt9o6apjWvNMUtDlIRINhJRAPJl16gdsEwRMPurtu7/lbew+/bE0qVr1IVv0mkWDCG70WrGjlHpB0NY7BcuIABq6BRoSggpaERvyocNroBwp7OSM7Y0lQ4F1MAeyu3lA4IOCkJZxzBs04ri8+riIzElu/1GHK4C6TXeLNxq240tCDvQdRbyHhGTNilOcBg031mu3FhD6iXyeAl12KyDu0HITaVddKQ5G00AirOyozIkLhYWKk3Jd2VmYM26Gjpa/TpJFWpi5k58k0pZ0uUINeahIQEVaYOwRjVnr9ZS8ZAoH1vU2rKB2bNnkSZWQuRGYdi5UJ2F2cGVTW9STbpLMF74uVMNtTpUg08sxYgmq0x3VCipwTVBg/F8FlMy6rU7f6Z8+mpe3xejUfOQchqz0mUmmatbK0s22sKVjbN30MD20eLNG60GiHLwWdxAbcsqIyRlMdISx9bd3NrOuwIBrImqVyS5Ttj55/9YBkCO5uJvsbi7LkBcYeQsr8ti1hQEbrebghm8Q0UpSgsgwZixvFBzfn05ZEVAW0EPghtbYoCm7ZCCmDTFP/sgUfSz97NxfpPPC68RJ7hIsrYLcDWqk8qd13bruAQbjkW5KuuxGhPVt2IPIFYXyGdFi7NFbB6VBlF1jnt2JF9zJozzjTcDs4lFiTkm6Cq/K0bTm8UoG1YDIoWRhSDPe92898egPbCqYCtbmw8J3ZjN16fRjCxZN7sri5AWsTTY4KZhJlstHp7eq8ZH3KJKwi9RrRlJr7VmNrVGFH0px18vaZ0Uw2ZQtWW7Jaxq801LnD5FpKSm8FD84D9eeKr4iNSu+bDUJL4lTkL35OakcvWy1c56xiez2cD7abcGgV/vnOHFxv+t3rxNpTcajVIKbBRTwBrc93EEgikOZ8VUcEJ2HHZpUoYKtvqOGE0pxjwH1W0je//udbNrf6Mo73eT7ENNbwJZJAOxFi44Y6ENPekyJOJoqQbcGjziVda4KZk3IEvkoZiGwg8wIEd3kUu8levURHO8GxeWfkUhCLjdCl/YHF/ofFWfHJ10xEzGfx2cdPa3d7f38b/3Tzp4IeF/9vsnnf5u76i72+v2+lmvd3Kwn4+z799c4q97J53FbESNwX+ih7Y+2dlRboR6+16Vku1qdrvDroAdkxXbtR6Jbep/+0/lFBvsQYM3s6LoggJ1P4XXO1+VJz344fikg3OEcQ8aIAy2rcXOV3+GB+DLbmegsM0fEIJcN57IT56f/Ct9smvx8KTzPb+AZV1BMXsTvEEPo9lGDy9vHb6jB5PptVSatT34tlOmwpNsTi47gy7CoOctU0ozdN5UcGsM6EId19tffvHlF5fc0JwqTdBEbyEMcgNp1QvYmmJyfg26YDW5/TaVZCw/kaTT56ynnHFyeJv4Z1k5q7ezHyldjJOjsHrPbaVhz1RTDv3gWtpG0pVZ4QatMPfgS7cyJGV5iOwHnNXnJx0ODo8qWpne0SFMsyhH2z02kXQsr5gqXP6F84dH5ssv/lPzLqQKophL4sJyZYT4FOXuSz5arkfWyNw/WRf4evrt19fa/fW3X+9MTe8ZdU8JuPS5GZxbARpR/fGIUZxuhy1SUQb5pJFMzqACnMPORS4sJC538zU8MuuIzvFMPyAz3x/WTCJhpC5gY43ypn0/KakIgK/wnp6S3tJFiJbAhWGmnJQl3l52UFkrUXujd38kZ/e4nMCwrxWqnRzObrBCz4N/Hbt/pYdLPyfGLPAAzjCXPLdaLhypnJ3T6p5INnBoGWstLHnBfhcSQhAciGOwn+aqMbqXQKccPcRKbuOzuSo2laSRi4EPGYaYCS/gJo2d7S0ZtCR1qMiSKwSaiMbgN/7TovwTKnMgyumlCz3aely3x0N2eSgUgMPwysmodz1+HqMb8VQyF9u2fhUXaMHlCPAblLVI9eOoKsVsG8Pu7DOmuQlmhh1/YEl/0BLBnDSKASh5ZD/YJHzEbRgU0/KFHoH4zQd3VbkYYC74ppT+Yz0Sg2rPtJl+S78YCtC92vpIz9p/7zWHHu2Ft/ngAyoSVvCKsUxvio0i3ccExuEl2Nt+vv1pG1dPKi/QFnGN9FoaIXectMQNiRzFH0URd62s30b4YlvnhFQIvoLtQVkDzZESFiFuDbQomUyv9nm4EcdMN9C/+IGuKvHJyIt99yKmkfgsQYvgIwZVvMOdsMxos8/URHetpRe9jyyD7B28hsO4HetyoMDwnddQ5nrPvTK3t5v1dk92+ycHe6Emt3/oNTk8PaS6/YPqdN8cHx/3fyN9feN7Sapruwl1bbm+9GdSRPPBzTipmu3Bj6eaWS9m+yveTkt0NN9iUh3r9XdPuELXxi0cyw0VP2x4l3Nx+QT4P7McWt8CJWMpVUgVsSel3ejh9LhTmsvxwS4rLrsqbpqXTEAL7EqQMVAL2Qw4FUqYnHwIe7OaFF1MDIUbY4a+APeqj+g+s1cO9yZf47wBdBVExeBY6lFqUm3bSMgVYcmgN5o31K4cPvPNedTC6dkrDKWq1iL/Hz4rOZibzxw0nS5TLprhuNArrt5SDgnMa8VjSMQkA2A/o0UMsbmLjJbpb+g3v4HLaGLmLGfZfxqVNzf+m1wJ07S+zaq00+y3s3POcUKNn1simjROD0W3uDiW6gaod0tC9dTXFczi1T+/Pn/16uri/du3P767dIREi4Iz/iXfny5N7CHS6hTLa75U8TbW6DTbyaGZhwvSIyN/Au1p3kwobbHmywnXf/mRVm0rI86812APb2XvCvEy3ZXTrexSkGb4d14fO95YToLMii1eKyR3weLdB3sNxNajhGRv9/nRwfFzJyell3WFpBdYIA978CNpMXjRdK8XJWWYpqQjPkmbiCboO/dkIAzbmkuKxn20VC/9xlMCd7RK8aBNSq5i6OUik/I48llsXwgDyKeh/fETQ8KFEI8ZMsFQ9UW3t/F1jaIQ2guxKjIMO3ZuivyVvpUtPk0Vgl1rHkUXgxBy3vDyxD54AGQf2+NF9rT5al+uURogHasuAmQmI9JOyCTgtNtvOotRF6TmoKMH4LsCDLGZLk32lpvfPL0lt+TvebcEErjljdcY3mg8T5sch560hvfVFt4VT1zSBUQ/tx6Ifnf3EF1Au3Ameo0Dcbz8QPR3d3t7R0ZxkH7WPRJt2/bPf5YjEsSMrjBvHI9ID48I6Dkd4m/PeV/Tn8uT54cHPfjvPj3Sx+99qK/EAY1dwlvUM0yL/PVKFEX3K/cO70q6getg9+Rf5ZdxPvtQ4AV5NZj6X2B67/L6juYQHtob7t0U1ze9m4Pe8VHRH+wfHt0M968P+vvX/ef9YY490WrNq2pUF3P3abxM/Kn0IdBYOaQF6bmnu7JNu3B1dp1LrjssPsLumOI9ISuuk72Pp57fzbqy5xQipdDhxtv4qcp6oc0cuVbCvYL6lt8rXRLxiORUdx7KkKsPBazG2N2AV/IuaoCpd3fEIb5DAmhHhyTn9QoRsGZNYb9M2TgiQXqE22Hv4HnvcJf/ZebRbTzOnaZwzeyhMWH4RSRwutlZ87GEWJVRwLkiRLN+2+F+y7fxRYxa5s5iSp7VHTiQ/Z3d/R2utdZFUExvezpRfZecV+Qx7bE9wLnl+Jf+we5h71gmQXz9/qi0fG2OB7XltokmJqVj78EYuH7bb6VgZnZDZaokjkGbi1obleRdyP4A8lnjbsp9Ia5QCWjSBElyGf2nXlKI4GSSTa1FZxNAt2WOKEBJgwM1gD2GoRi5orwfmLKDQ2S4J1949PsVWpSNPRDPSLNlJJuil+CHC/OD5nhlJK/o3f5xqlcM+4AFK6dPNpQ/YgdtW+kf0A8zrwhE+M3eQe/w4OA3+Xj61fXi4QpU5W96cjxgtxT3+aj2Igv+uJiC6TbkM0PbYQ/+mNPl1ZXfuqjKdtNb6KhpzcEB4KtvK5PXjSac3FYY4uxzxqsV0fGGOzywIowdycx9kMnJpy339ndvu7QPWwWb3Sgwv73958u3ytHe0RNWYv8ItthuvBLYj8sLv5IiJHxFwpLsHdElWQ6eNPuwdt/hy/9BJh8O3+HKuX/+xLk/eP7ouX/u79cnzP7+rpui/yDzv87m33++/yQx1O8fHj9uAVgdEsVG5BErjjBm6kfjhagG0B+6fBfQHYj7ac8voLI1dqETUBfI7oL1dYFMLwXhGmNFv8OqI/fZN8pWDUsGlmeX8uvcIA6iB0h7/DOM5bj3/Pgg0jvg60Y52ChzNeCMVvXa/5BaffiwF1zoGhPKZmqUuQKvznLLkCK4C9dlF8kCTRGfpHbSpnkt0U7kC5aoJ3uPUk/spCRUkpVTI0emIVaOVu3qw/2Vt3+j67b7Hm2pPxT5jEzJ62Bsn/Gexy12tLfynmcN8MDNcVd+xN8OmtrfoftgDMrKc4+UUwfwp9OJF38UP2E+gAekz6puAotd0q8i/Q2Gtfd8++CpM3Pca87Mn2N1h42rY3+KR+VN4QS/2ZSpa1ZlMYEj4b2GxG/s2b+6mO/3l6vD/aPdp4j5/nH/8OjwsfesFdNrTHf/edu9+jc1yyh1VtgcT7tLaZKjDf3Iu7S333aZWgHM12jqet0TcanrxiCRrpAF4hP7IgtvkGcNnepdhY7QzwdfsX2pgogNvrLmXw/lxtVf5/cwww835c28KCb4wFHygbr8pA8cfxUKOjBC4MKksT+Xb9KfhuXHkr4epwO9VfpD/jFHx4yY2Eu1CXimLx/svojyIeGrJoW7B3GNLJQJ06Lqv6wuctDb3419IIfoj+bFDQ4b/P3U/T0l32FSzsQQvyeHr2MfQMLJmkArYqFXRJg5I10lrX98Du/I7qPUDzMPCe1j1WwcwZ/eVaNCv1hdFN7J1aCactwj4mB2BXajGxBBesuVGJDZByuVmPAL/mI6zN5aRsLx8+dHa6ow+7pOSzWYA/3avwUFprcfKTDrTcvz3d3+uvoLOuH05KMvONBhyHj12zvSY45W6jHh7v/rqzErbthYjVl7xh/tLegftXgL2ie8f9ymyfyNzXNvhboYazJrz/MjtcVIkTl8tFNgqdayt1xr2V+tBxz8rVzze8+fR9c8bL4BTWboqYI7/N3LF22XGoz563qaT76lEKXgVomZwpejGbqiXAqWoX1MfOBdxCsoipYaSl7+/cdf/vgtS67+/qOufjc3iYt/+Qwdwol8mdclXJccvthivnNOX6Tjt3RWnuKweK4aePtdbwf9t3fTJw5+8qbv87Isvef3+Ev/Fm75hJtibVm4tpdib3/VLa87ObrjD1be8Xajrz2BCbfbk9wMa8/VI53JDEtM3s9tU4VJIunb+Ukz9DfjZFh7ihNhw0ddzc/brmaMo9KZJkEIcrDLJHCf3eGw4uo+bL+62eOAgoYGrj+rp6H9i/7Sd/5RdOfDC/IRwfaGP/9e/5y69fddiGFewD51rFjK0as3GmJhR8Un4nig7FOMbyP+ERO0iTL0d2/T1n7bRkxf+L0duPPpQ341KISfmcSVv2J+ekfH8oDWFAvveOIk0KpjZt4IbozIyzuY0Y+U8f1AQLXBXVXVBQHTvi7G355JY5c6+V/vwF/d7OdIMXg7kjxCSueCn2k84YOYTMG8X09XNVYjI4LJ+tvTNVYDIFjX2JMNsVTZ2Jdv/Y+ubURYhFZt42CVtuFOUaRuHK5UN4JD9le3dD+jxpJwba3QWA5bNJbW6e4ftaksf0Oz/Fl1lv1fqLMct+kshJrz2oBTU1QdyadOTUmpLxpebldfDparL4er1ZejdvXlL6qF7B724wCDn8/mLXupf07dsofwPT9xlmFZBwmhUmJrUGCNb/G3C0kbBhloPyLr4gKmAWS1L71x6dzt9IzQjHowIhFxGkQispognYdS8OLcLiaYb2byVRbjX03H4a3TquMcP1bFkWlPqDh7MOGvcA5e6MagaXmFn5MtDXT0ERulb9GsWHjmVqZC47uqmuOCTTH1e8yKym1eTsyC4cuaXkk9b9EaUu4gjG07+8mjP0lPypWN0hXxcEGULRNB2eIl5nQ7aaRlVNosYc4zZmCvcVtJBwSueQKmdP/56oBMcAD+4hjStTWohFxdG0KKo8eLH6unhheZ25opz/hreaVxkwXi4q+uL+w9XwVY3N/96vEx/v0jRJk+xcWRwuq2T/NhCzz3b2uSPxMokSb58WiV/SQit32OD9Ig3L+hKf6MuNuD/cfOcKSStSJVlmhL/dXa0t8KHIMu7wQ01OUBNfGPJuEm6ZeAv3GgRqCh98U1o0OdX8JvCmb1TXlsMs6OA+3pjgm9iQCi5m27lYkFzF53jbG/YRo/Kba2XAsQrNavhkN1oL02vWn/oKk47cY6E91Xx/66SqpN5m5qWYS0N3zNu2K5vtDs/DOrDPsUZN9vqA3rHv6Ek2E9vYH/2ICs/Rq2WYhuI6tsiTP6oMWaU4dYuzV3tFw+ETqtFf32/KsV6LfebvIJA3/rqdxJ4N96OkERAI5kYhIAt0bgu6cWbBsAbql7vdfiX/8LyWJGfpEq1Ir8kl8fceLXTCVaDdnyXX8m5yp8KmpRTzvn+8+fJ8Jxrbgt1lBX4bZELf3r+1iPYtzW2uplP1J+Ek7WngLP00aS35UpJHSLlRRu1r+6Bg9qzmcyk/YPfmla0f++V/73vfIZ75UDMRfbgozf8Y/r3ipr22or3U6+47+tVCa6T9bFAe+pMb4iYicW+F//Ntl7+m2yvxfFMVvTmFo8QW4nru0JCrbnX91NcbzqGnliavbB/v4j0S7L3Jrts9zu1vwbmmc0Vfc+2329/0tDdP/7vv7f9/Vn9MklOupLYnJjE4bRtYiqyzDsOF9vSFnoAqIpP170vkS9PM6I84aosJqcahvmTATHlFRFq3USXbCtHJFkWT7Y7x0cMrVUf7sfE5D72kVC2UlVgAV+xFXXc4U642j1o4auPPb1g1Y0SZZEyoVtlqjvuFTKdDGDlqXGC/oikTksN+LtdAar/bHYktppClR3LlAdhGOpjnq2ZISYymYZ6qkOTFARB1d9mHUu7xbj60lejqiWdOcVT8gwO0f3ZodLmIXLwkhxWHos0FFFZW60CBEWmeFd4COc/mscxbBW/Z6kO0g0rCneUsXZlWtSal/YzEqeGld/nNhSyUScf1194tkyDLmVLzGPJNW7yhqu8LjWZon2LVpTT7oJZ7EcFupKZu5sxLsxQyeD83RKYKfw/J1PiOuYhxRWCVFW7PZq0EjcIRREwtdNZVaZd8FXvkZmK2U6LgejK6V+pv62lGkb9oyjR7TUmsSC545touZm6/je18Xp5OFVhZmFzHOXqj0oxNdxIZmJp7aGmeTpwiXDbyEuXS0VWk7MItfR0dngTX41qGup9if32p+KKyF1LuYbuA2U6rn4JPzSS77bcJULJdTF/AHpYF2B7QlXGDna7iUm7XaElYpw6K9Au7iBffqbvzvu93tf5cQhfD1Cul9YIFrSalpMXOFFWFRiBIUNg6/A/XXxoZxmr4piiHUw6W9HX0lryQk/apnw7B/hZr0gsW9J2JXG42aElaFUWst+mhk+TJku3FVLDucdc8rz4tHnURkOLhSqp1YrGkaHlZ6nmhxB7Wv9AsOx7AsHIZHoVpbDRVRtZUiZW3GK0Pjac83mNzd4NBWQs51RuQT89/t3r2sNV0y6xD1rmJS3kBOdyyZiV/QwCYppVTKNaj6f54M7Jkd1IvINbJI8e11ez7AC9KYMu6DLx4uYMT3FsSX4B27Wsh4/S8hNIt3nI/KmvBXeQa3qoZLhelZ9KCZaJCob5yWRsKcmchKVujXn+gUoZiRmeLzDaoEiupj8y6JYSG1GHM/P/7RA0t3359nv/aqEggD+z0+4zCA6i5mrGseahOPWFPuWi3Hzem1hkVuBRxHKe0HcmPmguKuY7tOVa8HSbcxdPZoTGXf71ly+pWXnwu0Fc4ksnlwbkVFZQs875GKN1J+UfMml7j02tOF4xIf8NXHJxGEm9dZF4CGvpNujs8IWxZXhCh01dsl3DOwZpLhPHv3D5tF/L5UDz9UOwK/pbYPQOmgUWtOCY5ZZHPsPxd7K+4Hec0QuPDesMeO+kR+6yAyE27hwP97B+cdZvy7othpUt1JzF3bKYnC3Xr94Y27JQubZDCf0/AU8OALJj7tTNrUrkFdJeYDcp8f7QspIYYSKeXqmo5qe7xF5b5LtjaiaYZxaJZWuNlPaIvpPOHCH1ZhKJmh8/PL1i2ZdPYqA26PKTNaNruxl9jvYN6OiubimOh1L/85uB2c6d7X+WENgGY5bTwoUlvOmOhXV54SNclt0qS43ldvA848CrknprZOP5dKZjtkWIwwnOy5HyVW4pJAlWMAwHKzkgcWPzGzAWM2UL1W6TV07Q5NgDIj1dHdEVJiqkPin/8zbq9vYXni8sY8r+BFE2pWTh5vPspvFhB/Cqf9v9Nh/9wIzGgCqIZo2A8pNjj4ZJvAOBRATwLFIzLGM3gSmCWQY2IK5VOWUO8iWgmcF1hWpFelPBQZpXm0VUlK3+LqiSo8FX/6u8A4WGSEriqUf7weq0Mjlgyxv9yYKfbNjMrR6qCJQkROV9/kLe1W+VKWO7166imnKrbyvMZFlUJia4fPse7jBSpL4isHVBS2JhH9azEYPkfxpvT1tTZvQBC4b9nO2D3J47XaHJZX58lDW/3w/vZJqiCtbNSNg1wm3OSpu88FD1mH6eva3heW7rcVRP0ywXq7oxFq/bzGfgrD65zevo07hWJbThWVhx2sUbmzcc8ZsEzV/nH8QEUPlOepyXI5yuq+8zZLQ0112MxfGbBTvJc0N6/ayKEMssCktR4O4+IB2a3MrB8V3PCZYZo91rFhd5A7spkUHTNQs7BFcKrIUJ1qIea73kKtJ53UwquZGf+6Luz9qk06HOkLMKaF60LhYhdYDkZGRpW7KTTWFbksBUL1Kai3bwndKuo2oXmUkTamegmNBjyWwWt88CUzazqGQqBC86jo6UbBztFDFfnpheV9HAhani25aW8852t1UD6qpRju1ibLo5m4A6BCQT2f82rKtNtD6oXQuGnaTqA+o4V8XXDoCC8AYeylcgqiCpVT8yLEqAjStw3IaYqqV9P1rPHAiBkgd37JVlEEHzKfuLlMlXWY+UOnLwASIfXN0WZZjot9G6X71p5IEYJGdvj2XurAtb92UcKndFcMrVmOuSC29Ym8hvpzLbYsaELrNc6pDT9PzdZ7dgQH/jYs3DEA4bcM9NWgUIwTh86GY7/SOjntHHbx0vulMqpsKdbvOt495+eud/Ntodxh7HX3qs3IgZ5nctFx2mwwITg+l80ISq0vVgWATw6+3XMMjatzVF6b2RdWzhk0kvaUOmVWfwfhxEqVtc7NUnpDmMVKDFmuIZ9+TTtgxjkS8ebg8DN0KEy4lRjtGlOeSKjcvRiT6W7qE995dvnbe1FrGQN4GrnbGpjOdJLDPZiPsk6ZvgKGGkT5VTQLhOXDFzpcd5Ej/oOV5cEWzlhfyDtsy8ttIA/HhNuv5qSZzzQ7ZqA6yLcHmu9BYlLtG0r4e80aNl46vY+hKMQeKvhSzeHBl5Xi2pROsjMiXNNV7pDnbwYt5h754+S3VUp7XO/uNhIv1dlV0quwOPbvkU9v96pXTKF7wCMXXFs1GKGFQ/FzR8l7R11/Zk7lEQp2PnUbxkpULa0/4Va99hpFMbNSUCV2AYRi8K3cJ7GJ4lI9cs/Y7NaH1krmokHOBYNmeUTmY1666tz+ohkruATY7V0pHrSMeoF4YsMxk9pFvg8++HEwZLm0u53xlzn5QvaAr2i4IEBmzLYpFtUgKsYT8WDqfDf4R91HrKCpRitAtTLcRFUeXzWCPWzVajLFue3kjiiWV/q6w8wnHtUiRvMslriFWUBhmyZaNIx2goQTDujIkCGjDfTIHTrYsmc/iKOJTz4XFUXnnwePD9BTKXPfFgd1wiuh83esSyNjKsMywfLgeYNisH3PQza99gUVpcNmOFGqiPHAxp26M9jetAF76cmSRN41taskY2gkblqorZp0f4M6E25YjbD9Q/b3OdqxzykL8RNtj7kpYciKp2ebR/LLgpjrM2aiCnjGySF5BDG7h3iq5ZDzdfLDTcPza3Q+55DcYhUt6aB/jcvmmI6JT58ekW7CjDBEdmlxXCCkZSWl0fEYXqvaG9ae5ljv5M2vt2F0SUouUzjjGUvxOrecPgSDWfmJFvlFuPbiFxKhlYot/WVRzTtx1hpP4vfmXRG9ySO+KnIpG5bc01rte0MhdP/GmxPRAoBYTynZxMcLEw29/vPTBYF8zrcVy8Cobm08kj7wJJUFd1J4GqjmpksAuZ2qhG+gsK7WAiW5DnMwFGu30F6QBCRlH4+AjOxlUbWHFoM7x2qwTcYvIHOeMIl6JWn0jEtWCRZkhO+od6XcF5vESAkqK5pK44/zuip9cqclxZRlvY2edU5CF2fcj3Ngde6ZRZrLzhEpqUsWxagEf1vZNaHGqSgmq8QtVwMhJrIUe4ZiAHj8sfelA5yyuS3L60RNP6MK+zsPmuEtDU/PXQWNM+MqifcWWdo2aAk/y3cP0DtfR7QeYMblkwv6WrZTe2cyFyziQcJfJ55CaA0IuUqbSTeqxweuB7SPyrMxMhM51vYZpYJUzvKy9e9xTHTkp0nEzhoDalCK8G6vC76QWM4qRk6y/2zvs7u53sWx466DKJlohSJ5Ldbtmpz0b0vyYj9HE4lvxzCyUc8SLacsBkeh2j0cpGtRWQytd7u1y7amKxAcdi2JjmK26Cd2TqEKo5hKpjSvcObO6mnl/Km8YrCGNH4HoywfVV/FWFge7+O2mizbTlg0wOj2xQJ+w2hK9ijVXYcaG7nptNfnlUl/nKlBoqYTkUbqq36u3/Zwjjs+3e34G6NBQjzVyfhFVtRoWsQuQnK0cqTCU1Uu3MVcMBYvBuVnhELmCueSBGoN+QIohRrK6w2KKmqER7/4YS+guaXjFCxIXY6YpNkLHbSO8JcM4mBYcXepFWbcb3KRxF95WEMMrHXbruXLR8ekeBsd7r7t73Bzpz2AhsEaKpxXXAy8XKgkTKQFL3EZqdoZWZ7wjaYt4/RBUstn8usCr8+f8U4YnLI4b0ADokI1KtCVhh/R3zXwuvxBGEuEBnco5PWInLW34G7CVONbKZYPRYQuvxB1EYL1ywI6npJoRvQ5mK2xgtoDZdhJ0TaiHcaFUq0MEinwaDeX8d3gTD5mEF46XSECeS3e6RXdgYAx/+XU1x08T0YaSc6myxXGQaD5iMSfQIlTFLsjrLxJMS8ITfyZjEMgs9j4ntYffRZup0xyZGvAw+sUEPYfeA5ftSLQB/gNEYFk5BwaCADZAuwFLZCVgyk9qNKeVy/ygs7IKFPnomya+ZQIRsM713u+iz1qH9UNxf+LFGMkgsmY3Bxb6y74tecpGcd/kPyMCVi4UwidQfFMLSSVQsGH5c7LTjT+kE133tJ+cM1yNU9TBruBkztU+RZEiv+GfrxDs4Czlym+K1eDXyKFBYMwiZTxbh04tvW25P6KikRgeBbxjs5+7RbShRIk799PBzZWAH6mi7RVJq6tqQrEQif8KMEXrMsvzGfqTnAdJjhY1CHvXNGbRC0hhNRsy5ij/WIHMkX1usE8sL7EUZzFDtJo99Us9nHB/lzcPBgRmgklb5qCHkGyGX7KyiHuwABHl53+5FwqjRB8R9uCFZUodOXt7yYVI2NWNrZMeQaf1QWMgjDUn8xX24cK8/xZmthJLSbDQQXtOhUPLl13YscD28AwwLyp2fCiWwTtzwHScdWgrdWAg6CbpuPg5Pf+RXKF3BH6P0OKI97mfVV5Y4RGgYnAS85x69Sm6G+1U09YYjCTUQxi9alR4kJ8iNUgWgFi7HVXX+YhHqkTwOf8K9zFegOzdhNMN39DwmbzVWSDUCwOZyHal8J/3F2E80OoxsFvvqqGrsjLSobbxgUWUqplC+/njWPXl6zFwbVpMy6ReEJSN3nObmO64mahDMlLx/l5y5If+Lzo+aDLL27s5hmF5N5d83oYVbAybwiFVdOlpuzwvP1FMiE6rJ58duwQHQb7LJnNeCTnksVKkKQ51GDnAq4JwuTgqEj+hmuWuXI/kGLKCTtJDfyVZYDcXtcRAMBSC8XiuHxhYvHAKBsFma4YYjnMKTGOF9kbLuP1Bay0nucNzebgmrwNBnSy6EPfJibqGWB20+4jrCk9N2gf5kue1ixTWczzY0G4TvolN/IB2jRmShC4VJldNgtHV7qjLfilrznipyCGR/eD3GUlJTCN0he4Rrpn98Nuef8buZ0ZI03c3htlMCmI8zQ6H9Z3jrAy1x9yGhUkYkdpCiVRitudo8V77YI/VYo63e6udIwfdXr+7exRbIEmQqUVQWsXGAtgSCn6iMQPb2ret4qVgKjnFWQ+MWdhQfU5zG6CtYoZaHwIM1DNAlwcpzCTo4BVSQIze4dWxMhVppUlc7eyBSex1e8fNsQb6BxqDV5KywTEZ33HCtYU9r1ZDuePdOIrjcc96KzH+OX7yDM46/Bw8dpwcTpTQkh7Obt8qqxK+gUvnCi+ZK1Ju9V90lSdhaCu+4xCGkxzjUYzZSY1yt9uPbHcSRoyQFl8DWzgWolbe8DHAg4paUaiYy7fWC7L48tkMdA2UsvQf42LGYVbWCEcVySZ2srV9y1rHF75lt7nzSNrLbYcnQI9ngV8gMr+yf60zuK7RdJ5xoFOAqS0DW29YvWiK88YEu3gVqmVJ67jxBmYCwYhryjD66Q8X5z/94XuRQHiyU3kHvF6Cu6cwxYwXKvsau/4WM8fmm8++3qF/4XrJseWfsQr1lZuoKw6bSaqZvPOYbXuECeRoCQ0XA8x6AMUCrz/4k4PJvT1Pz/rhWlt793m3/3zFLGrGpCRMrpp0RbHLGSDFUSNmoWe0OeB19i8OeNVGuS3mVwJ7DOysmsFRfrb5cmg5T1GSyOrRuDMN3w77i6Q5X7iktnRkPukfV6DDXE01AzUBwSaQTGKyScOk52lqr4sbxAEvpKIBHNiyJtSFwiB+XuCjfLDvOM+Bwu0I2m/JZUzINXa2cJTJLWUxEscMB+b1hDnsqc8qQK0qbfZT5tN9QYzO71F/F5xLIVkbNozBcBtOUoOfyEJYNfymrAgXOcpPSS/ybhQOavRiU6ud9JdldbqfOGFv5qy9iv656gMe3TQ601qFcZQj0vLBvb/eB9MhPf3H039WwOkmaGaYdzBUPw3lvvEfuUJH4M/cyor5YJv+z7PkHESQ7dQcHHf3Vs2BxIN8NEhshXwBNrCE1eFkdE7p3y1a21pS+rjbj3Tu1mNqolMvP/qES/rv7AyZgIa5gGQxTs2A2I4SfLRotWuO8mCtUfY5WAVraeYu2fF63VrPapKiQHaJ9YEyjJmDmszH4lgR3ibjnxHrAal7ZMwqXo9w2WLh8pe9TeUCJ9ujmEd1I1HNOeZqzWy0JvDf0iUA5nnUqBrATmnLgxdjz90k62C8q6NWsDqTrDleRV+k7qQ0Jm0iKENxy1Gb4fD1EiGreTKflYn5zq1TVny4ZBphuKu8vRK/2dUmmkfP2hy7nXJQdfgi4oB3zVsSPQiKo08sjjLSImsAmoioEi61IM03egCh/9ulDWbGvcmx6DhnoIsK6kK8deHAhP5ItW9cblvHpYlVWafpX+sk3M2YnTGpMR1rMkivBBsIyXV0bemNQDBlNncwpYgeooJHS+Q+X+w4vTYup+wQsjU1FmWxn5xuu2XTmVCakSIhYxQIFSaog44Sjl+h1wrUXGuIIaNyFh7DpNRjjC1uNgywO9j11S3FKq9KWLm6EyOf00OwKYkUoif/IPn2aVu67AOTJrJ67kckqExeId9kwfYj1gEK7G1G+R5o+FCOBtXdqHfm1bQc7LADg3I6iX4qgEnUO60JIE9qDTNCniU+1IXHqxub9WrIUCiLKcrJd2wsmtv9krmnLKNLejvBgiR2oNV/wQjxJ6eYsGMRlhLrcGw1S2qI8Lv8w9uXF1fvL15eXVz+4fX5D99fvXxxfvnjO4114SGGe4MrmREpN4jJ7endtCninLEb72TzTV6MGUoiJ8fSyvwbanaczz4Uc86U5RvASc/ODwU88LtiNP2HDt6LwXQjogjnG7H3PxT3HYe+QS/2aGT7lHCJE1sPiXWj/jCq22W/qUpX8+glXLoYuoZrd6yEEawteRhMuMRvZ1VnK6OQQamlVSiE4FPaySwDEbwYcNrXHV6y6eZSGGm9YIgx5vS+IHUYMQ4pdK3JykRcJ2wpEfz48Xh/8gPfyUS2eAuO1nP9gqa1u0zBMxip312SG8USN7R0vI67FDuOchN/YcfreEs/R79rqrS7e81+Q/8Vbv+f3mb7mIHqk0xn3FZ0g9PoXN4So/sJQ9wIjIZDXcdxt3vU7a+yk3Avfi+BmguidYPDCedyVuajlq7Xcr4cBa7Mlc60/cCZRmwyLljDihAGFBaDO8kddv62/7BDXMu7cdTtrbLaQhH4vYej2QwcDCBu0gX2jNMvakzjjC9JwtptxxmjAUNlcO/71pASRfgYu3QOutRaVzOwuteL22Vaxa/UA2oayQlfy7ty1N19/og90Uv2tJYP4zBhkIeuXTIcTkejTiYIC663hb67hEHzuGXjtFS89brYchc0kS4ZhkxB8JR1WtVk68Ks5WWB6QqkLl2qjQlzlmTHOzanTask4RMVXqDE/AUZzpKSJZ9LGrxuw2reRdQACNFur33qntJa66ytpRTArK3yjjrN9Pzs9dXF+eXLt+9eXlxc/f7lu4vzH3943Jww3WvvqMtL3sWji1oy8pJyL11i9wOjipq4kuP0pCl7amdmRh+1kwjAImAcZyr8jW8ZVKMdAF3QMSaABjfaH0JzRoA9E59+cn9X0QP5EHNn8CARFgoFYyyDthq2SGn+ZADbxgx7gzrZ9wEmPdjn6+1ye0t6Dx45hzqMkm94iNgx5PxEltPuUXIUpQn/1i2R6JjhdcNu2R3gBmS3QRfUKtiK8Mz1Qxf5Lm+r2QPeZTCiLrSNoVBQ+54idH/V/sONk6CpJVhlAMXlxLxaU4nUQ7mOmRopwteL0QfNlFVf27xKbh+buPLIdgwA9Be04vf38lbIkawzJq46BBSwU4t9aTppnUt0FAmYUf0ZPlHau3mD7IGQSy/o2POrCow+6QhdZ2loeC8/DYrZdK4iUU7UmfM810uc6QycYVYBLl02zj9d3ZfD+Z061zR5lmG7JG0pOkCShv1l9DyBBQl12pa+5Ls15JzEIfIgYEz62pzpcVfs3EAYLD2L0kV3MJ13pe0utt3N6y57fdMn/Jc22ji2ngVO9k6VcBsFU+fyiRNQf1aBa11tQ3pWE+0YI5DrEmObfD2tcrg2x9K8MwKa7cis8YMWtoVqNob/poyKDlL2/wlPEEU1rT8RjtsjgumeyjPcFQSyEEkkJzLa/lvSO+dm095Xn9lW1rlA0CHp9HTK8Z/OlbadPebmUZrOLusBIO5RCbiG/2KjpUvDgBtgVs+76Bl+yvXy+E6a2lVininbqDtCdUPwPi5v+n7G3DX03NtsE7EaoKtM756xm2Se3z5mjnxPXfTGs7IE1+QMTBRGlHZdD11Mf3/KHD2+k9QcBTOksF6akwFy+rCOMqhG1Qw9wRL1i451S+wvSXCcC/Jd/cD35CgNcg4wvXy8GAswFS8uk6ynXCFCd0pQ15QKd4j/b001bne5Rax4kQ7pb488L8oZ0RWCGC49cv9Ql/cPt2itPumArG61xYLDaVnLB3QQuKkS0/J+MsgXiI9/V5CXe1C8RLP7hHYBivWSF0rMo+1HXGkT2NDQRveWvB8PXeZn7i5mt1hS9PG32fL2lszUWs6bg0RquM4UExPtCFURKUJvLwOuunbHMA5gLZ/OfgIKEt59XJ4D016ROR2OsbiWKB7wliMWb1uyWQ/XxQ3urzpIr9CE5WuMlS6BoHHmg+akFEPPBv7WhBpR0jzKSOp1D+H/1UUxrrGyzTUIiw9cXESFJZkxQjILcqWbT7rGvH3KwfzFfS7ZjGu5XvYTYYJgEVT9dLQBzWTRlj2wZuetJ6GB1zVClZD1TTTuY8QFscF3scEutkhuCaZVnDvRKP5blZDsv/i5ZlfhE0TKL+8zdR0zhFqy8mTihP5a8gDmYs2IbdhxLiI8OjuIhxOH4yMOyrQislnQ8EkVlYGCoY7WU3cx7lK0+inHYc2WUx4AC9Uia99JzkrpMrlYQasXtXVU5SQfDBZIou6uT9FG+HRqupioNd0czaCnfP7TOkrNhg3qegMj0rWSqGs54GcXF4bgh4KSQgiGdr6icwS9TylJNrnU5d8ty/Qk7jzJwEGWKvqbyBubS7+sjbqYw5gcjxf6e9BR5AnHHhVvGA67Yh924YeuZtteDa5NUEdzqp4UfnhcDyt2Ok4gWhwHNie3wYpu5XULkie8/N9eMiXbI0M1ZGKhcYWbEkue4YdwQ10mKujOkNF4jhedgAz59yfN4y/oLjmpIjOdC4E3H4uN2nloECwlJrWgN7V4Ac21gTLD7JEzaTq7gj7BgqkZpMXUO5SgA1tcXXYomVKP09PIqi24k8esyF0xmtLHsxNlUdZ3Xedr69KnUagyIp95yno8vbNVwlzQ2YGvyGAFSwKX2lx243ZbvtMFdxFmmVCX6CzBf29nPzr45DLKAfaYGvL8GOfYQHRFI9Pc0RBLC///bRQrv5d8h8HIzAzTg6GfKa2QHaynD/a7/Qiu4uPKU+IHRKJ4zo1ZPr8dCeUo85SbgncYvumw3NccEgFgavRH090eodYxnqHLLOldKivFqlMXIQ7lrLhC5tsus8R0sRQU3qHy27DLFAvU/dUTFLxfs/fwSGh4fzEfX0khI9GAmdkReWsa2JhOG5Fvb11zvp9M8iwnYYbRFvlj0TCUkzdjQlRHYMeMBmy9USYzsX8sSsoTz0cJnJE5+kQPG7NUVclcJzruj9NiG5KoO6yKGqwsHKJBiBaUANEVbkeMTclfippintXTFN1fq3PcK+LFFa0faUL4Pzc3aFvJnF/hfF6Vk6tg4ja2so2rK86Qv6Il2Xj2VfNYNzN3MN6EPY5ym6uTXph0tEXG6mA/mHzW+YeO56ZfzEaPU9LZ9WthN2VNZhZSF+FZ4yeQjr+LX9F1GXZP8qf+ov5Sd54JfplEx62QfEPuIjdtxB9AcHkNGbvVUFZDujnoXniMiQxyrKvQPlJU4x3LbgrRYJ5iEj+6jzW89lqEI9AXZBLZHGIxZFjdEjT95HFWDUM9z4xyDxURLv+G2GfCXyvx6zIIObu2YD3AKEM02NuZXqePkl70RldbfZIMajSRml3HhKJkPtEVsM0Y0h48gfmUBfoMSWvGqbnJP3BIAFXYehrySiU0Bi3fZ2KCnpCFfVCP2cVyOrEJtLNAfE7BUsWqxiBE/d1b0jZ8wg5+XPvh/DoEPXEFotFFxPT0j0sHUWcyNSrT0yziCtNOzLrZ+/Olc+pLHyDNNl/FjnnFkjL7qEm2WdxuZ6/QSX/37DG7MrCz1AwjhvSnbNAlrbXMpR5ZJwyDw3rbit9Zx3O/T8wXcQ5lwAun7JaDhybNpikMRbgla7Aw2I98/sQCjJaI82l3ovDZ+/NOnGqSGo3eGrYYqKKp5brppGv3dlxt0C3Hat2AZTTdA8tPiowgvDBV50ErntINu1Q0rCusdGhPChqui47y/lOO6K/TMWlZ638uQ51c3x79xiZn13gvdrEzRDjp1D/hI39Rd8lLNdhGWPWO0Ysa7J3fzdDlIQWPR5xJxiVbK9bfhFuaqKofMXGIxo2AkiX816fuHSoHpUY/WgOhv17zqYkhQkdT90/RQMMhM4B9X1W3lA419fAjD200oCFm/JsQUVZFOTcEUDOOjRwUi6mG0F0AdwlsiVFgTrsnqsA0aon1dyYsVeOtobUzx63q+Xlr1KdlyzBJN2oBxL/ICAExIh0ZFk8gEppTYd5op+DtUA7yyagagF7wp2Ib9+sAJv/uX2hpQehjNb1652jv+d7uYQ+2NjGawGIPK/a27fSOnx8c7h4cHO4gxRiaTq0X0a/f1ZOkBgoccSZQOLCG+w9pwbuIayT4LO3Zrj590D16ssh4Sl9rKOEe0ces2ZWkiDNAqtMOS/7lS3DU6x33+nt/idVudvXI1SbkK4YDULsLrqenGFPLWltnxURJNOVNlMHflwa7oWjPpPsSdMayvguKyn2eo3sEk/x89y9ydBtdrTFnTTygECpgxe05VdR2E5fAQVkIFLvKGI/nCduj9kkjzCM0VSSJqRw7RfJ+vPz+guJ4ChBkz3gOR/2ROQE31QIUCKwGU98VxbzukkjvstjugqzQzMAn5Qis3fo6q6L8lKamQFDy5GPynllDg2RFUdSq4klwj9a22jDtBhnsueGMFt95OyMovdTzQ9LKBTKeahCKy6QKfITdSjHAvGHPP0KEoXUraJVqNg7yO9jlxaPrDuZP0dYe1fwaW0OrKXenWAQyhQH4xXLkeQ+EyOFB7y8gsqKu1pgB9gFo3AVmngWC9zk2yaDTuVjePem9kwHdC1m46oh0xGEfi4ja9e2M/NkS6KuLZOlL218V9pbUJJanosgvCjEJwFYIwSq6Dl7qSnrq72YHPmE//2pdpwPYwwdQtssBk8PBXz5lQjW9g+zTIBVuK64lZtHxj4VHMOxEuupyT91PXemJOupCR6g05l1kY3giSOLx/bS4hALbRjbR9YNETMixBrfSoKyLNOhhuYPK1QAhk/q6QGAX5fpWNwxLwOFNSRlGV68UZn+KfvfkrtZR/rQQS0j8TPqGugmQFdD9ruSdaVfaagzqPnGI7qUuPHW2Y4Sj/uBN5XxS31PFPoIEZvVi9rHgnKSbohgS4oe1rHLG+FCf2MDbvc1hZqkYZoVNvDFM4ciP0jv6qg70Y6r7IFF7562joqqs1FmQ++Od1uzEod67plcUBF0uFdiVEpyEG5qy9j9B+pMStAqSi093af8qva/Yem6+pQiV6Yaresisz4MCtq7aqEtyffJEqzJmevbSVj9T+rZW8C/0RD6lu3Wmks9KOHNanngxwcLXjFtilz9e0VFBHRN3WT7N6ywrSxGs7+giOlxTxg/vuuBqBOQ/GgpdJ4aatGI0Ryvwkdqpb1azf5RvkUfY7Ys/lB0fT/EiphsK18gRudKwMbd7INw8H4orqYjgeGWdeno/HV6fnCBbNT6XqpraPt+Blu90+iXlvqbo4iZVgW1P7+4jhpeuqeWx2v3XGBAtFOvZwkQnHmE2w4rJvyyKReHy08jAw1I5j7RLsRvupTuo664224WjNV1cj7Cc7BPs0ZWttqLuVyc+7BPJZUyYPBwSzTQ6zhn623zC0aXyPNe29oPDydfNt9B3z1SKYXGQ5OhXI8R49BFoH8PZN/lgXs0eTk44XoR/oo0U/CYfQT9K1elKCs7XDzUaNrFfuZo8jCuwat1pCZQXQcuzUIjmzC3k9qCm0hkEFxw9cGVbL1NkpyL+fBr5U/CwkuQLZt6rFm72U5P6+ClNonxBl5vlDi5qOMOL8bcRyv/rHfgrl+IoXJHvjqYALINcSaA9Kgjmvpjq0Lvqs1RqdrSY5aM0K2VMdsq2J5Zb2/TEpEhniH97tjTBxLWqZaq1cEVgM4Z8zomyCAZhS7WY2GcSVWOSjG7zCCN8ScjupK1lqYlNVXX/lDs4j4Y3fEQEK9hUUtGUXKoorCe9dFE8/ejrhamcXoymWNZkVhbkLeRf0/WNZRdzyXs9O6DO84Ejzs9qls+wWhFcUnhONRWPZqOgIBYXm0ckx7SYUIkueBqZKWAI6Ssq7FD5NdOd3SxGI5dL0MqkKbVLtJia2SvLce1yADA1gFyAc2I54DJDRAkKMvJguy0TSd72XlV3neEH+U2MVgdJM1xPx76bTDUPW74V7CZ+vKtKxwjxD8VDrVHWW7yqZx6Ik7yGw5YZmcRWLnEIIgznBvaaLwtT8R+JvjICNzsjWmaetTJTSt1VyEL9csT6ohz0XF9qY46UpXOQDcIvS6r+wNQwNlWgQzhHGpCtHqVZXpJlxvBpdi5hijLzyzaK2SlEWUNTeDyYCpYpmJrlopQfEr63JA/ezmLi/pvJBmj3FyELRu0Jc6tr9PDBR/0cFZnUxv+P4hpE/qi8pvNCLjVBYuAe0OoNMhnymCWmvC/yD7IIO3IYG+RSeO/O7zijHRFvXNN1LCPHhWvurxpTKmBRHF0g4539Y+8nSF9BKXvUGrP462AFNp6WbZamn1PjaCbLcMN4BodmKx0FXHUsp0K+GJbVFotenEMstKYXY+K+Poi5fEQPYd2jQx7TK65FzzUQ/V/wEvlEg96EkzeDTYcTMXv235YrnWJh7dh3/nskTiXoVi9ub6mCR8mSxv0d5HN7VgGRf1LSpJNXdBNX6x2qBKyMAxHezCglX4vz7ZM1qWKJHJid29kF7scS6+h2PF20Cjy4ok3+L1ZGm+ENMooLXFCZxuy1HJwaj6QfHV24mgWYzqf0ZDYRb28Axl1++Ti25nCCtfb1TfmJFZIuJXuI7QsXrIZiU6U45RDmHy1CkvWgsctRSRro9I6MpGnt6yz7hlZdpeVQb6XQW88ZAPwpIChgKvP2JJw68D5SnFS9PyWmmeS4YrNqSnxYYAx3nu9uBNqrCsoBWGQfyNPhEiKkuHi4XgmylqCcJG25paXD9rBWc8rreRAr+qdKtollSagmENMpL4TUzFR2wk1dSpLN8PEjajv0WtkOB4DcjEzVzEpBvPfTSomvEtMA/vLU8s+V113ijScN4d07w4QOA3bkHKvkdEZJKk6TF0zRBO+KkarZ7l5lU5IR+O6TImXaGzakSbKwGS4K1vpN5ROv1N9V99ik1H72p0/+S3noWHRGV9MF4vSDdzumkqLUAZTf28TK6RDr8OD6knyjqcDsgnAqzPOivVMGnUkekFqWBvrF9o29xs/xa5BBdpgxZ/jLN9+9fPHi5Yur9+9eezJG0nRIMcZ+vAXsVh/vdRMznLoCGbj1I7A5TgjdJIqobkwri+9wCcRGidryGqQSR82Fed7WgQ6rQJN+Rrpe25GK3Wr0ScqmpNsnKkVJ+6z1oKZbtThhzWP4XN2oPfALeyCBZiszPrE9VEsSb9SuZApocMWcAY2J3SuNEDk+5pFzC6hdOv4wwTNPF9fXqD6JA3o4g+Emrk4mOPI2iWatNB+lfCufvrUhsNm0iIsg52dw+5KyxhqvBPW94YT6BAj98k9kIJI0sM+ErUdRODkX0ofEXEz5LwwePrhFlGzo5gfCkwM/JUjpQzSNoGJh00zZ2AzZO1uTSNAiox7Rt9jYNSIFSVZEWkUsKGRvTBZgD4DZiBKUwhrM1yUXkvpX5CFvFERuQnIouWL2KuvxO6whKpneSbElwC+TViT8U3zx5m03g1NU2OkrSUY4+oXw8xs6+ObLcIznhbJ9UDw7H+Eku09pvmCdOrKGVi3VmSLUZvPdDTRXiKFW9saGqVFHXPKWjyW6P9nW4Qf3Ls+ysxc/ZHcMVKA9TV4GBI4nXAX/eGEtuimoxXjjTQbmulFdkJMHYUfdMIEjyRhaoeQpifz16mkKzhrdGOQ2FmrHWXZXUK3nUtYcvjm6grgRnWb87jLaO5b8D+t95WCsBhMYDjdy0HtUOqHvQdjZki3kW3cW++wjgc2NDpqUHGnFy1VNy86Q3Y395dH2cg/9Hq3s9p9P0Shv//mlqhRkyTWfe6/Kgb+zN4S7kH7baDlqCBK4R59cqFDjvG+wv8Hs6JT+d8WWvhT8sjvaJ/c03/MAPtJdpmwbDUCUTN0W4XAb+tAxwAQ/YR4QiRw+GRFOIqjkrYSQWp7bVW4j6Rv7Wny0w37BQ5Hj9pvcRr1RwUc1Ba7YpDl9e07uVA4kXlGn5E2napneLytVzJu7nm4Ykm9GAhGEAq4SrPE3skpE8m22dEl5ZdWQGTbZeTgtExLQvOwDmzDzbhxGRU2/ZdsVdG82qgaY4qj+BYt1c9+CvyRbdAFXV+51aHlauAoOlZnb0CdwTTdEIGn7Za2XRXrckneB6+WPzHXhvbfUHH9eeqkm8pnhFNBrl6bg0xtXRdtFEIjEIdnoTGvsmAbQL8LcgDWra0/uwqkI5kBIGIdJjdzum5FHxCAMZ/5H1hzbTFpbuBLX6Ac0MSRtbqMBqkxY28j1QGa6C97yYAy8od2cEjUudf70cEbK6Tj/NComt/O7jSW6kJKikGVQs0aszh52ryows1ZLDKNC5Oa12lIyHhtYZXPYv7fEGcoxXTFob523joQ8HVGV+Jy7jeb/+Yuo7TAxO0ctyDrbWDcHEQ/6FRXrkOitmJjRAkm1DvFwq2YquW5od9eh+TteZv4yM7CdHzI3HJql9UWbuvqI911dUXEx/KmYVQrrww0uE7riNT6FrU9LvSvbz+MeX9G+PZXj/IGdJI56rNWFH9lVWKGkznrbe+HN77tDzYE9vNkmqSHfvz/fkurHlHauai7lFbsA5ZaPTZQY/pk3TvOz5lW6sZiNmlrzudfXosfn+Qw02OYb6IFJPn+KAcKyZrd5eFprRl5bbQCkhCIqEvdHrLXL+RKtFtSSGiZLw5Lk72azVJnT8RGQRmYSVEdfTLqTAqUfuufl+InsY9f9ewqYC5Nh8KEe1uuNABQfVOvXHg+r8htbM6hSKfeeKgNED82bLlbTZyVCUKwsaKihzVeokraOVuopL1MxvPlrbIJ/vPCPvSBghpWweEG6LjbF7U6PiZvEzP2ZP3J68fLNF3g1RJH0r9FNXT9MBnezaqLOVp62JkTEq8EU0letY7Plft8KLn4YxoT7hh8YnkHXGym45sdn66wMDrrbogXG+/oyv8aQJYcmE+IkcqTETfgSIenueK4sJKSWuBIYbOlXhAdL/Z/uKEQPvityBKaBbYoX0JIHJ9UVbJV5NUAmroAhEKRS+hahvaQzi4suf+A4mX/6O/ZDiP8Wm6QH6b6peV8mm+Z4bx0FkU/dThZLRRJl8sTmxHPGtytvFsH6hDZecgjmSGxQeAwvyQ2n3dEFq9iDxgDDBoLX/U0g+NeJi2A2P1C9pq+EeTCv62pQ8ibhT9KxlBNhhm4O4R8vgvURr7aRZGnjI6goxa5x4/PiQuiwNlZ0f+TKmsqS6K6uWl0bQwROsZchkoU8LHd1C0PAXOOwCdfaWyPfrT8U5JzqvmAcL0boe4dJYC+av3LtAe5v99ocJ3HR+CGl4etsUKlnKp8HtsM4igoI4TzrwwwuLD4NCgQH7WabuB8ieTXL77/pzGeLosPnld8iPoqNuVoFS/Cc1rnuo/sCoRyByF2EPjRLaKQ/CwbXo+pxBbUt20E0+GKKAJSZs4EnwywJ1bHHpbEULW7pOMZ5evZqS6vPu5LzhBI3RP9sdwishCJ4DlenkI34Zg6X/aeqEr7zAg4ZqAY130LS2LyqshGJPUT1JaRQvC4rOqwjo81DWyuxTOMlbDTCtgspcSrxpSjnihcjG03JRz9euZ/iJpw9wlvAuG0QwO29FwOuFb5iDHCsHzDhDf83CCov6dh1h+K1MNXUcW8Pk87nYOelb3FyhtNFPJN6plIA22zzpthm5jXPcbDi8cBPqLvEoxE8rU/S664KQHXD9XhNiQtNr3THWLD0gm8guyntjoSlxww6zgHhjDolAHqRMCktxynSNecfCkzAKprpJAYJzPHlRBUnTA3QMsfN1XaeRloDMV/i/ZowKGoC2oyvr6Bdvrnhv6WEvTNyorsTDLkLwnI6iHcs8CZ+WxjLDnYhQhnmSfi3e/vHFqhs8zkyXgh6Tsn6OHyr+EcChkrAo8c7n7D8o3mRWj0vGBwtf5KaPc3GGA6oWo5nnoKGWbAo6cAjXkzFR2nTM+1W4kyCbh0b64HGYFEDpGYY3MtBS4stIZ2NYryBhXlIYlGcheqa42ew3YP/XHZ2NVk74O4SgpOPYLQaRENzSC2XXhiBQ3DeW/NdDSFoYFLit5oJs2PF/D7FRKjY0VGLPEIVKAXpAa22aFzoC+/SeRGF5nhkaKbxDN4Jmsfp9JHzB0V9PUYfNFm6+NbtCHFettkLsDRZ3KvPhkYbfcNuvG8QOwhTqT4lTH5FngtzhLUWgC905woeqdZuz2ajQQkBJP1HF2bm/MBTVXd303H5WiY9vFuT70fb27lE2FaXoSQv64QT2gLxigEs82jJW2+bPFGed/+2omwaOOq3qOEI+t2f1zY8AcMQNAFZRQjPh2GCTL83qBaTeWD5VCaLrfnmxZyDbs7J6WWLLcPuU+m2PKxMSTJri2qO0MzGosRapGQVbuxuiJ/YQ0uTC5sUEnWg7frzs8XLoC5uNAMRLpqbdMLUGIMeWzSiiYlZ0lUv8om3RUqp0DRS4WmNs8zSjQvGG2EsHL12gqeIsQCxiLodVdfo6BuB2cxCCFO6mF5/FOsK4lbBqzbwai5RL+I+MUB7enF2ft5AeCB9J35CFKm11ho2cDHNJ2V9tyXkmlvZ9wUauVugIs3mi1uwmoqt7HwOFw3WsoWPerEAEfkEYepXenf7eQpspHfLz6AFcUYLXTMh4fzULEKzxZZLLSdSaCFq8Op7RDGXbnX1zRQlYIUCSZFtTslkJa25MKQjo+tvhJ5IbJcKqXrCTHKBmMC0lwris7ByBe6ZMQKPhiadnW8UjCQkv3Q/rafgeb+h/OfbBFEpv9g68WpjqfLULJmgBVxcxiU5ayLZWlecC+ekOGlNZOsL2qvgbKcsv8VSL7Y6mc8uXhaeE5XQ0jLdaQkNGpmYkZQuNjLWcGMq1pBg7mpJdI/zICwrvifC+cQqmBfC3lH/j/7okAlN3oTAEZYed4v+lTtYtEIacOOdDj+iE6xRajQhWBPvWrbWgCY4LdmU183zADdyrti08828HJVjIq4cKm9HLQA2jNQhFSgfgnAncsZd49bEmK9D9MJ5Gj4wNreReSp0kgRYdIEb+NW4Kn2CWQI3n9LRcUla3APqVQg+INEVkyXYSsnqucWobZMAuBHTkc9GI9ZTHJAW7bFlQenveHeqyIiMpL3GNNd8tBW0ToVSiYVBMsvm96VF1dl3mGUejSD136IxL/d1c2uhNO1Knm6Up5kefzOC00jzCtcrkoHc7ct0MP7UZfVKRqSDfSdycy5T90WebU8rhtw3/ThsjblsndRwY4E943sLM8HNC52v6pOjk45QD+O/Dk46/e3+9nP87/2TDu4N/M9+D/6+2zuiei17Wf9kvz8dZ9+/ucQf9046i9mI3oZXNPUM3esYVa23wyQ0VhCZD3Sb+tr+UznFt3vQEJYqRtqDe1iJ285X5UkPfjg+6aBXA8+ijJHe7nz1Z/rtfkqETPDv/OT5yb/SwPVZbFOTAX/PD9HvaEZ3vmq8Do/Ddxq6FPrT8WGjCUWZuVvDXdiOvMjEcmr0t+OtBXsaoZHZPdwOD9VCCg1tf/nFl19gUv2ZNHbpryBMqvfsvOL4miqCD1+i8YQPImSgZhQ6VmTBT3h+0uHo6Kiij+4d7B/CHOBm6cvlgFvlyy+y/+R3oFIg+liyC5w7q5MSK9zpP+VKaqJHhK0RzVE+VYmFzjpnFQ/h0A7Uz0ROR8a8nEkUk+8F/IF7fYXgBNIH8BDczkz+edypZQSglOIHE0KGZpd9yFZDvMk5qbP97V165a68vdPMpuVdw94hjW4xm1bsPMypazQg87jrBlIALxzlyNGt+CKv764rUJdS3eemkuW//uv99CPnCGAKZpc8z3/+s1VWmAgL0zNdCoNnGmi2LJl7Jp6Lr5teSLhBB34IrnwIaLS1uO/KyQQhoc7Hme7MxZgXIXTNj6D29dEwm5UOp7JVrLkV7+/KeaGl34tP8CIFl2B7llIqrV5cyz+3BMtIJZHYgGRmAYmLYUEGFHgi+Qk4uPwjrVbEXxleEkLDasF/wXGwFiWbuGtsSPZS0V9nuST4YyhxNp27CWW8h5Ii3RUPXG4JbBHv+1eJt2X4z8xWkCbtZkgNrvOS64rOYE87H7JGCOivmS4PF7kXQUETsJVFovMRgqnzXT74IK7sM6xvFvX/ygeteMKHZQ6CtG2SvSkwzVXFsh5AhNDyE3inlxqFQ8aZAtTYj2l5wnQsNmNdRse8DWzUcDEQ2oXEGgTNVR9qTQnlM2L85CyBwt40wkFr6yJO5PzHc//3fnbcpffrr0x6EMrUdz0DrWKAhaDYEYeocJoIlpyjqpoK9RNXCWXv9KP6TANBmOyFP9w3t799uIVx+7keECotPhmMFkPFPJHEQQtCSiSFPQdKfbTZhJiMFQrcd85NRpeCwwZSippe2ewxqB/TjzQO12NdoJta7x1vRJHcI9yNrWvy2NbxqZLcBdKY5mCLQGGCWN5L6nIU3IYHaClG94ljMDxjjFyRi92Ft0F2l1QYGB/it00wjiWdj+YtGYSH/z3oyfDFIv2hcTanaD5+d+G2WdK+twGl9fjAOUsLOXXyqZwPL63vYXfPCBK9vk4XjMFcdIgu0z2IsmhOzFEu5t04W56AGwdHCEzOeaLQUlEMi2Un5bq4yz+WFfupNSooe4lKXVDE2C7ArLiFLx3hZ/Fslej9WcwGbTMcRNKTk8ubFsPPjiFLPxRJfgzedaKHFHQHLLs4JRo8b0PwhQz7cItWIHVSmLVEHR9LpoYX0q0Ev4eUzrQago0i7w3mVLPCZK8Wc+4etRPE/XPBipi7a3ynuSObkPKy7W0Z1R5XC/7yXZGj+fTdoqSiw0y+Hq0IdHbHcRVNVrRCUdMf6bn5bFE7MUfLSIvmPHNLRgczMi0EW+YHSvuqMUyWP/UClLOzaozK/7KhF7hNdEiO0INMvmtukPZcOaG007gJLdTJO4COevgV6gBh770KXY6y74hHb1ygtVjWY/bDFDNEFLD6wLofZfGSEin0bfjba+gs+4mFiSalmLRAx/JjeGPCQdGqU0UXtA6G33T+82AxQ3X3Cr+/YzV+JWWhM69fyyAugjY4JSv58Vo4hr5OsVsgxWCNRgLdJMy7r58oeTK6k0Q/Z4NDdBrfZ3rGo2o10f3kbRuT4fcgLNFaQY1Pka2i1jaVoTey0fkLcc5IepOG7XhKkGcY9VCkYMP+3MPecI52XnqXtY7hNVV9qYW7s7yZMUcdjOAVGFM31actuK45fbgukDOOCH5AQVYuNCG4w0YIGAPfxBRJjxxIU6g4clPdU8PbwjGJYsUapxaFutajV6HRMd9NQeNYfcmla+OWYLsK/wn2FO4bY2iBhQHbx9pZy7ehW+hBLnkUGZUQFu5OuoKRcNnJx+aKm3gdf1DO7FDkQxf/PolG+Ljo3fMXLYMDXft2Isl2wYY9f6Gy6tc3N9pOqEKPO4hV5H8gM+Nsrv/AG1NMR/MILFv4gI863RDCTJLbFCaipjaD6skp1GIsN+WkMN8WIBhGbipMhsyNc5TR/vXjkDw6tp84D9o/mtemjaW3h9ET5nclkg/C5DxYFX6L9heHE+auhn1fQud10XBl+D21dIXknc5bb0zjIlyMSrogL0Tx6Jjj3HFhrR+FlRQp5UTbQcdOMcyEYJyr47iiYYk3lSw614zE5fvJD4K/8txrDB1ETVJDvDCiBSoxGA3C3Uy6KnxcWWFRjdetX3LH3FdBtAPHgrSw8F1gIVsNZitc0yKAqYrigxh4SWgcFDO8lLJBORssxhi/Haw6XDQZarNbX13o0RPQrWybC3c1fv/+nDczghsJXVPd3Bi+BN1L6g3kpN7cN7ne0Q+Ahn5/qkq7Jd8RSxav9VI0krwAPuhruLDdiXSKESbiFzOll1s1QtJbcofT7bxB5hEs/md9aN79oBfuoBg92oPfNgSZYt0SXrzAX4q5+x49roOcHd8BxlW84DdK3qyNibObYrCi/s6Vvk2BFsuvOiMmpXrt2evzbBOL12BHpEDDzqcY2jO77Tm0rYMfFoMR8cUz/GfpzDTOTuzVDxRHrRGtRqOKSPzkAbLfzsqc72maPdaFnZuL85ZpKVcq07RB3uGiuI1BxZIXKFWI7F7vIVR7OfSAFHcFuQVyPaC4SI/5/hgs45QmVySymLDNQv3EE2Y9eNjk76pxsfMdunHsPCyfAM1yUuyabHxS8wVXjZqHnVeXm0JaAHqI5FuwaL2KpXz+iEE0poZ82nIEkA4XfU7oIEx6GBZ1oRS4+aiuslG6HRWqLtZMFtlSDT3aJQxXM6ITZr9yu8NR6gVuZHdFLKYIcFlc0+ytsL1YflpEvJCzD2ijD3Vr0F2X8p7ryoH2Qpw+JEaIWcwcFvrjnfqVcKKXrdSwgksMXuMOkNrRHZ63PvjSCW8tp0jDMWL9vbKqMDGJtfQZKuNT5b/jq5+ZJWH1UTsZOVLmAa6BR41KrOm2mICVjtPAM9Z0Wa5aCk9ZSRIIKQqbEcq3pyIbFS1Dx5YelVlnUkT+E30RSCdKLX7Et+fkgflJuKlYycC/HG33toItoZvUhXOpBDyvSUt/DCrR/WW+fWX4kkrG1sXQRlJMySLJwnW7j3/Cl0iuzPLklR5L6Bk0QJQ0cp5CtwLZEahF8PZEAe5EN2usLpfbJ1avPvXhlRR5ua2noXY+ZB/+lZRb2YC8NCG1mKtYlIrIplQLTq0PhqVGauP+qN3yR6TXwnAqmbHs6+Vzy1k6tc/nUt4zuPuWDi60ZBrpMbY0qdsrGl53+p/ymja+ToAVW0w7SyDzlplqKDVBrJtGVszGBJEXhp3xlDcIASeRSiJ7cXr5UkrZrO0pUYwrmd/FbT54EAnzJp/STdoVC4ytQBZNaAlqniR6a1S6+IrVlE74SH+NTZ6kAy2rQn2SFAlvZbcZPOQ/YHH+koFQDIXpCyyPwTCh13cpKe7+9pE2t/othJrtbR9u76ZfoTkSWnoiFlDVIRbnrUfoN6PrWT748NX9dDzq8ob/zYz/ZI+4v1gldY0tzJlhXZAchdwY6F7h/KX9e4vBjSQydP1xlbBA0vO97sCwiZ/rK2Lsv0KfjZevV0q/YoVuxtz+UoTe8Qdhji6cXb+JWjtM6i7cnPc4jyyhiXlOBUOiF0ItX8+qD8VEVAXKwDIKzFpz4RfqI5Y8va3mXVUqqARqvGpahcIfQ7jmOc1+dY/tPm25YBR5shxyseSTvBdKZQ/PKpEIYt4QCEn2KgtVNVl1q08UGa94oRBk46OB+tWDO1DRlNsF8auU+3VXzO8KxVioh/S2xIuaMMUB6Hh1/+o4I9ZuoisTBdh9GJF+1saR/KcuUZ1KmPXpPTSDO8wuyjS78N/ljckRNIdbbYRUx64+mWgy5aCw2l1zZ15jrY7JDbNWf9PBVLsrAV2BXhTv0ZXfGnIR8XEcEBm6Yr0x+T55QzAQWP5l/lspHwyQklOFvulMe51vv66n+UT/UMMf3pPWseSCOPh6B9/5Nh6EHQInVf1UjAYoEEAG8HmBH7ay0/96mp3N7xaju8WXmovZN8PE2flucYtcZQIN3hKXFQnearTweUSUAWREk8vkI3RcNXakVUTnynoNuxx5Ft3wcQxu/PAPnbfTIZGaR7OBe0Ehj6QzaF1Ned22pTlty67f0DGzv70HUhS2+502uGsaVNj3mTQzKuKLHwG0/DA9+ib/Wfn8CuNmczgNO8O5Z/zSC98nksl4jmUI32H9IczX0b/zur/FETS5Z5jdc8h5AQ6hrpPIeAVu5SicLo8moWRrE4EPgnbCXCQ13Dgp5mKurwZk0kGFVvcNNDA068L01qCk3bnlYIF9rZ0Hzup4z+HAKRFRJ0qLzAllUPqNtk/VNqiFd0U9RTQJCP/bWTkUrOUWyjL0aIKaIMaQZI2F/UgsaryALscE6gkodr/HQHpAMhaQ0BAkpLEFDvy5yRnjgbE2FQGOK64msIIMvJYQiRS/rAOIi9XMp6OKxLf0pUlgIEw526Qkc5CsfHFyYx7e7NYyRghCy3Dk0WC5bKh0LD9ryvr7OrWNHAAniP1tJVKkV8/ankuJvtB8RiMAzUP9dR7iUV+WIBzDZ3Ad8BFL6XWmp10Y/7ACbXk7cVWQUocQQzo3o+p+W/ls9nQiC47Hd0vnTaX9RfKnbByeaDe65vpGakVTLrvFPRyIosZsyHQ9gEb3iXDxI+SrhsXakvIRHia2ZVgnlJCJx87TGKyX33tBaT3EFFHIWziByKgr4sQ518pec0Fr6mZoHnBbnLQXZrGWsFnEBeHvPXZ9jFw+rG8wvhBopd0XCowxteNdI9Ygxfua1QZaVD26fMMoSEP4eL406U4/s5tAjXDNdBcUHkeJBG5gs+a/tJl7Eg1j7h8hPGPjJOwuyEUTPk210UqpoWGJoo1i0wt0KGzvTf6hoPQZx41KJSZ1AwwF8iTIMvdJ0eiR7auL+Uii5FYkJn2ZAGrRvMX9WtJQesKlovNTvJMahA1dJZKp+d99NPRp2Fhx0N33bOR8SkxBY71NLs7SBYpjeMH30B5M7jTzmLuf42HtBoejjSLAqTYnlNTkPyIEZfEF6Tgp+RnexZSEgjTRRHatmK6zV5Z0WWafXZy09NcVKDvd2CmgidFqhY3oVnfkZ5xCdKOIXCUrE5pnSU6125tS6EMaSfY+oRyj+EVi5poepReaFpakvZCHJJ2gHBddS4An6V7+uXVWVsfi890v70qXzKT3d6gKxKG7IFUqjbPJ0VnjMtNtYXcNv3to4XYzL90yE/mdQuuPeInZBFTXl59ALZmhg7+Rm+63WkTj5an9jWGYfDLWJrZjOWjmKJ4E+qthoDq1jsjImvQZ5V9j2bHJrV7DXJVY/qbniJZbWZLijXAWJQHZXy+8WY6fCmuJf/F8fzIq+B8dSTlBvsX2kWBCiI1XMBxUwqMcxG/sZyy4eSuhSr+T6FyGWffmFclKNkBM5WALcW9k+jtGLNNAn5DHOi8eHU4e/FD+y82lUsX9SnxaUvZOgh6SZ0PhLg2Ryd9QLwnBo80hdZD4Odo8HeNh+28+fQoexQozH/57eplQYr9iiZ1aJLyPU7I3F1wjDd6O773kK0WSlMNrkr7SlmsgID3hAvZ8LCr4KhS66odP1R7LNuV/CWWnFErou6FIYI3JEM+i8TaHxgxZ4klkMu87js0GwxEDU1lh5JskYa3BsRZ8gRo8NtBM8lK61EKVHiuQc6Cm4ZUiyWPrvoZlcwn2SbAIFB/h+r9CZUJxf1QB0aUBySBcUfudf5h+s3fQP+58q5YJ5uAvwMIcEyNe/q2TplYDFuXWME6IJkw23x3ezxM+FmwKsgtRqxEFNV+24yzzPcwy32vkmPeemxzzftY7PNk9POnvhxnm+4c+w/x+2uUschDaO/+g+ebf7O0e/0b6+kZ6SWaW78aZ5UE2+J/hvf5JZ85+k+4YzOJkhnnfp4e/oWeCBPO4iWSWOWbOv8zrEhFHmvEN1hATXd+EpWon1lJPJngfHe1yencvSO82qkXCM6YfwZ5c9HUexSrJkvfU87iHOk+kyjQif3TJrciw5AvVxXyDLIjoNu2loneirk4E1VwFnFuNQCTWvmYnNI+hWSZzi5m58GT/LHcEB9tRSZqTB2TCDHX8L3YGbVle9joBCXdOSfYAIfz9HjVqWPQzuKjz5Idar2fgTQ1+6TV9w4EftYeQCnQRfzdbwNU1qlFnJ80QAzogxcqJo4wgnkbzsvViOnN2i0UGoYnhUxYzUQudKW3t2y8DUrCAn0LoV1HEaZ/BlG158htlNScfwGihMUO56NOCp7dE8PS6/cNs9/lJ//hkt9cQPM9XC56Dw6ODPSd7eo+TPbGg+DONno2WtOg58KLntT4WSB/7flLuHMGfTrHoivCPg6UsLpktgbg5KhPxVjkb1pucnNKTEkSH+3uHKomeB8r6fxKLEwyETycZXzk2GhUXtjN12d9V91tIpkVjPh2AXjCkSBJmkQTBnyUdGDYN56FguCH7qBgc7/GHtxzQo5fhATinBs67ZqcFs0sHYfZS/C+ZTyZx8o9xzXzVEtToXkxQWPQ1u1RvDawj1iML+5ZyBMTdK8R2FJxUoF9C+DxvoQvRPEbZbmbDePQz4TFKVWlUlhPHQyrnPUixoYi5JkeN1D0fv0RrooNBtDNpRLrAbnSc+kVapXtaVMAYrifDYaGG7emhs2BvpnMx8GQHzScuV/a9fVdVc5z9aTbiauEtOYaz6p6+1qayKhT4QXiQJFPAIZXFsuMrhgLrTSicaz7IWeTjwIYt39Tj1txHnT/Zpz5FdcxBU6+lMPjL6si6itzGkuRKxZyY9CfnN4Bbxnd6UxRD2tSK5MLkSu5YSm+xMFrSV2NneAch31yUCa+Hj5l3XJZCS6tCyoE7j4/xlvOHdkhvF5NHxJnQ8mPlK0mNRYHSum5+gpUOwRfwdMKKv8XOVK64b9yonLPJF4YLrTRFWssIOi9MzEKOQUc8aNf5jBx4W8hPQDnGc5dT4xO7nbkziQgLZJAtXXvh7Cb2GouQfGTmlWEJ34pptixmpM41ftp1NccJl5gXb63UVC7ZJhp9tAGorZA+RzxmmFQz19wizmOopumGW2L/WzrKFJE72XgGE8X5HIyE40NPTMQtn0LQQNRzScpju/phPrPFFbKjPf/v//Y/hsMrOfZX+tS//9v/jZMLP16lf013/zqUHniLwZ4xXdJqwYFGgonJUPS84fyu5XMqUixHUYHWZUDnkKuS7rwiCDDPKnFN0dSukQlDNbP0mxQ9Q5PrpT0uNRj1sDPgtC9Gy+HgrCoQ4QvsACRKmOaDYsuDlfF2IHgxJaiS8LBdiexnywMpGPyMIrnRZMi+K9KwE9NrzH+x+T2myKWjCngmt27S9o8RjD6pGmtO68BXfUWhVKquJLn0Mt3Y2GpwuwcC59nZu5cvnF6QO1Fp0EeSgYxOvYv8Jp+VqwfrZb6cRZfdpVnqPrN5dWuIjGBQlGhLYD7UFnUiNmmqpQRwtvatHoDtuN5L/M4LkKmSaMjXjCo+oqAm9MPjEEJzHCiM3CfrUSdGcaf1YEce6jaUfKR8GcWnKWzkHdgPI7CKxO3G/+ByiXCFp3Vh2m4k9bWjmiLPaMTXOVZXQY+tQqMTFodfyiD12zjFik/FYBGhLRvauCtFEu5F2omvNPHN/4uKe9GM0Bo0ts0Kdd83o0eVenX59rmCNXliTHrVXTUOdV+OHMD3zWBXnFB7pMZReopAXYTPZCgixWUZsoqR/5x/onhoUc89tfk/wxJ8XIwwaq7cNRPNd6Vq1+QETm6t41YD0tWLyilISodqNHKgxmJ4ywmIAamQiQ3oRYAU6lsmRbGc2NxE+1e12ZasiyZCwON+z+zgFhwL7QJ1m/rSw6Wmcp36ME4WBiu1GrJTWBCNBLGcdD2+k8sK4d6HP421Lko8ozdwi/gS87ZYSkVh1emC+X1E22MjhW/DkmmNKU+HogE4fygPiaiBXf+utmk4imAaDtIePSrtYpgKSPHnTVeTA4puSDwPjLjlCtokTb9H6BaerlR3+4Hk2gv+1Q/+Zf1sx+a/j8x/H0qwteBIM2vaZe39XHAYC5leyjT9WMnGFFdZAwsUxiYzirEHIDLFTTgJ+0JMCqENFGo6hB5RnEaMVxtfsG+/wWA8CSKT3eLsDikAwiH7kswXivtq4AVvjVSrZAOZFHj0vaaeU1kiWfeNxxi3qgftDSlVjswkdZ9hRp9CCMeO5tes/kEQitXe4e+UJUz5aQH6UGnmkSdsJlYzlpJEzDTs/sUsQ8CJXpgXGNEq5LltG64TfB1vvb9vl+w/KYtuBg+f0A4nugRHyzoMEl22v/yi2dhdgZAsfACOClyqg4egEBupLzqcPQ8U0O0qimUtXO4G/YKbEwR4dY8FStmR4jha2bfuCEDxKsfiFLnc5OfNCb1kOi1s0rTBtSUoNuY0XQdNtCdzP3YyYrFdTxmLo9m0vUoxxGdfWSn4gyD05ow5J/fGDjGHmWxiCvTtkLkZvYzMi5xiRkU52Kyu8BIlonZDpWOLMNKZMs2yGFcCNyl28tNb/ghKDBUuOwTDojfE/PPTeDSbDtwfwu97xfzdirSLRKEVhHuyGVK6YlBljXQPXIJP+iKvzN9n7ydeOmBKgkXeadQx62ZtehOrQRQjEhI/tQgk1cI5SZEbi9YaFNwsbtHUnjC3RxTHJpl3R6QcWNmh4Kwg5RqC3S3SodnJW1aREh3J7XxGFgIVFScMVYGITPa4zvh/JeqEYWxOyYI9EgTyTMzn3FG4pVCvOCQKUgnOxw9bwYW/CoTcBnAGnBJUUk2fZiwnEp25CfBo1Zg7y46fclcGKfyIGa2YC8TBjgLALDG3B9C1dvvIO24ZmR6EsF1jIZB3ycASDFl3npud5+sa3TEyU0kqdgqatEar9rq7PQyT9w9O9o8bROy9ldGq/u7h80MbrZKu1o1X2dDSn+uT/u5JByuEddWn12UTfVXIHIVGI2jV3lQyhHW460LnLCq3+GKkeBZXBAiI2g25VjtD+t7z3rEGrkJtnFN7KKnqm84NNnVP9+pJtr+7+5Vm+rT/Dnp1PmAePfIbOrI9JpNWE4MuCOU5JRvEkaLotGwnMoQU//NLRxl4PzGJsevifiYO4qBfiomh4xiExewIf+mgUs4SQlORyfyK5kg4rWjWzl+Qji3QLMnHdygucq3QnWUTxz7DeBMZbrmpBkb5m595pu70HhOqN15CqXpFhNFEAC4RGtptf4G1U+Yz9VVsKcuFS+7D+7BmfticYjoSRvwLDU57uf7WQfLIS/X1zvXKNg2gzyRSasjARW9ulFnHMKdseVYRLxD+/d/+B55DjNXfzNEB30DjeRqMv8DkMLJa0nhDj2eTboe+TXB9huLqc4/QL53B8a+zbpKi4L4pH90jWptawV5uxIwz60VkKZPg+BhvvR8JmQK7GpbSDOK1NpOY7uQyICrhpvT/HHNIW4rUUlPKQXcmpbQ4JhrPwXIt0Uj3Z7zWtxyFR5OH7hrjLTCjYGnCpfh5dgYsE6r0+aSoFrWOwMVNPacKXreE6QrCgp9HEmIFojGhrGtxsfp82c+9rq0XwI2/QilPFhHxwgxrs/w/xx2Z8tkYV63RgpRm53RApes1H/gvNqrE7YDKPswOO96P1jrQMq2eHJLEydxyS5r40RYChX1/s+Ls9O3l2e9O1+rqswuNdafp9PenL06zg+3d3641bjIztxrUuGcghN6UZLw7zo9knnyr+ziER4UHgdDyiykaSAnOjeCg8vu0L6UuMldLoeKkiIhb4mBuDijVMjVqtn2i6eiTSDjz8MkzAgt/k5cjiUEoAaMDZNH5dnlPmLXAmIilzVMpa1EAYmHpNi6TKrha8U8YsRCNuKCni3uKnwdZIu+x8OaMEDtNeH24ziIsbikUBTqI3NzMsKbLVy9tIiRJDyLghgWuolsupOpyRQwbu6EFm21mlW1CqUwfNMrev5rUwwTfhUU6DmbVyM+ow9/k2XUJxsCYahpLySdTMjH3scRE+yHHVzlCWqiR+qyqmxtU2jfqD2AE4tdvtI6QJo46oiS+4BNtop1uKyXrYu5MOnIctBsunwTqQrwBzugS6fv9y0ubYkRaX6CuuOS35X3gyHYwZy+zOqQMHN3IJMPKcYqfxDSjnhEKrARt8JnigLgegmJM+3d9+ilLWpXalBGIXkPAMHSQzgUuezLs3xYRiz3y7woqJOAQb66UByXQ4Uo5uWcYZbY0tusUbcO3YJMpR45ACDYONacGbXPUcbROA2r9MKAGnSY9h0ZDCSiDfa80aBK0F3w4Lv2ujkJQ8VTZomvqeBE30EuSAL/DsCxRqRI/KBIs4LNMhh9gUJlIsp10DF1uxFh+JQKo4CiGIIi1Sm/JSolR4d/OqlvaUd/lvISvcAneO6HOrvsvv0g6JOH5xbjemVfTcrCDRV+6eZecfxIYBbNgJz4uDR5RKzYMtXJdaLV2PsxaN7yRdearwK81RtNXFxvvBpmu3XxWdIkWqcSPmINo7MIrXVHkukhO1e0Hn/R+UuK0K/rVmVqw3TDxtQ6Aa04orzVYWlNyNV2hwKPl7TpZRxRfMDJQvXCt+J80VV0YCf+TjLplK+DVs8gbTiag0HApz+dH9ITAjE+ofIoTS6fj/E/w2sUeO89H1WLICAsMlyESanudz82plW69h1nTRZf1itXb5waOY7aJIIm7spgRfeAgHz3LXLrtfbUYMX6B0/qUcELpqlcSTr1Vpla+GTgYhCvpPJfWncDdoR7EIg9/NkoB3HiOim6taaHzhCKVE0plEyjNG46o63Pu0e/PtkiXQleJ6bM2/GtbIA1upFOCAl9QUWgQ2Sa1i2Wic75LHbm1PkCqsBVdeYklBG1cPFfJFR56ShViV6WjwBrAFWoAdCA6To9jwLeevS1mWpYQWt5wScLXrz/v3CVl8YI4qKZdbauL2IFpYuxUnNjH9poYTJpHz75nDh3H4XHbBAJx+f5HVjIOpJJ5hY1j8vqO8akH8OIETk4gH6jprcU62OBOTQy5TUOqG9agrX2Zg5JyB3INDBv0MrY2FI/HV8XWgjRzewY1iE/srYyYmCyU9OCuWsySvSw3ijvfFxWm0mVvST521I2xzrbyweUuU7vwQe1izHJUwsYqMXLXJVB+d6hlYrvMVdG9fqDTs1Qq+nJ0iMWwy2UoDl75Cu00E0R54ItZO13P11WczgpU3xCFjiB0isa5cqv+MkY4C1HxPdB2XGdKQAjP8sXsFi78rpd2JOiI7WPexRUEYVFJjLqQ63rF5WAZCUmAoBp/RfUPA/++5yEHE2gxQDVtraX0IYUu4elw6fDqHZdD0Oq61Y0Ia+G/WX2VBWuj+rXmnxD6k93ZhLdczQkpGAR7XolAW7mAvDbi3HJ0NSLhWEJYNTkhI/iVQEgCzJVNg8gpwbab3+fl3KdkKTt+yQm2pswtCqlb1KQeGBvhbUFSzm2mSpHXDyY9xqS1kzECV6KLOtfbMW4p/NDe9q643GqfmeQbz+EMIIEOMavcF9fYmeZh+W6MASEfwFEIzJ5yyboK76D7yuUZ13MLHKwQ2aAgKpuf6yFUAQtL43po2/cMT9KSc7nUh3AtLrVltPiOxELckrjkU15RsHVHhDkzDEgUMDQeHJEYKzdz4prR2OJ1YWyFXAjc0VOmdeyCY8VIgeVXC2FxnbnxuBlMNctwJecNYAIG59NJfRoHrxSZnXtNMwX3iq1+u1i0OuSOoBQ4wRV3ztApxc2SLO2Yc8jSiKn+BjkWJJ47Ue+AGvw2JSWJ9GfGf+xvwy1sTCaQEziJ62XZjCwvkrzywjXcYQQOxWQAUfjsOvfgu+Isn85h3T1oNgAIra0M9rr71939LnLfUntduAdrsg/Jt0O31BoGC1M0BARlNH3O8nV+V0Q9uF3svXo0Py+d29oCS/CQ+e+BP9wVt1X9UCNhw/b44edifj3DI0lfiPgfJN/dodHxN/Z7+2srXXygqF6QXrNSY5L8aFJJIbyHnYq61ge0Lwh6OLqcYSRKet0lIEK1qEcPXczDJ+WuK+oeGkb0gc6ISi1U5MuXGm18E8N25l0q/mgWJZJf2vkevdMdPK4dMqM6abWyZiXX3tOIyB0VN/MupsRllDvuU4HrapSIGDS2FLtrvC8HkzlR0qjfUiqoSGabE22eLVpgCOT7YcM7wWvWthmG1eLatMbu6CkY8DaHAh+0SB+io175YRa7Dh+EDD76TZr7akTG2q4q9paR7Wx6oKMszXeTxl1jdCXLc0twKDqCE7wSlIWpQld7Thp33C6CFn+QpDEPXkDOLfWWeyiJXAZnAg1m/4Nbi/UFpfUDuEIBDbcG0WPCblXzCnPk+ViXmj5EQq+JinicXwOVfJr7KY4ZdGrpdj0tHybKM3Ph0DscHvAEX8R/btRndJdgPHXtUSLUk4cKGho5p0ixx9oZ5BmYVy1ixdPnWNJycWfwVuEyk+sZ3uQ2Eid1rDVIzQe9L8jgXUfbIQXYawO0YX+w7YZWu/jtlUbMX2NUxZF6x/RtJcKOOrb2iN2DoqU5peJVWwPhyBulpputNIsRPMHDYZx3rMg5+JcYTe+NwFzL19rogA5dAroi1ybFHzQdOI5DaAkXB6VY/YFJbxrVeUYz1oTTlrVGn1MOJ6ET0QV00QF+t/L91HQEQmd974zWuaHZxOm6vCuOtvsuaWf1tHzfKu1gVJ1ex+AZ2wRfy2iDS1/UnUT4Xa+0dz5Kv90QJ2ylTpCDkFNqU/aAZYKLdJpy8rEafXTmvT/0Nnnk3FvwDfBOkK2Auw/TREVlgGliGnGUkXWmKSKHJgeF2KlsaoiEdSO8Jdu73tjyjfWD9BaliH+vsWUuhxFFPV3CyuHqqgAuD7XBltvEekmLjssddUHM1M993M7dx3QJywurWfc1becicAW4AXAgPUzUWd5coxDBMhJ/7hnzoER4CtvNluT2jwo4Or+7BKHE7IuOYfywwW6ODoByJvVs5JkDHQf6EkVHcT/uBxTl8utW5srmsUZFg9oSMypRgT3NLa/5Jg0udofyDojHQzZki/ihc0BZZQIr8DkiW5ojzpiUcbOWyWusfUS56KA7YRyKMswmxhcfPC7fwF7h8Ce6dDN/6zKqR8IrAWBBMqCXMe5dCA3bSvJ9dQox0W0xucuFh9JRATbcM2R2bnHuIMn5SmK35Z8sRtVFyYLaGf3gVKda5iNhOX2tFy+ihg+LpbicXJY+phXm+NAk7wYh/IXQ4flDpLVUGqTvjqleHoWbfFBokl0vSOLyFFxgYDLBu8tmCmLdW66Almfgn4rHRXDLVKHChc7en2et1PxaI0GmxUqU3QToY4HTPq5AKpMlGfLpx5eemIRFPcinbIA6LweuO0qPlGdIr/4w4trmQyKrVqo3amJI4tmJ4q8xFMQJ7RuTStKqN5Qdiqa7jcs7aEM4Z71lhyGlEtYb12XL2Xr/R4GljQSUN/e4G26W8mmJdrnG0wAffddF7h+WHaSHJUw25NLOB95vHaBo4yNu0/swQG5T1rZMdp80Y1RpT9JttmjAMW4nzIiZu5CN9ruwVAP91NKijQYatsCw3b6/myxLZbi5fa6fig/bj1KpfJJEyRq0IdpSGLmdFUKkZq74MO1PC2e0pPwdbx+uZsY9PtlvMOMe7K5M+es9f94/NBl/0tO6GX/teXlKlYt9dnPaCsm8v32f93cqT8VkuUEj6Yw/mI936EnLxYsmgs+XGGnIQFN3nSwuwXUkU/8Onj8/4sy/vtuDlu4wpfqjKAliEtg9YU0j3Gc/QH3+UgC2yBYf8ILDXTtovHNW003F9wB6IGtfF95YHb8mMJzHJcPw1HNSmShdPiAuYSHBoPpzjM3lQLBMdwSq6DCXqZLMbeKF92yhbYP9HIPUGtPIgsQJljCYa6ZPYZpxWkg/GAzSfJaRzPJ7kzqpDPp8lq/kGHoD7Pv3559lzTxfDxKWyijIpw5KAp+CsnAkAaDdakQKo0QYXUJEHWFn7fOfY6j2uiDz18Hs5VD+up0GQM7TxHIQDT0jCEtyPzSoF3/lSXj8eGydPxMflcLSxKzHjSnV5OfIZEmOVNTzrQCGaeqhirLGmKPqVx4X2iI5ixwpkVo/jK+R7gX0T8RCIM8fjHrKzJAEhcbzwEGCX3+GGMZjnC/M8Ery0t6yUvnEsGx4kscq2/ihUvmFzo4NUY0/94Bv8oEGQziZA4dDkcTvMS5fa3bcb/Lx9CuZ6L/KmMRLJv8KryNhR+Qb1NHXwix/ZO6Jz3IdRUkKTpw1VB9PYcPsNsJnwpoZQbr4jH2uabWkk6DOokt40oAqkldEFtzh1vjff4FRmaniMmhUlYBM/ZpAs2xPLAS5+TnHY7ZeEI72VMSidVyhlnEl9TKda59NrsbR/ywJho0pJGAjk5ijGdlQu6ez8mMuWT6f+xSY+KxQzDlEGY6ZvAuESxB6HHwE2i8HHwIyZAQB+eIvzNIl7X2W+bQ0q0RDwRCz0FRqZskRso4uX1Qyf+VxvZB4ajP7x5wWm8qiplVLgeSWSiDL2FGDtKhUyLF574W5k/U9FX9kzl0SPBx4lxKoa0SO7qeDG1Gkr25BpxbW9CvCNTGro2REhknZw4LSstFHEXlol9arNv8dFZEWceCqSMu/v5/lyG61rax1fZ/25ROlEtG1eOLI43LNE25yqDRjiDaAZegGSyMD8TMSyGrggz72VHWU1chZ9eMcfVETQpOow9YDb9Qu0AjNqvE2tXfJybnFCaELmycIPoEzTG3p2z5sqAMhQsNEsqB1dCWJQ6bOiGCOZMCBVpXGl/fNy0lPg1e8vvyCH7OkY/QBQSkbfUpGsi1K9QArQ6F7ChHbijGzdhUZm9aPYL5wzwyynGh+TNonYsYVjSn5gZGC6fu1uNUBBzbrBgTOBQ3E+RH4nh0+/ssvuBH+biUsaQwkuHrMKIKCPJJW+PfZ25ZyzidEaokxDKZZY8Iqzm/UHFXbMTl6uWIFBlQZ66hnhRJKcfbY8Pz3f/s/aWIJaVr/+7/9X5kv4xJCkQXAWKw1hGCX0VN6JPwmOGwUCY02Op7gUnkcD7b3G2G/MMDXCH+EAT5031oTW5w3W43S7Oyg/ZjPENMn8eBEmd1+FCqN458u1pWqZhRGt2IPQMNPKfFpUeKDaJX4fahOhD16tnqyjfM0iqsQY76v0FZbLYNLLjTOl4s5HQWxzCXysBSGzu+4eou+z0v4XdmIAiLkFDMGciEb1VQEu7nQAaefwYjhwEmrPRwYfzzvSC9nghSV0ksmBSMkt6SICwqzmgwqviEaUbtXpa0KTeWjzb1FWksz9uEjeWepIGFcTpqCHK6OtNcwXWvNCDzdolzXvrXlIE7oBgKCxNTxCLYq7DzfgMhNIXOjSEbPRDKES7oREApCMrFrgIIt5QhzXaThZCCEvO/LAiHHWW//ZLcXVepaJxDSOz46tEUCH0d9GIcpkADR1u+iAHBXAsCpUEjfVg0M2IubZIhLmk0GR3rH8BVfTzk+WAuDPi6HdypIgNppQcreFy3WlgsbG2JLn1CP+Kgm9/JYa3ZrPs2sWGBZJNputYNY+dgMFw/7emcKmmuyluF+T4kYDzVh34RjnKexMQ4CEHJMEAGhxWTQVmtJovXCQu6cQB+5ZjoWLIL3qQgjQuBtyhDZbPqdfGsu74PoGrC5RuJRKSyKQ6zCc/NgZjuOMyRwGIfBBXoY0N7gMOC2PMkuzKlEbLF3tuaI3BSjjpseYWlVuQtPRLFQJXpCXkjhLPQj8WzkhwF78GFAXBtCr1Rh+MnzCfCX43V050kZ2n+3d8KQy5mRkKFR+O1KiClNTYquEW0TB2fgS/xI44meFaepRvbCILVCYxgc0QwurxUPhl2/Mh7c232KGDzae97bN/Fg6WntePAS0fRnHuWN8m53VdFPS8MjLw09Vfe5fyWMErc1nK5wCJP4uoBzDRpipp/ucTuzguTQQDP+SEpyk4T7RGvhAdncibd7li63uru3pyHjXox8UaWKKo0Tvsu5dnMWtpyfhkgXePDnGkGwCL1eYKmbkSTKvm6veWcvXN+2Rlk1sGl0JM8mhZtzQTd4OA2MG16zT+SlREN9QKPNhz8vOCeLzsROFO3datKjBCxXpBo3xr5qAFaezWEwM1RK5pimRLGaMqrWprRb5NGcFZTB0aB0IsoUWZL37167oeHybGdrr4IX4Bcvf7TuA6JrwXStAnSxYfQVKwcv3qsKi2MPYFpv4av/RJFN+u8HWy9NzbdaEgKvH5BFnvnD8a5c3CZ8R73GLaKZ3DpEh0t9KxQfOgFY6yg+xIkeduMyJ2cgCtGL9gBfxTOTca3y2qcE0/gvL0iqPydr/oymqZ00gM7X9az64A4fvhYcgGCe7R6hOliTpOeQglfehSfHoFA1i3xYbrqQYDsBC9OjE2wfTi9xR8hm4jQOatDki2KKmYWYSzz9OITlurrWYglXBbLnFlewSbAU/OhKm0TjGF2viU8nk904kqzYiuYu8W3hnJEqyGogaROhvDFGfDRThjGb8uV5HF0kJ6q3p3dTPqpCbmf8fokhYSm0+3w2xAwd/F/dDdFQ7VmE8Zj6ag5xnNjOEd9gU+l649O+ly0kD1bGljbtXuhNpgovCtIf8o9cteUdObpa8znssTAXhgPzsyzGDs2Ao1U+S9cvzBBRv5v9duWz1uX+24AQSfQ5JzsyirRfU9GQyp0G4hbb+21qISKexfaxHmzvZb9NTBFPfpBehMWaiNepDve/OnCTe8Krv32HmI3yrIPbFD035NqTCuWncF4fQERgcPd24dImmLESFXFeKufJdFdg+tJDgQbnjKeYAKOSTiJBhSZJQ8uSoLseb/P50hPRogzZEne+rGFwIvxFbhQ6jSfDGMNvswfNR9xM+XLa3Jfa5LLDl7UqOH5baINec0l9ffPbH7Gvj9c8afu/5UQlEVVwa0fnAcWpL8Ln1uAELmnlVOASf5JbxFl5/kPfFTBhL+n6sDYYOe+pmBDmVoChgAWseOWEbh713dJTz375Rftn7G0fyyEMhn0cG7II26P6UHbF9fMXEzqeUpMKNXw8Lbkt0LeGMDqwM6hW7XPje8A2VlArskfPfd1R4uMi3WeVnW0posA8GCm6ZvrxiuISV7xmV+zvuappAj6NR/18NssfNp81b3FX8bRxF3NdBdXuYuLL+HwkpaHuJLz37B4KTlwwIwfBDMfdYFAVB94csNhr7MIdEJ9pE1HGxlu8CPtBl3ZP2SGHHcatWBfH8wZ35LJNfxg3xQLz7+OP16l8k9/mf8IUjkA1xAhQWm51vT0m/j0CiSrrCNk0rm4jFj5ihnveJthsfB86Xk2KYHwKOBbzMaZgw+ZHZre/V5uBBiJsQmEFeq6+pcyAYprA9MTUQ+lP9IoZLRirua7Um5kdC31A5V+qnjl2XSUqpP1czG7dn7hol4gR3NQY30/ov7KAuy0xIOKwQzwIVUgshHHamZX+tnPXeGBHOTcHfItUs8LdYC9SNkeGi5najUysQdUJwiPqFldaGi6mI0yNgv+ED52VRULjhzUxZghhx2Fx7bdrrde/f8mJXcJnKXPQlAaFlwa4PMuOyf5v4YGkBmKvzL3GIi+DaTg7nBRz0JrpxkDNQktUqA03TOwdtkiZsZj2P9U7kJ1aaI2I9Iw32wrOkSf5VZ7jyhmsLAOqWjiT0XVwR7Ru1dAfZMeknD4sIMewlLDIUN4jTlwbDGL2z3i71zqKdGMuS1oC+T6JXq2daJ2zTHfKcZuYw/f8mR6rsNNtkn7BdhSfzGxTzT5n52HuCBJmYS6WWMSmVzPkZ8k+/blo6Kw8fcXQmwQtW9uoCvuhqtD/rc7RkQt1O+HA950MZalC9eUXEidUopPikzAlNW7PL7/wJwqPUV+i+6TaF6oFiCjswWildx1l7MJZcpJXKLXqRO/1Vhgfgd6MjuvjdCzClQC4ay/w2m2/a3+qKkfp1upXvLO82YmPonq0rNSRTqQ6iVt1uXm2MxdzSaELjtsI1SLfRYiB2AvspLVNEIyf4FTc5DUKM6b08+wEzXlu+/hZMUAHZOr79bO5BUUQ/bI2eBFkuzWqGuozvWULFTbshSO7qdvhIQGTuNyDNiwl3+CXxlpt3n8QhDnjfdmmsWtYIwwHmgCWoATsftZ2iSCQkDE2t/cwCK2ZyJrG1NxzcTzNh+D2tkzobH/LB+P6BmmREQDHtRcF33xz/TCIeC5ha58iTYGSRla/a7g9ZgcN6lPRwkWhv4PE6mKwKN492vWBrOeZkH0psyoeuISjnIbOfvpJA+bkiiZ6T5TrIx669VcZNe0gETVtfXS/LQB74OcjWI3aJLYnhqvv9JqrzN4sZHwRFDr5zh3upBfvRzeSFvhIbzl8hOOmvZOD3cfDRw739o8NfKT3SPhIW/wSg6bHrqym8MqXdUvM9LkpoimcCDPLS9qMmra0nA6aHp503tfeMLTSirAOBB7iuChJICr+zOYbcTq5ATF3TipqurfXV2BHlBKbkH3avZuvFB9FdEUGYl7LALO7C0RydTspG7TGOOa3syrk/LF9rOjBQazQK3aXL0Z6hyHEjSaP8HOmN71z90QTRNUrjpb1Aozprhy5AH4Vn4M9xA/sLTsFe9nu85P93ZO9fngK9p+vPAV7h8+Pjo8MfGDvUYegZTsikqrnf5rfw7X5cFOCRVVMUsdgz+SUX9LDsMj09JKzsKSH5HE47v2y49AYWPuZ6PV2f+0z8Tl2DcnO/b2TvYOn7ZrnT901SxYuuXHq8tMjNs4FP/2ojeN6+JwbRwfWvnEODlcKU+byJRcf7p2Limj8X1P86I1Bf4WGgqaCqUeNiv1KIB414luKGFzeecwGOxHhQ/WjtQnPOm07MtHdRF/oY5qQt7DAwNisms6wtiiTRzmudZeES8EtB/a/J2iv0B/gqLQocQjR4yhBMaQkpW9leSS5SFKevIttlt0Vo6mE3bQw4e2iHDIWo/EJrX25XXCBboMIJBE/7xP/B1REHvM1ZMIbff1FDv8e3BpPO/zP9369w+8OH2pOB/5XzBqvyyQHiYWafc+PLVOaUo2mNabjX3bSdSxOMWypS44cKtbmtue8oYq8gNOC6KWbEWxPOg4GoXOTf8SxwNnVnok62DnBwp3YaPkCj9mkQOstnz0QmRRr/ciYOkBcfUVqOnwYTEmDQfT/sfJF98P/+p/kKyxXHvr/9T//oiJpfRHD7363uO3Csp8QSwIO47/JEZFK2YL3++9hpQwy2zayzqsGrWpHaDsWKa37aC29nkdplk3zmXPK5HI7nbKIml0E9d/Mf1uXoY3zWdkamR0X7os72imXR5E56SjJpDDtCjUYMRBjtLzDQId7rf/KUYfJEBH9HMuUXB82yREnSmzo1cz6TanQzCVWF+nw/iwHDKEQv759diaROt0tOuz93X2hK1vnaeV9iN9gh0bxCY5aoMLqm5yIPOfcos4b+NabxWiCyRX0oZ03OWanduJ1e8y9drzWvXb0+HvtYPfoyCq1x48yhVKXjFBq6d+H5ccyeZ0ZLfYFPLPsLouaS19kv1BlpVEss3CeH7t8jugG+3/irfBYsftLbpTPeJ9EtXxWSWvcKBt19pGl1zWnEwZxRBckdXUdttSbov5vGB5tuD3EmoUskrzumr6Cts8rUG4wliFLZMj2qY0b+nl7RSMsx6nUvVtd0xLl5lJFJ61x0x70OsmW7HfMmnIGG3VCZIMy9mQRl/W8X1q7YcdF/YW1oKvbTugpGfvYOuWU97y75OO4Ox9WNezzDkA9yy7z61qjAdVsSBAePAepL3zUVRwkYCXgWvgRESLoMbfJappGuE0Oek+yko6DvJzHJieGYv7P/LL+Mf//t3dtu20kR/TdgP9hooelHS8lzvBOex0Ykm1okY0d21nnbTAkRyLXvIVDSlYMAfmNvO237KfkS9J168t0DynKcZCHAIIAkjPdPT3VVdXVVedcZeMsaEvaFjwjXLTLmPgNhq1J8nXWhMaxy5w022JOAvS5pfVbdf5VXn6MyquszcYgKhFYsAUEaIu+9oWpI4Rz3c450iwRXiTsIRQK81jRVfu4sVuH/t82fpVt/Eb7pYrd2R0tsaUXdTISJC3CpOjFguTqJCXZDCr3bwzsg3q/3mbd15V7bEE1II51YOEIK4ty203QMMWi7yhRQC2YBQICs6KnrFXExh4CQ9A4J1Zff+DNPQM/N2VAmFkhxpyLfTcIkUD4FoiSYObZQ0KviJTd46AFCzXbOw4cm+ovihvKHAwa/dKBY3w3i2DHzdoHnjj62hrC5U1Tv5mNrzBlr04ZTEHz0LTMA18eveTL3Sj5roaDZiKBTQFC+HDiRUbV61CzGaxgF0wPF+KWVYOw0D18AAl1mJ9uLIpJwYAkN2qZKtlX2/VqSdUCVVB8mwm0isWZRF9EuCqEWqHuQ0PGk1SHNyCHjVj9NMphbwwQX5+VglUDW93om0BtPHwgWnNCbEoMTSvQV/NsgQWh4RMAXSbv1R2UxNcR/wrfplEpyXE9aUVJA15ycngEuNVtN+PYkuTGQRHgXYLFJcf6UHG5XqheNstFHjz+ia3jc3PpLpenqvFvEg+2x3Sn88LkP3NeeN9T5uROzvD9jgyc0EpyaKpF8J2BsKinsAmBET9zn19se5AUtiwJSbjRMIy5eneM0oG7X1jxeX2kHVRTjGH3ahKbQgLRbbV1KXrX0QT+UeAzZRaXi8vn1yMcZarELJWgbcoAsnQFZ0VvqiA0gsUwZsg4lCfOrXtJsr372RtiWC/KSb9EIUY2CeYBDZa8uWh77NhzxhFyJ2heVcI/Q8/H4OntbwqLaClkQUn9BnyMa+tsmtL97WI1XHYtG3EDucmt6Te3ugJO6zqPo469m7em4+7/+sc/C021s69z8zBAC7ZZ1keZUh8M4s4PFmyFXeyIiMZFkZXHOtze1JfrOoW+A2PdNU7pgUTh42n6lh58MID5TTVAeWEx0Y6lKHrMDCriwqJUBcr2Ola1nF10NYjeLIpsBsmyYyU4P75XVnoxnuVrrzycWKN5u8bUQqGiSm72tNIJV74rRv+/i14oJa52eVjNT/X2XA+sV0nwSXoVT/LLn4E3nsfI1aPKp/nbFvAM1SAs4lUGvAaPOqOjQ1uWi13RrSCopjM+D88nGkGu4A9Hq1hAQ/mLIj6SwfNLj04F6YBW8vUSuD2F94NLknJmvfXu4V39cSWIqA2qk1SB6sie3DMLDsezFkuJ63EUgRG9GcpsnaO/GBAl8SEIqt2uZMRBuPLDYvFhsp0Pi6gevbjOcQ8uM3AOkwXkek5x+J3EkU9ndP2JAxLiRG5Ljduz6m1M8Rk+5IXkogYmIFDeakvzT1zLRTt6pJukQhwdw9FvIzSiZujNmoCv0UxSfg2vMah60bMjKFvYKqwRVXcjc12c8AROeFkjEKURHGwi+EJo30oUWxmR42HVHAr5cKlmiKqr5oZPnC1FAXnGq1K7JDUzpeexWpZRIYm5DDSaNXHTxV4d4ziekTXuj8YP4kUB9Mowf2K32VrCNof50BhnFyXV0TPR9ILlTeIzH081/Lmx+nb/7/IVENziLVYF+SJ6T8tPVgSG7D2ng0YsPQQ7ONf4g/aNby3C4XPtY5SCioxQLk6IVc4eBRG7dkhT/jkfbXVtonrgq9wZT83yR9NhrlrLgYx+lc6W6h9AktVQIv/LI8B3kPKEpMV2Ps/WN5UjsSNnyoUfQUEkiBKocon0gN4Jig4ht461DWNfBt+BNnnkkCxDODWd0qkCKQjc+YsaAN5wwWyT79gU1TdwwkGMn7g0Icy3vMyh5sJblVIwS5EKM4XSPvCe4KoPdmIlWhTSF3VED1serb7eG8dO9bes6N6FrpFOpoh0X3hd0KZDNaKEAJy6KQKkKu+MQTUtIF7gVkRWNzwHY7iXGw52E2cxB2j0AhsCbKkJMTpv0wuQeMJ+AKDAXW2Yu6FpH7efHN6ChS8QciRReCQ4fGbpvA9KalbA7J7NDU4XITUGOFe2C6IKDyKKt0tYElbo9xWxFVktaU8BOSDybLGx1wE4ZgvLEdPi8XVtglorKprbC2XoWK+SLWA2JoaGZskniNvZzELN9CSuLX44f3KRJAL9YWUxOr4IaU6pM1c5cmhB9bl97ZLgskjT4eQAGTrODsyEXhGBRyRlE9X4kpp682C0fHqureYWNvQAWRmP0rRbWZTO9eirfO0soZLWCVbanpiQbMDZ1rBqtre4ykafwNc9kS98LLL7dzwC7M+v7vcwldF44ksWbVJ+b838x2y9MBD14zxDbUwQg/PV5kYi0tp3kqL0QcTQznjtZHoJRJ2IzAzk3LkcforLi9BbshCpap1LauDarIhq4mCJICE083HN6tBBSKedBovKBdZkOzMOp6dqp2Hdfh7aeJ8tPym1QpvkAWbFabcAPb2pLI5sbFX3u1KLOCLw1pDJlo/elOM5XdAtgX1XVV238w5bx3H8RF6dlybDA3k9A5QC0CvX62y1KkseVtMhcIS3UvGUNGQZzpaEUZB/3mwBJtC26np3uuNG2VWX3RLtPRHtu/hQ4KzrMJtansoZVldANsKYDjA8y+fOJRYxu/PWe2Iin1gh7jUh9vvFjy/+6rh7Lq6j6/WRe8EQRZUepD9e4x/ZpKPS0yACtwadbJ65dFqkgtKYF48eew3+NL3EI3U1aArO/OW8vD/8md2pIl9b9prTZitGKCrNIk7G0Kk1PYg8UQ7rlKNLRJCkGnxbMiffrMOXn5WxhUkt9+iUnie6RrUeOctHeB5Mg16Q1kKtEZzR6OED3c6ZAUWx3A8ASINwCr0MjsjAXVVibBRCUwZcDjjIwGlXnC4XqUSzrdAvLEPJBma0j4xHAXY+YIZNEjL5c1bi1XibB5ACDDs8l4LvDDRVIg049impDq4YEQaAIo6doJpB4iTZPxB1ibeH4IeUCBymdKgltJoAUF41OJ21e38ZxfFuaM/gAqR0EiLrCjrINrUO6fiKgxIBQ/f6+N45NjRl7IlO8iN2jEITVjC+NF+ElxDJugEtEK+X8c0JHmyNMgUMI9yBV37vKuKEL0usLjzad9uPKtfYJ37pt1Viz5fIwaNUlAMdhk9SYMYl2O3HdgpJoAdNqlN5RWKuSaqvSdx64+A1sX0s6yOU28aMm0NgBMYFD9BVkOIn3wh3IEKoa6gqHAKWML2VRQnBs+Cy2sNvBr5cBqL238Mcq4XAS3KZrUuPCLFRwDPwPFgElXCNOMuEDYgO/VVnJdGdZwA8JQCo4FVPDMW2Ui1O8B1mvGYdZNWq2Ca6O3IeNFxA+55wAe22BRfQPSzpoeJImbM6kZBbfgueXtuJDoC/caov9jI6S40FT61barbUJCvLdIPBoNFyNqNEZwza2D0RMGYwbyFptKrrVfWpJAEcThklC115xKd9pRpmPlY5XjydAK6aHhWfV0xRAOb6mPG3X7nSBg57BZjy0CJ/i/svPu59D+ODsOh0tJ1lgPRyma11ih5e9eKXDMko5pVV/ZrTZaB+dP2CwNEw4tvYlDeMrXbKOyRKNlHz/akOCVRzKNO7zMMOlGR5OKKhnqsRDdfogdh6l2fX4qYRJpB3QCv0LIsm6/zih6OTP6x+aHa6nVZy9Jznqe1GXZ6dZOplUEIgcBNZXG94cgGbNAL7hGzSYxgtpofJ4S2id03FQBBId9kMuRPKqa0UXn0GyuH5ly8g8CnQUX1SE5XyRN3ePjvB3+1dksZkcXGi1J2RNceMp8tstqXdlHmTRkbk3dCNiDeP5NDerTszJUZ2lCApC1lDg43eA/SoRKil9TWTdDEhkuEjCmzINeqP3NsK2J1j1/BIngocB5DJFwyjUQmqxrVCdB+isRs3lbdMtjEyJhS2/Bfg54NY5fNsOtvJ0nHvimllO5ol29Hq7bUdvX6737k3xoav0m+V2egMjujgBsxFAuYCKtAkr075lABdD7+p+11bEluZUO/lunBCZztRZkK9rDwjVi0k2VqYbFwnO1LDwqv3gY48LCmAWKTBjEvxNcFLI1gi2BtcLymxfGCUpHjQklAqLJnRo8XSZpK3j60FDPSxLq4Ebao3h5IbCN4I5GkbhWxJFh99h6xeS2hCSqUsElLnTz3nU9f51HE+tZ1PbptN51PifLKT/PxCGtTl6HOjVZvlJhGd3tegpOkbcaPfO3pekgy1zYNNcfRKSSqD3qjX+1pfUHqrzCIBhsG2jPsH89uv33Y0FSu+JZK/oo1qKoua07nVmlabyPXmph63Os1GfbipJ8cWXDYudGwDnDDcTSpzs5FmOt0K3aA+cJ7zyXYFOqI4UYqmfdJonZSW8PFqgWKn1nu2VaK8lt7eLNQEvF6+vymA0Uq+xdlEvln9KEnFGCbK3pZ7O9mrAZVKaDUPTgBN+v1+04YZah1aW+tpNg/iwbuCwWRK39exSDmoGW0vmyVOuWN4dZilrYn6cQYkyNfM+GwqoJ0zSGmOsoAlzFngJliTIgPwHeZOEIsz14wAmlS+qVEevYTjgIaMEo+vs3AqeTPRzrloiuT5Wb4B28jLjyvr1a+JcjVONWIbOVYSB0V6DnamHj6YTRc5uGNqwahP04voERnzFKFJi0dR7ePbs7OU1W0tehx9l81XT/Ff9Dtp01zN7l86Hs/SmbnpcfQFnB/qZSSYe8tSzxzMf4R9/jH9+eW79+dv/lT7+j5tp7pCdcTfVnV0qxbV3VUHSXqdRO5/QY106o1WPY6Z66x1D7SyZivp2YUHBxXQ7FAGHj5UxXW3twzvV2yHWhUUas+xwWLMGP2wxuAo/7yaSv0Bfj0dtDv9nnbVEpibmyK9pmM+6FXdJZqMv5WtjP6VeofSUIAhn/5dd9AYfOFf5tn6Uw7xpXS0Mr+oh5tkxYTUwuCo0cn6nZH6G/YbvV5/FF+026Ne66I/7jc6je4F9wQKRC3tTbrOV8sCYuTTvEgpSAlTHLd6va56rKTPAY5ULYU0ThspeozqyqOnw0H89PbfKel5HQ==','yes'),(663664,'redux_demo-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1484535435;}','yes'),(663531,'theme_mods_zblackbeard','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484535134;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:22:{i:0;s:17:\"impact_nav_menu-3\";i:1;s:10:\"archives-6\";i:2;s:8:\"search-3\";i:3;s:8:\"search-4\";i:4;s:6:\"text-7\";i:5;s:39:\"facebook_comments_master_widget_viral-2\";i:6;s:39:\"facebook_comments_master_widget_basic-3\";i:7;s:28:\"siteorigin-panels-postloop-6\";i:8;s:19:\"blog_subscription-3\";i:9;s:11:\"top-posts-3\";i:10;s:18:\"twitter_timeline-2\";i:11;s:18:\"twitter_timeline-4\";i:12;s:10:\"calendar-2\";i:13;s:10:\"archives-3\";i:14;s:10:\"archives-4\";i:15;s:6:\"text-5\";i:16;s:12:\"categories-3\";i:17;s:14:\"recent-posts-3\";i:18;s:11:\"tag_cloud-3\";i:19;s:28:\"siteorigin-panels-postloop-3\";i:20;s:28:\"siteorigin-panels-postloop-4\";i:21;s:19:\"metaslider_widget-3\";}s:18:\"template_1_sidebar\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_3\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_4\";a:4:{i:0;s:6:\"text-7\";i:1;s:6:\"text-5\";i:2;s:18:\"twitter_timeline-2\";i:3;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_6\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_7\";a:1:{i:0;s:6:\"text-9\";}s:18:\"orphaned_widgets_8\";a:4:{i:0;s:8:\"search-7\";i:1;s:28:\"siteorigin-panels-postloop-6\";i:2;s:19:\"metaslider_widget-4\";i:3;s:6:\"meta-2\";}s:18:\"orphaned_widgets_9\";a:2:{i:0;s:19:\"metaslider_widget-6\";i:1;s:28:\"siteorigin-panels-postloop-8\";}}}}','no'),(662833,'wd_bwg_version','1.8.38','no'),(662834,'wd_bwg_theme_version','1.0.0','no'),(662837,'widget_bwp_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662838,'widget_bwp_gallery_slideshow','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662839,'bwg_admin_notice','a:3:{s:15:\"ecommerce_promo\";a:3:{s:5:\"start\";s:9:\"1/18/2017\";s:3:\"int\";i:3;s:9:\"dismissed\";i:1;}s:15:\"two_week_review\";a:3:{s:5:\"start\";s:8:\"4/3/2019\";s:3:\"int\";i:14;s:9:\"dismissed\";i:1;}s:16:\"one_week_support\";a:3:{s:5:\"start\";s:9:\"1/22/2017\";s:3:\"int\";i:7;s:9:\"dismissed\";i:1;}}','yes'),(661983,'customize_stashed_theme_mods','a:1:{s:6:\"annina\";a:1:{s:27:\"nav_menu_locations[primary]\";a:4:{s:5:\"value\";i:0;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2019-11-26 17:02:28\";}}}','no'),(663539,'theme_mods_twentyfifteen','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484535164;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:22:{i:0;s:17:\"impact_nav_menu-3\";i:1;s:10:\"archives-6\";i:2;s:8:\"search-3\";i:3;s:8:\"search-4\";i:4;s:6:\"text-7\";i:5;s:39:\"facebook_comments_master_widget_viral-2\";i:6;s:39:\"facebook_comments_master_widget_basic-3\";i:7;s:28:\"siteorigin-panels-postloop-6\";i:8;s:19:\"blog_subscription-3\";i:9;s:11:\"top-posts-3\";i:10;s:18:\"twitter_timeline-2\";i:11;s:18:\"twitter_timeline-4\";i:12;s:10:\"calendar-2\";i:13;s:10:\"archives-3\";i:14;s:10:\"archives-4\";i:15;s:6:\"text-5\";i:16;s:12:\"categories-3\";i:17;s:14:\"recent-posts-3\";i:18;s:11:\"tag_cloud-3\";i:19;s:28:\"siteorigin-panels-postloop-3\";i:20;s:28:\"siteorigin-panels-postloop-4\";i:21;s:19:\"metaslider_widget-3\";}s:9:\"sidebar-1\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"template_1_sidebar\";a:4:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-4\";i:2;s:12:\"categories-3\";i:3;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_2\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_3\";a:4:{i:0;s:6:\"text-7\";i:1;s:6:\"text-5\";i:2;s:18:\"twitter_timeline-2\";i:3;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_4\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_5\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:6:\"text-9\";}s:18:\"orphaned_widgets_7\";a:4:{i:0;s:8:\"search-7\";i:1;s:28:\"siteorigin-panels-postloop-6\";i:2;s:19:\"metaslider_widget-4\";i:3;s:6:\"meta-2\";}s:18:\"orphaned_widgets_8\";a:2:{i:0;s:19:\"metaslider_widget-6\";i:1;s:28:\"siteorigin-panels-postloop-8\";}}}}','no'),(663570,'theme_mods_maskitto-light','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484535416;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:30:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-3\";i:2;s:10:\"archives-4\";i:3;s:10:\"archives-6\";i:4;s:10:\"archives-8\";i:5;s:8:\"search-3\";i:6;s:8:\"search-4\";i:7;s:8:\"search-6\";i:8;s:8:\"search-7\";i:9;s:6:\"text-5\";i:10;s:6:\"text-7\";i:11;s:6:\"text-9\";i:12;s:12:\"categories-3\";i:13;s:12:\"categories-5\";i:14;s:14:\"recent-posts-3\";i:15;s:11:\"tag_cloud-3\";i:16;s:39:\"facebook_comments_master_widget_viral-2\";i:17;s:39:\"facebook_comments_master_widget_basic-3\";i:18;s:17:\"impact_nav_menu-3\";i:19;s:28:\"siteorigin-panels-postloop-3\";i:20;s:28:\"siteorigin-panels-postloop-4\";i:21;s:28:\"siteorigin-panels-postloop-6\";i:22;s:28:\"siteorigin-panels-postloop-8\";i:23;s:19:\"metaslider_widget-3\";i:24;s:19:\"metaslider_widget-4\";i:25;s:19:\"metaslider_widget-6\";i:26;s:19:\"blog_subscription-3\";i:27;s:11:\"top-posts-3\";i:28;s:18:\"twitter_timeline-2\";i:29;s:18:\"twitter_timeline-4\";}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"meta-2\";}s:18:\"template_1_sidebar\";a:0:{}}}}','no'),(663492,'theme_mods_zeal','a:30:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:26:\"zeal_hero_background_style\";s:5:\"image\";s:15:\"zeal_hero_image\";s:111:\"http://www.monicarenata.com/wp-content/uploads/2017/01/The-key-of-your-soul-and-the-vintage-paper_5120x3200.jpg\";s:17:\"zeal_hero_heading\";s:7:\"Welcome\";s:17:\"zeal_hero_tagline\";s:36:\"Poetry and writings by Monica Renata\";s:23:\"zeal_hero_button_1_text\";s:5:\"Books\";s:22:\"zeal_hero_button_1_url\";s:49:\"https://www.amazon.com/Monica-Renata/e/B00J69UZBK\";s:23:\"zeal_hero_button_2_text\";s:11:\"Poem Search\";s:22:\"zeal_hero_button_2_url\";s:31:\"http://www.monicarenata.com/?s=\";s:14:\"zeal_hero_tint\";s:22:\"rgba(118,145,110,0.25)\";s:21:\"zeal_jumbo_text_color\";s:7:\"#0f6809\";s:23:\"zeal_the_featured_post2\";i:1322;s:19:\"zeal_font_secondary\";s:20:\"Orbitron, sans-serif\";s:19:\"zeal_menu_font_size\";i:14;s:19:\"zeal_copyright_text\";s:37:\"Copyright Monica Renata Williams 2017\";s:16:\"zeal_search_bool\";s:2:\"on\";s:14:\"zeal_logo_size\";i:50;s:22:\"zeal_post_column_ratio\";s:10:\"three-nine\";s:22:\"zeal_single_categories\";s:3:\"off\";s:27:\"zeal_the_featured_post_bool\";s:2:\"on\";s:22:\"zeal_the_featured_post\";i:761;s:20:\"zeal_blog_title_size\";i:24;s:16:\"zeal_theme_color\";s:5:\"green\";s:13:\"zeal_bg_color\";s:7:\"#919191\";s:16:\"zeal_slider_bool\";s:2:\"on\";s:22:\"zeal_hero_heading_size\";i:72;s:22:\"zeal_hero_tagline_size\";i:14;s:22:\"zeal_jumbo_button_size\";i:14;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1486171205;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:27:{i:0;s:11:\"archives-10\";i:1;s:29:\"siteorigin-panels-postloop-11\";i:2;s:8:\"search-7\";i:3;s:17:\"impact_nav_menu-3\";i:4;s:28:\"siteorigin-panels-postloop-8\";i:5;s:28:\"siteorigin-panels-postloop-9\";i:6;s:19:\"metaslider_widget-6\";i:7;s:10:\"archives-6\";i:8;s:8:\"search-3\";i:9;s:8:\"search-4\";i:10;s:6:\"text-7\";i:11;s:39:\"facebook_comments_master_widget_viral-2\";i:12;s:39:\"facebook_comments_master_widget_basic-3\";i:13;s:19:\"blog_subscription-3\";i:14;s:11:\"top-posts-3\";i:15;s:18:\"twitter_timeline-2\";i:16;s:18:\"twitter_timeline-4\";i:17;s:10:\"calendar-2\";i:18;s:10:\"archives-3\";i:19;s:10:\"archives-4\";i:20;s:6:\"text-5\";i:21;s:12:\"categories-3\";i:22;s:14:\"recent-posts-3\";i:23;s:11:\"tag_cloud-3\";i:24;s:28:\"siteorigin-panels-postloop-3\";i:25;s:28:\"siteorigin-panels-postloop-4\";i:26;s:19:\"metaslider_widget-3\";}s:18:\"template_1_sidebar\";a:3:{i:0;s:14:\"recent-posts-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_1\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-9\";}s:18:\"orphaned_widgets_3\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_4\";a:3:{i:0;s:6:\"text-5\";i:1;s:18:\"twitter_timeline-2\";i:2;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_7\";a:2:{i:0;s:10:\"archives-4\";i:1;s:6:\"text-7\";}s:16:\"sidebar-footer-a\";a:2:{i:0;s:11:\"archives-12\";i:1;s:29:\"siteorigin-panels-postloop-13\";}s:14:\"sidebar-footer\";a:1:{i:0;s:19:\"sow-post-carousel-3\";}}}}','no'),(662037,'widget_ember-about-content-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662038,'widget_ember-featured-content-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662039,'widget_ember-team-content-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662040,'widget_ember-social-content-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(686399,'types_database_version','2020900','yes'),(686400,'wd_bwg_options','{\"id\":\"1\",\"images_directory\":\"wp-content\\/uploads\",\"masonry\":\"vertical\",\"mosaic\":\"vertical\",\"resizable_mosaic\":\"0\",\"mosaic_total_width\":\"100\",\"image_column_number\":\"5\",\"images_per_page\":\"30\",\"thumb_width\":\"180\",\"thumb_height\":\"90\",\"upload_thumb_width\":\"300\",\"upload_thumb_height\":\"300\",\"image_enable_page\":\"1\",\"image_title_show_hover\":\"none\",\"ecommerce_icon_show_hover\":\"\",\"album_column_number\":\"5\",\"albums_per_page\":\"30\",\"album_title_show_hover\":\"hover\",\"album_thumb_width\":\"120\",\"album_thumb_height\":\"90\",\"album_enable_page\":\"1\",\"extended_album_height\":\"150\",\"extended_album_description_enable\":\"1\",\"image_browser_width\":\"800\",\"image_browser_title_enable\":\"1\",\"image_browser_description_enable\":\"1\",\"blog_style_width\":\"800\",\"blog_style_title_enable\":\"1\",\"blog_style_images_per_page\":\"5\",\"blog_style_enable_page\":\"1\",\"slideshow_type\":\"fade\",\"slideshow_interval\":\"5\",\"slideshow_width\":\"800\",\"slideshow_height\":\"500\",\"slideshow_enable_autoplay\":\"0\",\"slideshow_enable_shuffle\":\"0\",\"slideshow_enable_ctrl\":\"1\",\"slideshow_enable_filmstrip\":\"1\",\"slideshow_filmstrip_height\":\"90\",\"slideshow_enable_title\":\"0\",\"slideshow_title_position\":\"top-right\",\"slideshow_enable_description\":\"0\",\"slideshow_description_position\":\"bottom-right\",\"slideshow_enable_music\":\"0\",\"slideshow_audio_url\":\"\",\"slideshow_effect_duration\":\"1\",\"popup_width\":\"800\",\"popup_height\":\"500\",\"popup_type\":\"fade\",\"popup_interval\":\"5\",\"popup_enable_filmstrip\":\"1\",\"popup_filmstrip_height\":\"70\",\"popup_enable_ctrl_btn\":\"1\",\"popup_enable_fullscreen\":\"1\",\"popup_enable_info\":\"1\",\"popup_info_always_show\":\"0\",\"popup_enable_rate\":\"0\",\"popup_enable_comment\":\"1\",\"popup_enable_email\":\"0\",\"popup_enable_captcha\":\"0\",\"popup_enable_download\":\"0\",\"popup_enable_fullsize_image\":\"0\",\"popup_enable_facebook\":\"1\",\"popup_enable_twitter\":\"1\",\"popup_enable_google\":\"1\",\"popup_enable_ecommerce\":\"0\",\"popup_effect_duration\":\"1\",\"watermark_type\":\"none\",\"watermark_position\":\"bottom-left\",\"watermark_width\":\"90\",\"watermark_height\":\"90\",\"watermark_url\":\"http:\\/\\/www.monicarenata.com\\/wp-content\\/plugins\\/photo-gallery\\/images\\/watermark.png\",\"watermark_text\":\"web-dorado.com\",\"watermark_link\":\"https:\\/\\/web-dorado.com\",\"watermark_font_size\":\"20\",\"watermark_font\":\"segoe ui\",\"watermark_color\":\"FFFFFF\",\"watermark_opacity\":\"30\",\"built_in_watermark_type\":\"none\",\"built_in_watermark_position\":\"middle-center\",\"built_in_watermark_size\":\"15\",\"built_in_watermark_url\":\"http:\\/\\/www.monicarenata.com\\/wp-content\\/plugins\\/photo-gallery\\/images\\/watermark.png\",\"built_in_watermark_text\":\"web-dorado.com\",\"built_in_watermark_font_size\":\"20\",\"built_in_watermark_font\":\"arial\",\"built_in_watermark_color\":\"FFFFFF\",\"built_in_watermark_opacity\":\"30\",\"image_right_click\":\"0\",\"popup_fullscreen\":\"0\",\"gallery_role\":\"0\",\"album_role\":\"0\",\"image_role\":\"0\",\"popup_autoplay\":\"0\",\"album_view_type\":\"thumbnail\",\"popup_enable_pinterest\":\"0\",\"popup_enable_tumblr\":\"0\",\"show_search_box\":\"0\",\"search_box_width\":\"180\",\"preload_images\":\"0\",\"preload_images_count\":\"10\",\"thumb_click_action\":\"open_lightbox\",\"thumb_link_target\":\"1\",\"comment_moderation\":\"0\",\"popup_hit_counter\":\"0\",\"enable_ML_import\":\"0\",\"showthumbs_name\":\"0\",\"show_album_name\":\"0\",\"show_image_counts\":\"0\",\"upload_img_width\":\"1200\",\"upload_img_height\":\"1200\",\"play_icon\":\"1\",\"show_masonry_thumb_description\":\"0\",\"slideshow_title_full_width\":\"0\",\"popup_info_full_width\":\"0\",\"show_sort_images\":\"0\",\"autoupdate_interval\":\"30\",\"instagram_access_token\":\"\",\"description_tb\":\"0\",\"enable_seo\":\"1\",\"autohide_lightbox_navigation\":\"1\",\"autohide_slideshow_navigation\":\"1\",\"read_metadata\":\"1\",\"enable_loop\":\"1\",\"enable_addthis\":\"0\",\"addthis_profile_id\":\"\",\"carousel_interval\":\"5\",\"carousel_width\":\"300\",\"carousel_height\":\"300\",\"carousel_image_column_number\":\"5\",\"carousel_image_par\":\"0.75\",\"carousel_enable_title\":\"0\",\"carousel_enable_autoplay\":\"0\",\"carousel_r_width\":\"800\",\"carousel_fit_containerWidth\":\"1\",\"carousel_prev_next_butt\":\"1\",\"carousel_play_pause_butt\":\"1\",\"permissions\":\"manage_options\",\"facebook_app_id\":\"\",\"facebook_app_secret\":\"\",\"show_tag_box\":\"0\",\"show_hide_custom_post\":\"0\",\"show_hide_post_meta\":\"0\",\"use_inline_stiles_and_scripts\":\"0\",\"placeholder\":\"\"}','no'),(663551,'widget_sup_tabber','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663552,'widget_sup_recentposts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663596,'redux_version_upgraded_from','3.6.3','yes'),(663599,'widget_sow-button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663600,'widget_sow-google-map','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663601,'widget_sow-image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663602,'widget_sow-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(663603,'widget_sow-post-carousel','a:4:{s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:17:\"Read More Poetry:\";s:5:\"posts\";s:112:\"post_type=post&date_query={\"after\":\"\",\"before\":\"\"}&orderby=rand&order=DESC&posts_per_page=30&sticky=&additional=\";s:12:\"_sow_form_id\";s:13:\"5896bb12e8d40\";}i:4;a:3:{s:5:\"title\";s:12:\"More Poetry:\";s:5:\"posts\";s:0:\"\";s:12:\"_sow_form_id\";s:13:\"5896bb12e8d40\";}i:6;a:3:{s:5:\"title\";s:22:\"Poetry From The Past: \";s:5:\"posts\";s:0:\"\";s:12:\"_sow_form_id\";s:13:\"58bcbbf2e3180\";}}','yes'),(663604,'widget_sow-editor','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(662276,'zedity_version','7.6.2','yes'),(663632,'wpcf_users_options','1','yes'),(663633,'wpcf-custom-taxonomies','a:2:{s:8:\"category\";a:25:{s:4:\"name\";s:8:\"category\";s:5:\"label\";s:10:\"Categories\";s:6:\"labels\";a:21:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";a:4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:15:\"edit_categories\";s:12:\"delete_terms\";s:17:\"delete_categories\";s:12:\"assign_terms\";s:17:\"assign_categories\";}s:7:\"rewrite\";a:4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:1;s:7:\"ep_mask\";i:512;s:4:\"slug\";s:8:\"category\";}s:9:\"query_var\";s:13:\"category_name\";s:21:\"update_count_callback\";s:0:\"\";s:8:\"_builtin\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:10:\"categories\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:4:\"slug\";s:8:\"category\";s:8:\"supports\";a:1:{s:4:\"post\";i:1;}}s:8:\"post_tag\";a:25:{s:4:\"name\";s:8:\"post_tag\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";a:21:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";a:4:{s:12:\"manage_terms\";s:16:\"manage_post_tags\";s:10:\"edit_terms\";s:14:\"edit_post_tags\";s:12:\"delete_terms\";s:16:\"delete_post_tags\";s:12:\"assign_terms\";s:16:\"assign_post_tags\";}s:7:\"rewrite\";a:4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:1024;s:4:\"slug\";s:3:\"tag\";}s:9:\"query_var\";s:3:\"tag\";s:21:\"update_count_callback\";s:0:\"\";s:8:\"_builtin\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:4:\"tags\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:4:\"slug\";s:8:\"post_tag\";s:8:\"supports\";a:1:{s:4:\"post\";i:1;}}}','yes'),(663637,'siteorigin_widget_bundle_version','1.71.0','yes'),(663638,'siteorigin_widgets_old_widgets','/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/accordion/accordion.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/anything-carousel/anything-carousel.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/author-box/author-box.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/blog/blog.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/button/button.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/button-grid/button-grid.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/cta/cta.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/contact/contact.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/editor/editor.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/features/features.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/google-map/google-map.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/headline/headline.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/hero/hero.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/icon/icon.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/image/image.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/image-grid/image-grid.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/slider/slider.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/layout-slider.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/lottie-player/lottie-player.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/post-carousel.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/price-table/price-table.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/recent-posts/recent-posts.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/tabs/tabs.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/taxonomy/taxonomy.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/testimonial/testimonial.php,/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/video/video.php','yes'),(663639,'maskitto_light','a:40:{s:11:\"page-layout\";s:1:\"1\";s:13:\"minity-status\";b:1;s:10:\"logo-image\";a:1:{s:3:\"url\";s:0:\"\";}s:17:\"loading-animation\";s:1:\"0\";s:11:\"back-to-top\";b:1;s:11:\"footer-text\";s:0:\"\";s:11:\"footer-logo\";b:1;s:10:\"custom-css\";s:26:\"#some-block{\npadding: 0;\n}\";s:13:\"primary-color\";s:7:\"#e15454\";s:19:\"primary-color-hover\";s:7:\"#cf3d3d\";s:21:\"body-background-color\";s:7:\"#ffffff\";s:23:\"header-background-color\";s:7:\"#ffffff\";s:23:\"footer-background-color\";s:7:\"#3C3C3C\";s:15:\"blog-background\";a:2:{s:16:\"background-color\";s:7:\"#f2f4f5\";s:16:\"background-image\";s:75:\"http://www.monicarenata.com/wp-content/themes/maskitto-light/img/blogbg.png\";}s:9:\"body-font\";a:4:{s:5:\"color\";s:7:\"#565656\";s:9:\"font-size\";s:4:\"13px\";s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-weight\";s:6:\"Normal\";}s:12:\"button-style\";s:1:\"1\";s:11:\"title-style\";s:1:\"1\";s:22:\"slideshow-widget-style\";s:1:\"1\";s:13:\"general-style\";s:1:\"1\";s:17:\"header-top-accent\";b:0;s:13:\"header-layout\";s:1:\"1\";s:19:\"nacigation-dropdown\";s:1:\"1\";s:13:\"header-sticky\";b:1;s:15:\"header-contacts\";b:1;s:20:\"header-contacts-mail\";s:18:\"info@mywebsite.com\";s:21:\"header-contacts-phone\";s:12:\"800-2312-323\";s:13:\"header-social\";b:1;s:19:\"header-social-links\";b:1;s:13:\"header-search\";b:0;s:22:\"social-network-twitter\";s:38:\"http://www.twitter.com/TheShufflehound\";s:24:\"social-network-wordpress\";s:43:\"https://wordpress.org/themes/maskitto-light\";s:12:\"blog-widgets\";b:1;s:15:\"blog-categories\";b:1;s:11:\"blog-layout\";s:1:\"1\";s:17:\"blog-thumb-status\";b:1;s:16:\"blog-thumb-title\";s:29:\"A brief revision of my vision\";s:14:\"blog-thumb-url\";a:1:{s:3:\"url\";s:77:\"http://www.monicarenata.com/wp-content/themes/maskitto-light/img/bloghead.jpg\";}s:17:\"blog-thumb-height\";i:280;s:21:\"contacts-social-icons\";b:1;s:18:\"preview-word-limit\";i:55;}','yes'),(663640,'maskitto_light-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1484535326;}','yes'),(663646,'installer_repositories_with_theme','a:1:{i:0;s:7:\"toolset\";}','yes'),(663898,'cntctfrmtdb_options','a:14:{s:21:\"plugin_option_version\";s:5:\"1.7.4\";s:19:\"save_messages_to_db\";i:1;s:20:\"format_save_messages\";s:3:\"xml\";s:13:\"csv_separator\";s:1:\",\";s:13:\"csv_enclosure\";s:1:\"\"\";s:12:\"mail_address\";i:1;s:15:\"delete_messages\";i:1;s:21:\"delete_messages_after\";s:5:\"daily\";s:13:\"first_install\";i:1484546212;s:23:\"display_settings_notice\";i:0;s:22:\"suggest_feature_banner\";i:1;s:17:\"plugin_db_version\";s:3:\"1.6\";s:20:\"hide_premium_options\";a:0:{}s:19:\"go_settings_counter\";i:2;}','yes'),(663903,'post_by_email_address1','jumo967xeze@post.wordpress.com','yes'),(663904,'monitor_receive_notifications','1','yes'),(663661,'r_notice_data','{\"type\":\"redux-message\",\"title\":\"<strong>Redux Framework: New Documentation coming!<\\/strong><br\\/>\",\"message\":\"We\'ve heard your screams and we\'re completely redoing our documentation. For a preview of things to come, please <a href=\\\"http:\\/\\/reduxframework.github.io\\/docs.redux.io\\/getting-started\\/\\\">visit our new docs repo<\\/a>. P.S. You can contribute! If you have an idea for a doc, <a href=\\\"https:\\/\\/github.com\\/reduxframework\\/docs.redux.io\\/issues\\\">post your ideas here<\\/a>. \",\"color\":\"rgba(0,162,227,1)\"}','yes'),(663662,'redux_blast','1484535434','yes'),(663663,'redux_demo','a:70:{s:12:\"opt-checkbox\";s:1:\"1\";s:15:\"opt-multi-check\";a:3:{i:1;s:1:\"1\";i:2;s:1:\"0\";i:3;s:1:\"0\";}s:9:\"opt-radio\";s:1:\"2\";s:12:\"opt-sortable\";a:3:{s:8:\"Text One\";s:6:\"Item 1\";s:8:\"Text Two\";s:6:\"Item 2\";s:10:\"Text Three\";s:6:\"Item 3\";}s:18:\"opt-check-sortable\";a:3:{s:3:\"cb1\";b:0;s:3:\"cb2\";b:1;s:3:\"cb3\";b:0;}s:12:\"text-example\";s:12:\"Default Text\";s:17:\"text-example-hint\";s:12:\"Default Text\";s:12:\"opt-textarea\";s:12:\"Default Text\";s:10:\"opt-editor\";s:27:\"Powered by Redux Framework.\";s:15:\"opt-editor-tiny\";s:27:\"Powered by Redux Framework.\";s:18:\"opt-ace-editor-css\";s:29:\"#header{\n margin: 0 auto;\n}\";s:17:\"opt-ace-editor-js\";s:39:\"jQuery(document).ready(function(){\n\n});\";s:18:\"opt-ace-editor-php\";s:28:\"<?php\n echo \"PHP String\";\";s:15:\"opt-color-title\";s:7:\"#000000\";s:16:\"opt-color-footer\";s:7:\"#dd9933\";s:16:\"opt-color-header\";a:2:{s:4:\"from\";s:7:\"#1e73be\";s:2:\"to\";s:7:\"#00897e\";}s:14:\"opt-color-rgba\";a:2:{s:5:\"color\";s:7:\"#7e33dd\";s:5:\"alpha\";s:2:\".8\";}s:14:\"opt-link-color\";a:3:{s:7:\"regular\";s:4:\"#aaa\";s:5:\"hover\";s:4:\"#bbb\";s:6:\"active\";s:4:\"#ccc\";}s:17:\"opt-palette-color\";s:3:\"red\";s:17:\"opt-header-border\";a:6:{s:12:\"border-color\";s:7:\"#1e73be\";s:12:\"border-style\";s:5:\"solid\";s:10:\"border-top\";s:3:\"3px\";s:12:\"border-right\";s:3:\"3px\";s:13:\"border-bottom\";s:3:\"3px\";s:11:\"border-left\";s:3:\"3px\";}s:26:\"opt-header-border-expanded\";a:6:{s:12:\"border-color\";s:7:\"#1e73be\";s:12:\"border-style\";s:5:\"solid\";s:10:\"border-top\";s:3:\"3px\";s:12:\"border-right\";s:3:\"3px\";s:13:\"border-bottom\";s:3:\"3px\";s:11:\"border-left\";s:3:\"3px\";}s:14:\"opt-dimensions\";a:2:{s:5:\"width\";i:200;s:6:\"height\";i:100;}s:20:\"opt-dimensions-width\";a:2:{s:5:\"width\";i:200;s:6:\"height\";i:100;}s:11:\"opt-spacing\";a:4:{s:10:\"margin-top\";s:3:\"1px\";s:12:\"margin-right\";s:3:\"2px\";s:13:\"margin-bottom\";s:3:\"3px\";s:11:\"margin-left\";s:3:\"4px\";}s:20:\"opt-spacing-expanded\";a:4:{s:10:\"margin-top\";s:3:\"1px\";s:12:\"margin-right\";s:3:\"2px\";s:13:\"margin-bottom\";s:3:\"3px\";s:11:\"margin-left\";s:3:\"4px\";}s:9:\"opt-media\";a:1:{s:3:\"url\";s:52:\"http://s.wordpress.org/style/images/codeispoetry.png\";}s:14:\"opt-button-set\";s:1:\"2\";s:20:\"opt-button-set-multi\";a:2:{i:0;s:1:\"2\";i:1;s:1:\"3\";}s:9:\"switch-on\";b:1;s:10:\"switch-off\";b:0;s:13:\"switch-parent\";i:0;s:13:\"switch-child1\";b:0;s:13:\"switch-child2\";b:0;s:10:\"opt-select\";s:1:\"2\";s:21:\"opt-select-stylesheet\";s:11:\"default.css\";s:19:\"opt-select-optgroup\";s:1:\"2\";s:16:\"opt-multi-select\";a:2:{i:0;s:1:\"2\";i:1;s:1:\"3\";}s:16:\"opt-select-image\";s:13:\"tree_bark.png\";s:23:\"opt-image-select-layout\";s:1:\"2\";s:12:\"opt-patterns\";i:0;s:16:\"opt-image-select\";s:1:\"2\";s:11:\"opt-presets\";i:0;s:16:\"opt-select_image\";i:0;s:16:\"opt-slider-label\";i:250;s:15:\"opt-slider-text\";i:75;s:17:\"opt-slider-select\";a:2:{i:1;i:100;i:2;i:300;}s:16:\"opt-slider-float\";d:0.5;s:11:\"opt-spinner\";s:2:\"40\";s:19:\"opt-typography-body\";a:4:{s:5:\"color\";s:7:\"#dd9933\";s:9:\"font-size\";s:4:\"30px\";s:11:\"font-family\";s:26:\"Arial,Helvetica,sans-serif\";s:11:\"font-weight\";s:6:\"Normal\";}s:14:\"opt-typography\";a:6:{s:5:\"color\";s:4:\"#333\";s:10:\"font-style\";s:3:\"700\";s:11:\"font-family\";s:4:\"Abel\";s:6:\"google\";b:1;s:9:\"font-size\";s:4:\"33px\";s:11:\"line-height\";s:4:\"40px\";}s:19:\"opt-homepage-layout\";a:3:{s:7:\"enabled\";a:4:{s:10:\"highlights\";s:10:\"Highlights\";s:6:\"slider\";s:6:\"Slider\";s:10:\"staticpage\";s:11:\"Static Page\";s:8:\"services\";s:8:\"Services\";}s:8:\"disabled\";a:0:{}s:6:\"backup\";a:0:{}}s:21:\"opt-homepage-layout-2\";a:2:{s:8:\"disabled\";a:2:{s:10:\"highlights\";s:10:\"Highlights\";s:6:\"slider\";s:6:\"Slider\";}s:7:\"enabled\";a:2:{s:10:\"staticpage\";s:11:\"Static Page\";s:8:\"services\";s:8:\"Services\";}}s:14:\"opt-text-email\";s:13:\"test@test.com\";s:12:\"opt-text-url\";s:25:\"http://reduxframework.com\";s:16:\"opt-text-numeric\";s:1:\"0\";s:22:\"opt-text-comma-numeric\";s:1:\"0\";s:25:\"opt-text-no-special-chars\";s:1:\"0\";s:20:\"opt-text-str_replace\";s:20:\"This is the default.\";s:21:\"opt-text-preg_replace\";s:1:\"0\";s:24:\"opt-text-custom_validate\";s:1:\"0\";s:20:\"opt-textarea-no-html\";s:27:\"No HTML is allowed in here.\";s:17:\"opt-textarea-html\";s:24:\"HTML is allowed in here.\";s:22:\"opt-textarea-some-html\";s:36:\"<p>Some HTML is allowed in here.</p>\";s:18:\"opt-required-basic\";b:0;s:19:\"opt-required-nested\";b:0;s:29:\"opt-required-nested-buttonset\";s:11:\"button-text\";s:19:\"opt-required-select\";s:10:\"no-sidebar\";s:32:\"opt-required-select-left-sidebar\";s:0:\"\";s:33:\"opt-required-select-right-sidebar\";s:0:\"\";s:19:\"opt-customizer-only\";s:1:\"2\";}','yes'),(669057,'powr_token','2PoQZIfQe41484708382','yes'),(669132,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:2294751320;s:11:\"update_core\";i:881488265;s:13:\"update_themes\";i:4122225990;}','yes'),(669134,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(669131,'jetpack_sync_settings_cron_sync_time_limit','30','on'),(664803,'widget_smartcat_team_widget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(664797,'smartcat_team_options','a:16:{s:8:\"template\";s:4:\"grid\";s:6:\"social\";s:3:\"yes\";s:13:\"single_social\";s:3:\"yes\";s:4:\"name\";s:3:\"yes\";s:5:\"title\";s:3:\"yes\";s:12:\"profile_link\";s:3:\"yes\";s:12:\"member_count\";i:-1;s:10:\"text_color\";s:6:\"1F7DCF\";s:7:\"columns\";s:1:\"3\";s:6:\"margin\";i:5;s:8:\"redirect\";b:0;s:18:\"single_image_style\";s:6:\"square\";s:11:\"social_link\";s:3:\"new\";s:11:\"card_margin\";i:100;s:15:\"single_template\";s:8:\"standard\";s:4:\"slug\";s:11:\"team_member\";}','yes'),(669055,'widget_powr_rss_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(681142,'theme_mods_yarn','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1485384150;s:4:\"data\";a:9:{s:19:\"wp_inactive_widgets\";a:27:{i:0;s:11:\"archives-10\";i:1;s:29:\"siteorigin-panels-postloop-11\";i:2;s:8:\"search-7\";i:3;s:17:\"impact_nav_menu-3\";i:4;s:28:\"siteorigin-panels-postloop-8\";i:5;s:28:\"siteorigin-panels-postloop-9\";i:6;s:19:\"metaslider_widget-6\";i:7;s:10:\"archives-6\";i:8;s:8:\"search-3\";i:9;s:8:\"search-4\";i:10;s:6:\"text-7\";i:11;s:39:\"facebook_comments_master_widget_viral-2\";i:12;s:39:\"facebook_comments_master_widget_basic-3\";i:13;s:19:\"blog_subscription-3\";i:14;s:11:\"top-posts-3\";i:15;s:18:\"twitter_timeline-2\";i:16;s:18:\"twitter_timeline-4\";i:17;s:10:\"calendar-2\";i:18;s:10:\"archives-3\";i:19;s:10:\"archives-4\";i:20;s:6:\"text-5\";i:21;s:12:\"categories-3\";i:22;s:14:\"recent-posts-3\";i:23;s:11:\"tag_cloud-3\";i:24;s:28:\"siteorigin-panels-postloop-3\";i:25;s:28:\"siteorigin-panels-postloop-4\";i:26;s:19:\"metaslider_widget-3\";}s:18:\"template_1_sidebar\";a:3:{i:0;s:14:\"recent-posts-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";}s:18:\"orphaned_widgets_1\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-9\";}s:18:\"orphaned_widgets_3\";a:3:{i:0;s:8:\"search-6\";i:1;s:12:\"categories-5\";i:2;s:10:\"archives-8\";}s:18:\"orphaned_widgets_4\";a:3:{i:0;s:6:\"text-5\";i:1;s:18:\"twitter_timeline-2\";i:2;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_6\";a:1:{i:0;s:8:\"search-3\";}s:18:\"orphaned_widgets_7\";a:2:{i:0;s:10:\"archives-4\";i:1;s:6:\"text-7\";}}}}','no'),(729824,'File-Manager','','yes'),(708199,'theme_mods_asteria-lite','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:6:\"topbar\";i:0;s:6:\"header\";i:0;s:6:\"footer\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1486173014;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:35:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-3\";i:2;s:10:\"archives-4\";i:3;s:10:\"archives-6\";i:4;s:10:\"archives-8\";i:5;s:11:\"archives-10\";i:6;s:11:\"archives-12\";i:7;s:8:\"search-3\";i:8;s:8:\"search-4\";i:9;s:8:\"search-6\";i:10;s:8:\"search-7\";i:11;s:6:\"text-5\";i:12;s:6:\"text-7\";i:13;s:6:\"text-9\";i:14;s:12:\"categories-3\";i:15;s:12:\"categories-5\";i:16;s:14:\"recent-posts-3\";i:17;s:11:\"tag_cloud-3\";i:18;s:39:\"facebook_comments_master_widget_viral-2\";i:19;s:39:\"facebook_comments_master_widget_basic-3\";i:20;s:17:\"impact_nav_menu-3\";i:21;s:23:\"bwp_gallery_slideshow-3\";i:22;s:28:\"siteorigin-panels-postloop-3\";i:23;s:28:\"siteorigin-panels-postloop-4\";i:24;s:28:\"siteorigin-panels-postloop-8\";i:25;s:28:\"siteorigin-panels-postloop-9\";i:26;s:29:\"siteorigin-panels-postloop-11\";i:27;s:29:\"siteorigin-panels-postloop-13\";i:28;s:19:\"sow-post-carousel-3\";i:29;s:19:\"metaslider_widget-3\";i:30;s:19:\"metaslider_widget-6\";i:31;s:19:\"blog_subscription-3\";i:32;s:11:\"top-posts-3\";i:33;s:18:\"twitter_timeline-2\";i:34;s:18:\"twitter_timeline-4\";}s:7:\"sidebar\";a:0:{}s:12:\"foot_sidebar\";a:0:{}s:18:\"template_1_sidebar\";a:0:{}}}}','no'),(707884,'_transient_zeal_categories','1','yes'),(708151,'hu_theme_options','a:62:{s:10:\"responsive\";s:2:\"on\";s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:7:\"favicon\";s:0:\"\";s:8:\"rss-feed\";s:0:\"\";s:13:\"page-comments\";s:2:\"on\";s:12:\"blog-heading\";s:0:\"\";s:15:\"blog-subheading\";s:0:\"\";s:14:\"excerpt-length\";s:2:\"34\";s:17:\"featured-category\";s:1:\"6\";s:20:\"featured-posts-count\";s:1:\"4\";s:11:\"placeholder\";s:2:\"on\";s:13:\"comment-count\";s:2:\"on\";s:10:\"author-bio\";s:2:\"on\";s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:11:\"custom-logo\";s:0:\"\";s:16:\"site-description\";s:2:\"on\";s:14:\"footer-widgets\";s:1:\"0\";s:11:\"footer-logo\";s:0:\"\";s:9:\"copyright\";s:0:\"\";s:6:\"credit\";s:2:\"on\";s:13:\"layout-global\";s:7:\"col-3cm\";s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:7:\"s1-home\";s:0:\"\";s:7:\"s2-home\";s:0:\"\";s:9:\"s1-single\";s:0:\"\";s:9:\"s2-single\";s:0:\"\";s:10:\"s1-archive\";s:0:\"\";s:10:\"s2-archive\";s:0:\"\";s:19:\"s1-archive-category\";s:0:\"\";s:19:\"s2-archive-category\";s:0:\"\";s:9:\"s1-search\";s:0:\"\";s:9:\"s2-search\";s:0:\"\";s:6:\"s1-404\";s:0:\"\";s:6:\"s2-404\";s:0:\"\";s:7:\"s1-page\";s:0:\"\";s:7:\"s2-page\";s:0:\"\";s:12:\"social-links\";a:3:{i:0;a:5:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:11:\"social-icon\";s:7:\"fa-book\";s:11:\"social-link\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"social-color\";s:7:\"#ced3e2\";s:13:\"social-target\";a:1:{i:0;s:6:\"_blank\";}}i:1;a:5:{s:5:\"title\";s:33:\"The Awkward Butterfly On Facebook\";s:11:\"social-icon\";s:11:\"fa-facebook\";s:11:\"social-link\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:12:\"social-color\";s:7:\"#136ebf\";s:13:\"social-target\";a:1:{i:0;s:6:\"_blank\";}}i:2;a:4:{s:5:\"title\";s:0:\"\";s:11:\"social-icon\";s:3:\"fa-\";s:11:\"social-link\";s:7:\"http://\";s:12:\"social-color\";s:0:\"\";}}s:14:\"dynamic-styles\";s:2:\"on\";s:5:\"boxed\";s:3:\"off\";s:4:\"font\";s:13:\"titillium-web\";s:15:\"container-width\";s:4:\"1380\";s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#3b8dbd\";s:7:\"color-2\";s:7:\"#82b965\";s:12:\"color-topbar\";s:7:\"#26272b\";s:12:\"color-header\";s:7:\"#33363b\";s:17:\"color-header-menu\";s:0:\"\";s:12:\"color-footer\";s:7:\"#33363b\";s:15:\"logo-max-height\";s:2:\"60\";s:19:\"image-border-radius\";s:1:\"0\";s:15:\"body-background\";s:7:\"#eaeaea\";s:13:\"sidebar-areas\";a:8:{i:0;a:6:{s:2:\"id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:2:\"s1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:146:\"Full width widget zone. Located in the left sidebar in a 3 columns layout. Can be on the right of a 2 columns sidebar when content is on the left.\";}i:1;a:6:{s:2:\"id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:2:\"s2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:75:\"Full width widget zone. Located in the right sidebar in a 3 columns layout.\";}i:2;a:6:{s:2:\"id\";s:8:\"footer-1\";s:5:\"title\";s:8:\"Footer 1\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 1\";}i:3;a:6:{s:2:\"id\";s:8:\"footer-2\";s:5:\"title\";s:8:\"Footer 2\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 2\";}i:4;a:6:{s:2:\"id\";s:8:\"footer-3\";s:5:\"title\";s:8:\"Footer 3\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-3\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 3\";}i:5;a:6:{s:2:\"id\";s:8:\"footer-4\";s:5:\"title\";s:8:\"Footer 4\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-4\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 4\";}i:6;a:6:{s:2:\"id\";s:10:\"header-ads\";s:5:\"title\";s:29:\"Header (next to logo / title)\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:10:\"header-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:66:\"The Header Widget Zone is located next to your logo or site title.\";}i:7;a:6:{s:2:\"id\";s:10:\"footer-ads\";s:5:\"title\";s:17:\"Footer Full Width\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:10:\"footer-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:163:\"The Footer Widget Zone is located before the other footer widgets and takes 100% of the width. Very appropriate to display a Google Map or an advertisement banner.\";}}s:15:\"has_been_copied\";b:1;s:18:\"last_update_notice\";a:2:{s:7:\"version\";s:5:\"3.3.4\";s:13:\"display_count\";i:0;}s:8:\"defaults\";a:66:{s:7:\"favicon\";N;s:19:\"display-header-logo\";b:0;s:15:\"logo-max-height\";i:60;s:14:\"dynamic-styles\";b:1;s:5:\"boxed\";b:0;s:4:\"font\";s:15:\"source-sans-pro\";s:15:\"container-width\";i:1380;s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#3b8dbd\";s:7:\"color-2\";s:7:\"#82b965\";s:15:\"body-background\";a:1:{s:16:\"background-color\";s:7:\"#eaeaea\";}s:12:\"color-topbar\";s:7:\"#26272b\";s:12:\"color-header\";s:7:\"#33363b\";s:17:\"color-header-menu\";s:7:\"#33363b\";s:12:\"color-footer\";s:7:\"#33363b\";s:19:\"image-border-radius\";i:0;s:14:\"ext_link_style\";b:0;s:15:\"ext_link_target\";b:0;s:13:\"post-comments\";b:1;s:13:\"page-comments\";b:0;s:12:\"smoothscroll\";b:1;s:10:\"responsive\";b:1;s:12:\"social-links\";a:0:{}s:12:\"minified-css\";b:1;s:15:\"structured-data\";b:1;s:14:\"smart_load_img\";b:0;s:10:\"about-page\";b:1;s:11:\"help-button\";b:1;s:16:\"site-description\";b:1;s:16:\"use-header-image\";b:0;s:10:\"header-ads\";b:0;s:19:\"default-menu-header\";b:0;s:20:\"blog-heading-enabled\";b:1;s:12:\"blog-heading\";s:13:\"Monica Renata\";s:15:\"blog-subheading\";s:4:\"Blog\";s:13:\"blog-standard\";b:0;s:14:\"excerpt-length\";i:34;s:22:\"featured-posts-enabled\";b:1;s:17:\"featured-category\";s:1:\"0\";s:20:\"featured-posts-count\";i:1;s:27:\"featured-posts-full-content\";b:0;s:18:\"featured-slideshow\";b:0;s:24:\"featured-slideshow-speed\";i:5000;s:22:\"featured-posts-include\";b:0;s:10:\"author-bio\";b:1;s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:11:\"placeholder\";b:1;s:13:\"comment-count\";b:1;s:13:\"layout-global\";s:7:\"col-3cm\";s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:11:\"sidebar-top\";b:1;s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:10:\"footer-ads\";b:0;s:14:\"footer-widgets\";s:1:\"3\";s:11:\"footer-logo\";N;s:9:\"copyright\";s:0:\"\";s:6:\"credit\";b:1;s:19:\"default-menu-footer\";b:0;s:3:\"ver\";s:5:\"3.3.4\";}}','yes'),(708152,'_transient_timeout_started_using_hueman','1801531207','no'),(708153,'_transient_started_using_hueman','with|3.3.4','no'),(708154,'_transient_timeout__hu_sidebar_backup','2116891208','no'),(708155,'_transient__hu_sidebar_backup','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{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:6:\"text-3\";}s:18:\"orphaned_widgets_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:7:\"primary\";a:7:{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:6:\"text-3\";}s:9:\"secondary\";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\";}}','no'),(715560,'widget_random-post-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(716055,'jetpack_site_icon_url','http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg','yes'),(708203,'asteria','a:57:{s:13:\"site_width_id\";s:1:\"1\";s:12:\"head_type_id\";s:5:\"head4\";s:12:\"page_type_id\";s:1:\"1\";s:7:\"ajax_id\";i:1;s:8:\"totop_id\";i:1;s:14:\"footer_text_id\";s:0:\"\";s:14:\"block1_text_id\";s:11:\"Lorem Ipsum\";s:11:\"block1_icon\";s:9:\"fa-camera\";s:18:\"block1_textarea_id\";s:140:\"Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.\";s:14:\"block2_text_id\";s:11:\"Lorem Ipsum\";s:11:\"block2_icon\";s:9:\"fa-rocket\";s:18:\"block2_textarea_id\";s:140:\"Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.\";s:14:\"block3_text_id\";s:11:\"Lorem Ipsum\";s:11:\"block3_icon\";s:9:\"fa-signal\";s:18:\"block3_textarea_id\";s:140:\"Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.\";s:14:\"block4_text_id\";s:11:\"Lorem Ipsum\";s:11:\"block4_icon\";s:7:\"fa-cogs\";s:18:\"block4_textarea_id\";s:140:\"Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.\";s:17:\"welcm_textarea_id\";s:149:\"<h2>Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.</h2>\";s:16:\"welcome_color_id\";s:7:\"#eeeeee\";s:14:\"posts_title_id\";s:168:\"<h2 style=\"text-align: center;\"><span style=\"color: #30B7E8;\">Check Out Our Portfolio</span></h2><p style=\"text-align: center;\">The Very recent work for our clients</p>\";s:15:\"front_layout_id\";s:1:\"1\";s:10:\"enable_cat\";i:0;s:16:\"n_posts_field_id\";s:1:\"9\";s:12:\"home_sort_id\";a:3:{s:6:\"blocks\";s:6:\"Blocks\";s:12:\"welcome-text\";s:12:\"Welcome Text\";s:5:\"posts\";s:15:\"Frontpage Posts\";}s:14:\"slider_type_id\";s:4:\"nivo\";s:15:\"n_slide_time_id\";s:4:\"4000\";s:12:\"slide_height\";s:5:\"500px\";s:17:\"slidefont_size_id\";s:4:\"60px\";s:17:\"slide_button_text\";s:0:\"\";s:12:\"sec_color_id\";s:7:\"#30B7E8\";s:16:\"primtxt_color_id\";s:7:\"#888888\";s:15:\"sectxt_color_id\";s:7:\"#FFFFFF\";s:21:\"leavreplytxt_color_id\";s:7:\"#333333\";s:10:\"rounded_id\";i:0;s:9:\"shadow_id\";i:0;s:12:\"logo_font_id\";a:4:{s:5:\"color\";s:7:\"#ffffff\";s:9:\"font-size\";s:4:\"44px\";s:11:\"font-family\";s:7:\"Raleway\";s:11:\"font-weight\";s:6:\"Normal\";}s:15:\"content_font_id\";a:1:{s:9:\"font-size\";s:4:\"14px\";}s:14:\"ptitle_font_id\";a:1:{s:11:\"font-family\";s:9:\"Open Sans\";}s:16:\"social_single_id\";i:1;s:15:\"social_color_id\";s:7:\"#CCCCCC\";s:13:\"cat_layout_id\";s:1:\"1\";s:12:\"post_info_id\";i:1;s:16:\"post_nextprev_id\";i:1;s:16:\"post_comments_id\";i:1;s:16:\"post_lightbox_id\";i:1;s:15:\"post_gallery_id\";i:1;s:8:\"blog_num\";s:2:\"10\";s:14:\"hide_mob_slide\";s:1:\"0\";s:15:\"hide_mob_blocks\";s:1:\"0\";s:14:\"hide_mob_welcm\";s:1:\"0\";s:19:\"hide_mob_frontposts\";s:1:\"0\";s:17:\"hide_mob_footwdgt\";s:1:\"0\";s:18:\"hide_mob_rightsdbr\";s:1:\"0\";s:10:\"offline_id\";i:0;s:15:\"offline_text_id\";s:16:\"Maintenance Mode\";s:14:\"offline_msg_id\";s:63:\"We are currently undergoing maintenance. Please try back after\";}','yes'),(708204,'asteria-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1486172094;}','yes'),(708319,'_transient_vantage_categorized_blog_cache_count','1','yes'),(708346,'GooglePublisherPlugin','a:5:{s:5:\"token\";a:1:{i:0;s:43:\"zSMccCVyewpvRcUuiE7jjymgapUM0fxt2fT1kZ1EBN4\";}s:6:\"siteId\";s:36:\"43707c28-bd8d-46a0-b11b-2c27519bd5ba\";s:13:\"updateSupport\";s:4:\"true\";s:12:\"notification\";s:4:\"none\";s:4:\"tags\";a:11:{i:0;a:4:{s:8:\"pageType\";s:5:\"front\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30252:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"main-wrapper\",[]],[\"20px\",\"10px\",1],0,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"30px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"left\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,8],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_two\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"2950818900\",\"4427552103\",\"5904285302\",\"7381018508\",\"8857751701\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\"]],\"WordPressFront\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";s:20:\"expectedCmsThemeHash\";s:32:\"dc448aa7b8871b126c1abb43362eee15\";}i:1;a:3:{s:8:\"pageType\";s:5:\"front\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30252:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"main-wrapper\",[]],[\"20px\",\"10px\",1],0,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"30px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"left\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,8],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_two\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"2950818900\",\"4427552103\",\"5904285302\",\"7381018508\",\"8857751701\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\"]],\"WordPressFront\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:2;a:4:{s:8:\"pageType\";s:10:\"singlePost\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:29675:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"comments\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,8],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",0,\"footer_one\",[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],-1],[\"10px\",\"10px\",0],3,[0],null,0]],[\"7799820906\",\"9276554101\",\"1753287308\",\"3230020508\",\"4706753701\"],[\"DIV\",null,\"footer_one\",[]],\"20170214_040801\",2]],\"WordPressSinglePost\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";s:20:\"expectedCmsThemeHash\";s:32:\"dc448aa7b8871b126c1abb43362eee15\";}i:3;a:3:{s:8:\"pageType\";s:10:\"singlePost\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:29675:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"comments\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,8],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",0,\"footer_one\",[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"DIV\",0,\"footer_one\",[],-1],[\"10px\",\"10px\",0],3,[0],null,0]],[\"7799820906\",\"9276554101\",\"1753287308\",\"3230020508\",\"4706753701\"],[\"DIV\",null,\"footer_one\",[]],\"20170214_040801\",2]],\"WordPressSinglePost\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:4;a:3:{s:8:\"pageType\";s:4:\"page\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:27680:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[],[]]],\"WordPressPage\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:5;a:4:{s:8:\"pageType\";s:7:\"archive\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30038:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"4567152900\",\"6043886104\",\"7520619303\",\"8997352501\",\"1474085709\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\",2]],\"WordPressArchive\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";s:20:\"expectedCmsThemeHash\";s:32:\"dc448aa7b8871b126c1abb43362eee15\";}i:6;a:3:{s:8:\"pageType\";s:7:\"archive\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30038:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"4567152900\",\"6043886104\",\"7520619303\",\"8997352501\",\"1474085709\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\",2]],\"WordPressArchive\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:7;a:4:{s:8:\"pageType\";s:8:\"category\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30039:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"2538689701\",\"4015422903\",\"5492156108\",\"6968889308\",\"8445622505\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\",2]],\"WordPressCategory\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";s:20:\"expectedCmsThemeHash\";s:32:\"dc448aa7b8871b126c1abb43362eee15\";}i:8;a:3:{s:8:\"pageType\";s:8:\"category\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:30039:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,2],[[\"BODY\",0,null,[]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,2],[[\"ARTICLE\",0,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",0,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",1,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",1,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"ARTICLE\",2,null,[],1],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],2],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],3],[\"10px\",\"10px\",0],0,[0],null,0],[[\"ARTICLE\",2,null,[],-1],[\"10px\",\"10px\",0],3,[0],null,0],[[\"DIV\",null,null,[\"sow-carousel-container\"]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,11],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],1,[4],null,0,null,null,4],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"5px\",\"11px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],1,[2],null,0,null,null,7],[[\"DIV\",null,null,[\"navbar-inner\"]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,7],[[\"HEADER\",0,null,[]],[\"10px\",\"10px\",1],2,[2],null,0,null,null,4],[[\"HEADER\",0,null,[]],[\"20px\",\"10px\",1],3,[2],null,0,null,null,4],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],0,[2],null,0,null,null,7],[[\"DIV\",null,\"content\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"20px\",1],0,[1],null,0,null,null,7],[[\"DIV\",null,\"footer_three\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],1,[3],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],2,[5],null,0,null,null,5],[[\"DIV\",null,null,[\"colophon\"]],[\"10px\",\"10px\",1],3,[5],null,0,null,null,5],[[\"ASIDE\",null,\"archives-20\",[]],[\"11px\",\"10px\",1],0,[1],null,0,null,null,9],[[\"ASIDE\",null,\"archives-20\",[]],[\"10px\",\"10px\",1],3,[1],null,0,null,null,9],[[\"DIV\",null,\"calendar_wrap\",[]],[\"10px\",\"10px\",1],0,[1],null,0,null,null,10],[[\"TABLE\",null,\"wp-calendar\",[]],[\"10px\",\"20px\",1],3,[1],null,0,null,null,11],[[\"DIV\",null,\"footer_one\",[]],[\"10px\",\"10px\",1],3,[3],null,0,null,null,7]],[\"2538689701\",\"4015422903\",\"5492156108\",\"6968889308\",\"8445622505\"],[\"ARTICLE\",null,null,[]],\"20170214_040801\",2]],\"WordPressCategory\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:9;a:3:{s:8:\"pageType\";s:64:\"2f18e2a6300d06d2681b25afbe78f8fb4963ce4c1bd3070132c32098b78bfb90\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:27745:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script><script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",[[]],[[[[null,[[120,139]],null,19,1,1],[null,[[280,299]],null,30,1,1],[null,[[360,399],[460,519]],null,33,1,1]],[],[]]],\"WordPressPage-2f18e2a6300d06d2681b25afbe78f8fb4963ce4c1bd3070132c32098b78bfb90\",\"9145456502\",null,0.01,null,[null,1494911962243],0.01,1,null,null,\"http://www.monicarenata.com\"];(function(){var h=this,aa=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b},p=function(a){return\"number\"==typeof a},ba=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var b=c.slice();b.push.apply(b,arguments);return a.apply(this,b)}},r=function(a,b){function c(){}c.prototype=b.prototype;a.Ra=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.Ta=function(a,c,f){for(var d=Array(arguments.length-2),e=2;e<arguments.length;e++)d[e-2]=arguments[e];return b.prototype[c].apply(a,\nd)}};var ca=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},da=function(a,b){return a<b?-1:a>b?1:0},ea=function(a){return String(a).replace(/\\-([a-z])/g,function(a,c){return c.toUpperCase()})};var fa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=\"string\"==typeof a?a.split(\"\"):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};var ga=function(a){ga[\" \"](a);return a};ga[\" \"]=function(){};var ia=function(a,b){var c=ha;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var t;a:{var ja=h.navigator;if(ja){var ka=ja.userAgent;if(ka){t=ka;break a}}t=\"\"}var v=function(a){return-1!=t.indexOf(a)};var la=v(\"Opera\"),w=v(\"Trident\")||v(\"MSIE\"),ma=v(\"Edge\"),na=v(\"Gecko\")&&!(-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"))&&!(v(\"Trident\")||v(\"MSIE\"))&&!v(\"Edge\"),oa=-1!=t.toLowerCase().indexOf(\"webkit\")&&!v(\"Edge\"),pa=function(){var a=h.document;return a?a.documentMode:void 0},qa;\na:{var ra=\"\",sa=function(){var a=t;if(na)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ma)return/Edge\\/([\\d\\.]+)/.exec(a);if(w)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(oa)return/WebKit\\/(\\S+)/.exec(a);if(la)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();sa&&(ra=sa?sa[1]:\"\");if(w){var ta=pa();if(null!=ta&&ta>parseFloat(ra)){qa=String(ta);break a}}qa=ra}\nvar ua=qa,ha={},va=function(a){ia(a,function(){for(var b=0,c=ca(String(ua)).split(\".\"),d=ca(String(a)).split(\".\"),e=Math.max(c.length,d.length),f=0;0==b&&f<e;f++){var g=c[f]||\"\",k=d[f]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=da(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||da(0==g[2].length,0==k[2].length)||da(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},wa;var xa=h.document;\nwa=xa&&w?pa()||(\"CSS1Compat\"==xa.compatMode?parseInt(ua,10):5):void 0;var x=function(){},ya=\"function\"==typeof Uint8Array,z=function(a,b,c){a.a=null;b||(b=[]);a.Va=void 0;a.M=-1;a.l=b;a:{if(a.l.length){b=a.l.length-1;var d=a.l[b];if(d&&\"object\"==typeof d&&\"array\"!=aa(d)&&!(ya&&d instanceof Uint8Array)){a.R=b-a.M;a.G=d;break a}}a.R=Number.MAX_VALUE}a.Ua={};if(c)for(b=0;b<c.length;b++)d=c[b],d<a.R?(d+=a.M,a.l[d]=a.l[d]||y):a.G[d]=a.G[d]||y},y=[],A=function(a,b){if(b<a.R){b+=a.M;var c=a.l[b];return c===y?a.l[b]=[]:c}c=a.G[b];return c===y?a.G[b]=[]:c},Aa=function(a){a=\nA(za,a);return null==a?a:+a},B=function(a,b,c){b<a.R?a.l[b+a.M]=c:a.G[b]=c},C=function(a,b,c){a.a||(a.a={});if(!a.a[c]){var d=A(a,c);d&&(a.a[c]=new b(d))}return a.a[c]},D=function(a,b,c){a.a||(a.a={});if(!a.a[c]){for(var d=A(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.a[c]=e}b=a.a[c];b==y&&(b=a.a[c]=[]);return b},Ba=function(a,b,c){a.a||(a.a={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=E(c[e]);a.a[b]=c;B(a,b,d)},Ca=function(a){if(a.a)for(var b in a.a){var c=a.a[b];if(\"array\"==aa(c))for(var d=\n0;d<c.length;d++)c[d]&&E(c[d]);else c&&E(c)}},E=function(a){Ca(a);return a.l};x.prototype.toString=function(){Ca(this);return this.l.toString()};var Da=function(a){var b;if(\"array\"==aa(a)){for(var c=Array(a.length),d=0;d<a.length;d++)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c}if(ya&&a instanceof Uint8Array)return new Uint8Array(a);c={};for(d in a)null!=(b=a[d])&&(c[d]=\"object\"==typeof b?Da(b):b);return c};var Ea=function(a,b){this.events=[];this.Ga=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.ia=null!=c?c:Math.random()<a};Ea.prototype.disable=function(){fa(this.events,this.ya,this);this.events.length=0;this.ia=!1};Ea.prototype.ya=function(a){var b=this.Ga.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var Fa=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var Ha=function(){var a=Ga;try{var b;if(b=!!a&&null!=a.location.href)a:{try{ga(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},Ia=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var Ja=function(a,b,c,d,e){this.la=c||4E3;this.H=a||\"&\";this.wa=b||\",$\";this.T=void 0!==d?d:\"trn\";this.Sa=e||null;this.va=!1;this.V={};this.Ja=0;this.L=[]},Ma=function(a,b,c,d){b=b+\"//\"+c+d;var e=Ka(a)-d.length-0;if(0>e)return\"\";a.L.sort(function(a,b){return a-b});d=null;c=\"\";for(var f=0;f<a.L.length;f++)for(var g=a.L[f],k=a.V[g],m=0;m<k.length;m++){if(!e){d=null==d?g:d;break}var l=La(k[m],a.H,a.wa);if(l){l=c+l;if(e>=l.length){e-=l.length;b+=l;c=a.H;break}else a.va&&(c=e,l[c-1]==a.H&&--c,b+=l.substr(0,\nc),c=a.H,e=0);d=null==d?g:d}}f=\"\";a.T&&null!=d&&(f=c+a.T+\"=\"+(a.Sa||d));return b+f+\"\"},Ka=function(a){if(!a.T)return a.la;var b=1,c;for(c in a.V)b=c.length>b?c.length:b;return a.la-a.T.length-b-a.H.length-1},La=function(a,b,c,d,e){var f=[];Ia(a,function(a,k){(a=Na(a,b,c,d,e))&&f.push(k+\"=\"+a)});return f.join(b)},Na=function(a,b,c,d,e){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var f=[],g=0;g<a.length;g++)f.push(Na(a[g],\nb,c,d+1,e));return f.join(c[d])}}else if(\"object\"==typeof a)return e=e||0,2>e?encodeURIComponent(La(a,b,c,d,e+1)):\"...\";return encodeURIComponent(String(a))};var Ra=function(a,b,c,d){var e=Pa;if((c?e.Pa:Math.random())<(d||e.za))try{var f;b instanceof Ja?f=b:(f=new Ja,Ia(b,function(a,b){var c=f,d=c.Ja++,e={};e[b]=a;a=[e];c.L.push(d);c.V[d]=a}));var g=Ma(f,e.Ma,e.Ba,e.La+a+\"&\");g&&Qa(g)}catch(k){}},Qa=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var Sa;if(!(Sa=!na&&!w)){var Ta;if(Ta=w)Ta=9<=Number(wa);Sa=Ta}Sa||na&&va(\"1.9.1\");w&&va(\"9\");var F=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};F.prototype.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};var Ua=document,Va=window;var Wa=!!window.google_async_iframe_id,Ga=Wa&&window.parent||window;var Pa,G;if(Wa&&!Ha()){var Xa=\".\"+Ua.domain;try{for(;2<Xa.split(\".\").length&&!Ha();)Ua.domain=Xa=Xa.substr(Xa.indexOf(\".\")+1),Ga=window.parent}catch(a){}Ha()||(Ga=window)}G=Ga;var Ya=new Ea(1,G);Pa=new function(){this.Ma=\"http:\"===Va.location.protocol?\"http:\":\"https:\";this.Ba=\"pagead2.googlesyndication.com\";this.La=\"/pagead/gen_204?id=\";this.za=.01;this.Pa=Math.random()};\nif(\"complete\"==G.document.readyState)G.google_measure_js_timing||Ya.disable();else if(Ya.ia){var Za=function(){G.google_measure_js_timing||Ya.disable()};G.addEventListener?G.addEventListener(\"load\",Za,Fa?void 0:!1):G.attachEvent&&G.attachEvent(\"onload\",Za)};var H=function(a){this.na={};this.na.c=a;this.o=[];this.u=null;this.v=[];this.ea=0};H.prototype.g=function(a){for(var b=0;b<this.o.length;b++)if(this.o[b]==a)return this;this.o.push(a);return this};var $a=function(a,b){a.u=a.u?a.u:b;return a};H.prototype.C=function(a){for(var b=0;b<this.v.length;b++)if(this.v[b]==a)return this;this.v.push(a);return this};\nH.prototype.getData=function(a){var b=this.na,c={},d;for(d in b)c[d]=b[d];0<this.ea&&(c.t=this.ea);c.err=this.o.join();c.warn=this.v.join();if(this.u){c.excp_n=this.u.name;c.excp_m=this.u.message&&this.u.message.substring(0,512);if(b=this.u.stack){d=this.u.stack;try{-1==d.indexOf(\"\")&&(d=\"\\n\"+d);for(var e;d!=e;)e=d,d=d.replace(/((https?:\\/..*\\/)[^\\/:]*:\\d+(?:.|\\n)*)\\2/,\"$1\");b=d.replace(/\\n */g,\"\\n\")}catch(f){b=\"\"}}c.excp_s=b}c.w=0<a.innerWidth?a.innerWidth:null;c.h=0<a.innerHeight?a.innerHeight:\nnull;return c};var bb=function(a,b){ab(a,a.Ea,a.X,b)},ab=function(a,b,c,d){var e=d.u;d=d.getData(a.K);a.Ha?(d.type=b,a.K.console.log(d),e&&a.K.console.error(e)):0<c&&(d.r=c,Ra(b,d,\"jserror\"!=b,c))};var I=function(a){return a.dynamicgoogletags=a.dynamicgoogletags||{}};var J=function(a){z(this,a,cb)};r(J,x);var cb=[4];J.prototype.getId=function(){return A(this,3)};var K=function(a){z(this,a,null)};r(K,x);var db=function(a){z(this,a,null)};r(db,x);var L=function(a){return C(a,J,1)},fb=function(a){z(this,a,eb)};r(fb,x);var eb=[1];fb.prototype.i=function(){return D(this,db,1)};fb.prototype.pa=function(a){Ba(this,1,a)};var M=function(a){z(this,a,gb)};r(M,x);var gb=[2];M.prototype.ka=function(){return A(this,3)};M.prototype.qa=function(a){B(this,3,a)};var hb=function(a){z(this,a,null)};r(hb,x);var N=function(a){z(this,a,ib)};r(N,x);var ib=[1,2,3];N.prototype.i=function(){return D(this,db,2)};\nN.prototype.pa=function(a){Ba(this,2,a)};var O=function(a){z(this,a,jb)};r(O,x);var jb=[3];O.prototype.A=function(){return A(this,1)};O.prototype.D=function(){return C(this,fb,2)};O.prototype.O=function(){return A(this,4)};O.prototype.ka=function(){return A(this,5)};O.prototype.qa=function(a){B(this,5,a)};O.prototype.N=function(){return C(this,kb,9)};var kb=function(a){z(this,a,null)};r(kb,x);var lb=function(a){this.m=a;this.sa=[]};lb.prototype.f=function(){return 0<D(this.m,N,3).length?D(this.m,N,3)[0]:null};var mb=function(a){var b=[\"adsbygoogle-placeholder\"];a=a.className?a.className.split(/\\s+/):[];for(var c={},d=0;d<a.length;++d)c[a[d]]=!0;for(d=0;d<b.length;++d)if(!c[b[d]])return!1;return!0};var nb=function(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=ea(d.Wa);a[e]=d.value}},qb=function(a,b){var c=ob;b.setAttribute(\"data-adsbygoogle-status\",\"reserved\");b={element:b};(c=c&&c.Na)&&(b.params=c);pb(a).push(b)},pb=function(a){return a.adsbygoogle=a.adsbygoogle||[]};var rb=function(a,b){if(!a)return!1;a=b.getComputedStyle?b.getComputedStyle(a,null):a.currentStyle;if(!a)return!1;a=a.cssFloat||a.styleFloat;return\"left\"==a||\"right\"==a},sb=function(a){for(a=a.previousSibling;a&&1!=a.nodeType;)a=a.previousSibling;return a?a:null},tb=function(a){return!!a.nextSibling||!!a.parentNode&&tb(a.parentNode)};var ub=function(a,b){var c=a.length;if(null!=c)for(var d=0;d<c;d++)b.call(void 0,a[d],d)};var vb=function(a,b,c,d){this.ma=a;this.$=b;this.aa=c;this.P=d};vb.prototype.query=function(a){var b=[];try{b=a.querySelectorAll(this.ma)}catch(f){}if(!b.length)return[];a=b;b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];a=c}else a=[];a=wb(this,a);p(this.$)&&(b=this.$,0>b&&(b+=a.length),a=0<=b&&b<a.length?[a[b]]:[]);if(p(this.aa)){b=[];for(c=0;c<a.length;c++){var d=xb(a[c]),e=this.aa;0>e&&(e+=d.length);0<=e&&e<d.length&&b.push(d[e])}a=b}return a};\nvb.prototype.toString=function(){return JSON.stringify({nativeQuery:this.ma,occurrenceIndex:this.$,paragraphIndex:this.aa,ignoreMode:this.P})};\nvar wb=function(a,b){if(null==a.P)return b;switch(a.P){case 1:return b.slice(1);case 2:return b.slice(0,b.length-1);case 3:return b.slice(1,b.length-1);case 0:return b;default:throw Error(\"Unknown ignore mode: \"+a.P);}},xb=function(a){var b=[];ub(a.getElementsByTagName(\"p\"),function(a){100<=yb(a)&&b.push(a)});return b},yb=function(a){if(3==a.nodeType)return a.length;if(1!=a.nodeType||\"SCRIPT\"==a.tagName)return 0;var b=0;ub(a.childNodes,function(a){b+=yb(a)});return b},zb=function(a){return 0==a.length||\nisNaN(a[0])?a:\"\\\\\"+(30+parseInt(a[0],10))+\" \"+a.substring(1)};var Ab=function(a,b){var c=0,d=A(a,6);if(void 0!==d)switch(d){case 0:c=1;break;case 1:c=2;break;case 2:c=3}var d=null,e=A(a,7);if(A(a,1)||a.getId()||0<A(a,4).length){var f=a.getId(),g=A(a,1),e=A(a,4),d=A(a,2);a=A(a,5);var k=\"\";g&&(k+=g);f&&(k+=\"#\"+zb(f));if(e)for(f=0;f<e.length;f++)k+=\".\"+zb(e[f]);d=(e=k)?new vb(e,d,a,c):null}else e&&(d=new vb(e,A(a,2),A(a,5),c));return d?d.query(b):[]},Bb=function(a,b){if(a==b)return!0;if(!a||!b||A(a,1)!=A(b,1)||A(a,2)!=A(b,2)||a.getId()!=b.getId()||A(a,7)!=A(b,\n7)||A(a,5)!=A(b,5)||A(a,6)!=A(b,6))return!1;a=A(a,4);b=A(b,4);if(a||b)if(a&&b&&a.length==b.length)for(var c=0;c<a.length;c++){if(a[c]!=b[c])return!1}else return!1;return!0};var Cb=function(a){a=a.document;return(\"CSS1Compat\"==a.compatMode?a.documentElement:a.body)||{}},Db=function(a){return void 0===a.pageYOffset?(a.document.documentElement||a.document.body.parentNode||a.document.body).scrollTop:a.pageYOffset};var Eb=function(a,b){b=L(b);if(!b)return null;a=Ab(b,a);return 0<a.length?a[0]:null},Gb=function(a,b){b=Fb(a,b,!0);return p(b)&&!(b<=Cb(a).clientHeight)},Hb=function(a,b){return a.body?b-a.body.getBoundingClientRect().top:b},Fb=function(a,b,c){if(!c||!p(A(b,8))){var d=Eb(a.document,b);if(d){var e=null!=C(b,K,2)?A(C(b,K,2),3):void 0;c=a.document.createElement(\"div\");c.className=\"googlepublisherpluginad\";var f=c.style;f.textAlign=\"center\";f.width=\"100%\";f.height=\"0px\";f.clear=e?\"both\":\"none\";Ib(c,d,\nA(b,3));d=c.getBoundingClientRect().top+Db(a);c.parentNode.removeChild(c);B(b,8,d)}}b=A(b,8);return p(b)?b-Db(a):null},Jb={0:0,1:1,2:2,3:3},Kb={0:\"auto\",1:\"horizontal\",2:\"vertical\",3:\"rectangle\"},Lb=function(a,b){a.sort(function(a,d){a=Fb(b,a,!0);a=p(a)?a:Number.POSITIVE_INFINITY;d=Fb(b,d,!0);d=p(d)?d:Number.POSITIVE_INFINITY;return a-d})},Ib=function(a,b,c){switch(Jb[c]){case 0:b.parentNode&&b.parentNode.insertBefore(a,b);break;case 3:if(c=b.parentNode){var d=b.nextSibling;if(d&&d.parentNode!=c)for(;d&&\n8==d.nodeType;)d=d.nextSibling;c.insertBefore(a,d)}break;case 1:b.insertBefore(a,b.firstChild);break;case 2:b.appendChild(a)}if(1!=b.nodeType?0:\"INS\"==b.tagName&&mb(b))b.style.display=\"block\"};var ob=new function(){this.ha=\"googlepublisherpluginad\";this.Na={google_tag_origin:\"pso\"}},P=function(a){this.b=a;this.j=[];this.da=0;this.o=[];this.v=[];this.Y=null;this.oa=!1},Mb=function(a,b){a=C(a.f(),J,4);if(!(a&&b&&A(b,1)==A(a,1)&&b.getId()==a.getId()&&p(A(b,2))&&p(A(b,5))))return!1;a=A(a,4);b=A(b,4);if(a.length!=b.length)return!1;for(var c=0;c<a.length;++c)if(b[c]!=a[c])return!1;return!0},Nb=function(a){var b=p(void 0)?void 0:20,c=a.f(),d=c.i(),e=C(c,J,4);if(!(a.oa||0>=b)&&e&&0!=Ab(e,a.b.document).length){a.oa=\n!0;for(var c=[],f=0;f<d.length;++f){var g=d[f],k=L(g);if(Mb(a,k)){var m=A(k,2),k=A(k,5);null!=m&&null!=k&&0<=m&&0<=k&&(!c[m]||A(L(c[m]),5)<k)&&(c[m]=g)}}k=0;d=Ab(e,a.b.document);for(m=0;m<c.length&&k<b;++m){var e=k,f=a,l=d[m],g=c[m],k=b-k,u=f.f().i(),q=0;if(l&&g){l=xb(l).length;switch(A(L(g),6)){case 0:case 1:--l;break;case 2:l-=2}for(var n=A(L(g),5)+1;n<l&&q<k;++n){var Oa=new g.constructor(Da(E(g))),Hc=L(Oa);B(Hc,5,n);u.push(Oa);q++}}q&&f.f().pa(u);k=e+q}}};\nP.prototype.g=function(a){for(var b=0;b<this.o.length;++b)if(this.o[b]==a)return;this.o.push(a)};P.prototype.C=function(a){for(var b=0;b<this.v.length;++b)if(this.v[b]==a)return;this.v.push(a)};\nvar Ob=function(a,b,c){var d=Jb[A(b,3)],e=Eb(a.b.document,b);if(e){var f=L(b)?A(L(b),2):void 0,g;a:{g=a.b;if(null!=f)switch(d){case 0:g=rb(sb(e),g);break a;case 3:g=rb(e,g);break a;case 2:f=e.lastChild;g=rb(f?1==f.nodeType?f:sb(f):null,g);break a}g=!1}if(!g&&(c||2!=d||tb(e))&&(c=1==d||2==d?e:e.parentNode,!c||(1!=c.nodeType?0:\"INS\"==c.tagName&&mb(c))||!(0>=c.offsetWidth)))a:if(A(b,7))a.C(8);else{b:if(A(b,5))c=A(b,5);else{if(c=Q(a).f())if(c=A(c,3),a.da<c.length){c=c[a.da++];break b}a.g(4);c=null}if(null!=\nc){B(b,7,!0);d=[];(g=a.O())&&d.push(g);g=Q(a).sa;for(f=0;f<g.length;++f)d.push(g[f]);p(A(b,9))&&d.push(\"pso-lv-\"+A(b,9));var k=a.b.document;g=a.A();var f=A(b,6),f=null!=f?Kb[f]:f,m=C(b,K,2),l={};m&&(l.ra=A(m,1),l.ga=A(m,2),l.xa=!!A(m,3));var m=c,u=ob,q=k.createElement(\"div\"),n=q.style;n.textAlign=\"center\";n.width=\"100%\";n.height=\"auto\";n.clear=l.xa?\"both\":\"none\";l.Ka&&nb(n,l.Ka);k=k.createElement(\"ins\");n=k.style;n.display=\"block\";n.margin=\"auto\";n.backgroundColor=\"transparent\";l.ra&&(n.marginTop=\nl.ra);l.ga&&(n.marginBottom=l.ga);l.ta&&nb(n,l.ta);q.appendChild(k);k.setAttribute(\"data-ad-format\",f?f:\"auto\");if(f=u&&u.ha)q.className=f;k.className=\"adsbygoogle\";k.setAttribute(\"data-ad-client\",g);m&&k.setAttribute(\"data-ad-slot\",m);d.length&&k.setAttribute(\"data-ad-channel\",d.join(\"+\"));Ib(q,e,A(b,3));try{qb(a.b,k)}catch(Oa){A(b,5)!=c&&a.da--;B(b,7,!1);a.C(6);q&&q.parentNode&&q.parentNode.removeChild(q);break a}a.j.push(q)}}}},Pb=function(a,b){for(var c=Number.POSITIVE_INFINITY,d=0;d<a.j.length;++d)var e=\na.j[d].getBoundingClientRect().top,f=a.j[d].getBoundingClientRect().bottom,c=Math.min(c,b<e?e-b:f<b?b-f:0);return c},Q=function(a){a=I(a.b).ps||null;if(!a)throw Error(\"No placementState\");return a},Qb=function(a,b){var c=Q(a).m;if(!c||!c.A())return a.g(5),!1;c=D(c,N,3)[0];return c?A(c,3).length<b?(a.g(4),a.g(5),!1):!0:(a.g(5),!1)};P.prototype.A=function(){return Q(this).m.A()||\"\"};P.prototype.O=function(){return Q(this).m.O()||void 0};P.prototype.D=function(){return Q(this).m.D()||new fb};\nP.prototype.f=function(){var a=Q(this).f();if(!a)throw Error(\"No mConfig\");return a};var Rb=function(a){a=A(a.f(),6);return null!=a&&0<a};var Sb=function(){this.I=this.J=this.ba=null};var R=function(a){P.call(this,a)};r(R,P);R.prototype.apply=function(a){var b;(b=Q(this).m)&&b.A()&&b.D()?b=!0:(this.g(5),b=!1);if(b){b=this.D().i();for(var c=0;c<b.length;c++){var d=b[c];A(d,7)||Ob(this,d,a)}}};R.prototype.B=function(){return(0==this.D().i().length||0<this.j.length)&&0==this.o.length};var Tb=function(a){P.call(this,a);if(Qb(this,0)){a=this.D().i();for(var b=this.f().i(),c=0;c<a.length;c++){var d=a[c],e;a:{e=d;var f=b;if(e&&L(e))for(var g=0;g<f.length;g++){var k=f[g];if(A(e,3)==A(k,3)&&Bb(L(e),L(k))){e=k;break a}}e=null}e&&C(e,K,2)&&(e=C(e,K,2),d.a||(d.a={}),f=e?E(e):e,d.a[2]=e,B(d,2,f))}}};r(Tb,R);var Vb=function(a,b){var c=void 0===b.pageXOffset?(b.document.documentElement||b.document.body.parentNode||b.document.body).scrollLeft:b.pageXOffset,d=Db(b);if(a.getBoundingClientRect)return a=a.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0);b=b.document.createRange();b.selectNodeContents(a);return b.collapsed?new F(0,0,0,0):b.getBoundingClientRect?(a=b.getBoundingClientRect(),Ub(a)?new F(a.top+d,a.right+c,a.bottom+d,a.left+c):new F(0,0,0,0)):new F(0,0,0,\n0)},Ub=function(a){return!!a&&p(a.top)&&!isNaN(a.top)&&p(a.right)&&!isNaN(a.right)&&p(a.bottom)&&!isNaN(a.bottom)&&p(a.left)&&!isNaN(a.left)};var $b=function(a){this.K=a;this.Fa=Wb(a);this.ua=S(\"ins.adsbygoogle\",a);this.fa=Xb(a);this.Oa=S(\"[__lsu_res=reserved]\",a);this.U=[];a=Yb(this);for(var b=0;b<a.length;b++)this.U.push(new Zb(a[b]))},Wb=function(a){var b=a.googletag;if(!b||\"function\"!=typeof b.pubads)return S(\"div[id^=div-gpt-ad]\",a);var c=[];try{for(var d=b.pubads().getSlots(),b=0;b<d.length;b++){var e=d[b].getSlotElementId(),f=a.document.getElementById(e);null!=f&&c.push(f)}}catch(g){Ra(\"ladd_evt\",{ok:0,err:g.toString()},!0,.1)}return c},\nXb=function(a){return S(\"iframe[id^=aswift_],iframe[id^=google_ads_frame]\",a)},S=function(a,b){return Array.prototype.slice.call(b.document.querySelectorAll(a))},Yb=function(a){return[].concat(a.Fa,a.ua,a.fa,a.Oa)},Zb=function(a){this.Ca=a;this.W=null};var T=function(a){P.call(this,a)};r(T,P);T.prototype.apply=function(){};T.prototype.B=function(){var a;if(Rb(this)){a=this.b;var b=Wb(a);a=0<[].concat(b,S(\"ins.adsbygoogle\",a),Xb(a),S(\"[__lsu_res=reserved]\",a)).length}else a=!0;return a};var ac=function(a){P.call(this,a);this.F=null};r(ac,P);\nac.prototype.apply=function(a){if(a&&Qb(this,2)){Nb(this);a=Cb(this.b).clientHeight||640;null==this.F&&(this.F=new $b(this.b));var b=this.F.fa.length;if(!(5<=b)){var b=Math.min(2,5-b),c=this.f().i();Lb(c,this.b);for(var d=0;d<c.length&&this.j.length<b;++d){var e=c[d];if(Gb(this.b,e)){var f=Fb(this.b,e,!0);if(void 0!==f){var g;a:{g=this.F;for(var k=a,m=f,l=0;l<g.U.length;l++){var u=m,q=k,n;n=g.U[l];n.W||(n.W=Vb(n.Ca,g.K));n=n.W;if(n.top-q<u&&u<n.bottom+q){g=!0;break a}}g=!1}g||Pb(this,f)<a||Ob(this,\ne,!0)}}}0==this.j.length&&this.C(1)}}};ac.prototype.B=function(){return Rb(this)?0<Yb(this.F).length:!0};var bc=function(a){P.call(this,a);this.Z=!1};r(bc,T);\nbc.prototype.apply=function(a){if(a&&!this.Z){var b;a:{var c=this.b.document;b=c.body;if(a&&b){a=this.A();var d=ob,e=c.createElement(\"div\");e.style.display=\"block\";if(d=d&&d.ha)e.className=d;c=c.createElement(\"ins\");c.className=\"adsbygoogle\";c.setAttribute(\"data-ad-client\",a);c.setAttribute(\"data-reactive-ad-format\",\"1\");c.style.display=\"none\";e.appendChild(c);Ib(e,b,2);try{qb(this.b,c)}catch(f){this.C(6);e&&e.parentNode&&e.parentNode.removeChild(e);b=5;break a}this.j.push(e);b=0}else b=4}this.Z=\n0==b}};bc.prototype.B=function(){return this.Z&&T.prototype.B.call(this)};var cc=function(a){P.call(this,a);a=Cb(a).clientHeight;this.Aa=.1*a;this.Ia=.75*a};r(cc,P);\ncc.prototype.apply=function(a){if(Qb(this,3)&&!this.B()){Nb(this);var b=this.f().i();Lb(b,this.b);var c;c=this.Aa;var d;d=document;d=d.querySelectorAll?d.querySelectorAll(\"header,#header,#masthead,.header,.site-header\"):[];for(var e=d.length,f=0<e?d[0]:null,g=1;g<e;g++)d[g].getBoundingClientRect().top<f.getBoundingClientRect().top&&(f=d[g]);(d=f)&&(d=d.getBoundingClientRect())&&d.top!=d.bottom&&d.left!=d.right&&(c=Math.min(c,Hb(document,d.bottom)));for(d=0;d<b.length&&3>this.j.length;d++){e=b[d];\nvar f=c,g=this.b.document,k=Fb(this.b,e,!1);!p(k)||Hb(g,k)<f?f=!1:(f=Pb(this,k),f=this.Ia<f);f&&(f=Gb(this.b,e),g=A(e,6)||0,f&&0==g&&B(e,6,3),!f&&a||Ob(this,e,a))}}};cc.prototype.B=function(){return 3==this.j.length};var U={};U[16]=R;U[17]=R;U[19]=T;U[29]=ac;U[33]=T;U[30]=bc;U[28]=cc;U[34]=cc;U[32]=Tb;U[1]=R;U[8]=T;U[11]=R;var dc=[19,29,33,30,16,32,17,34],ec=[16,19,33,30,17,1,6,8,11];var fc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};(a.ad_channels=a.ad_channels||[]).push(b)};var gc=function(a){return 0>a||99<a?null:10>a?\"0\"+a:\"\"+a};var hc=function(a,b){a=a.google_ad_modifications=a.google_ad_modifications||{};a=a.loeids=a.loeids||[];for(var c=0;c<b.length;c++)a.push(b[c])};var ic=function(a,b,c){this.ja=a;this.Da=c?c:new kb};ic.prototype.N=function(){return this.Da||new kb};var jc=function(a){if(!p(a))return!1;for(var b=0;b<dc.length;++b)if(a==dc[b])return!1;return!0},oc=function(){var a=V,b=kc,c=lc,d=b.f();if(!d)return mc(16);var e=null,f;a:{var g=D(d,M,1);for(f=0;f<g.length;++f){for(var k=!0,m=0;m<ec.length;++m)A(g[f],4)==ec[m]&&(k=!1);if(k){g=[];0==d.i().length&&g.push(\"PsoInvalidVariant\");0==A(d,3).length&&g.push(\"PsoNoAdSlotCodes\");f=g;break a}}f=[]}g=c.ja;if(0==f.length)a:{e=D(d,M,1);if(p(g))for(f=0;f<e.length;f++)if(k=e[f],U[A(k,4)])for(var m=D(k,hb,2),l=0;l<\nm.length;l++){var u=m[l],q=A(u,1),u=A(u,2);if(p(q)&&p(u)&&g>=q&&g<=u){e=k;break a}}e=null}else for(k=0;k<f.length;++k)b.sa.push(f[k]);if(!e){f=D(d,M,1);e={};for(k=0;k<f.length;k++)e[A(f[k],4)]=!0;f=null;e[19]||e[8]?f=19:e[16]||e[1]?f=16:0<d.i().length&&0<A(d,3).length&&e[34]&&(f=34);null!=f?(e=new M,B(e,6,3),B(e,4,f),16!=f&&19!=f&&e.qa(\"pso-ama-fallback\")):e=null}(f=!e)||(!p(g)||800>g?f=!1:820>g?(hc(a,[\"26835111\"]),f=!0):(840>g&&hc(a,[\"26835112\"]),f=!1));if(f)return mc(16);(g=e.ka())&&fc(a,g);g=!0;\nA(c.N(),2)&&(Date.now?Date.now():+new Date)<A(c.N(),2)||(fc(a,\"pso-ama-exd\"),g=!1);A(b.m,11)&&(fc(a,\"pso-ama-stl-tmp\"),g=!1);g&&fc(a,\"pso-ama-elig\");2==A(e,6)&&(b=A(e,1),null!=b&&hc(a,[\"\"+b]));if(g&&(2==A(e,6)||1==A(e,6))){d=D(d,M,1);if(null===c.ja)c=[];else{b={};c=[];for(g=0;g<d.length;g++)f=nc(d[g]),null==f||b[f]||(b[f]=!0,c.push(f));b=nc(e);if(null!=b){d=[];b=gc(b);g=!1;if(b)for(f=0;f<c.length;f++)k=gc(c[f]),b==k&&(g=!0),k&&d.push(\"950\"+b+k);g||(d=[]);c=d}else c=[]}hc(a,c)}a=new Sb;a.ba=A(e,5);\na.J=A(e,4);return a},mc=function(a){var b=new Sb;b.J=a;return b},pc=function(a){a=a.google_ad_modifications=a.google_ad_modifications||{};a.remove_ads_by_default=!0;a.ad_whitelist=[{ad_tag_origin:\"pso\"}];a.ad_blacklist=[];a.space_collapsing=\"slot\"},nc=function(a){var b;switch(A(a,6)){case 1:b=A(a,4);break;case 2:b=A(a,7)}return null!=b?b:null};var qc=function(a){this.document=a};var W=function(a){H.call(this,a)};r(W,H);W.prototype.getData=function(a){var b=W.Ra.getData.call(this,a),c;a:{c=(new qc(a.document)).document.getElementsByTagName(\"script\");for(var d=0;d<c.length;++d)if(c[d].hasAttribute(\"data-pso-version\")){c=c[d].getAttribute(\"data-pso-version\");break a}c=null}b.sv=c;if(d=I(a).ps||null){c=d.m;var d=d.f(),e=b.wpc;b.wpc=null!=e?e:c.A();b.su=A(c,14);b.tn=c.O();b.ev=d&&A(d,5)}if(a=I(a).ss||null)b.s=a.J,b.st=a.ba;return b};var rc=null,sc=!1,vc=function(a){var b=tc,c=uc;b.addEventListener?(a&&b.addEventListener(\"DOMContentLoaded\",a,!1),c&&b.addEventListener(\"load\",c,!1)):b.attachEvent&&c&&b.attachEvent(\"onload\",c)},xc=function(a){p(rc)&&a.clearInterval&&(a.clearInterval(rc),rc=null);sc||wc(a,!1);wc(a,!0)},yc=function(a,b){try{xc(b);var c=I(b).ss||null;if(c&&c.I){var d=c.I,e=d.B(),f=d.o,g=d.v,k=d.Y,m=d.j.length;e||0!=m||f.push(6);for(var l=new W(m),c=0;c<g.length;c++)l.C(g[c]);if(e&&0==f.length&&null===k)ab(a,a.Qa,a.ca,\nl);else{for(e=0;e<f.length;e++)l.g(f[e]);bb(a,$a(l,k))}}else bb(a,(new W(0)).g(2))}catch(u){bb(a,$a((new W(0)).g(1),u))}I(b).loaded=!0},wc=function(a,b){b||(sc=!0);if((a=I(a).ss||null)&&a.I){a=a.I;try{a.apply(b)}catch(c){a.g(1),null===a.Y&&(a.Y=c)}}},zc=function(){wc(window,!1)};var X=new function(a){this.Qa=\"pso_success\";this.Ea=\"pso_failure\";this.X=this.ca=.01;this.Ha=!1;this.K=a}(window);\ntry{var V=window,za,Ac=I(V).config;za=Ac?new O(Ac):null;if(!za)throw Error(\"No config\");var Bc=Aa(10),Cc=Aa(7);X.ca=null!=Bc?Bc:X.ca;X.X=null!=Cc?Cc:X.X;var kc=new lb(za),Dc=kc;I(V).ps=Dc;var Y,lc;if(v(\"iPad\")||v(\"Android\")&&!v(\"Mobile\")||v(\"Silk\")||!(v(\"iPod\")||v(\"iPhone\")||v(\"Android\")||v(\"IEMobile\")))Y=mc(16);else{var Ec,Fc=/^#([^=]*)=(\\d+)$/.exec(V.location.hash);if((Ec=Fc&&3==Fc.length&&\"pso_strategy\"==Fc[1]?+Fc[2]:null)&&U[Ec]){Y=mc(Ec);var Gc=V;jc(Ec)&&pc(Gc)}else{var Ic=V,Jc=kc.m.N(),Z;try{var Kc=\nparseInt(Ic.localStorage.getItem(\"PSO_EXP0\"),10);Z=isNaN(Kc)?null:Kc}catch(a){Z=null}if(null==Z){Z=Math.floor(1024*Math.random());var Lc=Z;try{Ic.localStorage.setItem(\"PSO_EXP0\",Lc.toString())}catch(a){}}lc=new ic(Z,0,Jc);Y=oc()}if(1==Y.ba){var Mc=V;jc(Y.J)&&pc(Mc)}}if(!Y)throw Error(\"No strategyState created!\");var Nc=Y;I(V).ss=Nc;var Oc=V,Pc=Y,Qc=Pc.J;if(p(Qc)){var Rc=U[Qc];Qc&&Rc&&(Pc.I=new Rc(Oc))}var tc=V,uc=ba(yc,X,tc),Sc=ba(xc,tc);switch(tc.document.readyState){case \"complete\":uc();break;case \"interactive\":Sc();\nvc();break;default:var Tc=tc,Uc=pb(Tc);Uc.loaded||(Uc.onload=zc);rc=Tc.setInterval(zc,10);vc(Sc)}}catch(a){bb(X,$a(new W(0),a))};})();\n</script>\";}i:10;a:3:{s:8:\"pageType\";s:7:\"default\";s:8:\"position\";s:4:\"head\";s:4:\"code\";s:7596:\"<script pagespeed_no_defer=\"\" data-pso-version=\"20170403_083938\">window.dynamicgoogletags={config:[]};dynamicgoogletags.config=[\"ca-pub-4940610698493430\",null,[],null,null,null,null,null,null,null,null,null,0.001,\"http://www.monicarenata.com\"];(function(){var h=this,l=function(a){var b=typeof a;if(\"object\"==b)if(a){if(a instanceof Array)return\"array\";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(\"[object Window]\"==c)return\"object\";if(\"[object Array]\"==c||\"number\"==typeof a.length&&\"undefined\"!=typeof a.splice&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"splice\"))return\"array\";if(\"[object Function]\"==c||\"undefined\"!=typeof a.call&&\"undefined\"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable(\"call\"))return\"function\"}else return\"null\";\nelse if(\"function\"==b&&\"undefined\"==typeof a.call)return\"object\";return b};var m=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\\s\\xa0]+|[\\s\\xa0]+$/g,\"\")},p=function(a,b){return a<b?-1:a>b?1:0};var aa=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,f=\"string\"==typeof a?a.split(\"\"):a,e=0;e<d;e++)e in f&&b.call(c,f[e],e,a)};var q=function(a){q[\" \"](a);return a};q[\" \"]=function(){};var ca=function(a,b){var c=ba;Object.prototype.hasOwnProperty.call(c,a)||(c[a]=b(a))};var r;a:{var t=h.navigator;if(t){var u=t.userAgent;if(u){r=u;break a}}r=\"\"};var da=-1!=r.indexOf(\"Opera\"),v=-1!=r.indexOf(\"Trident\")||-1!=r.indexOf(\"MSIE\"),ea=-1!=r.indexOf(\"Edge\"),w=-1!=r.indexOf(\"Gecko\")&&!(-1!=r.toLowerCase().indexOf(\"webkit\")&&-1==r.indexOf(\"Edge\"))&&!(-1!=r.indexOf(\"Trident\")||-1!=r.indexOf(\"MSIE\"))&&-1==r.indexOf(\"Edge\"),fa=-1!=r.toLowerCase().indexOf(\"webkit\")&&-1==r.indexOf(\"Edge\"),x=function(){var a=h.document;return a?a.documentMode:void 0},y;\na:{var z=\"\",A=function(){var a=r;if(w)return/rv\\:([^\\);]+)(\\)|;)/.exec(a);if(ea)return/Edge\\/([\\d\\.]+)/.exec(a);if(v)return/\\b(?:MSIE|rv)[: ]([^\\);]+)(\\)|;)/.exec(a);if(fa)return/WebKit\\/(\\S+)/.exec(a);if(da)return/(?:Version)[ \\/]?(\\S+)/.exec(a)}();A&&(z=A?A[1]:\"\");if(v){var B=x();if(null!=B&&B>parseFloat(z)){y=String(B);break a}}y=z}\nvar C=y,ba={},D=function(a){ca(a,function(){for(var b=0,c=m(String(C)).split(\".\"),d=m(String(a)).split(\".\"),f=Math.max(c.length,d.length),e=0;0==b&&e<f;e++){var g=c[e]||\"\",k=d[e]||\"\";do{g=/(\\d*)(\\D*)(.*)/.exec(g)||[\"\",\"\",\"\",\"\"];k=/(\\d*)(\\D*)(.*)/.exec(k)||[\"\",\"\",\"\",\"\"];if(0==g[0].length&&0==k[0].length)break;b=p(0==g[1].length?0:parseInt(g[1],10),0==k[1].length?0:parseInt(k[1],10))||p(0==g[2].length,0==k[2].length)||p(g[2],k[2]);g=g[3];k=k[3]}while(0==b)}return 0<=b})},E;var F=h.document;\nE=F&&v?x()||(\"CSS1Compat\"==F.compatMode?parseInt(C,10):5):void 0;var G=function(){},ga=\"function\"==typeof Uint8Array,I=[],J=function(a,b){if(b<a.l){b+=a.j;var c=a.a[b];return c===I?a.a[b]=[]:c}c=a.f[b];return c===I?a.f[b]=[]:c},K=function(a){if(a.m)for(var b in a.m){var c=a.m[b];if(\"array\"==l(c))for(var d=0;d<c.length;d++)c[d]&&K(c[d]);else c&&K(c)}};G.prototype.toString=function(){K(this);return this.a.toString()};var L=function(a,b){this.events=[];this.D=b||h;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.events=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.o=null!=c?c:Math.random()<a};L.prototype.disable=function(){aa(this.events,this.A,this);this.events.length=0;this.o=!1};L.prototype.A=function(a){var b=this.D.performance;a&&b&&b.clearMarks&&(b.clearMarks(\"goog_\"+a.uniqueId+\"_start\"),b.clearMarks(\"goog_\"+a.uniqueId+\"_end\"))};var ha=function(){var a=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){a=!0}});h.addEventListener(\"test\",null,b)}catch(c){}return a}();var N=function(){var a=M;try{var b;if(b=!!a&&null!=a.location.href)a:{try{q(a.foo);b=!0;break a}catch(c){}b=!1}return b}catch(c){return!1}},O=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(void 0,a[c],c,a)};var P=function(a,b,c,d,f){this.s=c||4E3;this.b=a||\"&\";this.v=b||\",$\";this.g=void 0!==d?d:\"trn\";this.J=f||null;this.u=!1;this.i={};this.F=0;this.c=[]},ja=function(a,b,c,d){b=b+\"//\"+c+d;var f=ia(a)-d.length-0;if(0>f)return\"\";a.c.sort(function(a,b){return a-b});d=null;c=\"\";for(var e=0;e<a.c.length;e++)for(var g=a.c[e],k=a.i[g],H=0;H<k.length;H++){if(!f){d=null==d?g:d;break}var n=Q(k[H],a.b,a.v);if(n){n=c+n;if(f>=n.length){f-=n.length;b+=n;c=a.b;break}else a.u&&(c=f,n[c-1]==a.b&&--c,b+=n.substr(0,c),\nc=a.b,f=0);d=null==d?g:d}}e=\"\";a.g&&null!=d&&(e=c+a.g+\"=\"+(a.J||d));return b+e+\"\"},ia=function(a){if(!a.g)return a.s;var b=1,c;for(c in a.i)b=c.length>b?c.length:b;return a.s-a.g.length-b-a.b.length-1},Q=function(a,b,c,d,f){var e=[];O(a,function(a,k){(a=R(a,b,c,d,f))&&e.push(k+\"=\"+a)});return e.join(b)},R=function(a,b,c,d,f){if(null==a)return\"\";b=b||\"&\";c=c||\",$\";\"string\"==typeof c&&(c=c.split(\"\"));if(a instanceof Array){if(d=d||0,d<c.length){for(var e=[],g=0;g<a.length;g++)e.push(R(a[g],b,c,d+1,\nf));return e.join(c[d])}}else if(\"object\"==typeof a)return f=f||0,2>f?encodeURIComponent(Q(a,b,c,d,f+1)):\"...\";return encodeURIComponent(String(a))};var ma=function(a,b){var c=ka;if(c.I<(b||c.B))try{var d;a instanceof P?d=a:(d=new P,O(a,function(a,b){var c=d,e=c.F++,f={};f[b]=a;a=[f];c.c.push(e);c.i[e]=a}));var f=ja(d,c.H,c.C,c.G+\"pso_unknown&\");f&&la(f)}catch(e){}},la=function(a){h.google_image_requests||(h.google_image_requests=[]);var b=h.document.createElement(\"img\");b.src=a;h.google_image_requests.push(b)};var S;if(!(S=!w&&!v)){var T;if(T=v)T=9<=Number(E);S=T}S||w&&D(\"1.9.1\");v&&D(\"9\");var na=document,oa=window;var pa=!!window.google_async_iframe_id,M=pa&&window.parent||window;var ka,U;if(pa&&!N()){var V=\".\"+na.domain;try{for(;2<V.split(\".\").length&&!N();)na.domain=V=V.substr(V.indexOf(\".\")+1),M=window.parent}catch(a){}N()||(M=window)}U=M;var W=new L(1,U);ka=new function(){this.H=\"http:\"===oa.location.protocol?\"http:\":\"https:\";this.C=\"pagead2.googlesyndication.com\";this.G=\"/pagead/gen_204?id=\";this.B=.01;this.I=Math.random()};\nif(\"complete\"==U.document.readyState)U.google_measure_js_timing||W.disable();else if(W.o){var qa=function(){U.google_measure_js_timing||W.disable()};U.addEventListener?U.addEventListener(\"load\",qa,ha?void 0:!1):U.attachEvent&&U.attachEvent(\"onload\",qa)};var ra=function(){this.document=document},X=function(a,b,c){a=a.document.getElementsByTagName(b);for(b=0;b<a.length;++b)if(a[b].hasAttribute(c))return a[b].getAttribute(c);return null};var sa=function(){var a=window;return a.dynamicgoogletags=a.dynamicgoogletags||{}};var Y=function(a){var b=a;a=ta;this.m=null;b||(b=[]);this.j=-1;this.a=b;a:{if(this.a.length){var b=this.a.length-1,c=this.a[b];if(c&&\"object\"==typeof c&&\"array\"!=l(c)&&!(ga&&c instanceof Uint8Array)){this.l=b-this.j;this.f=c;break a}}this.l=Number.MAX_VALUE}if(a)for(b=0;b<a.length;b++)c=a[b],c<this.l?(c+=this.j,this.a[c]=this.a[c]||I):this.f[c]=this.f[c]||I};\n(function(){function a(){}a.prototype=G.prototype;Y.L=G.prototype;Y.prototype=new a;Y.K=function(a,c,d){for(var b=Array(arguments.length-2),e=2;e<arguments.length;e++)b[e-2]=arguments[e];return G.prototype[c].apply(a,b)}})();var ta=[3];var ua=function(){var a=sa().config;if(a){var b=new ra,a=new Y(a),c;c=J(a,13);if(c=null==c?c:+c){var d={};d.wpc=J(a,1);d.sv=X(b,\"script\",\"data-pso-version\");d.tn=X(b,\"meta\",\"data-pso-pt\");d.th=X(b,\"meta\",\"data-pso-th\");d.w=0<window.innerWidth?window.innerWidth:null;d.h=0<window.innerHeight?window.innerHeight:null;ma(d,c)}}sa().loaded=!0};var Z=window;Z.addEventListener?Z.addEventListener(\"load\",ua,!1):Z.attachEvent&&Z.attachEvent(\"onload\",ua);})();\n</script>\";}}}','yes'),(708915,'bellini','a:54:{s:25:\"bellini_front_slider_type\";i:1;s:27:\"bellini_static_slider_image\";s:238:\"http://www.monicarenata.com/wp-content/uploads/2017/02/sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768.jpg\";s:27:\"bellini_static_slider_title\";s:111:\"\"Life is beautiful....but you will never figure that out if you are too afraid to spread your wings and fly...\"\";s:29:\"bellini_static_slider_content\";s:45:\"From \"The Awkward Butterfly\" by Monica Renata\";s:28:\"bellini_feature_block_layout\";i:1;s:31:\"bellini_feature_block_image_one\";s:129:\"http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\";s:31:\"bellini_feature_block_image_two\";s:80:\"http://www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg\";s:28:\"bellini_feature_blocks_title\";s:5:\"Books\";s:31:\"bellini_feature_block_title_one\";s:23:\"Keyword: Inner Strength\";s:33:\"bellini_feature_block_content_one\";s:48:\"A collection of poems promoting inner strength. \";s:31:\"bellini_feature_block_title_two\";s:21:\"The Awkward Butterfly\";s:33:\"bellini_feature_block_content_two\";s:61:\"A book about a young girls personal quest to find her wings. \";s:33:\"bellini_feature_block_title_three\";s:13:\"Keyword: Love\";s:35:\"bellini_feature_block_content_three\";s:34:\"A small collection of love poems. \";s:33:\"bellini_feature_block_image_three\";s:129:\"http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\";s:28:\"bellini_home_blogposts_title\";s:13:\"Recent Poetry\";s:34:\"bellini_home_blogposts_description\";s:0:\"\";s:29:\"bellini_home_blogposts_layout\";i:5;s:38:\"bellini_feature_block_background_color\";s:7:\"#ffffff\";s:27:\"bellini_post_featured_image\";s:106:\"http://www.monicarenata.com/wp-content/uploads/2017/02/2affae185da0025b2514a060995e1a29-e1486273279621.jpg\";s:31:\"bellini_social_account_icon_one\";s:14:\"fa fa-facebook\";s:31:\"bellini_social_account_link_one\";s:43:\"http://www.facebook.com/TheAwkwardButterfly\";s:31:\"bellini_social_account_icon_two\";s:15:\"fa fa-instagram\";s:31:\"bellini_social_account_link_two\";s:38:\"http://www.instagram.com/monicarenata_\";s:33:\"bellini_social_account_icon_three\";s:20:\"fa fa-twitter-square\";s:33:\"bellini_social_account_link_three\";s:35:\"http://www.twitter.com/SavorMyWords\";s:32:\"bellini_social_account_icon_four\";s:12:\"fa fa-amazon\";s:32:\"bellini_social_account_link_four\";s:77:\"https://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_ebooks_1\";s:29:\"bellini_show_footer_copyright\";s:1:\"1\";s:35:\"bellini_static_slider_button_text-1\";s:0:\"\";s:26:\"bellini_hero_content_color\";s:7:\"#ffffff\";s:34:\"bellini_home_blogposts_button_text\";s:0:\"\";s:22:\"bellini_copyright_text\";s:83:\"Please do not replicate content. All content belongs to the owner of this website. \";s:18:\"bellini_custom_css\";s:0:\"\";s:40:\"bellini_frontpage_textarea_section_field\";s:159:\"\n\n<font size=\"5\" color=\"white\" face=\"Bedrock\">Interested in reading more? Search for content, browse the archives, or pick a poem from the carousel. </font>\n\n\n\";s:40:\"bellini_frontpage_textarea_section_color\";s:7:\"#000000\";s:40:\"bellini_frontpage_textarea_section_image\";s:0:\"\";s:33:\"bellini_home_blogposts_button_url\";s:0:\"\";s:35:\"bellini_static_slider_button_text-2\";s:0:\"\";s:30:\"bellini_widget_title_alignment\";s:6:\"center\";s:24:\"widgets_background_color\";s:7:\"#eceef1\";s:16:\"link_hover_color\";s:7:\"#037c01\";s:35:\"bellini_other_header_items_selector\";i:2;s:19:\"bellini_menu_layout\";s:7:\"general\";s:19:\"bellini_layout_blog\";i:5;s:19:\"page_title_position\";s:6:\"center\";s:23:\"bellini_read_more_title\";s:0:\"\";s:21:\"bellini_website_width\";s:3:\"100\";s:26:\"bellini_header_orientation\";s:15:\"header__general\";s:36:\"bellini_show_frontpage_feature_block\";s:1:\"1\";s:33:\"bellini_show_frontpage_blog_posts\";s:1:\"1\";s:35:\"bellini_show_frontpage_text_section\";s:1:\"1\";s:31:\"bellini_show_footer_social_menu\";s:1:\"1\";s:22:\"bellini_show_post_meta\";s:0:\"\";}','yes'),(708904,'homepage-control_version','2.0.2','yes'),(708463,'theme_mods_bellini','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:16:\"homepage_control\";s:235:\"bellini_static_slider,bellini_feature_blocks,bellini_woo_product_category,bellini_woo_product_newly_arrived,bellini_woo_product_featured,bellini_front_blog_posts,bellini_frontpage_text_field_shortcode,bellini_front_default_page_content\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1488649076;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:23:\"spider_random_article-3\";}s:13:\"sidebar-right\";a:0:{}s:12:\"sidebar-left\";a:3:{i:0;s:18:\"facebook-likebox-3\";i:1;s:11:\"archives-16\";i:2;s:6:\"text-3\";}s:12:\"sidebar-blog\";a:1:{i:0;s:29:\"siteorigin-panels-postloop-18\";}s:14:\"sidebar-footer\";a:3:{i:0;s:8:\"search-9\";i:1;s:19:\"sow-post-carousel-3\";i:2;s:11:\"archives-14\";}s:19:\"sidebar-woo-sidebar\";a:0:{}s:18:\"template_1_sidebar\";a:0:{}}}}','no'),(709569,'widget_sow-image-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(708333,'GooglePublisherPlugin_Version','1.2.1','yes'),(715356,'widget_spider_random_article','a:5:{s:12:\"_multiwidget\";i:1;i:3;a:6:{s:5:\"title\";s:11:\"Random Poem\";s:8:\"Category\";N;s:17:\"quantity_of_posts\";s:1:\"1\";s:10:\"AutoUpdate\";s:1:\"1\";s:9:\"Style_sra\";s:1:\"1\";s:13:\"Updating_Time\";s:2:\"10\";}i:5;a:6:{s:5:\"title\";s:11:\"Random Post\";s:8:\"Category\";N;s:17:\"quantity_of_posts\";s:2:\"40\";s:10:\"AutoUpdate\";s:1:\"0\";s:9:\"Style_sra\";s:1:\"4\";s:13:\"Updating_Time\";s:2:\"10\";}i:6;a:0:{}i:7;a:0:{}}','yes'),(715609,'widget_randompostforwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(716051,'jetpack_relatedposts','a:8:{s:7:\"enabled\";b:0;s:13:\"show_headline\";b:1;s:15:\"show_thumbnails\";b:0;s:9:\"show_date\";b:1;s:12:\"show_context\";b:1;s:6:\"layout\";s:4:\"grid\";s:8:\"headline\";s:7:\"Related\";s:4:\"size\";N;}','yes'),(716121,'dsq_external_js','0','yes'),(737356,'wpseo_social','a:20:{s:13:\"facebook_site\";s:45:\"https://www.facebook.com/TheAwkwardButterfly/\";s:13:\"instagram_url\";s:38:\"http://www.instagram.com/monicarenata_\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:1:{i:0;s:38:\"http://www.instagram.com/monicarenata_\";}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(737360,'wpseo_flush_rewrite','1','yes'),(737353,'wpseo','a:122:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";i:2;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:0:\"\";s:29:\"indexables_indexing_completed\";b:0;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"26.9\";s:16:\"previous_version\";s:4:\"23.0\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:12:\"ahrefsverify\";s:0:\"\";s:9:\"site_type\";s:4:\"blog\";s:20:\"has_multiple_authors\";b:1;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1487048599;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:28:\"https://www.monicarenata.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:2:{s:22:\"lana_download_category\";s:17:\"download-category\";s:9:\"ml-slider\";s:9:\"ml-slider\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:13:\"lana_download\";i:4;s:11:\"bwg_gallery\";i:5;s:9:\"bwg_album\";i:6;s:7:\"bwg_tag\";}s:28:\"last_known_public_taxonomies\";a:5:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:22:\"lana_download_category\";i:4;s:7:\"bwg_tag\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1770325627;s:31:\"wpseo_unindexed_post_link_count\";i:1770325627;s:31:\"wpseo_unindexed_term_link_count\";i:1770325627;s:35:\"wpseo_total_unindexed_general_items\";i:1756915207;s:27:\"wpseo_total_unindexed_posts\";i:1752768093;s:27:\"wpseo_total_unindexed_terms\";i:1752768093;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:37:\"site_kit_tracking_setup_widget_loaded\";s:2:\"no\";s:41:\"site_kit_tracking_first_interaction_stage\";s:0:\"\";s:40:\"site_kit_tracking_last_interaction_stage\";s:0:\"\";s:52:\"site_kit_tracking_setup_widget_temporarily_dismissed\";s:2:\"no\";s:52:\"site_kit_tracking_setup_widget_permanently_dismissed\";s:2:\"no\";s:31:\"google_site_kit_feature_enabled\";b:0;s:25:\"ai_free_sparks_started_on\";N;s:15:\"enable_llms_txt\";b:0;s:15:\"last_updated_on\";i:1772760000;s:17:\"default_seo_title\";a:0:{}s:21:\"default_seo_meta_desc\";a:0:{}s:18:\"first_activated_by\";i:0;s:16:\"enable_task_list\";b:1;s:13:\"enable_schema\";b:1;}','yes'),(737355,'wpseo_titles','a:212:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:8:\"sc-ndash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:13:\"Monica Renata\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:19:\"title-lana_download\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-lana_download\";s:0:\"\";s:21:\"noindex-lana_download\";b:0;s:32:\"display-metabox-pt-lana_download\";b:1;s:32:\"post_types-lana_download-maintax\";i:0;s:30:\"schema-page-type-lana_download\";s:7:\"WebPage\";s:33:\"schema-article-type-lana_download\";s:4:\"None\";s:26:\"social-title-lana_download\";s:9:\"%%title%%\";s:32:\"social-description-lana_download\";s:0:\"\";s:30:\"social-image-url-lana_download\";s:0:\"\";s:29:\"social-image-id-lana_download\";i:0;s:29:\"title-ptarchive-lana_download\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-ptarchive-lana_download\";s:0:\"\";s:31:\"bctitle-ptarchive-lana_download\";s:0:\"\";s:31:\"noindex-ptarchive-lana_download\";b:0;s:36:\"social-title-ptarchive-lana_download\";s:21:\"%%pt_plural%% Archive\";s:42:\"social-description-ptarchive-lana_download\";s:0:\"\";s:40:\"social-image-url-ptarchive-lana_download\";s:0:\"\";s:39:\"social-image-id-ptarchive-lana_download\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:32:\"title-tax-lana_download_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-lana_download_category\";s:0:\"\";s:42:\"display-metabox-tax-lana_download_category\";b:1;s:34:\"noindex-tax-lana_download_category\";b:0;s:39:\"social-title-tax-lana_download_category\";s:23:\"%%term_title%% Archives\";s:45:\"social-description-tax-lana_download_category\";s:0:\"\";s:43:\"social-image-url-tax-lana_download_category\";s:0:\"\";s:42:\"social-image-id-tax-lana_download_category\";i:0;s:40:\"taxonomy-lana_download_category-ptparent\";i:0;s:17:\"title-bwg_gallery\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-bwg_gallery\";s:0:\"\";s:19:\"noindex-bwg_gallery\";b:0;s:30:\"display-metabox-pt-bwg_gallery\";b:1;s:30:\"post_types-bwg_gallery-maintax\";i:0;s:28:\"schema-page-type-bwg_gallery\";s:7:\"WebPage\";s:31:\"schema-article-type-bwg_gallery\";s:4:\"None\";s:24:\"social-title-bwg_gallery\";s:9:\"%%title%%\";s:30:\"social-description-bwg_gallery\";s:0:\"\";s:28:\"social-image-url-bwg_gallery\";s:0:\"\";s:27:\"social-image-id-bwg_gallery\";i:0;s:15:\"title-bwg_album\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-bwg_album\";s:0:\"\";s:17:\"noindex-bwg_album\";b:0;s:28:\"display-metabox-pt-bwg_album\";b:1;s:28:\"post_types-bwg_album-maintax\";i:0;s:26:\"schema-page-type-bwg_album\";s:7:\"WebPage\";s:29:\"schema-article-type-bwg_album\";s:4:\"None\";s:22:\"social-title-bwg_album\";s:9:\"%%title%%\";s:28:\"social-description-bwg_album\";s:0:\"\";s:26:\"social-image-url-bwg_album\";s:0:\"\";s:25:\"social-image-id-bwg_album\";i:0;s:13:\"title-bwg_tag\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-bwg_tag\";s:0:\"\";s:15:\"noindex-bwg_tag\";b:0;s:26:\"display-metabox-pt-bwg_tag\";b:1;s:26:\"post_types-bwg_tag-maintax\";i:0;s:24:\"schema-page-type-bwg_tag\";s:7:\"WebPage\";s:27:\"schema-article-type-bwg_tag\";s:4:\"None\";s:20:\"social-title-bwg_tag\";s:9:\"%%title%%\";s:26:\"social-description-bwg_tag\";s:0:\"\";s:24:\"social-image-url-bwg_tag\";s:0:\"\";s:23:\"social-image-id-bwg_tag\";i:0;s:17:\"title-tax-bwg_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-tax-bwg_tag\";s:0:\"\";s:27:\"display-metabox-tax-bwg_tag\";b:1;s:19:\"noindex-tax-bwg_tag\";b:0;s:24:\"social-title-tax-bwg_tag\";s:23:\"%%term_title%% Archives\";s:30:\"social-description-tax-bwg_tag\";s:0:\"\";s:28:\"social-image-url-tax-bwg_tag\";s:0:\"\";s:27:\"social-image-id-tax-bwg_tag\";i:0;s:25:\"taxonomy-bwg_tag-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;s:22:\"noindex-subpages-wpseo\";b:0;s:17:\"title-team_member\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-team_member\";s:0:\"\";s:19:\"noindex-team_member\";b:0;s:27:\"title-ptarchive-team_member\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-ptarchive-team_member\";s:0:\"\";s:29:\"bctitle-ptarchive-team_member\";s:0:\"\";s:29:\"noindex-ptarchive-team_member\";b:0;s:30:\"title-tax-team_member_position\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-tax-team_member_position\";s:0:\"\";s:32:\"noindex-tax-team_member_position\";b:0;s:30:\"post_types-team_member-maintax\";i:0;s:38:\"taxonomy-team_member_position-ptparent\";i:0;}','yes'),(1431709,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1431711,'lana_downloads_manager_post_type','lana_download','yes'),(1672403,'rewrite_rules','a:94:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(3275760,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','auto'),(1623269,'wrm_8f73f389266803d7547f','1566415557','yes'),(1538345,'widget_hoot-posts-blocks-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1431723,'jetpack_sync_full__queue_finished','1537231939','yes'),(1431739,'jetpack_sync_full__send_started','1537231942','no'),(1431740,'jetpack_sync_full__constants_sent','1','no'),(1431741,'jetpack_sync_full__functions_sent','1','no'),(1431742,'jetpack_sync_full__options_sent','1','no'),(1431743,'jetpack_sync_full__finished','1537231942','no'),(1431716,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"users\";b:0;}','no'),(1672336,'recovery_keys','a:0:{}','off'),(737386,'wpseo-gsc','a:1:{s:7:\"profile\";s:32:\"http://monicarenata.blogspot.com\";}','yes'),(737382,'wpseo-gsc-refresh_token','1/BgFxBjJyAiLV4khu1TVM3X0IBdmi7r2NKoKl_47bL-w','yes'),(737383,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/BgFxBjJyAiLV4khu1TVM3X0IBdmi7r2NKoKl_47bL-w\";s:12:\"access_token\";s:132:\"ya29.Gl2rBNvqYlr8tzNsVocVrjpePTuu75aDrZe4R_eBVGUCCpc2I2amVhJ0MkHCEYV0O6zWG6EhhaG14S_gA-_TbJhA6ZUh3uazieOF5fSTswCOJV-AqEZ8SAJAxrqPYwI\";s:7:\"expires\";d:1503066485;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1503080885;}','yes'),(779187,'_transient_plum_categories','1','yes'),(779188,'theme_mods_poet','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(1672332,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','on'),(1672333,'jetpack_sync_settings_sync_sender_enabled','1','on'),(1672334,'jetpack_sync_settings_full_sync_sender_enabled','1','on'),(788140,'_transient_bellini_categories','1','yes'),(779167,'widget_plum_rp','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(779168,'theme_mods_plum','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(793655,'widget_hoot-content-blocks-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(793656,'widget_hoot-cta-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(793657,'widget_hoot-social-icons-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(793660,'theme_mods_creattica','a:1:{s:18:\"custom_css_post_id\";i:-1;}','no'),(1672330,'jetpack_sync_settings_taxonomies_blacklist','a:149:{i:0;s:9:\"ancestors\";i:1;s:13:\"archives_link\";i:2;s:13:\"attached_file\";i:3;s:14:\"attached_media\";i:4;s:19:\"attached_media_args\";i:5;s:10:\"attachment\";i:6;s:19:\"available_languages\";i:7;s:6:\"avatar\";i:8;s:20:\"avatar_comment_types\";i:9;s:11:\"avatar_data\";i:10;s:10:\"avatar_url\";i:11;s:12:\"bloginfo_rss\";i:12;s:13:\"blogs_of_user\";i:13;s:13:\"bookmark_link\";i:14;s:9:\"bookmarks\";i:15;s:8:\"calendar\";i:16;s:13:\"canonical_url\";i:17;s:19:\"categories_per_page\";i:18;s:19:\"categories_taxonomy\";i:19;s:13:\"category_form\";i:20;s:20:\"category_form_fields\";i:21;s:17:\"category_form_pre\";i:22;s:7:\"comment\";i:23;s:10:\"comment_ID\";i:24;s:14:\"comment_author\";i:25;s:17:\"comment_author_IP\";i:26;s:20:\"comment_author_email\";i:27;s:19:\"comment_author_link\";i:28;s:18:\"comment_author_url\";i:29;s:23:\"comment_author_url_link\";i:30;s:12:\"comment_date\";i:31;s:15:\"comment_excerpt\";i:32;s:12:\"comment_link\";i:33;s:20:\"comment_misc_actions\";i:34;s:12:\"comment_text\";i:35;s:12:\"comment_time\";i:36;s:12:\"comment_type\";i:37;s:13:\"comments_link\";i:38;s:15:\"comments_number\";i:39;s:21:\"comments_pagenum_link\";i:40;s:11:\"custom_logo\";i:41;s:8:\"date_sql\";i:42;s:22:\"default_comment_status\";i:43;s:16:\"delete_post_link\";i:44;s:18:\"edit_bookmark_link\";i:45;s:17:\"edit_comment_link\";i:46;s:14:\"edit_post_link\";i:47;s:13:\"edit_tag_link\";i:48;s:14:\"edit_term_link\";i:49;s:14:\"edit_user_link\";i:50;s:8:\"enclosed\";i:51;s:15:\"feed_build_date\";i:52;s:13:\"form_advanced\";i:53;s:17:\"form_after_editor\";i:54;s:16:\"form_after_title\";i:55;s:21:\"form_before_permalink\";i:56;s:8:\"form_top\";i:57;s:18:\"handle_product_cat\";i:58;s:16:\"header_image_tag\";i:59;s:16:\"header_video_url\";i:60;s:9:\"image_tag\";i:61;s:15:\"image_tag_class\";i:62;s:12:\"lastpostdate\";i:63;s:16:\"lastpostmodified\";i:64;s:4:\"link\";i:65;s:18:\"link_category_form\";i:66;s:25:\"link_category_form_fields\";i:67;s:22:\"link_category_form_pre\";i:68;s:15:\"main_network_id\";i:69;s:5:\"media\";i:70;s:15:\"media_item_args\";i:71;s:7:\"ms_user\";i:72;s:7:\"network\";i:73;s:12:\"object_terms\";i:74;s:6:\"option\";i:75;s:4:\"page\";i:76;s:9:\"page_form\";i:77;s:15:\"page_of_comment\";i:78;s:8:\"page_uri\";i:79;s:12:\"pagenum_link\";i:80;s:5:\"pages\";i:81;s:6:\"plugin\";i:82;s:4:\"post\";i:83;s:14:\"post_galleries\";i:84;s:12:\"post_gallery\";i:85;s:9:\"post_link\";i:86;s:18:\"post_modified_time\";i:87;s:11:\"post_status\";i:88;s:9:\"post_time\";i:89;s:8:\"postmeta\";i:90;s:14:\"posts_per_page\";i:91;s:19:\"product_search_form\";i:92;s:11:\"profile_url\";i:93;s:4:\"pung\";i:94;s:9:\"role_list\";i:95;s:16:\"sample_permalink\";i:96;s:21:\"sample_permalink_html\";i:97;s:8:\"schedule\";i:98;s:11:\"search_form\";i:99;s:12:\"search_query\";i:100;s:9:\"shortlink\";i:101;s:4:\"site\";i:102;s:18:\"site_email_content\";i:103;s:13:\"site_icon_url\";i:104;s:11:\"site_option\";i:105;s:13:\"space_allowed\";i:106;s:3:\"tag\";i:107;s:8:\"tag_form\";i:108;s:15:\"tag_form_fields\";i:109;s:12:\"tag_form_pre\";i:110;s:8:\"tag_link\";i:111;s:4:\"tags\";i:112;s:13:\"tags_per_page\";i:113;s:4:\"term\";i:114;s:9:\"term_link\";i:115;s:18:\"term_relationships\";i:116;s:15:\"term_taxonomies\";i:117;s:13:\"term_taxonomy\";i:118;s:5:\"terms\";i:119;s:10:\"terms_args\";i:120;s:14:\"terms_defaults\";i:121;s:12:\"terms_fields\";i:122;s:13:\"terms_orderby\";i:123;s:23:\"the_archive_description\";i:124;s:17:\"the_archive_title\";i:125;s:14:\"the_categories\";i:126;s:8:\"the_date\";i:127;s:11:\"the_excerpt\";i:128;s:8:\"the_guid\";i:129;s:17:\"the_modified_date\";i:130;s:17:\"the_modified_time\";i:131;s:25:\"the_post_type_description\";i:132;s:8:\"the_tags\";i:133;s:9:\"the_terms\";i:134;s:8:\"the_time\";i:135;s:21:\"theme_starter_content\";i:136;s:7:\"to_ping\";i:137;s:4:\"user\";i:138;s:17:\"user_created_user\";i:139;s:9:\"user_form\";i:140;s:12:\"user_profile\";i:141;s:19:\"user_profile_update\";i:142;s:8:\"usermeta\";i:143;s:12:\"usernumposts\";i:144;s:12:\"users_drafts\";i:145;s:7:\"webhook\";i:146;s:6:\"widget\";i:147;s:19:\"woocommerce_archive\";i:148;s:12:\"wp_title_rss\";}','on'),(1672331,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(822526,'wpcom_publish_posts_with_markdown','1','yes'),(796269,'FontSettings','a:4:{s:18:\"fontPluginSettings\";s:574:\"{\"presets\":[{\"name\":\"PICK AN ELEMENT\",\"fontid\":\"\",\"fontName\":\"\",\"selector\":\"PICK AN ELEMENT NOW - or type CSS selector(advanced)\",\"styles\":{\"fontSize\":\"30\",\"color\":\"#444\"}}],\"settingFields\":[{\"type\":\"text\",\"label\":\"Selector\",\"name\":\"selector\",\"settingType\":\"general\",\"settingName\":\"selector\",\"extendWith\":\"selectorPicker\"},{\"type\":\"text\",\"label\":\"Font size\",\"name\":\"font-size\",\"settingType\":\"css\",\"settingName\":\"fontSize\",\"extendWith\":\"slider\",\"unit\":\"px\"},{\"type\":\"text\",\"label\":\"Color\",\"name\":\"color\",\"settingType\":\"css\",\"settingName\":\"color\",\"extendWith\":\"colorPicker\"}]}\";s:16:\"fontGeneratedCSS\";s:109:\"PICK AN ELEMENT NOW - or type CSS selector(advanced) {\nfont-size: 30px !important;\ncolor: #444 !important;\n}\n\";s:17:\"fontPluginVersion\";s:5:\"7.5.1\";s:13:\"upgradeNotice\";b:0;}','yes'),(796275,'plugin_error','Activation result: ','yes'),(796311,'_transient_tt_font_theme_options','a:7:{s:15:\"tt_default_body\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_1\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_2\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_3\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_4\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_5\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}s:20:\"tt_default_heading_6\";a:39:{s:6:\"subset\";s:9:\"latin,all\";s:7:\"font_id\";s:0:\"\";s:9:\"font_name\";s:0:\"\";s:10:\"font_color\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:17:\"font_weight_style\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:14:\"stylesheet_url\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:7:\"display\";s:0:\"\";s:9:\"font_size\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"letter_spacing\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:10:\"margin_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"margin_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"margin_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"margin_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"padding_top\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:13:\"padding_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:14:\"padding_bottom\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:12:\"padding_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:22:\"border_radius_top_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:23:\"border_radius_top_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:26:\"border_radius_bottom_right\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:25:\"border_radius_bottom_left\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:16:\"border_top_color\";s:0:\"\";s:16:\"border_top_style\";s:0:\"\";s:16:\"border_top_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:19:\"border_bottom_color\";s:0:\"\";s:19:\"border_bottom_style\";s:0:\"\";s:19:\"border_bottom_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:17:\"border_left_color\";s:0:\"\";s:17:\"border_left_style\";s:0:\"\";s:17:\"border_left_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:18:\"border_right_color\";s:0:\"\";s:18:\"border_right_style\";s:0:\"\";s:18:\"border_right_width\";a:2:{s:6:\"amount\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}}','yes'),(824086,'_transient_jp_https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg?fit=200%2C200','0','yes'),(936820,'jetpack_comment_likes_enabled','0','yes'),(1431655,'_transient_timeout_tc_posts_slides','2183857722','no');
INSERT INTO `wp_xwml_options` VALUES (1431656,'_transient_tc_posts_slides','a:2:{s:6:\"common\";a:2:{s:11:\"button_text\";s:17:\"Read more »\";s:16:\"link_whole_slide\";b:0;}s:5:\"posts\";a:246:{i:0;a:4:{s:2:\"ID\";s:4:\"1776\";s:5:\"title\";s:7:\"One Day\";s:4:\"text\";s:85:\"\nOne day you will wake up\nAnd it won’t matter anymore\nYour tears will ...\";s:16:\"slide_background\";s:658:\"<img width=\"612\" height=\"409\" src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg?w=612 612w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg?resize=300%2C200 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg?resize=272%2C182 272w\" sizes=\"(max-width: 612px) 100vw, 612px\" />\";}i:1;a:4:{s:2:\"ID\";s:4:\"1773\";s:5:\"title\";s:8:\"The Keys\";s:4:\"text\";s:87:\"Live your life with no regrets\nAlways give it your all\nUse your brain wisely, ...\";s:16:\"slide_background\";s:180:\"<img width=\"293\" height=\"172\" src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/image.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:2;a:4:{s:2:\"ID\";s:4:\"1770\";s:5:\"title\";s:7:\"Be Good\";s:4:\"text\";s:84:\"\nWhen your alarm goes off in the morning\nMake sure you get an extra minute of ...\";s:16:\"slide_background\";s:490:\"<img width=\"500\" height=\"344\" src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg?resize=300%2C206 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:3;a:4:{s:2:\"ID\";s:4:\"1759\";s:5:\"title\";s:15:\"Stream of Lethe\";s:4:\"text\";s:106:\" \n\n\n\n\n \n\n\n\n\nCarved a stream for your land\nThat branched from the river of generosity\n \nProvided ...\";s:16:\"slide_background\";s:293:\"<img width=\"900\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-900x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:4;a:4:{s:2:\"ID\";s:4:\"1722\";s:5:\"title\";s:13:\"Fire to Smoke\";s:4:\"text\";s:90:\"Two embers once burned\nAnd soon created a flame\nOnce the two finally made contact\nThey ...\";s:16:\"slide_background\";s:421:\"<img width=\"368\" height=\"447\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-3.png?w=368 368w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-3.png?resize=247%2C300 247w\" sizes=\"(max-width: 368px) 100vw, 368px\" />\";}i:5;a:4:{s:2:\"ID\";s:4:\"1718\";s:5:\"title\";s:18:\"Puppeteer\'s Demise\";s:4:\"text\";s:88:\"Ball of lava thrown at your feet\nYou watch the floor before you burn\n \nVenom ...\";s:16:\"slide_background\";s:421:\"<img width=\"351\" height=\"440\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-2.png?w=351 351w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-2.png?resize=239%2C300 239w\" sizes=\"(max-width: 351px) 100vw, 351px\" />\";}i:6;a:4:{s:2:\"ID\";s:4:\"1714\";s:5:\"title\";s:14:\"Seasons Change\";s:4:\"text\";s:90:\"In the spring time I sat and waited\nAs flowers bloomed from the magnolia trees\nPutting ...\";s:16:\"slide_background\";s:190:\"<img width=\"355\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1-355x500.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:7;a:4:{s:2:\"ID\";s:4:\"1709\";s:5:\"title\";s:9:\"Deep Dive\";s:4:\"text\";s:89:\"Removal of the items\nThat conceals most of my flesh\n \nPrepare myself for entry\nI ...\";s:16:\"slide_background\";s:197:\"<img width=\"683\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-683x500.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:8;a:4:{s:2:\"ID\";s:4:\"1702\";s:5:\"title\";s:14:\"The Broken Man\";s:4:\"text\";s:86:\"Curtains on your beautiful eyes\nNo longer able to see the truth\n \nThoughts ...\";s:16:\"slide_background\";s:188:\"<img width=\"388\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image-388x500.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:9;a:4:{s:2:\"ID\";s:4:\"1698\";s:5:\"title\";s:9:\"Chemistry\";s:4:\"text\";s:87:\" \n\n\n\n\n\n\n\n\n\nSunny skies of yesterday\nMoon begins to rise\nKiss of honey\nTeakwood ...\";s:16:\"slide_background\";s:226:\"<img width=\"1170\" height=\"305\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide-1920x500.jpg\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:10;a:4:{s:2:\"ID\";s:4:\"1686\";s:5:\"title\";s:35:\"The Day The Inner Bark Turned Brown\";s:4:\"text\";s:86:\"The day the inner bark of the tree turned brown\nWas the day I finally felt alive\nI ...\";s:16:\"slide_background\";s:242:\"<img width=\"1170\" height=\"389\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life-1505x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:11;a:4:{s:2:\"ID\";s:4:\"1679\";s:5:\"title\";s:17:\"Late Night Truths\";s:4:\"text\";s:87:\" \n\n\n\n\nLight fades to dark skies\n \nShoes removed from feet\n \nThe body finally ...\";s:16:\"slide_background\";s:180:\"<img width=\"426\" height=\"302\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:12;a:4:{s:2:\"ID\";s:4:\"1673\";s:5:\"title\";s:11:\"To the Wind\";s:4:\"text\";s:86:\"Worries cast to the wind\nJust like fire to a flame\nFace to face they will meet\nBut ...\";s:16:\"slide_background\";s:196:\"<img width=\"736\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/wind-736x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:13;a:4:{s:2:\"ID\";s:4:\"1666\";s:5:\"title\";s:19:\"Reward for The Wait\";s:4:\"text\";s:86:\"I kiss you every morning\nAs I awake from sleep\nFor starting my day with a taste ...\";s:16:\"slide_background\";s:217:\"<img width=\"1170\" height=\"368\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213-1588x500.jpg\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:14;a:4:{s:2:\"ID\";s:4:\"1658\";s:5:\"title\";s:7:\"Ice Ice\";s:4:\"text\";s:88:\" \n\n\n\n\n \n\n\n\n\n \nCould you love me like a bottle of water\nOn a hot, humid summer ...\";s:16:\"slide_background\";s:454:\"<img width=\"215\" height=\"328\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?w=215 215w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?resize=197%2C300 197w\" sizes=\"(max-width: 215px) 100vw, 215px\" />\";}i:15;a:4:{s:2:\"ID\";s:4:\"1654\";s:5:\"title\";s:15:\"My Color Friend\";s:4:\"text\";s:86:\"I’m surprised that you had student loans\nAfter all\nYou are black\nAnd things were ...\";s:16:\"slide_background\";s:210:\"<img width=\"956\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend-956x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:16;a:4:{s:2:\"ID\";s:4:\"1649\";s:5:\"title\";s:11:\"To the Brim\";s:4:\"text\";s:89:\" \n\n\n\n\n\n\n\n\n\nFilled to the brim \nAlmost overflowing\nWhenever I think of you\n \nThe ...\";s:16:\"slide_background\";s:224:\"<img width=\"570\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77-570x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:17;a:4:{s:2:\"ID\";s:4:\"1644\";s:5:\"title\";s:10:\"Fallen Son\";s:4:\"text\";s:86:\" \n\n\n\n\nIn love a seed was planted\nAnd in love that seed grew\nCells turned into ...\";s:16:\"slide_background\";s:194:\"<img width=\"261\" height=\"193\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:18;a:4:{s:2:\"ID\";s:4:\"1639\";s:5:\"title\";s:45:\"It\'s Easy To Breathe If You Aren\'t Underwater\";s:4:\"text\";s:85:\" \n\n\n\n\n \n\n\n\n\n\n\n\n The sound of my voice\nGasping for air\nRadiates through the ...\";s:16:\"slide_background\";s:448:\"<img width=\"500\" height=\"374\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg?resize=300%2C224 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:19;a:4:{s:2:\"ID\";s:4:\"1634\";s:5:\"title\";s:9:\"Heavy Fog\";s:4:\"text\";s:96:\" \n\n\n\n\n\n\n\nFog tends to be heavy these days\nThe weeds overwhelm the garden grounds\nBeauty ...\";s:16:\"slide_background\";s:685:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts-500x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?resize=300%2C300 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?resize=280%2C280 280w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:20;a:4:{s:2:\"ID\";s:4:\"1621\";s:5:\"title\";s:19:\"Stationary Traveler\";s:4:\"text\";s:86:\" \n\n\n\n\nThey say the man that ventures most\nAt times, does not go far\n \nFor he ...\";s:16:\"slide_background\";s:433:\"<img width=\"500\" height=\"323\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?resize=300%2C194 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:21;a:4:{s:2:\"ID\";s:4:\"1608\";s:5:\"title\";s:21:\"Be Happy and Get Paid\";s:4:\"text\";s:90:\"Find a Hobby.\nThen find a way to make money doing it.\n \nHey everyone! I haven’t ...\";s:16:\"slide_background\";s:507:\"<img width=\"1170\" height=\"229\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-2560x500.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png?resize=2560%2C500 2560w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png?zoom=2&resize=1170%2C229 2340w\" sizes=\"(max-width: 1170px) 100vw, 1170px\" />\";}i:22;a:4:{s:2:\"ID\";s:4:\"1588\";s:5:\"title\";s:18:\"Someone to Someone\";s:4:\"text\";s:93:\" \n\n\n\n\nYou are someone to someone\nYou just may not be the someone you may wish\n \nFor ...\";s:16:\"slide_background\";s:715:\"<img width=\"550\" height=\"277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?w=550 550w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?resize=300%2C151 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" />\";}i:23;a:4:{s:2:\"ID\";s:4:\"1581\";s:5:\"title\";s:24:\"The Undervalued Crusader\";s:4:\"text\";s:90:\" \n\n\n\n\nStanding in your shadow\nOn the side of your umbrella when it rains\nDrenched ...\";s:16:\"slide_background\";s:190:\"<img width=\"500\" height=\"281\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/517106.gif\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:24;a:4:{s:2:\"ID\";s:4:\"1576\";s:5:\"title\";s:14:\"People Willows\";s:4:\"text\";s:86:\" \n\n\n\n\nGrandma said that those trees cry\nJust like people do\nBut despite their ...\";s:16:\"slide_background\";s:484:\"<img width=\"658\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg?w=658 658w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg?resize=300%2C109 300w\" sizes=\"(max-width: 658px) 100vw, 658px\" />\";}i:25;a:4:{s:2:\"ID\";s:4:\"1572\";s:5:\"title\";s:17:\"NightTime Dilemma\";s:4:\"text\";s:86:\" \n\n\n\n\nAs I lay beside you in bed one night\nI felt my body become a corpse\nFor ...\";s:16:\"slide_background\";s:205:\"<img width=\"900\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning-900x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:26;a:4:{s:2:\"ID\";s:4:\"1567\";s:5:\"title\";s:13:\"Helping Hands\";s:4:\"text\";s:84:\" \n\n\n\n\n \nOpen as it always was\nJust like an open door\n \nReady to have you ...\";s:16:\"slide_background\";s:195:\"<img width=\"1170\" height=\"423\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h-1382x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:27;a:4:{s:2:\"ID\";s:4:\"1560\";s:5:\"title\";s:17:\"The Blooming Tree\";s:4:\"text\";s:92:\" \n\n\n\n\nHe loved me until the rain stopped\nAnd the hollow in the tree was no more\nFor ...\";s:16:\"slide_background\";s:439:\"<img width=\"550\" height=\"446\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?w=550 550w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?resize=300%2C243 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" />\";}i:28;a:4:{s:2:\"ID\";s:4:\"1540\";s:5:\"title\";s:19:\"Circling The Square\";s:4:\"text\";s:85:\"Cherry blossoms on the trees\nNectar in the air\nThe time has changed\nAnd spring is ...\";s:16:\"slide_background\";s:224:\"<img width=\"480\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487-480x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:29;a:4:{s:2:\"ID\";s:4:\"1522\";s:5:\"title\";s:6:\"Braids\";s:4:\"text\";s:84:\" \n\n\n\n\nTwo braids going to the back\nThat is how mama braids my hair\nShe says ...\";s:16:\"slide_background\";s:209:\"<img width=\"736\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl-736x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:30;a:4:{s:2:\"ID\";s:4:\"1368\";s:5:\"title\";s:24:\"Inordinate Contemplation\";s:4:\"text\";s:88:\"I reached for you and you let me fall\nFall into the sadness of me\nWith words so cold ...\";s:16:\"slide_background\";s:187:\"<img width=\"626\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-626x500.png\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" />\";}i:31;a:4:{s:2:\"ID\";s:4:\"1259\";s:5:\"title\";s:23:\"Look And You Shall Find\";s:4:\"text\";s:84:\"They say look and you shall find\nAnd I have hidden here\nWrapped around my choice ...\";s:16:\"slide_background\";s:220:\"<img width=\"1170\" height=\"407\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/03/Screenshot_20160810-111425-1438x500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:32;a:4:{s:2:\"ID\";s:4:\"1181\";s:5:\"title\";s:13:\"Make You Weak\";s:4:\"text\";s:89:\"I will make you weak\nWithout a single touch\nWhile my presence floats on air\n \nMy ...\";s:16:\"slide_background\";s:715:\"<img width=\"168\" height=\"168\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" class=\"attachment-slider-full tc-thumb-type-attachment wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg?w=168 168w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 168px) 100vw, 168px\" />\";}i:33;a:4:{s:2:\"ID\";s:3:\"613\";s:5:\"title\";s:27:\"I Try To Write a Happy Poem\";s:4:\"text\";s:87:\"I try to write a happy poem\nDespite all that I’ve been through\nI try to write ...\";s:16:\"slide_background\";s:555:\"<img width=\"500\" height=\"335\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?resize=300%2C201 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?resize=272%2C182 272w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:34;a:4:{s:2:\"ID\";s:3:\"596\";s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:85:\"The Rose’s Thorn\nA flower that blooms\nSo beautifully red\nSo catching to the ...\";s:16:\"slide_background\";s:475:\"<img width=\"324\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?w=550 550w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?resize=194%2C300 194w\" sizes=\"(max-width: 324px) 100vw, 324px\" />\";}i:35;a:4:{s:2:\"ID\";s:3:\"585\";s:5:\"title\";s:9:\"My Moment\";s:4:\"text\";s:86:\"Partial clouds in the sky\nThe light still cannot come through\n \nDistracted by ...\";s:16:\"slide_background\";s:196:\"<img width=\"320\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:36;a:4:{s:2:\"ID\";s:2:\"14\";s:5:\"title\";s:23:\"The Tears of the Willow\";s:4:\"text\";s:86:\"Sometimes my mind wanders\n\n\nAnd then I begin to cry\n\n\nAnd my mind is consumed with ...\";s:16:\"slide_background\";s:460:\"<img width=\"363\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?w=436 436w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?resize=218%2C300 218w\" sizes=\"(max-width: 363px) 100vw, 363px\" />\";}i:37;a:4:{s:2:\"ID\";s:2:\"27\";s:5:\"title\";s:8:\"The Rock\";s:4:\"text\";s:88:\"You will never know what love truly is until you fully love yourself.…. – Monica ...\";s:16:\"slide_background\";s:596:\"<img width=\"323\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?w=800 800w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?resize=194%2C300 194w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?resize=662%2C1024 662w\" sizes=\"(max-width: 323px) 100vw, 323px\" />\";}i:38;a:4:{s:2:\"ID\";s:2:\"28\";s:5:\"title\";s:34:\"Waiting For Others to Hold My Hand\";s:4:\"text\";s:86:\"Waiting For Others to Hold My Hand\nBy : Monica Renata \n\n\nI use to be afraid\nOf the ...\";s:16:\"slide_background\";s:499:\"<img width=\"335\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?resize=201%2C300 201w\" sizes=\"(max-width: 335px) 100vw, 335px\" />\";}i:39;a:4:{s:2:\"ID\";s:2:\"29\";s:5:\"title\";s:16:\"Let Freedom Ring\";s:4:\"text\";s:84:\"Let Freedom Ring\nBy: Monica Renata\n\nUpon the grassy fields in front\nI look at my ...\";s:16:\"slide_background\";s:421:\"<img width=\"500\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/1038.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?resize=300%2C180 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:40;a:4:{s:2:\"ID\";s:2:\"30\";s:5:\"title\";s:10:\"Stormy Day\";s:4:\"text\";s:85:\"Stormy Day\nBy: Monica Renata\n\nToday it rained\nIt rained so hard\nIt rained so much ...\";s:16:\"slide_background\";s:481:\"<img width=\"671\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?w=900 900w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?resize=300%2C223 300w\" sizes=\"(max-width: 671px) 100vw, 671px\" />\";}i:41;a:4:{s:2:\"ID\";s:2:\"31\";s:5:\"title\";s:14:\"Endless Echoes\";s:4:\"text\";s:84:\"Endless Echoes\nBy: Monica Renata \n\nIn a world of hallow white walls\nI whisper to ...\";s:16:\"slide_background\";s:442:\"<img width=\"497\" height=\"348\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?w=497 497w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?resize=300%2C210 300w\" sizes=\"(max-width: 497px) 100vw, 497px\" />\";}i:42;a:4:{s:2:\"ID\";s:2:\"32\";s:5:\"title\";s:18:\"The Thrill is Gone\";s:4:\"text\";s:86:\"The Thrill is Gone\nBy: Monica Renata \n\nThe days of our lives\nThrough each grain of ...\";s:16:\"slide_background\";s:697:\"<img width=\"467\" height=\"406\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?w=467 467w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?resize=300%2C260 300w\" sizes=\"(max-width: 467px) 100vw, 467px\" />\";}i:43;a:4:{s:2:\"ID\";s:2:\"33\";s:5:\"title\";s:17:\"Every Ounce of Me\";s:4:\"text\";s:86:\"Every Ounce of Me\nBy: Monica Renata\n\nAs the water flows indefinitely\nAs it finally ...\";s:16:\"slide_background\";s:663:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?w=1920 1920w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?resize=300%2C187 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?resize=1024%2C640 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:44;a:4:{s:2:\"ID\";s:2:\"34\";s:5:\"title\";s:16:\"I Can\'t Make You\";s:4:\"text\";s:86:\"I Can’t Make You\nBy: Monica Renata \n\nI am great in my own right\nYet not everyone ...\";s:16:\"slide_background\";s:505:\"<img width=\"236\" height=\"305\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?w=236 236w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?resize=232%2C300 232w\" sizes=\"(max-width: 236px) 100vw, 236px\" />\";}i:45;a:4:{s:2:\"ID\";s:2:\"37\";s:5:\"title\";s:7:\"SandMan\";s:4:\"text\";s:84:\"SandMan\nBy: Monica Renata \n\nBeautifully created\nCarved from the sand with blood, ...\";s:16:\"slide_background\";s:427:\"<img width=\"640\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?w=640 640w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:46;a:4:{s:2:\"ID\";s:2:\"39\";s:5:\"title\";s:11:\"Summer Days\";s:4:\"text\";s:85:\"Summer Days\nBy: Monica Renata\n\nThe brilliance of the summer sun\nThat quickly goes ...\";s:16:\"slide_background\";s:487:\"<img width=\"368\" height=\"275\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?w=368 368w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?resize=300%2C224 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />\";}i:47;a:4:{s:2:\"ID\";s:2:\"44\";s:5:\"title\";s:24:\"Kissed the Midnight Moon\";s:4:\"text\";s:87:\"Kissed the Midnight Moon\nBy: Monica Renata \n\nI kissed the midnight moon\nThat seemed ...\";s:16:\"slide_background\";s:520:\"<img width=\"500\" height=\"430\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?resize=300%2C258 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:48;a:4:{s:2:\"ID\";s:2:\"46\";s:5:\"title\";s:24:\"Appreciate The Night Sky\";s:4:\"text\";s:86:\"Appreciate The Night Sky\nBy: Monica Renata\n\nEach night is one in the same\nThe same ...\";s:16:\"slide_background\";s:759:\"<img width=\"625\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?w=1280 1280w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?resize=300%2C240 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?resize=1024%2C819 1024w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\";}i:49;a:4:{s:2:\"ID\";s:2:\"48\";s:5:\"title\";s:23:\"The Sun After the Storm\";s:4:\"text\";s:85:\"The Sun after the Storm\nBy: Monica Renata\n\nIn a world of endless silence\nStranded ...\";s:16:\"slide_background\";s:454:\"<img width=\"500\" height=\"332\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:50;a:4:{s:2:\"ID\";s:2:\"49\";s:5:\"title\";s:28:\"Standing Up Is the Hard Part\";s:4:\"text\";s:84:\"Standing up is the hard part\nSo much weight on your two feet\nMoving forward into ...\";s:16:\"slide_background\";s:625:\"<img width=\"460\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?w=534 534w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?resize=276%2C300 276w\" sizes=\"(max-width: 460px) 100vw, 460px\" />\";}i:51;a:4:{s:2:\"ID\";s:2:\"50\";s:5:\"title\";s:10:\"Holding On\";s:4:\"text\";s:89:\"Holding On\nBy: Monica Renata \n\nHolding on to hope\nBut is this hope true\nAm I floating ...\";s:16:\"slide_background\";s:472:\"<img width=\"550\" height=\"368\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?w=550 550w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?resize=300%2C200 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" />\";}i:52;a:4:{s:2:\"ID\";s:2:\"53\";s:5:\"title\";s:7:\"Feather\";s:4:\"text\";s:84:\"Feather\nBy: Monica Renata \n\nTo only be a feather\nFloat lightly on the wind\nClose ...\";s:16:\"slide_background\";s:469:\"<img width=\"310\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?w=310 310w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?resize=232%2C300 232w\" sizes=\"(max-width: 310px) 100vw, 310px\" />\";}i:53;a:4:{s:2:\"ID\";s:2:\"55\";s:5:\"title\";s:17:\"I Dreamed A Dream\";s:4:\"text\";s:84:\"I Dreamed A Dream\nBy: Monica Renata \n\nI dreamed that life was splendid\nI dreamed ...\";s:16:\"slide_background\";s:469:\"<img width=\"256\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?w=256 256w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?resize=192%2C300 192w\" sizes=\"(max-width: 256px) 100vw, 256px\" />\";}i:54;a:4:{s:2:\"ID\";s:2:\"57\";s:5:\"title\";s:12:\"Hero\'s Curse\";s:4:\"text\";s:88:\"Hero’s Curse\nBy: Monica Renata \n\nVolcanoes erupt.\nThe sky is filled with gray.\nWho ...\";s:16:\"slide_background\";s:451:\"<img width=\"707\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?w=800 800w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?resize=300%2C212 300w\" sizes=\"(max-width: 707px) 100vw, 707px\" />\";}i:55;a:4:{s:2:\"ID\";s:2:\"58\";s:5:\"title\";s:19:\"The Path to Victory\";s:4:\"text\";s:88:\"The Path to Victory\nBy: Monica Renata \n\nTomorrow is another day\nA day to put my feet ...\";s:16:\"slide_background\";s:439:\"<img width=\"889\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?w=960 960w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?resize=300%2C168 300w\" sizes=\"(max-width: 889px) 100vw, 889px\" />\";}i:56;a:4:{s:2:\"ID\";s:2:\"60\";s:5:\"title\";s:20:\"Fisherman\'s Treasure\";s:4:\"text\";s:84:\"Fisherman’s Treasure\nBy: Monica Renata\n\nAs he sat upon the rocky beach\nHolding ...\";s:16:\"slide_background\";s:478:\"<img width=\"640\" height=\"427\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?w=640 640w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?resize=300%2C200 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:57;a:4:{s:2:\"ID\";s:2:\"61\";s:5:\"title\";s:14:\"Porcelain Doll\";s:4:\"text\";s:91:\"Porcelain Doll\nBy: Monica Renata \n\nCheeks the color of roses\nEyes made of glass\nSitting ...\";s:16:\"slide_background\";s:186:\"<img width=\"224\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/35.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:58;a:4:{s:2:\"ID\";s:2:\"63\";s:5:\"title\";s:10:\"The Letter\";s:4:\"text\";s:86:\"Tear my flesh upon my back\nSet a fire to my bones\nSilence the words of my wisdom\nI ...\";s:16:\"slide_background\";s:427:\"<img width=\"500\" height=\"333\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:59;a:4:{s:2:\"ID\";s:2:\"67\";s:5:\"title\";s:14:\"Going it Alone\";s:4:\"text\";s:95:\"“I’m going to the movies alone……………”\n\nNever ...\";s:16:\"slide_background\";s:634:\"<img width=\"753\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?w=800 800w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 753px) 100vw, 753px\" />\";}i:60;a:4:{s:2:\"ID\";s:2:\"68\";s:5:\"title\";s:8:\"The Wait\";s:4:\"text\";s:90:\"As the sky went from blue to midnightAs my room slowly faded to blackThoughts wandered ...\";s:16:\"slide_background\";s:583:\"<img width=\"500\" height=\"353\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?resize=300%2C211 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:61;a:4:{s:2:\"ID\";s:2:\"69\";s:5:\"title\";s:7:\"Insides\";s:4:\"text\";s:84:\"Twigs upon the great oak treeSeem to break with the windLimbs which were thought ...\";s:16:\"slide_background\";s:475:\"<img width=\"511\" height=\"383\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?w=511 511w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?resize=300%2C224 300w\" sizes=\"(max-width: 511px) 100vw, 511px\" />\";}i:62;a:4:{s:2:\"ID\";s:2:\"73\";s:5:\"title\";s:16:\"Winter to Spring\";s:4:\"text\";s:85:\"Winter snow is falling downSoon to be no moreFor Spring is finally comingAnd life ...\";s:16:\"slide_background\";s:571:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?w=1920 1920w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?resize=300%2C187 300w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?resize=1024%2C640 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:63;a:4:{s:2:\"ID\";s:2:\"74\";s:5:\"title\";s:13:\"No Exceptions\";s:4:\"text\";s:87:\"Nature provides exceptionsFor every single ruleAnd alas I fell for it completelyAnd ...\";s:16:\"slide_background\";s:532:\"<img width=\"785\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?w=985 985w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?resize=300%2C190 300w\" sizes=\"(max-width: 785px) 100vw, 785px\" />\";}i:64;a:4:{s:2:\"ID\";s:2:\"79\";s:5:\"title\";s:13:\"I\'m Beautiful\";s:4:\"text\";s:84:\"I’m BeautifulBy: Monica RenataI’m beautiful on the insideEven though ...\";s:16:\"slide_background\";s:460:\"<img width=\"640\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?w=640 640w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:65;a:4:{s:2:\"ID\";s:2:\"80\";s:5:\"title\";s:8:\"The Trap\";s:4:\"text\";s:85:\"The Trap By: Monica Renata \nClinging on the mountainside I watch as you react You ...\";s:16:\"slide_background\";s:466:\"<img width=\"280\" height=\"280\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?w=280 280w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 280px) 100vw, 280px\" />\";}i:66;a:4:{s:2:\"ID\";s:2:\"85\";s:5:\"title\";s:16:\"I Missed The Bus\";s:4:\"text\";s:87:\"I missed the bus again todayIt just went passing byI got a whiff of the black ...\";s:16:\"slide_background\";s:213:\"<img width=\"128\" height=\"101\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:67;a:4:{s:2:\"ID\";s:2:\"86\";s:5:\"title\";s:23:\"Valentine\'s Day Freebie\";s:4:\"text\";s:131:\"The Awkward Butterfly\n\n\n\n\n\nCreateSpace: https://www.createspace.com/4430912\nAmazon: http://amzn.com/1492343781\nAmazon ...\";s:16:\"slide_background\";s:466:\"<img width=\"479\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?w=494 494w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?resize=287%2C300 287w\" sizes=\"(max-width: 479px) 100vw, 479px\" />\";}i:68;a:4:{s:2:\"ID\";s:2:\"88\";s:5:\"title\";s:4:\"Five\";s:4:\"text\";s:84:\"Five\nBy: Monica Renata \n\nFive is the magic number\nThat connects us once again\nTo ...\";s:16:\"slide_background\";s:478:\"<img width=\"413\" height=\"310\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?w=413 413w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 413px) 100vw, 413px\" />\";}i:69;a:4:{s:2:\"ID\";s:2:\"89\";s:5:\"title\";s:19:\"Stone-faced Soldier\";s:4:\"text\";s:86:\"Stone-faced Soldier\nBy: Monica Renata\n\nBullets going everywhere\nBombs are in close ...\";s:16:\"slide_background\";s:436:\"<img width=\"400\" height=\"294\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?w=400 400w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?resize=300%2C220 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:70;a:4:{s:2:\"ID\";s:2:\"93\";s:5:\"title\";s:10:\"Lost Heart\";s:4:\"text\";s:84:\"The heart goes through many journeysJust like feathers in the windTwirling round ...\";s:16:\"slide_background\";s:445:\"<img width=\"400\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?w=400 400w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:71;a:4:{s:2:\"ID\";s:2:\"95\";s:5:\"title\";s:17:\"Sticky Situations\";s:4:\"text\";s:89:\"Bubble gum between my fingersStuck together like glueI’m in a sticky situationI ...\";s:16:\"slide_background\";s:532:\"<img width=\"427\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?w=520 520w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?resize=256%2C300 256w\" sizes=\"(max-width: 427px) 100vw, 427px\" />\";}i:72;a:4:{s:2:\"ID\";s:2:\"96\";s:5:\"title\";s:12:\"Winter Storm\";s:4:\"text\";s:88:\"I remember when the snow fell light\nAnd it landed on the ground\nThis rarely happened ...\";s:16:\"slide_background\";s:610:\"<img width=\"473\" height=\"355\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?w=473 473w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 473px) 100vw, 473px\" />\";}i:73;a:4:{s:2:\"ID\";s:2:\"98\";s:5:\"title\";s:11:\"Sneaky Sara\";s:4:\"text\";s:87:\"Sneaky Sneaky SaraThinks that I don’t knowShe always in my businessShe always ...\";s:16:\"slide_background\";s:427:\"<img width=\"410\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?w=839 839w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?resize=245%2C300 245w\" sizes=\"(max-width: 410px) 100vw, 410px\" />\";}i:74;a:4:{s:2:\"ID\";s:2:\"99\";s:5:\"title\";s:15:\"Bojo The Bandit\";s:4:\"text\";s:86:\"They called him Bojo the Bandit\nHis teeth were yellow and green \nHis hair was ...\";s:16:\"slide_background\";s:433:\"<img width=\"492\" height=\"327\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?w=492 492w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 492px) 100vw, 492px\" />\";}i:75;a:4:{s:2:\"ID\";s:3:\"101\";s:5:\"title\";s:23:\"I Just Want You To Know\";s:4:\"text\";s:90:\"The beauty of your eyes\nThat can see deep down in my soul\nThe warmth that your embrace ...\";s:16:\"slide_background\";s:415:\"<img width=\"500\" height=\"232\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/17.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?resize=300%2C139 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:76;a:4:{s:2:\"ID\";s:3:\"102\";s:5:\"title\";s:19:\"My Light In The Sky\";s:4:\"text\";s:86:\"Bright little stars scattered about \nlike glitter in my hand\nIn the night sky ...\";s:16:\"slide_background\";s:523:\"<img width=\"400\" height=\"328\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?w=400 400w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?resize=300%2C246 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:77;a:4:{s:2:\"ID\";s:3:\"103\";s:5:\"title\";s:10:\"Inadequate\";s:4:\"text\";s:86:\"If you could wish itYou’d wish me perfectBut that cannot be soSo instead you ...\";s:16:\"slide_background\";s:499:\"<img width=\"378\" height=\"244\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?w=378 378w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?resize=300%2C193 300w\" sizes=\"(max-width: 378px) 100vw, 378px\" />\";}i:78;a:4:{s:2:\"ID\";s:3:\"104\";s:5:\"title\";s:10:\"White Flag\";s:4:\"text\";s:84:\"Who will wave the white flag?Who will reveal the truth?To give up now would hurt ...\";s:16:\"slide_background\";s:463:\"<img width=\"260\" height=\"358\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?w=260 260w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?resize=217%2C300 217w\" sizes=\"(max-width: 260px) 100vw, 260px\" />\";}i:79;a:4:{s:2:\"ID\";s:3:\"114\";s:5:\"title\";s:19:\"Knocking at my door\";s:4:\"text\";s:86:\"Knocking on my door\nBut I’m afraid to answer\nBack to my room I go\nThey shall ...\";s:16:\"slide_background\";s:189:\"<img width=\"278\" height=\"273\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:80;a:4:{s:2:\"ID\";s:3:\"116\";s:5:\"title\";s:21:\"Pretty Little Picture\";s:4:\"text\";s:90:\"Pretty little picturePainted in my mindEach brushstroke drew a memoryWhich had emotion ...\";s:16:\"slide_background\";s:627:\"<img width=\"682\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?w=1091 1091w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?resize=300%2C219 300w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?resize=1024%2C750 1024w\" sizes=\"(max-width: 682px) 100vw, 682px\" />\";}i:81;a:4:{s:2:\"ID\";s:3:\"117\";s:5:\"title\";s:5:\"Dance\";s:4:\"text\";s:86:\"I just want to dance!!!\nMove my body left and right!!!\nSing the song at the top of ...\";s:16:\"slide_background\";s:538:\"<img width=\"386\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?w=1275 1275w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?resize=231%2C300 231w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?resize=791%2C1024 791w\" sizes=\"(max-width: 386px) 100vw, 386px\" />\";}i:82;a:4:{s:2:\"ID\";s:3:\"118\";s:5:\"title\";s:17:\"Life Isn\'t a Game\";s:4:\"text\";s:87:\"Searching for my Kingdom HeartThat is my Final FantasyStanding at the top of Silent ...\";s:16:\"slide_background\";s:747:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?w=800 800w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:83;a:4:{s:2:\"ID\";s:3:\"119\";s:5:\"title\";s:15:\"Sleepless Night\";s:4:\"text\";s:85:\"Ceiling fan is spinning\nThoughts consuming my head\nWaiting for sleep to come over ...\";s:16:\"slide_background\";s:194:\"<img width=\"300\" height=\"241\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:84;a:4:{s:2:\"ID\";s:3:\"120\";s:5:\"title\";s:21:\"Light In The Darkness\";s:4:\"text\";s:88:\"Fog thick like powder\nI feel it touch my face\nWondering around in circles\nNo shelter ...\";s:16:\"slide_background\";s:465:\"<img width=\"625\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?w=1024 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?resize=300%2C239 300w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\";}i:85;a:4:{s:2:\"ID\";s:3:\"122\";s:5:\"title\";s:25:\"What Are We Fighting For?\";s:4:\"text\";s:85:\"Seesawing on an issueThoughts traveling with the windAt a fork in the neverending ...\";s:16:\"slide_background\";s:448:\"<img width=\"640\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?w=640 640w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:86;a:4:{s:2:\"ID\";s:3:\"124\";s:5:\"title\";s:12:\"Memory Walls\";s:4:\"text\";s:88:\"A memory placed deep in my mind\nSo deep that it can’t be reached\nA memory that ...\";s:16:\"slide_background\";s:424:\"<img width=\"333\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?resize=200%2C300 200w\" sizes=\"(max-width: 333px) 100vw, 333px\" />\";}i:87;a:4:{s:2:\"ID\";s:3:\"125\";s:5:\"title\";s:15:\"The Giving Tree\";s:4:\"text\";s:85:\"From the ground it sproutedDespite the lack of the sunStrong and yet beautifulThe ...\";s:16:\"slide_background\";s:487:\"<img width=\"433\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?w=600 600w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?resize=259%2C300 259w\" sizes=\"(max-width: 433px) 100vw, 433px\" />\";}i:88;a:4:{s:2:\"ID\";s:3:\"126\";s:5:\"title\";s:8:\"Bye Love\";s:4:\"text\";s:84:\"I knew you couldn’t take it anymoreAnd the blame was all on me I knew that ...\";s:16:\"slide_background\";s:214:\"<img width=\"212\" height=\"237\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:89;a:4:{s:2:\"ID\";s:3:\"128\";s:5:\"title\";s:19:\"Best Part of My Day\";s:4:\"text\";s:84:\"Awakening from slumberAt the sound of the alarmPreparing for the day aheadI know ...\";s:16:\"slide_background\";s:589:\"<img width=\"365\" height=\"380\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?w=365 365w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?resize=288%2C300 288w\" sizes=\"(max-width: 365px) 100vw, 365px\" />\";}i:90;a:4:{s:2:\"ID\";s:3:\"130\";s:5:\"title\";s:3:\"TKO\";s:4:\"text\";s:86:\"The crowd is cheering on fiercelySweat is dripping down my neckI am sitting in the ...\";s:16:\"slide_background\";s:192:\"<img width=\"170\" height=\"141\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:91;a:4:{s:2:\"ID\";s:3:\"137\";s:5:\"title\";s:7:\"Speckle\";s:4:\"text\";s:84:\"I have a cat named SpeckleShe has a lot of spotsShe rolls around on her bellyShe ...\";s:16:\"slide_background\";s:463:\"<img width=\"640\" height=\"466\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?w=640 640w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?resize=300%2C218 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:92;a:4:{s:2:\"ID\";s:3:\"141\";s:5:\"title\";s:11:\"My Works!!!\";s:4:\"text\";s:87:\"The Awkward Butterfly\n\n\n\n\n\nCreateSpace: https://www.createspace.com/4430912\nAmazon: ...\";s:16:\"slide_background\";s:619:\"<img width=\"228\" height=\"346\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?w=228 228w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=197%2C300 197w\" sizes=\"(max-width: 228px) 100vw, 228px\" />\";}i:93;a:4:{s:2:\"ID\";s:3:\"142\";s:5:\"title\";s:24:\"Please check out my book\";s:4:\"text\";s:84:\"The Awkward Butterfly by Monica Renata http://www.amazon.com/dp/1492343781/ref=c ...\";s:16:\"slide_background\";s:499:\"<img width=\"281\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?w=576 576w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?resize=168%2C300 168w\" sizes=\"(max-width: 281px) 100vw, 281px\" />\";}i:94;a:4:{s:2:\"ID\";s:3:\"143\";s:5:\"title\";s:10:\"Growing Up\";s:4:\"text\";s:92:\"Bills, Bills, Bills!I pay them every day…..And as soon as I get my next checkThere ...\";s:16:\"slide_background\";s:563:\"<img width=\"750\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?w=1600 1600w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?resize=300%2C200 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?resize=1024%2C682 1024w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\";}i:95;a:4:{s:2:\"ID\";s:3:\"144\";s:5:\"title\";s:19:\"Officially Official\";s:4:\"text\";s:89:\"I’m Officially Official!\nCan’t you tell by the look of my shoes? \nOr ...\";s:16:\"slide_background\";s:607:\"<img width=\"674\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?w=2388 2388w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?resize=300%2C222 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?resize=1024%2C759 1024w\" sizes=\"(max-width: 674px) 100vw, 674px\" />\";}i:96;a:4:{s:2:\"ID\";s:3:\"150\";s:5:\"title\";s:8:\"December\";s:4:\"text\";s:84:\"The first snow fell on a December day\nRight on a tree branch where it decided to ...\";s:16:\"slide_background\";s:451:\"<img width=\"375\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?w=480 480w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?resize=225%2C300 225w\" sizes=\"(max-width: 375px) 100vw, 375px\" />\";}i:97;a:4:{s:2:\"ID\";s:3:\"152\";s:5:\"title\";s:23:\"Fill my cup with Coffee\";s:4:\"text\";s:84:\"Can you fill my cup with coffee?Such a warm and delicious brewIntoxicated by the ...\";s:16:\"slide_background\";s:707:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?w=1200 1200w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?resize=300%2C300 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?resize=1024%2C1024 1024w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:98;a:4:{s:2:\"ID\";s:3:\"155\";s:5:\"title\";s:11:\"Get Over It\";s:4:\"text\";s:85:\"Trapped on an islandYet somewhat close to landI hold my breathe tightlyFor I wish ...\";s:16:\"slide_background\";s:430:\"<img width=\"347\" height=\"286\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?w=347 347w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?resize=300%2C247 300w\" sizes=\"(max-width: 347px) 100vw, 347px\" />\";}i:99;a:4:{s:2:\"ID\";s:3:\"156\";s:5:\"title\";s:15:\"Confetti Hearts\";s:4:\"text\";s:89:\"Strung along the empty room\nFalling from the sky\nA piece of a love I thought I knew\nA ...\";s:16:\"slide_background\";s:484:\"<img width=\"460\" height=\"276\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?w=460 460w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?resize=300%2C180 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />\";}i:100;a:4:{s:2:\"ID\";s:3:\"157\";s:5:\"title\";s:16:\"The Winter March\";s:4:\"text\";s:87:\"On the cold steps I said goodbyeAs the wind blew through my hairAnd I felt my tears ...\";s:16:\"slide_background\";s:499:\"<img width=\"540\" height=\"358\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?w=540 540w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?resize=300%2C198 300w\" sizes=\"(max-width: 540px) 100vw, 540px\" />\";}i:101;a:4:{s:2:\"ID\";s:3:\"159\";s:5:\"title\";s:6:\"Brunch\";s:4:\"text\";s:88:\"Some call it breakfastSome call it lunchI call it foodThat I love so muchFor I shall ...\";s:16:\"slide_background\";s:595:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?w=640 640w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:102;a:4:{s:2:\"ID\";s:3:\"160\";s:5:\"title\";s:27:\"Flowers Bloom In Winter Too\";s:4:\"text\";s:84:\"Flowers bloom in winter too\nThroughout all the ice\nThey make it through\nAnd even ...\";s:16:\"slide_background\";s:460:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?w=800 800w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:103;a:4:{s:2:\"ID\";s:3:\"161\";s:5:\"title\";s:12:\"Who Are You?\";s:4:\"text\";s:85:\"Once I knew you so wellLike how I knew the back of my handI knew the curvature of ...\";s:16:\"slide_background\";s:559:\"<img width=\"423\" height=\"335\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?w=423 423w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?resize=300%2C237 300w\" sizes=\"(max-width: 423px) 100vw, 423px\" />\";}i:104;a:4:{s:2:\"ID\";s:3:\"162\";s:5:\"title\";s:11:\"You Used To\";s:4:\"text\";s:88:\"You used to say you loved meThere were certain things you used to doYou used to make ...\";s:16:\"slide_background\";s:468:\"<img width=\"704\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?resize=704%2C300 704w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?resize=300%2C127 300w\" sizes=\"(max-width: 704px) 100vw, 704px\" />\";}i:105;a:4:{s:2:\"ID\";s:3:\"164\";s:5:\"title\";s:5:\"Tired\";s:4:\"text\";s:84:\"I’m tired of being tiredI’m blind but I can seeI’m hurting but ...\";s:16:\"slide_background\";s:499:\"<img width=\"500\" height=\"288\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?resize=300%2C172 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:106;a:4:{s:2:\"ID\";s:3:\"168\";s:5:\"title\";s:14:\"Peace Be Still\";s:4:\"text\";s:84:\"Peace be still my darlingDo not utter a soundDo not question your surroundingsDo ...\";s:16:\"slide_background\";s:216:\"<img width=\"236\" height=\"295\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:107;a:4:{s:2:\"ID\";s:3:\"169\";s:5:\"title\";s:10:\"The Garden\";s:4:\"text\";s:84:\"Such a precious plot of land\nLovely in its own right\nDoesn’t really have a ...\";s:16:\"slide_background\";s:498:\"<img width=\"333\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?resize=640%2C960 640w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?resize=200%2C300 200w\" sizes=\"(max-width: 333px) 100vw, 333px\" />\";}i:108;a:4:{s:2:\"ID\";s:3:\"172\";s:5:\"title\";s:11:\"Love Letter\";s:4:\"text\";s:89:\"There are words that float around my head\nBut won’t come from my lips\nAnd these ...\";s:16:\"slide_background\";s:484:\"<img width=\"739\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?w=739 739w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?resize=300%2C194 300w\" sizes=\"(max-width: 739px) 100vw, 739px\" />\";}i:109;a:4:{s:2:\"ID\";s:3:\"174\";s:5:\"title\";s:9:\"Who Knows\";s:4:\"text\";s:84:\"Who knows what tomorrow holds? \nWho knows where we will be? \nWho knows ...\";s:16:\"slide_background\";s:454:\"<img width=\"600\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?w=600 600w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?resize=300%2C150 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\";}i:110;a:4:{s:2:\"ID\";s:3:\"175\";s:5:\"title\";s:14:\"Racing Forward\";s:4:\"text\";s:95:\"Heart beats loud\nI move my feet\nFear overtaking me\nWho knows what the future holds? \nI ...\";s:16:\"slide_background\";s:517:\"<img width=\"538\" height=\"404\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?w=538 538w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?resize=300%2C225 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />\";}i:111;a:4:{s:2:\"ID\";s:3:\"176\";s:5:\"title\";s:13:\"Short & Sweet\";s:4:\"text\";s:85:\"Short and sweet\nLike two words in melody\nThe feeling when you hold my hand\nJoyous ...\";s:16:\"slide_background\";s:448:\"<img width=\"624\" height=\"351\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?w=624 624w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?resize=300%2C168 300w\" sizes=\"(max-width: 624px) 100vw, 624px\" />\";}i:112;a:4:{s:2:\"ID\";s:3:\"177\";s:5:\"title\";s:10:\"Tug-Of-War\";s:4:\"text\";s:84:\"For years I used to enjoy tug-of-warFor I thought it was uniqueBut after growing ...\";s:16:\"slide_background\";s:469:\"<img width=\"751\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?w=849 849w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 751px) 100vw, 751px\" />\";}i:113;a:4:{s:2:\"ID\";s:3:\"182\";s:5:\"title\";s:12:\"The Housecat\";s:4:\"text\";s:86:\"I awaken in my fortressYet nothing bothers meI help myself to my breakfastAnd wait ...\";s:16:\"slide_background\";s:200:\"<img width=\"300\" height=\"250\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:114;a:4:{s:2:\"ID\";s:3:\"184\";s:5:\"title\";s:15:\"In Your Absence\";s:4:\"text\";s:86:\"In your absenceI was able to findSomething elseThat catches my eyeIt reminds me of ...\";s:16:\"slide_background\";s:797:\"<img width=\"887\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?w=3264 3264w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?resize=300%2C169 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?resize=1024%2C577 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?w=2340 2340w\" sizes=\"(max-width: 887px) 100vw, 887px\" />\";}i:115;a:4:{s:2:\"ID\";s:3:\"186\";s:5:\"title\";s:15:\"Grandma\'s House\";s:4:\"text\";s:84:\"Going back to grandma’s house\nTo see the wonders within\nFor her place is a ...\";s:16:\"slide_background\";s:510:\"<img width=\"642\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?w=1024 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?resize=300%2C233 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />\";}i:116;a:4:{s:2:\"ID\";s:3:\"187\";s:5:\"title\";s:14:\"The Given Gift\";s:4:\"text\";s:84:\"Beautiful beginningsAnd sometimes tragic endsLife is a special giftThat everyone ...\";s:16:\"slide_background\";s:632:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?w=3264 3264w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?resize=300%2C225 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?resize=1024%2C768 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?w=2340 2340w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:117;a:4:{s:2:\"ID\";s:3:\"188\";s:5:\"title\";s:23:\"The Loveliest of Lovely\";s:4:\"text\";s:85:\"The loveliest of lovely\nThey say it so exist\nBut the loveliest of lovely\nIs never ...\";s:16:\"slide_background\";s:430:\"<img width=\"373\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/preview.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?w=475 475w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?resize=224%2C300 224w\" sizes=\"(max-width: 373px) 100vw, 373px\" />\";}i:118;a:4:{s:2:\"ID\";s:3:\"189\";s:5:\"title\";s:20:\"I Will Not Be Afraid\";s:4:\"text\";s:88:\"As the sun slowly goes downAnd the moon begins to riseThere is a blanket of complete ...\";s:16:\"slide_background\";s:505:\"<img width=\"750\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?w=900 900w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?resize=300%2C200 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\";}i:119;a:4:{s:2:\"ID\";s:3:\"190\";s:5:\"title\";s:27:\"If You Ever Shall Forget Me\";s:4:\"text\";s:84:\"If you ever shall forget meIf I never ever cross your thoughtsDo remember that I ...\";s:16:\"slide_background\";s:526:\"<img width=\"500\" height=\"350\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?resize=300%2C210 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:120;a:4:{s:2:\"ID\";s:3:\"193\";s:5:\"title\";s:8:\"The News\";s:4:\"text\";s:86:\"Every morning I wake upI quickly turn on the newsAnd every single morningI hear of ...\";s:16:\"slide_background\";s:483:\"<img width=\"1007\" height=\"419\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?w=1007 1007w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?resize=300%2C124 300w\" sizes=\"(max-width: 1007px) 100vw, 1007px\" />\";}i:121;a:4:{s:2:\"ID\";s:3:\"194\";s:5:\"title\";s:14:\"The Homecoming\";s:4:\"text\";s:84:\"Far into the distancePast the rolling hillsI see a very faint figureAnd I wonder ...\";s:16:\"slide_background\";s:486:\"<img width=\"570\" height=\"200\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?resize=570%2C200 570w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?resize=300%2C105 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />\";}i:122;a:4:{s:2:\"ID\";s:3:\"195\";s:5:\"title\";s:8:\"12/13/14\";s:4:\"text\";s:87:\"12/13/14Was going to be my special dayThe day that ice cold wind would blow through ...\";s:16:\"slide_background\";s:579:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?w=1920 1920w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?resize=300%2C187 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?resize=1024%2C640 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:123;a:4:{s:2:\"ID\";s:3:\"196\";s:5:\"title\";s:7:\"Working\";s:4:\"text\";s:85:\"Building up with pressureTrying hard not to bat my eyesI stare into the distanceI ...\";s:16:\"slide_background\";s:598:\"<img width=\"404\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?w=1200 1200w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?resize=242%2C300 242w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?resize=826%2C1024 826w\" sizes=\"(max-width: 404px) 100vw, 404px\" />\";}i:124;a:4:{s:2:\"ID\";s:3:\"197\";s:5:\"title\";s:13:\"Peanut Butter\";s:4:\"text\";s:88:\"Peanut butter and jellyHas always been my favorite treatI grab my bread and knifeAnd ...\";s:16:\"slide_background\";s:457:\"<img width=\"335\" height=\"316\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?w=335 335w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?resize=300%2C282 300w\" sizes=\"(max-width: 335px) 100vw, 335px\" />\";}i:125;a:4:{s:2:\"ID\";s:3:\"199\";s:5:\"title\";s:22:\"My Dream of Me and You\";s:4:\"text\";s:84:\"If eternities really lasted forever\nAnd skies were always blue\nI would sit under ...\";s:16:\"slide_background\";s:513:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?w=1024 1024w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:126;a:4:{s:2:\"ID\";s:3:\"200\";s:5:\"title\";s:7:\"Silence\";s:4:\"text\";s:89:\"Sitting in complete silenceOverwhelmed by thoughtsTo have so many questions to askYet ...\";s:16:\"slide_background\";s:568:\"<img width=\"333\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?w=730 730w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?resize=200%2C300 200w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?resize=682%2C1024 682w\" sizes=\"(max-width: 333px) 100vw, 333px\" />\";}i:127;a:4:{s:2:\"ID\";s:3:\"201\";s:5:\"title\";s:18:\"The Morning Hustle\";s:4:\"text\";s:85:\"Stumbling on forgotten sleepAwaken from my slumberMy body moves in decrepit ...\";s:16:\"slide_background\";s:466:\"<img width=\"252\" height=\"364\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?w=252 252w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?resize=207%2C300 207w\" sizes=\"(max-width: 252px) 100vw, 252px\" />\";}i:128;a:4:{s:2:\"ID\";s:3:\"203\";s:5:\"title\";s:13:\"The Last Kiss\";s:4:\"text\";s:89:\"A kissSomething that can mean so littleYet also mean the mostI sit down and I wonderI ...\";s:16:\"slide_background\";s:493:\"<img width=\"346\" height=\"305\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?w=346 346w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?resize=300%2C264 300w\" sizes=\"(max-width: 346px) 100vw, 346px\" />\";}i:129;a:4:{s:2:\"ID\";s:3:\"205\";s:5:\"title\";s:14:\"The Collection\";s:4:\"text\";s:88:\"A collection of so many piecesThese pieces which create a wholeNever truly ever seen ...\";s:16:\"slide_background\";s:520:\"<img width=\"808\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?w=900 900w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?resize=300%2C185 300w\" sizes=\"(max-width: 808px) 100vw, 808px\" />\";}i:130;a:4:{s:2:\"ID\";s:3:\"206\";s:5:\"title\";s:22:\"Pretty, Pretty, Pretty\";s:4:\"text\";s:85:\"Pretty, Pretty, PrettyThat’s what they say to meYet they take no timeTo see ...\";s:16:\"slide_background\";s:688:\"<img width=\"361\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?w=987 987w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?resize=216%2C300 216w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?resize=739%2C1024 739w\" sizes=\"(max-width: 361px) 100vw, 361px\" />\";}i:131;a:4:{s:2:\"ID\";s:3:\"207\";s:5:\"title\";s:22:\"I could say I miss you\";s:4:\"text\";s:84:\"I could say that I miss youBut that wouldn’t mean a thingFor I don’t ...\";s:16:\"slide_background\";s:445:\"<img width=\"520\" height=\"418\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?w=520 520w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?resize=300%2C241 300w\" sizes=\"(max-width: 520px) 100vw, 520px\" />\";}i:132;a:4:{s:2:\"ID\";s:3:\"208\";s:5:\"title\";s:19:\"Money, Money, Money\";s:4:\"text\";s:84:\"Money, Money, Money\nIt can buy you many things\nIt can buy you flashy cars\nIt can ...\";s:16:\"slide_background\";s:526:\"<img width=\"610\" height=\"350\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?w=610 610w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?resize=300%2C172 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />\";}i:133;a:4:{s:2:\"ID\";s:3:\"209\";s:5:\"title\";s:12:\"Grandpa Said\";s:4:\"text\";s:89:\"Grandpa told me many things\nI still remember what he said\n\nHe said treat others ...\";s:16:\"slide_background\";s:492:\"<img width=\"625\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?w=1024 1024w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?resize=300%2C239 300w\" sizes=\"(max-width: 625px) 100vw, 625px\" />\";}i:134;a:4:{s:2:\"ID\";s:3:\"210\";s:5:\"title\";s:8:\"The Life\";s:4:\"text\";s:84:\"Head on my pillow\nCool breeze through the night\nI feel your arms around me\nAnd I ...\";s:16:\"slide_background\";s:615:\"<img width=\"641\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?w=1096 1096w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?resize=300%2C234 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?resize=1024%2C798 1024w\" sizes=\"(max-width: 641px) 100vw, 641px\" />\";}i:135;a:4:{s:2:\"ID\";s:3:\"213\";s:5:\"title\";s:33:\"Learn To Listen = Listen to Learn\";s:4:\"text\";s:85:\"When was the last time you used your ears?When was the last time you used them to ...\";s:16:\"slide_background\";s:436:\"<img width=\"350\" height=\"253\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?w=350 350w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?resize=300%2C216 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />\";}i:136;a:4:{s:2:\"ID\";s:3:\"216\";s:5:\"title\";s:4:\"Keep\";s:4:\"text\";s:89:\"Keep in mind those feelingsKeep in mind the words you sayKeep in mind your actionsFor ...\";s:16:\"slide_background\";s:457:\"<img width=\"490\" height=\"296\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?w=490 490w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?resize=300%2C181 300w\" sizes=\"(max-width: 490px) 100vw, 490px\" />\";}i:137;a:4:{s:2:\"ID\";s:3:\"217\";s:5:\"title\";s:16:\"Genuine Kindness\";s:4:\"text\";s:87:\"Kindness….Genuine Kindness…What ever happened to this?When was the last ...\";s:16:\"slide_background\";s:478:\"<img width=\"431\" height=\"245\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?w=431 431w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?resize=300%2C170 300w\" sizes=\"(max-width: 431px) 100vw, 431px\" />\";}i:138;a:4:{s:2:\"ID\";s:3:\"218\";s:5:\"title\";s:17:\"Life is Beautiful\";s:4:\"text\";s:95:\"Beauty is in the eye of the beholder\nBut what is there to hold\nFor life changes everyday\nIt ...\";s:16:\"slide_background\";s:647:\"<img width=\"480\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?w=480 480w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\";}i:139;a:4:{s:2:\"ID\";s:3:\"219\";s:5:\"title\";s:12:\"Winter Comes\";s:4:\"text\";s:88:\"The sunny days have past\nAnd now comes the icy wind\nFreezing all it comes in contact ...\";s:16:\"slide_background\";s:454:\"<img width=\"747\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?w=860 860w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?resize=300%2C200 300w\" sizes=\"(max-width: 747px) 100vw, 747px\" />\";}i:140;a:4:{s:2:\"ID\";s:3:\"220\";s:5:\"title\";s:15:\"Changing Others\";s:4:\"text\";s:87:\"You can’t change other peopleYou can’t make someone see what you seeAnd ...\";s:16:\"slide_background\";s:430:\"<img width=\"690\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/holstee.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?w=896 896w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?resize=300%2C217 300w\" sizes=\"(max-width: 690px) 100vw, 690px\" />\";}i:141;a:4:{s:2:\"ID\";s:3:\"223\";s:5:\"title\";s:50:\"Never change for others, Only change for YOURSELF.\";s:4:\"text\";s:0:\"\";s:16:\"slide_background\";s:587:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?resize=150%2C150 150w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:142;a:4:{s:2:\"ID\";s:3:\"224\";s:5:\"title\";s:11:\"That Moment\";s:4:\"text\";s:92:\"That moment\nThat one moment \nThat moment that you can’t get out of your ...\";s:16:\"slide_background\";s:484:\"<img width=\"600\" height=\"437\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?w=600 600w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?resize=300%2C218 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\";}i:143;a:4:{s:2:\"ID\";s:3:\"226\";s:5:\"title\";s:9:\"1st Place\";s:4:\"text\";s:86:\"Always being pushed to the sideNever really been firstLife is like a racing gameIn ...\";s:16:\"slide_background\";s:442:\"<img width=\"300\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?w=300 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\";}i:144;a:4:{s:2:\"ID\";s:3:\"228\";s:5:\"title\";s:24:\"Who is holding you back?\";s:4:\"text\";s:84:\"There are troubles in lifeThere are lessons to be learnedSometimes it seems like ...\";s:16:\"slide_background\";s:529:\"<img width=\"320\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?w=320 320w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 320px) 100vw, 320px\" />\";}i:145;a:4:{s:2:\"ID\";s:3:\"229\";s:5:\"title\";s:22:\"\"Ms. I Need You Today\"\";s:4:\"text\";s:88:\"Hey, I’m right here!!\nCan you see me!\nToday is another day!\nToday is no longer ...\";s:16:\"slide_background\";s:469:\"<img width=\"436\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?w=558 558w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?resize=261%2C300 261w\" sizes=\"(max-width: 436px) 100vw, 436px\" />\";}i:146;a:4:{s:2:\"ID\";s:3:\"230\";s:5:\"title\";s:7:\"Running\";s:4:\"text\";s:88:\"I’m running, running, runningTrying to keep up with your paceI’m running ...\";s:16:\"slide_background\";s:466:\"<img width=\"300\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?w=300 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?resize=225%2C300 225w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\";}i:147;a:4:{s:2:\"ID\";s:3:\"231\";s:5:\"title\";s:7:\"The Man\";s:4:\"text\";s:85:\"Mama always reminded me of youShe always said, “daughter be careful because ...\";s:16:\"slide_background\";s:194:\"<img width=\"172\" height=\"198\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:148;a:4:{s:2:\"ID\";s:3:\"234\";s:5:\"title\";s:12:\"The Benefits\";s:4:\"text\";s:91:\"Heart of Solid Gold\nLips that Only Utter Kindness\nSo rare it is to find these things\nSo ...\";s:16:\"slide_background\";s:812:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?w=1200 1200w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?resize=300%2C300 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?resize=1024%2C1024 1024w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:149;a:4:{s:2:\"ID\";s:3:\"236\";s:5:\"title\";s:5:\"Bitch\";s:4:\"text\";s:86:\"Think about all the times you have been called this in your life… \nAnd I’m not ...\";s:16:\"slide_background\";s:523:\"<img width=\"529\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?w=1183 1183w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?resize=300%2C283 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?resize=1024%2C967 1024w\" sizes=\"(max-width: 529px) 100vw, 529px\" />\";}i:150;a:4:{s:2:\"ID\";s:3:\"237\";s:5:\"title\";s:9:\"The House\";s:4:\"text\";s:87:\"Your house is no longer vacantAnd I’m standing at the doorKnocking so you can ...\";s:16:\"slide_background\";s:803:\"<img width=\"750\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?w=1350 1350w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?resize=300%2C200 300w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?resize=1024%2C682 1024w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\";}i:151;a:4:{s:2:\"ID\";s:3:\"240\";s:5:\"title\";s:67:\"Just because they don\'t say \"I love you\" ...Doesn\'t mean they don\'t\";s:4:\"text\";s:87:\"No matter how many times you say itI will always disagreeYou say that I don’t ...\";s:16:\"slide_background\";s:499:\"<img width=\"492\" height=\"347\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?w=492 492w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?resize=300%2C211 300w\" sizes=\"(max-width: 492px) 100vw, 492px\" />\";}i:152;a:4:{s:2:\"ID\";s:3:\"241\";s:5:\"title\";s:13:\"Everyone Else\";s:4:\"text\";s:85:\"Just because everyone else is doing itDoesn’t make it rightYet sometimes we ...\";s:16:\"slide_background\";s:661:\"<img width=\"362\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?w=450 450w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?resize=217%2C300 217w\" sizes=\"(max-width: 362px) 100vw, 362px\" />\";}i:153;a:4:{s:2:\"ID\";s:3:\"242\";s:5:\"title\";s:29:\"Be the Change you wish to see\";s:4:\"text\";s:85:\"There is so much negativity in the world… This is very true, however, there ...\";s:16:\"slide_background\";s:475:\"<img width=\"324\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?w=550 550w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?resize=194%2C300 194w\" sizes=\"(max-width: 324px) 100vw, 324px\" />\";}i:154;a:4:{s:2:\"ID\";s:3:\"243\";s:5:\"title\";s:16:\"The Words to Say\";s:4:\"text\";s:88:\"How do I find the words to say\nTo let you know how I feel each day\nWhen you are near ...\";s:16:\"slide_background\";s:517:\"<img width=\"397\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?w=693 693w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?resize=238%2C300 238w\" sizes=\"(max-width: 397px) 100vw, 397px\" />\";}i:155;a:4:{s:2:\"ID\";s:3:\"244\";s:5:\"title\";s:8:\"Somebody\";s:4:\"text\";s:88:\"Hi, my name is SomebodyBut am I somebody to you?Walking around in an endless circleI ...\";s:16:\"slide_background\";s:442:\"<img width=\"300\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?w=300 300w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" />\";}i:156;a:4:{s:2:\"ID\";s:3:\"245\";s:5:\"title\";s:18:\"Crying in the rain\";s:4:\"text\";s:87:\"Raindrops splatter down from the clouds above\nThen fall gently on my cheek\nAnd flow ...\";s:16:\"slide_background\";s:214:\"<img width=\"300\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:157;a:4:{s:2:\"ID\";s:3:\"246\";s:5:\"title\";s:24:\"My Night Under The Stars\";s:4:\"text\";s:87:\"Looking into the neverending night sky\nI reminense and let life pass me by\nFor what ...\";s:16:\"slide_background\";s:462:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?w=1024 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:158;a:4:{s:2:\"ID\";s:3:\"247\";s:5:\"title\";s:11:\"On the Road\";s:4:\"text\";s:84:\"It’s been a long dayA very long dayYou have so much more to doAnd you want ...\";s:16:\"slide_background\";s:472:\"<img width=\"500\" height=\"333\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:159;a:4:{s:2:\"ID\";s:3:\"249\";s:5:\"title\";s:10:\"The Secret\";s:4:\"text\";s:85:\"I have a little secretThat no one else shall knowIt tickles my insidesAnd make me ...\";s:16:\"slide_background\";s:595:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?w=670 670w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?resize=150%2C150 150w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:160;a:4:{s:2:\"ID\";s:3:\"250\";s:5:\"title\";s:18:\"Speak Life Into Me\";s:4:\"text\";s:91:\"Speak\nThat is all I need you to do\nI need you to speak\nI need you to let me get wrapped ...\";s:16:\"slide_background\";s:427:\"<img width=\"560\" height=\"280\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/header.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?w=560 560w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?resize=300%2C150 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />\";}i:161;a:4:{s:2:\"ID\";s:3:\"251\";s:5:\"title\";s:4:\"Fish\";s:4:\"text\";s:84:\"Wondering around this mystic sea\nHopes and dreams surrounding me\nI look up ahead ...\";s:16:\"slide_background\";s:457:\"<img width=\"626\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?w=640 640w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?resize=300%2C239 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" />\";}i:162;a:4:{s:2:\"ID\";s:3:\"253\";s:5:\"title\";s:9:\"They Said\";s:4:\"text\";s:84:\"They said I couldn’t do itI said I disagreeThey said it wasn’t worth ...\";s:16:\"slide_background\";s:466:\"<img width=\"494\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?w=949 949w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?resize=296%2C300 296w\" sizes=\"(max-width: 494px) 100vw, 494px\" />\";}i:163;a:4:{s:2:\"ID\";s:3:\"255\";s:5:\"title\";s:13:\"Mirror Mirror\";s:4:\"text\";s:86:\"Mirror Mirror \nOn the Wall\nWho is the fairest of them all?\nThey say beauty is ...\";s:16:\"slide_background\";s:652:\"<img width=\"333\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?w=900 900w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?resize=200%2C300 200w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?resize=682%2C1024 682w\" sizes=\"(max-width: 333px) 100vw, 333px\" />\";}i:164;a:4:{s:2:\"ID\";s:3:\"256\";s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:90:\"Hello Everyone, I would like to announce that I have recently published an eBook. ...\";s:16:\"slide_background\";s:472:\"<img width=\"314\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?w=644 644w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?resize=188%2C300 188w\" sizes=\"(max-width: 314px) 100vw, 314px\" />\";}i:165;a:4:{s:2:\"ID\";s:3:\"257\";s:5:\"title\";s:10:\"Statistics\";s:4:\"text\";s:88:\"They say we will not make itThey say the reasons whyThey back it up with researchAnd ...\";s:16:\"slide_background\";s:424:\"<img width=\"472\" height=\"332\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?w=472 472w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?resize=300%2C211 300w\" sizes=\"(max-width: 472px) 100vw, 472px\" />\";}i:166;a:4:{s:2:\"ID\";s:3:\"259\";s:5:\"title\";s:41:\"Weekly Challenge 10: Accomplish Something\";s:4:\"text\";s:84:\"Hello everyone!!!I hope you are all having a great time. I will finally start up ...\";s:16:\"slide_background\";s:421:\"<img width=\"451\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?w=644 644w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?resize=270%2C300 270w\" sizes=\"(max-width: 451px) 100vw, 451px\" />\";}i:167;a:4:{s:2:\"ID\";s:3:\"260\";s:5:\"title\";s:16:\"Happiness is You\";s:4:\"text\";s:89:\"Crystal clear skies\nNo clouds to dampen my day\nThe sun shall radiate down\nAnd a smile ...\";s:16:\"slide_background\";s:553:\"<img width=\"466\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?w=716 716w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?resize=279%2C300 279w\" sizes=\"(max-width: 466px) 100vw, 466px\" />\";}i:168;a:4:{s:2:\"ID\";s:3:\"261\";s:5:\"title\";s:33:\"You Said You would start tomorrow\";s:4:\"text\";s:87:\"You said you would start tomorrow\nBut tomorrow has come and gone\nYet you sit in the ...\";s:16:\"slide_background\";s:471:\"<img width=\"460\" height=\"150\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?w=460 460w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?resize=300%2C97 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />\";}i:169;a:4:{s:2:\"ID\";s:3:\"262\";s:5:\"title\";s:10:\"Just Kinda\";s:4:\"text\";s:88:\"Kinda like a melody \nThat plays over and over in my head\nThe sound of the sweet ...\";s:16:\"slide_background\";s:466:\"<img width=\"771\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?w=796 796w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?resize=300%2C194 300w\" sizes=\"(max-width: 771px) 100vw, 771px\" />\";}i:170;a:4:{s:2:\"ID\";s:3:\"264\";s:5:\"title\";s:20:\"Everyone Is A Winner\";s:4:\"text\";s:88:\"Everyone is a winnerWell, at least that is what they saySeems like everyone deserves ...\";s:16:\"slide_background\";s:197:\"<img width=\"250\" height=\"183\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:171;a:4:{s:2:\"ID\";s:3:\"265\";s:5:\"title\";s:19:\"An Untouched Memory\";s:4:\"text\";s:87:\"How nice is an untouched memory\nThat is just so pure\nIt glistens and shines greater ...\";s:16:\"slide_background\";s:441:\"<img width=\"663\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?w=1024 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?resize=300%2C226 300w\" sizes=\"(max-width: 663px) 100vw, 663px\" />\";}i:172;a:4:{s:2:\"ID\";s:3:\"266\";s:5:\"title\";s:20:\"You Light Up My Life\";s:4:\"text\";s:85:\"Just like a star\nOn the darkest night\nYou reach out your hand to me\nAnd within my ...\";s:16:\"slide_background\";s:523:\"<img width=\"400\" height=\"328\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?w=400 400w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?resize=300%2C246 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:173;a:4:{s:2:\"ID\";s:3:\"267\";s:5:\"title\";s:19:\"Forever Never Lasts\";s:4:\"text\";s:85:\"Fleeting joys of ecstasyTime is moving too fastWe always think we have foreverBut ...\";s:16:\"slide_background\";s:478:\"<img width=\"475\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?w=475 475w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?resize=300%2C189 300w\" sizes=\"(max-width: 475px) 100vw, 475px\" />\";}i:174;a:4:{s:2:\"ID\";s:3:\"268\";s:5:\"title\";s:10:\"In the end\";s:4:\"text\";s:88:\"In the end\nIt doesn’t matter\nIt doesn’t matter what you may think\nBecause I know ...\";s:16:\"slide_background\";s:439:\"<img width=\"405\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?w=450 450w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?resize=242%2C300 242w\" sizes=\"(max-width: 405px) 100vw, 405px\" />\";}i:175;a:4:{s:2:\"ID\";s:3:\"269\";s:5:\"title\";s:7:\"I can\'t\";s:4:\"text\";s:86:\"I can’t fault you for being yourselfI can only say I understandI can’t ...\";s:16:\"slide_background\";s:454:\"<img width=\"190\" height=\"327\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?w=190 190w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?resize=174%2C300 174w\" sizes=\"(max-width: 190px) 100vw, 190px\" />\";}i:176;a:4:{s:2:\"ID\";s:3:\"270\";s:5:\"title\";s:15:\"Finger Pointers\";s:4:\"text\";s:88:\"Point your finger once againPoint out the things that others lackJudge so harshlyLet ...\";s:16:\"slide_background\";s:198:\"<img width=\"226\" height=\"165\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:177;a:4:{s:2:\"ID\";s:3:\"271\";s:5:\"title\";s:27:\"Have you ever had a Shadow?\";s:4:\"text\";s:87:\"Have you ever had a shadow\nWho would try to imitate what you do\nWhen you speak they ...\";s:16:\"slide_background\";s:445:\"<img width=\"371\" height=\"450\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?w=371 371w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?resize=247%2C300 247w\" sizes=\"(max-width: 371px) 100vw, 371px\" />\";}i:178;a:4:{s:2:\"ID\";s:3:\"273\";s:5:\"title\";s:39:\"Weekly Challenge 9: Take time to Notice\";s:4:\"text\";s:84:\"Today…Take the time to notice the kind people you encounter.Simple as that ...\";s:16:\"slide_background\";s:983:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:179;a:4:{s:2:\"ID\";s:3:\"274\";s:5:\"title\";s:24:\"The journey of the Heart\";s:4:\"text\";s:89:\"The heart has a way of finding itselfNo matter the trials it goes throughAt one point ...\";s:16:\"slide_background\";s:499:\"<img width=\"500\" height=\"337\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?resize=300%2C202 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:180;a:4:{s:2:\"ID\";s:3:\"275\";s:5:\"title\";s:12:\"Love vs Hate\";s:4:\"text\";s:88:\"From love comes all life they sayBut I shall disagreeFor many times I have seen love ...\";s:16:\"slide_background\";s:478:\"<img width=\"386\" height=\"289\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?w=386 386w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?resize=300%2C224 300w\" sizes=\"(max-width: 386px) 100vw, 386px\" />\";}i:181;a:4:{s:2:\"ID\";s:3:\"276\";s:5:\"title\";s:16:\"Horrific Travels\";s:4:\"text\";s:86:\"Hold my handMy dear friendCome with meAnd let’s pretendPretend we are worlds ...\";s:16:\"slide_background\";s:413:\"<img width=\"275\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/l.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?w=600 600w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?resize=563%2C1024 563w\" sizes=\"(max-width: 275px) 100vw, 275px\" />\";}i:182;a:4:{s:2:\"ID\";s:3:\"277\";s:5:\"title\";s:8:\"Tomorrow\";s:4:\"text\";s:86:\"Beating heartThe pounding drumKeeps me goingIn the blazing sun\nOverturn the shades ...\";s:16:\"slide_background\";s:736:\"<img width=\"631\" height=\"344\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?w=631 631w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?resize=300%2C163 300w\" sizes=\"(max-width: 631px) 100vw, 631px\" />\";}i:183;a:4:{s:2:\"ID\";s:3:\"279\";s:5:\"title\";s:15:\"A New Beginning\";s:4:\"text\";s:88:\"Peaking over the mountain topGazing on the seaBringing warmth to all you touchMaking ...\";s:16:\"slide_background\";s:198:\"<img width=\"300\" height=\"290\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:184;a:4:{s:2:\"ID\";s:3:\"280\";s:5:\"title\";s:14:\"River of Tears\";s:4:\"text\";s:88:\"The weight of the world is heavySo heavy that it crushes the soulAnd soon the clouds ...\";s:16:\"slide_background\";s:195:\"<img width=\"480\" height=\"475\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:185;a:4:{s:2:\"ID\";s:3:\"281\";s:5:\"title\";s:9:\"Tick Tock\";s:4:\"text\";s:97:\"Tick Tock goes the clock\nTick and then the world is still\nAnd I am lost in my thoughts\nTrying ...\";s:16:\"slide_background\";s:436:\"<img width=\"500\" height=\"494\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?resize=300%2C296 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:186;a:4:{s:2:\"ID\";s:3:\"282\";s:5:\"title\";s:46:\"Weekly Challenge 7: Find out what Inspires you\";s:4:\"text\";s:85:\"This week, I would like everyone to think about what inspires them in life.I know ...\";s:16:\"slide_background\";s:531:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?w=640 640w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:187;a:4:{s:2:\"ID\";s:3:\"283\";s:5:\"title\";s:9:\"Standards\";s:4:\"text\";s:84:\"I tell myself you don’t qualify\nBecause you don’t have everything on ...\";s:16:\"slide_background\";s:198:\"<img width=\"215\" height=\"250\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:188;a:4:{s:2:\"ID\";s:3:\"285\";s:5:\"title\";s:23:\"Because I have a Sister\";s:4:\"text\";s:89:\"Because I have a sisterI shall always have a friendAnd I didn’t realize thisAnd ...\";s:16:\"slide_background\";s:595:\"<img width=\"934\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?w=1500 1500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?resize=300%2C160 300w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?resize=1024%2C548 1024w\" sizes=\"(max-width: 934px) 100vw, 934px\" />\";}i:189;a:4:{s:2:\"ID\";s:3:\"287\";s:5:\"title\";s:17:\"The Kindest Heart\";s:4:\"text\";s:88:\"The kindest heart you have ever encounteredHas been beating way too fastIt is scared ...\";s:16:\"slide_background\";s:514:\"<img width=\"500\" height=\"458\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?resize=300%2C274 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:190;a:4:{s:2:\"ID\";s:3:\"288\";s:5:\"title\";s:10:\"Sweet Love\";s:4:\"text\";s:87:\"Sweeter than a honeydewOh how I dream of youGently caress me and hold me tightNever ...\";s:16:\"slide_background\";s:535:\"<img width=\"450\" height=\"470\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?w=450 450w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?resize=287%2C300 287w\" sizes=\"(max-width: 450px) 100vw, 450px\" />\";}i:191;a:4:{s:2:\"ID\";s:3:\"289\";s:5:\"title\";s:15:\"The Windy Night\";s:4:\"text\";s:84:\"As the wind blows so peacefullyAnd the sun begins to setI sit down and reminisce ...\";s:16:\"slide_background\";s:427:\"<img width=\"660\" height=\"420\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?w=660 660w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?resize=300%2C190 300w\" sizes=\"(max-width: 660px) 100vw, 660px\" />\";}i:192;a:4:{s:2:\"ID\";s:3:\"290\";s:5:\"title\";s:4:\"Fear\";s:4:\"text\";s:86:\"Creeping through the darkest nightClose to meYet far in sightFeeding on my beating ...\";s:16:\"slide_background\";s:484:\"<img width=\"335\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?w=670 670w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?resize=201%2C300 201w\" sizes=\"(max-width: 335px) 100vw, 335px\" />\";}i:193;a:4:{s:2:\"ID\";s:3:\"292\";s:5:\"title\";s:37:\"“QUIT! GIVE UP! YOU’RE BEATEN!”\";s:4:\"text\";s:86:\"I would like to state that I did not write this piece. However, I remember reading ...\";s:16:\"slide_background\";s:448:\"<img width=\"288\" height=\"288\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?w=288 288w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 288px) 100vw, 288px\" />\";}i:194;a:4:{s:2:\"ID\";s:3:\"293\";s:5:\"title\";s:6:\"To You\";s:4:\"text\";s:85:\"It has been months since I have seen your face\nAnd I have told myself I would let ...\";s:16:\"slide_background\";s:562:\"<img width=\"400\" height=\"300\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?w=400 400w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:195;a:4:{s:2:\"ID\";s:3:\"294\";s:5:\"title\";s:16:\"From Head to Toe\";s:4:\"text\";s:86:\"When I look at you from head to toe\nMy eyes start high and then go low\n\nI pause to ...\";s:16:\"slide_background\";s:592:\"<img width=\"550\" height=\"344\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?w=550 550w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?resize=300%2C187 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" />\";}i:196;a:4:{s:2:\"ID\";s:3:\"295\";s:5:\"title\";s:21:\"I\'m Glad It wasn\'t me\";s:4:\"text\";s:90:\"As I was walking to my car todayI heard a woman screamI looked at her house and walked ...\";s:16:\"slide_background\";s:445:\"<img width=\"600\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?w=600 600w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?resize=300%2C200 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\";}i:197;a:4:{s:2:\"ID\";s:3:\"297\";s:5:\"title\";s:8:\"A Choice\";s:4:\"text\";s:87:\"There is a choice you have to makeThere is a lesson to be learnedBut first you must ...\";s:16:\"slide_background\";s:460:\"<img width=\"500\" height=\"422\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?resize=300%2C253 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:198;a:4:{s:2:\"ID\";s:3:\"298\";s:5:\"title\";s:13:\"Drifting Away\";s:4:\"text\";s:86:\"As the night sky finally fades to dayI find myself running out of words to sayLost ...\";s:16:\"slide_background\";s:523:\"<img width=\"654\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?w=900 900w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?resize=300%2C229 300w\" sizes=\"(max-width: 654px) 100vw, 654px\" />\";}i:199;a:4:{s:2:\"ID\";s:3:\"300\";s:5:\"title\";s:13:\"Without Words\";s:4:\"text\";s:86:\"No wordsJust actionsThat is all that I needThe way you interact with meTells me so ...\";s:16:\"slide_background\";s:490:\"<img width=\"860\" height=\"292\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?w=860 860w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?resize=300%2C101 300w\" sizes=\"(max-width: 860px) 100vw, 860px\" />\";}i:200;a:4:{s:2:\"ID\";s:3:\"301\";s:5:\"title\";s:5:\"Speak\";s:4:\"text\";s:85:\"A few words come forth\nAnd then I choke\nI can’t speak anymore\nI can’t ...\";s:16:\"slide_background\";s:478:\"<img width=\"380\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?w=486 486w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?resize=227%2C300 227w\" sizes=\"(max-width: 380px) 100vw, 380px\" />\";}i:201;a:4:{s:2:\"ID\";s:3:\"303\";s:5:\"title\";s:10:\"Reality TV\";s:4:\"text\";s:98:\"I can see the camera\nIt is right there in my face\nPaying attention to my every movement\nAlways ...\";s:16:\"slide_background\";s:490:\"<img width=\"802\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?w=900 900w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?resize=300%2C187 300w\" sizes=\"(max-width: 802px) 100vw, 802px\" />\";}i:202;a:4:{s:2:\"ID\";s:3:\"304\";s:5:\"title\";s:44:\"Weekly Challenge 3: Appreciate What You Have\";s:4:\"text\";s:90:\"Hello,\nI hope everyone’s week is off to a fantastic start!! This week the weekly ...\";s:16:\"slide_background\";s:577:\"<img width=\"821\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?w=900 900w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?resize=300%2C182 300w\" sizes=\"(max-width: 821px) 100vw, 821px\" />\";}i:203;a:4:{s:2:\"ID\";s:3:\"306\";s:5:\"title\";s:22:\"As I walk in My Dreams\";s:4:\"text\";s:89:\"As I walk in my dreams\nDreams of which will never come true\nShadowing paths revealing ...\";s:16:\"slide_background\";s:451:\"<img width=\"425\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?w=425 425w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?resize=255%2C300 255w\" sizes=\"(max-width: 425px) 100vw, 425px\" />\";}i:204;a:4:{s:2:\"ID\";s:3:\"307\";s:5:\"title\";s:13:\"Love Run Free\";s:4:\"text\";s:88:\"Kiss me ever so softlyPlay with my hairYour presence means a lot to meI need it like ...\";s:16:\"slide_background\";s:436:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?w=800 800w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:205;a:4:{s:2:\"ID\";s:3:\"308\";s:5:\"title\";s:29:\"Brown, Blue, Green, and Hazel\";s:4:\"text\";s:85:\"Brown, Blue, Green, and Hazelcolors that come from an angelrevealing all there is ...\";s:16:\"slide_background\";s:421:\"<img width=\"640\" height=\"426\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?w=640 640w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:206;a:4:{s:2:\"ID\";s:3:\"309\";s:5:\"title\";s:6:\"Winter\";s:4:\"text\";s:88:\"I remember when the snow fell light\nAnd it landed on the ground\nThis rarely happened ...\";s:16:\"slide_background\";s:507:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?w=1024 1024w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:207;a:4:{s:2:\"ID\";s:3:\"310\";s:5:\"title\";s:35:\"Why do women say Chilvalry is dead?\";s:4:\"text\";s:86:\"Chivalry is dead……\n\nSometimes a girl walks around\n \nAnd claims to know ...\";s:16:\"slide_background\";s:436:\"<img width=\"647\" height=\"356\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?w=647 647w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?resize=300%2C165 300w\" sizes=\"(max-width: 647px) 100vw, 647px\" />\";}i:208;a:4:{s:2:\"ID\";s:3:\"311\";s:5:\"title\";s:15:\"We are together\";s:4:\"text\";s:87:\"We are togetherTogether we are oneBut what is the pointWhen one doesn’t trust ...\";s:16:\"slide_background\";s:484:\"<img width=\"609\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?w=609 609w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?resize=300%2C236 300w\" sizes=\"(max-width: 609px) 100vw, 609px\" />\";}i:209;a:4:{s:2:\"ID\";s:3:\"312\";s:5:\"title\";s:34:\"Weekly Challenge 2: Know Thyself!!\";s:4:\"text\";s:84:\"Hello, Once again it is time to think. Think about the many things in life. ...\";s:16:\"slide_background\";s:551:\"<img width=\"478\" height=\"480\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?w=478 478w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?resize=298%2C300 298w\" sizes=\"(max-width: 478px) 100vw, 478px\" />\";}i:210;a:4:{s:2:\"ID\";s:3:\"313\";s:5:\"title\";s:8:\"Floating\";s:4:\"text\";s:86:\"As I begin to floatOn the winds of foreverI wonder if this is a dreamOr if this is ...\";s:16:\"slide_background\";s:454:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?w=960 960w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:211;a:4:{s:2:\"ID\";s:3:\"314\";s:5:\"title\";s:15:\"Small But Sweet\";s:4:\"text\";s:92:\"What happened to giving a lady flowers? What happened to kisses at the door? I ...\";s:16:\"slide_background\";s:427:\"<img width=\"330\" height=\"370\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?w=330 330w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?resize=267%2C300 267w\" sizes=\"(max-width: 330px) 100vw, 330px\" />\";}i:212;a:4:{s:2:\"ID\";s:3:\"315\";s:5:\"title\";s:31:\"The Truth Shall Set You Free!!!\";s:4:\"text\";s:85:\"Within yourself\nYou are holding in secrets\nIn which you hope no one will find\nThe ...\";s:16:\"slide_background\";s:424:\"<img width=\"750\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?w=900 900w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?resize=300%2C200 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\";}i:213;a:4:{s:2:\"ID\";s:3:\"316\";s:5:\"title\";s:23:\"Beneath the Willow Tree\";s:4:\"text\";s:95:\"Sometimes my mind wanders\nAnd then I begin to cry\nAnd my mind is consumed with thoughts\nAnd ...\";s:16:\"slide_background\";s:472:\"<img width=\"384\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?w=422 422w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?resize=230%2C300 230w\" sizes=\"(max-width: 384px) 100vw, 384px\" />\";}i:214;a:4:{s:2:\"ID\";s:3:\"317\";s:5:\"title\";s:24:\"The Fear of Being Single\";s:4:\"text\";s:84:\"“Many times in life you will come across a puzzle that is missing the very ...\";s:16:\"slide_background\";s:486:\"<img width=\"751\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?w=1024 1024w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 751px) 100vw, 751px\" />\";}i:215;a:4:{s:2:\"ID\";s:3:\"318\";s:5:\"title\";s:13:\"Pen and Paper\";s:4:\"text\";s:84:\"As I grab my pen and paperI slowly begin to write againThis is my sanctuaryWhere ...\";s:16:\"slide_background\";s:448:\"<img width=\"600\" height=\"399\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?w=600 600w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\";}i:216;a:4:{s:2:\"ID\";s:3:\"319\";s:5:\"title\";s:68:\"Weekly Challenge 1: Take the Time To Experience the World Around You\";s:4:\"text\";s:85:\"When was the last time you took the time out of your day to view the world around ...\";s:16:\"slide_background\";s:483:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?w=1024 1024w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?resize=300%2C187 300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:217;a:4:{s:2:\"ID\";s:3:\"320\";s:5:\"title\";s:21:\"Just a Random Thought\";s:4:\"text\";s:85:\"You were born alone……..I hate when people tell me thisIt’s like ...\";s:16:\"slide_background\";s:639:\"<img width=\"497\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?w=714 714w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?resize=150%2C150 150w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?resize=297%2C300 297w\" sizes=\"(max-width: 497px) 100vw, 497px\" />\";}i:218;a:4:{s:2:\"ID\";s:3:\"321\";s:5:\"title\";s:10:\"The Battle\";s:4:\"text\";s:87:\"Yeah I see you looking back at meAnd you are not making a soundYou think you wonBut ...\";s:16:\"slide_background\";s:631:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?w=500 500w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:219;a:4:{s:2:\"ID\";s:3:\"323\";s:5:\"title\";s:3:\"You\";s:4:\"text\";s:92:\"Comfort me with the wordsThat are flowing from your lipsTell me your deepest thoughtsAnd ...\";s:16:\"slide_background\";s:478:\"<img width=\"550\" height=\"333\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?w=550 550w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?resize=300%2C181 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" />\";}i:220;a:4:{s:2:\"ID\";s:3:\"324\";s:5:\"title\";s:26:\"What are you Thankful for?\";s:4:\"text\";s:86:\"Today I woke up, and I was grateful. I got out of my bed and then continued to get ...\";s:16:\"slide_background\";s:490:\"<img width=\"640\" height=\"383\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?w=640 640w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?resize=300%2C179 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\";}i:221;a:4:{s:2:\"ID\";s:3:\"325\";s:5:\"title\";s:8:\"The Seed\";s:4:\"text\";s:87:\"A smile… A smile is a universal sign of happiness. It implies that everything ...\";s:16:\"slide_background\";s:514:\"<img width=\"442\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?w=559 559w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?resize=264%2C300 264w\" sizes=\"(max-width: 442px) 100vw, 442px\" />\";}i:222;a:4:{s:2:\"ID\";s:3:\"326\";s:5:\"title\";s:15:\"The Realization\";s:4:\"text\";s:84:\"This is a realization I came to long ago. I truly believe others need to realize ...\";s:16:\"slide_background\";s:514:\"<img width=\"500\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?resize=300%2C240 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:223;a:4:{s:2:\"ID\";s:3:\"327\";s:5:\"title\";s:24:\"If Love Was Meant For Me\";s:4:\"text\";s:84:\"If love was meant for me\nI wouldn’t be sitting here alone\nI would have someone ...\";s:16:\"slide_background\";s:514:\"<img width=\"500\" height=\"333\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?resize=300%2C199 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:224;a:4:{s:2:\"ID\";s:3:\"328\";s:5:\"title\";s:9:\"The Drink\";s:4:\"text\";s:90:\"Give me a drink dear friend\nLet me drink my tears away\nI can’t stand my life today\nI ...\";s:16:\"slide_background\";s:891:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?w=512 512w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?resize=150%2C150 150w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:225;a:4:{s:2:\"ID\";s:3:\"329\";s:5:\"title\";s:28:\"The Little Girl Who Believed\";s:4:\"text\";s:84:\"I can do this!\nI can do this!\nAll I have to do is try!\n\nYou could look into this ...\";s:16:\"slide_background\";s:421:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?w=800 800w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:226;a:4:{s:2:\"ID\";s:3:\"330\";s:5:\"title\";s:14:\"These Feelings\";s:4:\"text\";s:91:\"It’s when my heart starts to beat fast\nAnd when eternity lasts forever\nWhen I realize ...\";s:16:\"slide_background\";s:499:\"<img width=\"500\" height=\"375\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?w=500 500w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:227;a:4:{s:2:\"ID\";s:3:\"331\";s:5:\"title\";s:13:\"Are You Sure?\";s:4:\"text\";s:85:\"Are you sure about what you say to me?\nDid you think about it before it came from ...\";s:16:\"slide_background\";s:480:\"<img width=\"480\" height=\"330\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?resize=480%2C330 480w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?resize=300%2C206 300w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\";}i:228;a:4:{s:2:\"ID\";s:3:\"332\";s:5:\"title\";s:8:\"The Wall\";s:4:\"text\";s:84:\"Two days ago while I was downtown\nJust watching the flashing lights\nI decided to ...\";s:16:\"slide_background\";s:563:\"<img width=\"500\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?w=512 512w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?resize=150%2C150 150w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:229;a:4:{s:2:\"ID\";s:3:\"333\";s:5:\"title\";s:33:\"It\'s Not Much, but its all I have\";s:4:\"text\";s:87:\"A shiny thing that is in my chestbeating with passion and desireIf it’s sweet ...\";s:16:\"slide_background\";s:514:\"<img width=\"400\" height=\"471\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?w=400 400w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?resize=254%2C300 254w\" sizes=\"(max-width: 400px) 100vw, 400px\" />\";}i:230;a:4:{s:2:\"ID\";s:3:\"334\";s:5:\"title\";s:21:\"The Reality of a Loss\";s:4:\"text\";s:91:\"If I didn’t have to wake upOr dream another dayI could be at peace with myselfAnd ...\";s:16:\"slide_background\";s:532:\"<img width=\"403\" height=\"375\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?w=403 403w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?resize=300%2C279 300w\" sizes=\"(max-width: 403px) 100vw, 403px\" />\";}i:231;a:4:{s:2:\"ID\";s:3:\"335\";s:5:\"title\";s:17:\"My Heart In Words\";s:4:\"text\";s:89:\"If a fish came out of waterTo proclaim its love to youWould you even give it a second ...\";s:16:\"slide_background\";s:514:\"<img width=\"500\" height=\"388\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?resize=300%2C232 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:232;a:4:{s:2:\"ID\";s:3:\"336\";s:5:\"title\";s:27:\"Why are we afraid to fall??\";s:4:\"text\";s:86:\"Why are we so afraid to fall? \nIs it because we fear that we may fall so hard that ...\";s:16:\"slide_background\";s:486:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?w=1024 1024w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?resize=300%2C187 300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:233;a:4:{s:2:\"ID\";s:3:\"337\";s:5:\"title\";s:11:\"True Beauty\";s:4:\"text\";s:86:\"Beauty is skin deep No matter what others sayThe glistening of your heartLets ...\";s:16:\"slide_background\";s:442:\"<img width=\"225\" height=\"225\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?w=225 225w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?resize=150%2C150 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />\";}i:234;a:4:{s:2:\"ID\";s:3:\"338\";s:5:\"title\";s:6:\"Gossip\";s:4:\"text\";s:85:\"No matter how you say it\nIt all means the same thing\nYou judge me by not what you ...\";s:16:\"slide_background\";s:190:\"<img width=\"208\" height=\"243\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" />\";}i:235;a:4:{s:2:\"ID\";s:3:\"339\";s:5:\"title\";s:8:\"Kindness\";s:4:\"text\";s:90:\"The innocence of a childOh how we use to thinkWe we were but 3 years oldAnd questioned ...\";s:16:\"slide_background\";s:649:\"<img width=\"505\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?w=1000 1000w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?resize=150%2C150 150w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?resize=300%2C297 300w\" sizes=\"(max-width: 505px) 100vw, 505px\" />\";}i:236;a:4:{s:2:\"ID\";s:3:\"340\";s:5:\"title\";s:15:\"Feeling Alone??\";s:4:\"text\";s:86:\"Sometimes the world can seem so tough, and it seems as though you are losing your ...\";s:16:\"slide_background\";s:468:\"<img width=\"741\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?w=1024 1024w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?resize=300%2C202 300w\" sizes=\"(max-width: 741px) 100vw, 741px\" />\";}i:237;a:4:{s:2:\"ID\";s:3:\"341\";s:5:\"title\";s:18:\"The Endless Circle\";s:4:\"text\";s:90:\"What more can I say\nWhat more can I do\nTo get the feelings I have for you to you\n\nFind ...\";s:16:\"slide_background\";s:520:\"<img width=\"800\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?w=800 800w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?resize=300%2C187 300w\" sizes=\"(max-width: 800px) 100vw, 800px\" />\";}i:238;a:4:{s:2:\"ID\";s:3:\"342\";s:5:\"title\";s:19:\"Draft me a Portrait\";s:4:\"text\";s:87:\"Draft me a portrait\nThat I could only dream\nCapture my imagination\nMake my thoughts ...\";s:16:\"slide_background\";s:517:\"<img width=\"882\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?w=960 960w, https://i2.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?resize=300%2C170 300w\" sizes=\"(max-width: 882px) 100vw, 882px\" />\";}i:239;a:4:{s:2:\"ID\";s:3:\"343\";s:5:\"title\";s:8:\"The Rain\";s:4:\"text\";s:85:\"It rained Tuesday but no one noticedonly she could see\nIt was pouring outside yet ...\";s:16:\"slide_background\";s:483:\"<img width=\"600\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?w=1000 1000w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?resize=300%2C250 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\";}i:240;a:4:{s:2:\"ID\";s:3:\"344\";s:5:\"title\";s:19:\"It\'s Only Temporary\";s:4:\"text\";s:84:\"I remember all the people\nWho clowned me for Little Things\nThey never wanted me ...\";s:16:\"slide_background\";s:499:\"<img width=\"500\" height=\"381\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?w=500 500w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?resize=300%2C228 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />\";}i:241;a:4:{s:2:\"ID\";s:3:\"345\";s:5:\"title\";s:30:\"No Love Lost.....No Love Found\";s:4:\"text\";s:90:\"For the Love I haveFor you in my HeartGlistens Like the DewThat Lands on the LeafAfter ...\";s:16:\"slide_background\";s:511:\"<img width=\"642\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?w=720 720w, https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?resize=300%2C233 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />\";}i:242;a:4:{s:2:\"ID\";s:3:\"346\";s:5:\"title\";s:25:\"Who Are You To The World?\";s:4:\"text\";s:87:\"Society dictates what they want to seeHowever we have the control to be who WE WANT ...\";s:16:\"slide_background\";s:514:\"<img width=\"480\" height=\"342\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?w=480 480w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?resize=300%2C213 300w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\";}i:243;a:4:{s:2:\"ID\";s:3:\"347\";s:5:\"title\";s:12:\"Just LIVE!!!\";s:4:\"text\";s:97:\"Thoughts……\nSometimes you have to let things stop consuming you world…..\nAnd ...\";s:16:\"slide_background\";s:527:\"<img width=\"667\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?resize=1024%2C768 1024w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?resize=300%2C225 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" />\";}i:244;a:4:{s:2:\"ID\";s:3:\"348\";s:5:\"title\";s:20:\"Is this Really Love?\";s:4:\"text\";s:86:\"The look \nOf Love\nIs In \nYour Eyes\nBut that Look\nTells All\nAbout how you ...\";s:16:\"slide_background\";s:511:\"<img width=\"660\" height=\"500\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?w=960 960w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?resize=300%2C227 300w\" sizes=\"(max-width: 660px) 100vw, 660px\" />\";}i:245;a:4:{s:2:\"ID\";s:3:\"349\";s:5:\"title\";s:5:\"Hello\";s:4:\"text\";s:84:\"Hello, \n\nMy name is Monica and I am a 24 years old…. I know, I seem a ...\";s:16:\"slide_background\";s:643:\"<img width=\"450\" height=\"450\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg\" class=\"attachment-slider-full tc-thumb-type-thumb wp-post-image wp-post-image\" alt=\"\" srcset=\"https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?w=450 450w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?resize=150%2C150 150w, https://i1.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?resize=300%2C300 300w\" sizes=\"(max-width: 450px) 100vw, 450px\" />\";}}}','no'),(912403,'endurance_page_cache','2','yes'),(1036269,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1036270,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1036271,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1036272,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3084404,'jetpack_affiliate_code','86241','yes'),(1672402,'disqus_sync_token','721105c42444300e4f0a828c2cc1a149','yes'),(3167630,'nb_backward_fixes','a:5:{s:20:\"optimize_opts_0321_2\";s:4:\"done\";s:18:\"optimize_opts_0321\";s:4:\"done\";s:23:\"move_in_post_index_0321\";s:4:\"done\";s:27:\"fix_skope_opt_autoload_0321\";s:4:\"done\";s:35:\"clean_section_params_transient_0720\";s:4:\"done\";}','yes'),(3167631,'nimble_global_opts','a:1:{s:21:\"retro_compat_mappings\";a:2:{s:8:\"to_1_4_0\";s:4:\"done\";s:14:\"1_0_4_to_1_1_0\";s:4:\"done\";}}','no'),(1684303,'_mm_refresh_token','59ac4645-ce70-4f16-aae4-1adf4219cb1b','yes'),(1672448,'nimble_started_with_version','1.9.11','yes'),(1672522,'theme_mods_wp-clean-green','a:5:{s:18:\"custom_css_post_id\";i:-1;s:26:\"wpcleangreen_slider_effect\";s:9:\"tileBlind\";s:28:\"wpcleangreen_full_width_post\";i:1;s:18:\"nav_menu_locations\";a:1:{s:8:\"main-nav\";i:50;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1590543345;s:4:\"data\";a:22:{s:19:\"wp_inactive_widgets\";a:18:{i:0;s:10:\"calendar-3\";i:1;s:11:\"archives-18\";i:2;s:9:\"search-14\";i:3;s:6:\"text-6\";i:4;s:11:\"miniloops-6\";i:5;s:11:\"miniloops-7\";i:6;s:9:\"search-11\";i:7;s:9:\"search-12\";i:8;s:6:\"text-4\";i:9;s:11:\"miniloops-2\";i:10;s:11:\"miniloops-4\";i:11;s:15:\"miniminiloops-3\";i:12;s:20:\"siteorigin-masonry-3\";i:13;s:19:\"sow-post-carousel-4\";i:14;s:19:\"metaslider_widget-3\";i:15;s:19:\"blog_subscription-5\";i:16;s:11:\"top-posts-5\";i:17;s:23:\"spider_random_article-3\";}s:20:\"nimble-widget-area-1\";a:0:{}s:20:\"nimble-widget-area-2\";a:0:{}s:20:\"nimble-widget-area-3\";a:0:{}s:20:\"nimble-widget-area-4\";a:0:{}s:20:\"nimble-widget-area-5\";a:0:{}s:20:\"nimble-widget-area-6\";a:0:{}s:20:\"nimble-widget-area-7\";a:0:{}s:20:\"nimble-widget-area-8\";a:0:{}s:20:\"nimble-widget-area-9\";a:0:{}s:21:\"nimble-widget-area-10\";a:0:{}s:4:\"left\";a:4:{i:0;s:11:\"archives-20\";i:1;s:19:\"sow-post-carousel-6\";i:2;s:10:\"calendar-5\";i:3;s:6:\"text-8\";}s:5:\"right\";a:0:{}s:10:\"footer_one\";a:1:{i:0;s:19:\"blog_subscription-7\";}s:10:\"footer_two\";a:1:{i:0;s:6:\"text-9\";}s:12:\"footer_three\";a:1:{i:0;s:14:\"recent-posts-2\";}s:18:\"template_1_sidebar\";a:2:{i:0;s:9:\"search-17\";i:1;s:11:\"archives-22\";}s:12:\"sidebar-left\";a:3:{i:0;s:18:\"facebook-likebox-3\";i:1;s:11:\"archives-16\";i:2;s:6:\"text-3\";}s:12:\"sidebar-blog\";a:0:{}s:14:\"sidebar-footer\";a:3:{i:0;s:8:\"search-9\";i:1;s:19:\"sow-post-carousel-3\";i:2;s:11:\"archives-14\";}s:8:\"sidebar4\";a:2:{i:0;s:19:\"blog_subscription-9\";i:1;s:9:\"search-18\";}s:8:\"sidebar3\";a:1:{i:0;s:9:\"search-16\";}}}}','no'),(1672436,'nimble_version','3.3.4','yes'),(1672437,'nimble_start_date','2019-11-26 16:56:28','yes'),(3167632,'nimble_posts_index','a:0:{}','no'),(3204117,'jetpack_active_plan','a:11:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:15:\"subscribed_date\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:20:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:9:\"donations\";i:3;s:13:\"form-webhooks\";i:4;s:14:\"multistep-form\";i:5;s:17:\"form-integrations\";i:6;s:14:\"install-themes\";i:7;s:17:\"jetpack-dashboard\";i:8;s:15:\"payment-buttons\";i:9;s:22:\"paypal-payment-buttons\";i:10;s:18:\"recurring-payments\";i:11;s:11:\"republicize\";i:12;s:17:\"security-settings\";i:13;s:17:\"seo-preview-tools\";i:14;s:14:\"send-a-message\";i:15;s:18:\"social-shares-1000\";i:16;s:18:\"upload-audio-files\";i:17;s:18:\"upload-video-files\";i:18;s:15:\"whatsapp-button\";i:19;s:25:\"social-image-auto-convert\";}s:9:\"available\";a:51:{s:7:\"akismet\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:18:\"backups-self-serve\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"scan-self-serve\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:28:\"subscriber-unlimited-imports\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:15:\"personal-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:10:\"stats-paid\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:16:\"stats-commercial\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:12:\"ai-assistant\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:15:\"ai-seo-enhancer\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:20:\"cornerstone-10-pages\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:10:\"field-file\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"image-cdn-liar\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:17:\"image-cdn-quality\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"performance-history\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:22:\"social-image-generator\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','on'),(2682312,'jetpack_protect_activating','activating','no'),(2682322,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(1016680,'jetpack_sitemap_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(1016681,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1016682,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1016683,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1016684,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1016689,'jetpack_sitemap_location','','yes'),(1016698,'jetpack-sitemap-state','a:5:{s:12:\"sitemap-type\";s:10:\"jp_sitemap\";s:10:\"last-added\";i:0;s:6:\"number\";i:0;s:13:\"last-modified\";s:19:\"1970-01-01 00:00:00\";s:3:\"max\";a:0:{}}','yes'),(1672605,'theme_switch_menu_locations','a:1:{s:8:\"main-nav\";i:50;}','yes'),(3561583,'jetpack_protect_status','s:48:\"O:8:\"stdClass\":1:{s:6:\"status\";s:9:\"scheduled\";}\";','auto'),(3561584,'jetpack_protect_status_time','1749567116','auto'),(3561604,'jetpack-social_show_pricing_page','0','auto'),(1441598,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"SGVVGnJgjDqXZOVGzwRLri7pxjsBzpBz\";s:8:\"secret_2\";s:32:\"bsGqxgYP8Sg5mnl0nSsT17KLkbucOHkn\";s:3:\"exp\";i:1763207371;}}','no'),(1433976,'siteorigin_widgets_new_widgets','a:6:{i:1;s:112:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/anything-carousel/anything-carousel.php\";i:2;s:98:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/author-box/author-box.php\";i:3;s:86:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/blog/blog.php\";i:5;s:100:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/button-grid/button-grid.php\";i:18;s:104:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/lottie-player/lottie-player.php\";i:21;s:102:\"/home4/monicare/public_html/wp-content/plugins/so-widgets-bundle/widgets/recent-posts/recent-posts.php\";}','yes'),(1433979,'jetpack_plugin_api_action_links','a:14:{s:33:\"adsense-plugin/adsense-plugin.php\";a:1:{s:8:\"Settings\";s:71:\"https://www.monicarenata.com/wp-admin/admin.php?page=adsense-plugin.php\";}s:19:\"akismet/akismet.php\";a:1:{s:8:\"Settings\";s:71:\"https://www.monicarenata.com/wp-admin/admin.php?page=akismet-key-config\";}s:33:\"classic-editor/classic-editor.php\";a:1:{s:8:\"Settings\";s:80:\"https://www.monicarenata.com/wp-admin/options-writing.php#classic-editor-options\";}s:41:\"contact-form-to-db/contact_form_to_db.php\";a:1:{s:8:\"Settings\";s:75:\"https://www.monicarenata.com/wp-admin/admin.php?page=contact_form_to_db.php\";}s:51:\"disqus-conditional-load/disqus-conditional-load.php\";a:1:{s:8:\"Settings\";s:65:\"https://www.monicarenata.com/wp-admin/admin.php?page=dcl-settings\";}s:42:\"google-publisher/GooglePublisherPlugin.php\";a:1:{s:8:\"Settings\";s:84:\"https://www.monicarenata.com/wp-admin/options-general.php?page=GooglePublisherPlugin\";}s:19:\"jetpack/jetpack.php\";a:2:{s:10:\"My Jetpack\";s:63:\"https://www.monicarenata.com/wp-admin/admin.php?page=my-jetpack\";s:8:\"Settings\";s:70:\"https://www.monicarenata.com/wp-admin/admin.php?page=jetpack#/settings\";}s:49:\"lana-downloads-manager/lana-downloads-manager.php\";a:1:{s:8:\"Settings\";s:107:\"https://www.monicarenata.com/wp-admin/edit.php?post_type=lana_download&page=lana-downloads-manager-settings\";}s:33:\"nimble-builder/nimble-builder.php\";a:2:{s:8:\"Settings\";s:85:\"https://www.monicarenata.com/wp-admin/options-general.php?page=nb-options&tab=options\";s:4:\"Docs\";s:90:\"https://docs.presscustomizr.com/article/337-getting-started-with-the-nimble-builder-plugin\";}s:31:\"photo-gallery/photo-gallery.php\";a:2:{s:10:\"Deactivate\";s:126:\"https://www.monicarenata.com/wp-admin/plugins.php?action=deactivate&plugin=photo-gallery/photo-gallery.php&_wpnonce=827d9c8b39\";s:4:\"Help\";s:60:\"https://wordpress.org/support/plugin/photo-gallery/#new-post\";}s:17:\"so-css/so-css.php\";a:3:{s:10:\"CSS Editor\";s:67:\"https://www.monicarenata.com/wp-admin/themes.php?page=so_custom_css\";s:7:\"Support\";s:30:\"https://siteorigin.com/thread/\";s:6:\"Addons\";s:81:\"https://siteorigin.com/downloads/premium/?featured_addon=plugin/web-font-selector\";}s:39:\"so-widgets-bundle/so-widgets-bundle.php\";a:3:{s:14:\"Manage Widgets\";s:73:\"https://www.monicarenata.com/wp-admin/plugins.php?page=so-widgets-plugins\";s:7:\"Support\";s:30:\"https://siteorigin.com/thread/\";s:6:\"Addons\";s:75:\"https://siteorigin.com/downloads/premium/?featured_plugin=so-widgets-bundle\";}s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";a:2:{s:4:\"Home\";s:175:\"https://www.monicarenata.com/wp-admin/admin.php?page=bluehost&channelid=P99C100S1N0B3003A151D115E0000V111&utm_medium=bluehost_plugin&utm_source=%2Fwp-admin%2Fplugins.php#/home\";s:8:\"Settings\";s:179:\"https://www.monicarenata.com/wp-admin/admin.php?page=bluehost&channelid=P99C100S1N0B3003A151D115E0000V111&utm_medium=bluehost_plugin&utm_source=%2Fwp-admin%2Fplugins.php#/settings\";}s:33:\"zedity-premium/zedity-premium.php\";a:1:{s:8:\"Settings\";s:79:\"https://www.monicarenata.com/wp-admin/options-general.php?page=wp_zedity_plugin\";}}','yes'),(3924673,'jetpack_site_products','a:0:{}','on'),(3759946,'nfd_wb_cta_enabled_pages','1','auto'),(3737775,'nfd_coming_soon_module_version','2.1.2','on'),(3737776,'ce4wp_hide_banner:get_started','1','auto'),(3737777,'optin_monster_api_activation_redirect_disabled','1','auto'),(3737778,'wpforms_activation_redirect','1','auto'),(3737804,'nfd_utilities_css','.nfd-relative{position:relative!important}.-nfd-bottom-1{bottom:-.25rem!important}.-nfd-top-0\\\\.5{top:-.125rem!important}.-nfd-top-1{top:-.25rem!important}.nfd-top-10{top:2.5rem!important}.nfd-col-start-1{grid-column-start:1!important}.nfd-col-start-2{grid-column-start:2!important}.nfd-col-start-3{grid-column-start:3!important}.nfd-col-start-4{grid-column-start:4!important}.nfd-col-start-5{grid-column-start:5!important}.nfd-col-start-6{grid-column-start:6!important}.nfd-col-start-7{grid-column-start:7!important}.nfd-col-end-10{grid-column-end:10!important}.nfd-col-end-11{grid-column-end:11!important}.nfd-col-end-12{grid-column-end:12!important}.nfd-col-end-13{grid-column-end:13!important}.nfd-col-end-7{grid-column-end:7!important}.nfd-col-end-8{grid-column-end:8!important}.nfd-col-end-9{grid-column-end:9!important}.nfd-row-start-1{grid-row-start:1!important}.-nfd-mx-2:not([style*=margin]){margin-left:-.5rem!important;margin-right:-.5rem!important}.nfd-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.nfd-mb-8:not([style*=margin]){margin-bottom:2rem!important}.nfd-mt-2:not([style*=margin]){margin-top:.5rem!important}.nfd-mt-8:not([style*=margin]){margin-top:2rem!important}.nfd-mt-\\\\[-100px\\\\]:not([style*=margin]){margin-top:-100px!important}.nfd-grid{display:grid!important}.nfd-h-full{height:100%!important}.nfd-w-full{width:100%!important}.nfd-shrink-0{flex-shrink:0!important}.nfd-grow{flex-grow:1!important}.nfd-grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.nfd-grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.nfd-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.nfd-grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.nfd-items-center{align-items:center!important}.nfd-gap-y-10{row-gap:2.5rem!important}.nfd-overflow-hidden{overflow:hidden!important}.nfd-border-b{border-bottom-width:1px!important}.nfd-border-dashed{border-style:dashed!important}.nfd-p-0:not([style*=padding]){padding:0!important}.nfd-p-10:not([style*=padding]){padding:2.5rem!important}.nfd-p-2:not([style*=padding]){padding:.5rem!important}.nfd-p-4:not([style*=padding]){padding:1rem!important}.nfd-p-8:not([style*=padding]){padding:2rem!important}.nfd-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.nfd-px-4:not([style*=padding]){padding-left:1rem!important;padding-right:1rem!important}.nfd-px-8:not([style*=padding]){padding-left:2rem!important;padding-right:2rem!important}.nfd-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.nfd-py-4:not([style*=padding]){padding-bottom:1rem!important;padding-top:1rem!important}.nfd-py-5:not([style*=padding]){padding-bottom:1.25rem!important;padding-top:1.25rem!important}.nfd-pt-0:not([style*=padding]){padding-top:0!important}.nfd-text-left{text-align:left!important}.nfd-wc-products{self-align:flex-start!important;flex-grow:0!important}.nfd-wc-products>ul{row-gap:calc(var(--wndb--gap--2xl)*var(--wndb--gap--scale-factor))!important}.nfd-wc-products .wc-block-grid__product-image{overflow:hidden!important}.nfd-wc-products .wc-block-grid__product-image img{transition:transform .6s ease-in-out!important}.nfd-wc-products .wc-block-grid__product-image img:hover{transform:scale(1.1)!important}.nfd-wc-products .wc-block-components-product-sale-badge{backdrop-filter:blur(4px)!important;background:hsla(0,0%,100%,.5)!important;border:1px solid hsla(0,0%,100%,.2)!important;border-radius:999px!important;font-size:.8125rem!important;font-weight:700!important;margin:6px!important;padding:4px 12px!important}.nfd-wc-products .wc-block-components-product-sale-badge>span{background:transparent!important}.nfd-wc-products .wc-block-components-product-price{color:inherit!important}.nfd-wc-search .wp-block-search__inside-wrapper{background-color:var(--wndb--color--borders)!important;border:2px solid var(--wndb--color--subtle)!important;border-radius:999px!important;max-width:100%!important;padding:0!important;width:25rem!important}.nfd-wc-search .wp-block-search__inside-wrapper input[type=search]{background:none!important;border:none!important;border-bottom-left-radius:999px!important;border-top-left-radius:999px!important;color:var(--wndb--color--text--contrast)!important;font-size:1.25rem!important;font-weight:500!important;min-height:3.75rem!important;padding-inline:24px!important}.nfd-wc-search .wp-block-search__inside-wrapper:has(button:focus),.nfd-wc-search .wp-block-search__inside-wrapper:has(input[type=search]:focus){outline:2px solid var(--wndb--color--text--contrast)!important;outline-offset:2px!important}.nfd-wc-search .wp-block-search__button{aspect-ratio:1/1!important;background:var(--wndb-gray-800)!important;border-radius:999px!important;height:100%!important;margin-left:0!important;margin-right:2px!important;margin-top:2px!important}.nfd-wc-search .wp-block-search__button:focus,.nfd-wc-search .wp-block-search__button:hover{background:var(--wndb-gray-900)!important;filter:none!important;outline:2px solid var(--wndb-gray-900)!important;outline-offset:2px!important}.nfd-wc-search .wp-block-search__inside-wrapper input[type=search]::-moz-placeholder{color:var(--wndb--color--text--faded)!important}.nfd-wc-search .wp-block-search__inside-wrapper input[type=search]::placeholder{color:var(--wndb--color--text--faded)!important}.nfd-commerce-icons{align-items:center!important;display:flex!important;flex-direction:row!important;gap:8px!important}.nfd-commerce-icons .wc-block-cart-link__text{display:none!important}.nfd-commerce-icons .wp-block-search__button svg,.nfd-commerce-icons svg.wc-block-customer-account__account-icon,.nfd-commerce-icons svg.wc-block-mini-cart__icon{height:28px!important;width:28px!important}.nfd-commerce-icons .wp-block-search__button-only .wp-block-search__button.has-icon{align-items:center!important;background:none!important;color:currentcolor!important;display:flex!important;padding:0!important}.nfd-commerce-icons .wp-block-search__button-only .wp-block-search__input{margin-right:.5em!important}.nfd-commerce-icons .wp-block-woocommerce-customer-account a{padding:0!important}:root{--wndb-mask-color:rgba(0,0,0,.15);--wndb-mask-position:50% 50% at 50% 20%;--wndb-mask-opacity:0.35}[class*=nfd-bg-effect]{isolation:isolate!important;position:relative!important}[class*=nfd-wb-header] [class*=nfd-bg-effect]{z-index:1!important}.has-modal-open [class*=nfd-bg-effect]{isolation:unset!important}.nfd-bg-effect-position-center{--wndb-mask-position:50% 50% at 50% 50%}[class*=nfd-bg-effect]:after{content:\\\"\\\"!important;inset:0!important;-webkit-mask-image:radial-gradient(ellipse var(--wndb-mask-position),#000 70%,rgba(0,0,0,.3) 100%)!important;mask-image:radial-gradient(ellipse var(--wndb-mask-position),#000 70%,rgba(0,0,0,.3) 100%)!important;opacity:var(--wndb-mask-opacity)!important;pointer-events:none!important;position:absolute!important;z-index:-1!important}.nfd-bg-effect-dots:after{--wndb-mask-opacity:1;background:radial-gradient(var(--wndb-mask-color) 1px,transparent 1px)!important;background-size:20px 20px!important}.nfd-bg-effect-grid:after{background-image:linear-gradient(to right,var(--wndb-mask-color) 1px,transparent 1px),linear-gradient(to bottom,var(--wndb-mask-color) 1px,transparent 1px)!important;background-size:50px 50px!important}.nfd-bg-effect-grid-perspective{perspective:1000px!important}.has-modal-open .nfd-bg-effect-grid-perspective{perspective:unset!important}.nfd-bg-effect-grid-perspective:after{--wndb-mask-opacity:0.6;background-size:100px 100px!important;transform:rotateX(-60deg) translateZ(0)!important;transform-origin:top!important;transform-style:preserve-3d!important}.nfd-bg-effect-grid-2:after,.nfd-bg-effect-grid-perspective:after{background-image:linear-gradient(to right,var(--wndb-mask-color) 1px,transparent 1px),linear-gradient(to bottom,var(--wndb-mask-color) 1px,transparent 1px)!important}.nfd-bg-effect-grid-2:after{background-size:14px 32px!important}.nfd-bg-effect-grid-3{overflow:hidden!important}.nfd-bg-effect-grid-3:after{background-image:linear-gradient(to right,var(--wndb-mask-color) 1px,transparent 1px),linear-gradient(to bottom,var(--wndb-mask-color) 1px,transparent 1px)!important;background-size:32px 80px!important;right:-40%!important;top:-20%!important;transform:scale(1.5) skew(-30deg,30deg)!important}.nfd-bg-effect-lines:after{--wndb-mask-opacity:0.4;background-image:linear-gradient(to right,var(--wndb-mask-color) 1px,transparent 1px)!important;background-size:48px!important}.nfd-bg-effect-lines-2{--wndb-mask-opacity:0.45;overflow:hidden!important;perspective:1000px!important}.has-modal-open .nfd-bg-effect-lines-2{perspective:unset!important}.nfd-bg-effect-lines-2:after{background-image:linear-gradient(to right,var(--wndb-mask-color) 1px,transparent 1px)!important;background-size:30px!important;right:-40%!important;top:-20%!important;transform:rotateX(-45deg) skew(-16deg) translateZ(0)!important;transform-origin:right!important;transform-style:preserve-3d!important}.nfd-mask-opacity-0:after{--wndb-mask-opacity:0.8}:where(:root){--wndb--max-w--prose:min(65ch,1100px)}.nfd-max-w-prose:not(.nfd-max-w-full),:where(.nfd-text-balance:not(.nfd-max-w-full)){max-width:var(--wndb--max-w--prose)!important}.nfd-max-w-prose:not(.nfd-max-w-full).has-text-align-center,:where(.nfd-text-balance:not(.nfd-max-w-full)).has-text-align-center{margin-inline:auto!important}.nfd-max-w-prose:not(.nfd-max-w-full).has-text-align-right,:where(.nfd-text-balance:not(.nfd-max-w-full)).has-text-align-right{margin-inline-start:auto!important}:where(.nfd-text-balance){text-wrap:balance!important}.nfd-text-balance>h1,.nfd-text-balance>h2,.nfd-text-balance>h3,.nfd-text-balance>h4,.nfd-text-balance>p{text-wrap:balance!important}.nfd-text-pretty,.nfd-text-pretty>h1,.nfd-text-pretty>h2,.nfd-text-pretty>h3,.nfd-text-pretty>h4,.nfd-text-pretty>p{text-wrap:pretty!important}.wp-block-image figcaption{font-weight:400!important;margin-inline:auto!important;max-width:64ch!important;padding-block-start:.5em!important;text-wrap:balance!important}.wp-block-quote>.nfd-text-pretty{font-weight:550;margin-block:.25em}:where(:root){--wndb--text-scale-factor:1;--wndb--text--xs:0.75rem;--wndb--text--sm:0.875rem;--wndb--text--base:1rem;--wndb--text--md:1.125rem;--wndb--text--lg:1.5rem;--wndb--text--xl:2.375rem;--wndb--text--huge:clamp(2.75rem,1.4688rem + 2.5vw,3.5rem);--wndb--text-giga:clamp(3.25rem,2.546875rem + 2.25vw,4.375rem)}.nfd-text-xs:not([class*=font-size]):not([style*=font-size]){font-size:calc(var(--wndb--text--xs)*var(--wndb--text-scale-factor))!important}.nfd-text-xs:not([style*=letter-spacing]){letter-spacing:.05em!important}.nfd-text-sm:not([class*=font-size]):not([style*=font-size]){font-size:calc(var(--wndb--text--sm)*var(--wndb--text-scale-factor))!important}.nfd-text-base:not([class*=font-size]):not([style*=font-size]){font-size:calc(var(--wndb--text--base)*var(--wndb--text-scale-factor))!important}.nfd-text-md:not([class*=font-size]):not([style*=font-size]){font-size:calc(var(--wndb--text--md)*var(--wndb--text-scale-factor))!important}.nfd-text-base:not([style*=line-height]),.nfd-text-md:not([style*=line-height]){line-height:1.6!important}.nfd-text-lg:not([class*=font-size]):not([style*=font-size]){font-size:calc(var(--wndb--text--lg)*var(--wndb--text-scale-factor))!important}.nfd-text-lg:not([style*=line-height]){line-height:1.4!important}.nfd-text-lg:not([style*=letter-spacing]){letter-spacing:0!important}.nfd-text-lg:not([style*=font-weight]){font-weight:500!important}.nfd-text-xl:not([class*=font-size]):not([style*=font-size]){font-size:var(--wndb--text--xl)!important}.nfd-text-xl:not([style*=line-height]){line-height:1.25!important}.nfd-text-xl:not([style*=letter-spacing]){letter-spacing:-.01em!important}.nfd-text-xl:not([style*=font-weight]){font-weight:500!important}:where(.nfd-text-huge:not([class*=font-size]):not([style*=font-size])){font-size:calc(var(--wndb--text--huge)*var(--wndb--text-scale-factor))!important;max-width:var(--wndb--max-w--prose)!important;text-wrap:balance!important}:where(.nfd-text-huge:not([class*=font-size]):not([style*=font-size]).nfd-max-w-container){max-width:var(--wndb--container)!important}:where(.nfd-text-giga:not([class*=font-size]):not([style*=font-size])).has-text-align-center,:where(.nfd-text-huge:not([class*=font-size]):not([style*=font-size])).has-text-align-center{margin-inline:auto!important}:where(.nfd-text-giga:not([class*=font-size]):not([style*=font-size])).has-text-align-right,:where(.nfd-text-huge:not([class*=font-size]):not([style*=font-size])).has-text-align-right{margin-inline-start:auto!important}.nfd-text-huge:not([style*=line-height]){line-height:1.1!important}.nfd-text-huge:not([style*=letter-spacing]){letter-spacing:-.025em!important}.nfd-text-huge:not([style*=font-weight]){font-weight:500!important}:where(.nfd-text-giga:not([class*=font-size]):not([style*=font-size])){font-size:calc(var(--wndb--text-giga)*var(--wndb--text-scale-factor))!important;max-width:var(--wndb--max-w--prose)!important;text-wrap:balance!important}:where(.nfd-text-giga:not([class*=font-size]):not([style*=font-size]).nfd-max-w-container){max-width:var(--wndb--container)!important}.nfd-text-giga:not([style*=line-height]){line-height:1.1!important}.nfd-text-giga:not([style*=letter-spacing]){letter-spacing:-.04em!important}.nfd-text-giga:not([style*=font-weight]){font-weight:500!important}:root{--nfd-wb-anim-transition-duration:1400ms;--nfd-wb-anim-transition-delay:50ms;--nfd-wb-anim-transition-easing-function:cubic-bezier(0.4,1,0.65,1);--nfd-wb-anim-transition:all var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay)}@media (prefers-reduced-motion:reduce){.nfd-wb-animate{transition:none!important}.nfd-wb-twist-in,[class*=nfd-wb-]{clip-path:none!important;opacity:1!important;transform:none!important}}@media (max-width:782px){.nfd-wb-animate{transition:none!important}.nfd-wb-twist-in,[class*=nfd-wb-]{clip-path:none!important;opacity:1!important;transform:none!important}}.nfd-wb-animate[data-replay-animation]{transition:none!important}.block-editor-block-preview__content-iframe [class*=nfd-wb-]{clip-path:none!important;opacity:1!important;transform:none!important}[class*=nfd-wb-fade-in]{--nfd-wb-anim-transition:opacity var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay),transform var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay);transition:var(--nfd-wb-anim-transition)}.nfd-wb-fade-in-bottom{--nfd-wb-anim-transition-duration:1200ms;opacity:0;transform:translate3d(0,90px,0);transition:var(--nfd-wb-anim-transition)}.nfd-wb-fade-in-bottom-short{transform:translate3d(0,32px,0) scale3d(.96,.96,.96);transform-origin:center bottom}.nfd-wb-fade-in-bottom-short,.nfd-wb-fade-in-top-short{--nfd-wb-anim-transition-duration:600ms;opacity:0;transition:var(--nfd-wb-anim-transition)}.nfd-wb-fade-in-top-short{transform:translate3d(0,-32px,0) scale3d(.96,.96,.96);transform-origin:center top}.nfd-wb-fade-in-left-short{transform:translate3d(-32px,0,0) scale3d(.96,.96,.96);transform-origin:center left}.nfd-wb-fade-in-left-short,.nfd-wb-fade-in-right-short{--nfd-wb-anim-transition-duration:600ms;opacity:0;transition:var(--nfd-wb-anim-transition)}.nfd-wb-fade-in-right-short{transform:translate3d(32px,0,0) scale3d(.96,.96,.96);transform-origin:right center}.nfd-wb-animated-in:not([data-replay-animation])[class*=nfd-wb-fade-in]{opacity:1;transform:translateZ(0) scaleX(1)}.nfd-wb-zoom-in{--nfd-wb-anim-transition-duration:1200ms;--nfd-wb-anim-transition:opacity var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay),transform var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay);transform:scale3d(.4,.4,.4)}.nfd-wb-zoom-in,.nfd-wb-zoom-in-short{opacity:0;transition:var(--nfd-wb-anim-transition)}.nfd-wb-zoom-in-short{--nfd-wb-anim-transition-duration:600ms;--nfd-wb-anim-transition:opacity var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay),transform var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay);transform:scale3d(.92,.92,.92)}.nfd-wb-animated-in:not([data-replay-animation])[class*=nfd-wb-zoom-]{opacity:1!important;transform:scaleX(1)!important}div:has(>.nfd-wb-twist-in){perspective:1200px}.nfd-wb-twist-in{--nfd-wb-anim-transition-duration:1000ms;--nfd-wb-anim-transition:opacity var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay),transform var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay);opacity:0;transform:translateY(40px) scale(.8) rotateY(30deg) rotate(-12deg) translateZ(0);transition:var(--nfd-wb-anim-transition)}.nfd-wb-animated-in:not([data-replay-animation]).nfd-wb-twist-in{opacity:1!important;transform:translateY(0) scale(1) rotateY(0deg) rotate(0deg) translateZ(0)!important}.nfd-wb-reveal-right{--nfd-wb-anim-transition-duration:1500ms;--nfd-wb-anim-transition-easing-function:cubic-bezier(0.4,0,0,1);--nfd-wb-anim-transition:clip-path var(--nfd-wb-anim-transition-duration) var(--nfd-wb-anim-transition-easing-function) var(--nfd-wb-anim-transition-delay);clip-path:inset(0 100% 0 0);transition:var(--nfd-wb-anim-transition)}.nfd-wb-animated-in>.nfd-wb-reveal-right:not([data-replay-animation]){clip-path:inset(0 0 0 0)!important}.nfd-delay-50{--nfd-wb-anim-transition-delay:50ms}.nfd-delay-150{--nfd-wb-anim-transition-delay:150ms}.nfd-delay-300{--nfd-wb-anim-transition-delay:300ms}.nfd-delay-450{--nfd-wb-anim-transition-delay:450ms}.nfd-delay-600{--nfd-wb-anim-transition-delay:600ms}.nfd-delay-750{--nfd-wb-anim-transition-delay:750ms}.nfd-delay-900{--nfd-wb-anim-transition-delay:900ms}.nfd-delay-1050{--nfd-wb-anim-transition-delay:1050ms}.nfd-delay-1200{--nfd-wb-anim-transition-delay:1200ms}.nfd-delay-1350{--nfd-wb-anim-transition-delay:1350ms}.nfd-delay-1500{--nfd-wb-anim-transition-delay:1500ms}:where(:root){--wndb--container:1200px;--wndb--container--wide:1340px}body .is-layout-constrained:has(.nfd-container.is-layout-constrained)>.nfd-container.is-layout-constrained{max-width:unset!important;width:100%!important}.is-layout-constrained.has-global-padding:has(.nfd-container.is-layout-constrained)>.nfd-container.is-layout-constrained{margin-left:calc(var(--wp--style--root--padding-left)*-1)!important;margin-right:calc(var(--wp--style--root--padding-right)*-1)!important;max-width:unset!important;width:unset!important}.editor-styles-wrapper .nfd-container:is(.is-layout-constrained)>:where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)),.editor-styles-wrapper .nfd-container>:where(.wp-block-cover-is-layout-constrained:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)):not([style*=margin]),.nfd-container:is(.is-layout-constrained)>:where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)),.nfd-container:is(.nfd-my-0)>div,.nfd-container>:where(.wp-block-cover-is-layout-constrained:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)){max-width:var(--wndb--container);width:100%}.editor-styles-wrapper .nfd-container:is(.is-layout-constrained)>.alignwide,.nfd-container:is(.is-layout-constrained).alignwide>:where(:not(.alignleft):not(.alignright):not(.alignfull)):not([style*=margin]),.nfd-container:is(.is-layout-constrained)>.alignwide,.nfd-container:is(.nfd-my-0)>.alignwide{max-width:var(--wndb--container--wide);width:100%}.nfd-container:not(.alignfull){padding-inline:var(--wndb--p)!important}.nfd-container:is(.nfd-my-0)>div:not([style*=margin]){margin-inline:auto!important}[class*=nfd-divider-]{position:relative;z-index:13}[class*=nfd-divider-]~[class*=nfd-divider-]{z-index:12!important}[class*=nfd-divider-]~[class*=nfd-divider-]~[class*=nfd-divider-]{z-index:11!important}[class*=nfd-divider-]:before{background:inherit!important;bottom:calc(var(--wndb--divider-size)*-1)!important;content:\\\"\\\"!important;height:var(--wndb--divider-size)!important;left:0!important;pointer-events:none!important;position:absolute!important;width:100%!important;z-index:10!important}.nfd-divider-arrow{--wndb--divider-size:16px}.nfd-divider-arrow:before{bottom:calc(var(--wndb--divider-size)*-1)!important;height:calc(var(--wndb--divider-size)*2)!important;left:50%!important;transform:translateX(-50%) rotate(45deg)!important;width:calc(var(--wndb--divider-size)*2)!important}.nfd-divider-clouds{--wndb--divider-size:150px}.nfd-divider-clouds:after,.nfd-divider-clouds:before{background:inherit!important;background-image:url(\\\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\\\'http://www.w3.org/2000/svg\\\' preserveAspectRatio=\\\'xMidYMax slice\\\' viewBox=\\\'0 0 283.5 27.8\\\'%3E%3Cpath fill=\\\'%23fff\\\' d=\\\'M0 0v6.7c1.9-.8 4.7-1.4 8.5-1 9.5 1.1 11.1 6 11.1 6s2.1-.7 4.3-.2c2.1.5 2.8 2.6 2.8 2.6s.2-.5 1.4-.7 1.7.2 1.7.2 0-2.1 1.9-2.8 3.6.7 3.6.7.7-2.9 3.1-4.1 4.7 0 4.7 0 1.2-.5 2.4 0 1.7 1.4 1.7 1.4h1.4c.7 0 1.2.7 1.2.7s.8-1.8 4-2.2c3.5-.4 5.3 2.4 6.2 4.4q.6-.6 1.8-.9c2.8-.7 4 .7 4 .7s1.7-5 11.1-6c9.5-1.1 12.3 3.9 12.3 3.9s1.2-4.8 5.7-5.7 6.8 1.8 6.8 1.8.6-.6 1.5-.9c.9-.2 1.9-.2 1.9-.2s5.2-6.4 12.6-3.3c7.3 3.1 4.7 9 4.7 9s1.9-.9 4 0 2.8 2.4 2.8 2.4 1.9-1.2 4.5-1.2 4.3 1.2 4.3 1.2.2-1 1.4-1.7 2.1-.7 2.1-.7-.5-3.1 2.1-5.5 5.7-1.4 5.7-1.4 1.5-2.3 4.2-1.1 1.7 5.2 1.7 5.2.3-.1 1.3.5c.5.4.8.8.9 1.1.5-1.4 2.4-5.8 8.4-4 7.1 2.1 3.5 8.9 3.5 8.9s.8-.4 2 0 1.1 1.1 1.1 1.1 1.1-1.1 2.3-1.1 2.1.5 2.1.5 1.9-3.6 6.2-1.2 1.9 6.4 1.9 6.4 2.6-2.4 7.4 0c3.4 1.7 3.9 4.9 3.9 4.9s3.3-6.9 10.4-7.9 11.5 2.6 11.5 2.6.8 0 1.2.2.9.9.9.9 4.4-3.1 8.3.2c1.9 1.7 1.5 5 1.5 5s.3-1.1 1.6-1.4 2.3.2 2.3.2-.1-1.2.5-1.9 1.9-.9 1.9-.9-4.7-9.3 4.4-13.4c5.6-2.5 9.2.9 9.2.9s5-6.2 15.9-6.2 16.1 8.1 16.1 8.1.7-.2 1.6-.4V0z\\\'/%3E%3C/svg%3E\\\")!important;background-repeat:repeat-x!important;background-size:cover!important;content:\\\"\\\"!important;height:var(--wndb--divider-size)!important;left:0!important;pointer-events:none!important;position:absolute!important;top:0!important;width:100%!important;z-index:10!important}.nfd-divider-clouds:after{bottom:0!important;top:auto!important;transform:rotate(180deg)!important}.nfd-divider-ellipse{--wndb--divider-size:50px}.nfd-divider-ellipse:before{clip-path:ellipse(50% var(--wndb--divider-size) at 50% 0)!important}.nfd-divider-rounded:not([style*=-radius]){--wndb--divider-size:50px}.nfd-divider-rounded:before:not([style*=-radius]){border-bottom-left-radius:var(--wndb--divider-size)!important;border-bottom-right-radius:var(--wndb--divider-size)!important}.nfd-divider-slant,.nfd-divider-slant-invert{--wndb--divider-size:80px}.nfd-divider-slant:before{bottom:calc(var(--wndb--divider-size)*-1 + 1px)!important;clip-path:polygon(0 0,100% 0,0 100%)!important}.nfd-divider-slant-invert:before{bottom:calc(var(--wndb--divider-size)*-1 + 1px)!important;clip-path:polygon(0 0,100% 0,100% 100%)!important}.nfd-divider-triangle{--wndb--divider-size:80px}.nfd-divider-triangle:before{bottom:calc(var(--wndb--divider-size)*-1 + 1px)!important;clip-path:polygon(0 0,100% 0,50% 100%)!important}.nfd-divider-zigzag{--wndb--divider-size:8px}.nfd-divider-zigzag:before{-webkit-mask:conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50% /calc(var(--wndb--divider-size)*2) 100%!important;mask:conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50% /calc(var(--wndb--divider-size)*2) 100%!important}:where(:root){--wndb--divider-size:0px}:where(:root){--nfd-opacity-preview:0.3}@media (min-width:1025px){body:not(.block-editor-page) :not(.is-desktop-preview) .nfd-hide-desktop{display:none!important}}@media (max-width:767px){body:not(.block-editor-page) :not(.is-mobile-preview) .nfd-hide-mobile{display:none!important}.nfd-align-mobile-left{text-align:left!important}.nfd-align-mobile-center{text-align:center!important}.nfd-align-mobile-right{text-align:right!important}.nfd-align-mobile-justify{text-align:justify!important}.wp-block-group-is-layout-flex.is-vertical p[class^=nfd-align-mobile-]{width:100%!important}}@media (min-width:768px) and (max-width:1024px){body:not(.block-editor-page) :not(.is-tablet-preview) .nfd-hide-tablet{display:none!important}.nfd-align-tablet-left{text-align:left!important}.nfd-align-tablet-center{text-align:center!important}.nfd-align-tablet-right{text-align:right!important}.nfd-align-tablet-justify{text-align:justify!important}.wp-block-group-is-layout-flex.is-vertical p[class^=nfd-align-tablet-]{width:100%!important}}.is-root-container.is-desktop-preview .nfd-hide-desktop,.is-root-container.is-mobile-preview .nfd-hide-mobile,.is-root-container.is-tablet-preview .nfd-hide-tablet{opacity:var(--nfd-opacity-preview)!important}@media (max-width:767px){.nfd-swiper-enabled{display:flex!important;flex-wrap:nowrap!important;gap:12px!important;margin-right:calc(var(--wp--style--root--padding-right, 0px)*-1)!important;overflow-x:auto!important;overflow-y:hidden!important;width:calc(100% + var(--wp--style--root--padding-right, 0px))!important;-webkit-overflow-scrolling:touch!important;padding-left:16px!important;padding-right:0!important;scroll-snap-type:x mandatory!important;scrollbar-width:none!important}.nfd-swiper-enabled::-webkit-scrollbar{display:none!important}.nfd-swiper-enabled.wp-block-column>*,.nfd-swiper-enabled.wp-block-columns>.wp-block-column{flex:0 0 calc(75% - 6px)!important;min-width:260px!important;scroll-snap-align:start!important;scroll-snap-stop:always!important}.nfd-swiper-enabled .wp-block-column,.nfd-swiper-enabled .wp-block-cover,.nfd-swiper-enabled .wp-block-image,.nfd-swiper-enabled figure{margin:0!important}.nfd-swiper-enabled [style*=\\\"min-width:\\\"],.nfd-swiper-enabled [style*=\\\"width:\\\"]{max-width:100%!important}}.nfd-grid-cols-1-2-1{grid-template-columns:1fr 2fr 1fr!important}:where(:root){--wndb--padding-factor:1;--wndb--p:2.375rem;--wndb--p--xs:0.75rem;--wndb--p--sm:1.5rem;--wndb--p--md:2rem;--wndb--p--lg:clamp(3.5rem,7vw,6.25rem);--wndb--p--square:2.5rem;--wndb--p--square-lg:4rem}.nfd-p-card-sm:not([style*=padding]){padding:calc(var(--wndb--p--xs)*var(--wndb--padding-factor)) calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-p-card-md:not([style*=padding]){padding:calc(var(--wndb--p--sm)*var(--wndb--padding-factor)) calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-p-card-lg:not([style*=padding]){padding:calc(var(--wndb--p--md)*var(--wndb--padding-factor)) calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}@media screen and (min-width:782px){.nfd-p-card-lg:not([style*=padding]){padding:calc(var(--wndb--p--md)*var(--wndb--padding-factor)) calc(var(--wndb--p--md)*1.5*var(--wndb--padding-factor))!important}}.nfd-p-card-square-lg:not([style*=padding]),.nfd-p-card-square:not([style*=padding]){padding:calc(var(--wndb--p--square)*var(--wndb--padding-factor))!important}@media screen and (min-width:782px){.nfd-p-card-square-lg:not([style*=padding]){padding:calc(var(--wndb--p--square-lg)*var(--wndb--padding-factor))!important}}.nfd-p-xs:not([style*=padding]){padding:calc(var(--wndb--p--xs)*var(--wndb--padding-factor))!important}.nfd-py-xs:not([style*=padding]){padding-block:calc(var(--wndb--p--xs)*var(--wndb--padding-factor))!important}.nfd-pt-xs:not([style*=padding]){padding-block-start:calc(var(--wndb--p--xs)*var(--wndb--padding-factor))!important}.nfd-px-xs:not([style*=padding]){padding-inline:calc(var(--wndb--p--xs)*var(--wndb--padding-factor))!important}.nfd-p-sm:not([style*=padding]){padding:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-px-sm:not([style*=padding]){padding-inline:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-py-sm:not([style*=padding]){padding-block:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-pt-sm:not([style*=padding]){padding-block-start:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-pb-sm:not([style*=padding]){padding-block-end:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-pl-sm:not([style*=padding]){padding-left:calc(var(--wndb--p--sm)*var(--wndb--padding-factor))!important}.nfd-p-md:not([style*=padding]){padding:calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-px-md:not([style*=padding]){padding-inline:calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-py-md:not([style*=padding]){padding-block:calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-pt-md:not([style*=padding]){padding-block-start:calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-pb-md:not([style*=padding]){padding-block-end:calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-p-lg:not([style*=padding]){padding:calc(var(--wndb--p--lg)*var(--wndb--padding-factor)) calc(var(--wndb--p--md)*var(--wndb--padding-factor))!important}.nfd-py-lg:not([style*=padding]){padding-block:calc(var(--wndb--p--lg)*var(--wndb--padding-factor))!important}.nfd-pt-lg:not([style*=padding]){padding-block-start:calc(var(--wndb--p--lg)*var(--wndb--padding-factor))!important}.nfd-pb-lg:not([style*=padding]){padding-block-end:calc(var(--wndb--p--lg)*var(--wndb--padding-factor))!important}.nfd-pl-offset-md:not([style*=padding]){margin-left:calc(var(--wndb--p--md)*var(--wndb--padding-factor)*-1)!important;padding-left:calc(var(--wndb--p--md)*var(--wndb--padding-factor) - 3px)!important}.editor-styles-wrapper .nfd-overlap-x,.nfd-overlap-x{gap:0}.nfd-overlap-x>:not(:first-child){margin-inline-start:-1.275rem!important}@media (min-width:768px){.-nfd-translate-y-1\\\\/2{margin-bottom:-100px!important;transform:translateY(-50%)!important}.-nfd-translate-y-1\\\\/3{margin-bottom:-100px!important;transform:translateY(-33%)!important}.nfd-overlap-x-lg{transform:translateX(-150px)!important;width:calc(100% + 150px)!important}}.nfd-pseudo-play-icon{align-items:center!important;display:flex!important;justify-content:center!important;position:relative!important}.nfd-pseudo-play-icon>a{inset:0!important;position:absolute!important}:not(.is-root-container) .nfd-pseudo-play-icon>a{text-indent:-9999px!important}.nfd-pseudo-play-icon:before{backdrop-filter:blur(3px)!important;background:hsla(0,0%,100%,.1)!important;border-radius:100%!important;content:\\\"\\\"!important;height:3rem!important;left:50%!important;opacity:1!important;pointer-events:none!important;position:absolute!important;top:50%!important;transform:translate(-50%,-50%)!important;transition:all .2s ease!important;width:3rem!important}.nfd-pseudo-play-icon:has(a:hover):before{background:hsla(0,0%,100%,.3)!important;height:4rem!important;width:4rem!important}.nfd-pseudo-play-icon:after{border-style:solid!important;border-bottom:10px solid transparent!important;border-left:16px solid!important;border-right:0!important;border-top:10px solid transparent!important;content:\\\"\\\"!important;height:16px!important;height:0!important;left:50%!important;margin-left:2px!important;pointer-events:none!important;position:absolute!important;top:50%!important;transform:translate(-50%,-50%)!important;width:16px!important;width:0!important}.entry-content>.wp-block-group.has-background+.wp-block-group.has-background:not([style*=margin-top]),.entry-content>.wp-block-group.has-background+[class*=nfd-theme-]:not([style*=margin-top]),.entry-content>[class*=nfd-theme-]+.wp-block-group.has-background:not([style*=margin-top]),.entry-content>[class*=nfd-theme-]+[class*=nfd-theme-]:not([style*=margin-top]){margin-block-start:0!important}:where(:root){--wndb--gap--scale-factor:1;--wndb--gap--xs:0.25rem;--wndb--gap--sm:0.5rem;--wndb--gap--md:1rem;--wndb--gap--lg:1.5rem;--wndb--gap--xl:2rem;--wndb--gap--2xl:2.5rem;--wndb--gap--3xl:3.5rem;--wndb--gap--4xl:6rem}.editor-styles-wrapper .nfd-gap-0,.nfd-gap-0{gap:0}.editor-styles-wrapper .nfd-gap-xs,.nfd-gap-xs{gap:calc(var(--wndb--gap--xs)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-sm,.nfd-gap-sm{gap:calc(var(--wndb--gap--sm)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-md,.nfd-gap-md{gap:calc(var(--wndb--gap--md)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-lg,.nfd-gap-lg{gap:calc(var(--wndb--gap--lg)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-xl,.nfd-gap-xl{gap:calc(var(--wndb--gap--xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-2xl,.nfd-gap-2xl{gap:calc(var(--wndb--gap--2xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-3xl,.nfd-gap-3xl{gap:calc(var(--wndb--gap--3xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-4xl,.nfd-gap-4xl{gap:calc(var(--wndb--gap--4xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-x-4xl,.nfd-gap-x-4xl{-moz-column-gap:calc(var(--wndb--gap--4xl)*var(--wndb--gap--scale-factor));column-gap:calc(var(--wndb--gap--4xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-x-lg,.nfd-gap-x-lg{-moz-column-gap:calc(var(--wndb--gap--lg)*var(--wndb--gap--scale-factor));column-gap:calc(var(--wndb--gap--lg)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-y-lg,.nfd-gap-y-lg{row-gap:calc(var(--wndb--gap--lg)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-y-xl,.nfd-gap-y-xl{row-gap:calc(var(--wndb--gap--xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-y-2xl,.nfd-gap-y-2xl{row-gap:calc(var(--wndb--gap--2xl)*var(--wndb--gap--scale-factor))}.editor-styles-wrapper .nfd-gap-y-3xl,.nfd-gap-y-3xl{row-gap:calc(var(--wndb--gap--3xl)*var(--wndb--gap--scale-factor))}.nfd-border-2{border-bottom-width:2px!important}.nfd-border-strong:not([style*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.has-border-color){border-color:var(--wndb-color--borders-strong)!important}.nfd-border-light:not([style*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.has-border-color){border-color:var(--wndb--color--borders-light)!important}:where(:root){--wndb--button--outline-width:0px;--wndb--button-sm--font-size:1rem;--wndb--button-lg-x:2rem;--wndb--button-lg-y:0.75rem;--wndb--button-lg--font-size:1.125rem;--wndb--button-xl-x:3rem;--wndb--button-xl-y:1rem;--wndb--button-xl--font-size:1.125rem}[class*=nfd-btn].is-style-outline{--wndb--button--outline-width:2px}[class*=nfd-btn]>.wp-block-button__link:not([style*=padding]){padding:calc(.625rem - var(--wndb--button--outline-width)) calc(1.125rem - var(--wndb--button--outline-width))!important}.nfd-btn-sm>.wp-block-button__link:not([style*=padding]){padding:calc(.375rem - var(--wndb--button--outline-width)) calc(1rem - var(--wndb--button--outline-width))!important}.nfd-btn-sm:not(.has-custom-font-size)>.wp-block-button__link:not([style*=font-size]){font-size:var(--wndb--button-sm--font-size)!important}.nfd-btn-lg>.wp-block-button__link:not([style*=padding]){padding:calc(var(--wndb--button-lg-y) - var(--wndb--button--outline-width)) var(--wndb--button-lg-x)!important}.nfd-btn-lg:not(.has-custom-font-size)>.wp-block-button__link:not([style*=font-size]){font-size:var(--wndb--button-lg--font-size)!important}.nfd-btn-lg:not([style*=font-weight])>.wp-block-button__link{font-weight:600!important}.nfd-btn-xl>.wp-block-button__link:not([style*=padding]){padding:calc(var(--wndb--button-xl-y) - var(--wndb--button--outline-width)) var(--wndb--button-xl-x)!important}.nfd-btn-xl:not(.has-custom-font-size)>.wp-block-button__link:not([style*=font-size]){font-size:var(--wndb--button-xl--font-size)!important}.nfd-btn-xl:not([style*=font-weight])>.wp-block-button__link{font-weight:600!important}.nfd-btn-wide>.wp-block-button__link:not([style*=padding]){padding:calc(.625rem - var(--wndb--button--outline-width)) calc(2rem - var(--wndb--button--outline-width))!important}[class*=nfd-btn]:is(.is-style-outline)>.wp-block-button__link:not(.has-text-color){color:var(--wndb--color--text--contrast)!important}.nfd-btn:is(.is-style-outline)>.wp-block-button__link:not(.has-text-color):hover{--wndb--color--text--contrast:var(--wndb-gray-900);border-color:var(--wndb-white)!important}[class*=nfd-button]>.wp-block-button__link:not(.has-background):hover{filter:brightness(.8)!important}.nfd-theme-primary [class*=nfd-btn]:not(.is-style-outline):not(.nfd-btn-secondary):not(.nfd-btn-tertiary)>.wp-block-button__link:not(.has-background){background-color:var(--wndb-gray-800)!important}.nfd-theme-primary\n [class*=nfd-btn]:not(.is-style-outline):not(.nfd-btn-secondary):not(.nfd-btn-tertiary)>.wp-block-button__link:not(.has-background):hover{background-color:var(--wndb-gray-900)!important}.nfd-theme-primary\n [class*=nfd-btn]:is(.is-style-outline):not(.nfd-btn-secondary):not(.nfd-btn-tertiary)>.wp-block-button__link:not(.has-background):not(.has-text-color):hover{background-color:var(--wndb-white)!important;border-color:var(--wndb-white)!important;color:var(--wndb-gray-900)!important}.nfd-btn-secondary:is(.is-style-outline)>.wp-block-button__link:not(.has-text-color):hover{--wndb--color--text--contrast:var(--wndb-gray-900);border-color:var(--wndb-white)!important}.nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-text-color){color:var(--wndb-white)!important}.nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background){background-color:var(--wndb-gray-800)!important}.nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background):hover{background-color:var(--wndb-gray-900)!important}.nfd-theme-dark .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background),.nfd-theme-darker .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background){background-color:var(--wndb-white)!important}.nfd-theme-dark .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-text-color),.nfd-theme-darker .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-text-color){color:var(--wndb-gray-900)!important}.nfd-theme-dark .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background):hover,.nfd-theme-darker .nfd-btn-secondary:not(.is-style-outline)>.wp-block-button__link:not(.has-background):hover{background-color:var(--wndb-white)!important;color:var(--wndb-gray-900)!important;filter:brightness(.8)!important}.nfd-btn-tertiary:is(.is-style-outline)>.wp-block-button__link:not(.has-text-color):hover{--wndb--color--text--contrast:var(--wndb-gray-900)}.nfd-btn-tertiary:is(.is-style-outline)>.wp-block-button__link:not([class*=-border-color]){border-color:var(--wndb--color--subtle)!important}.nfd-btn-tertiary:not(.is-style-outline)>.wp-block-button__link:not(.has-text-color){color:var(--wndb--color--text--contrast)!important}.nfd-btn-tertiary:not(.is-style-outline)>.wp-block-button__link:not(.has-background){background-color:var(--wndb--color--borders)!important}.nfd-btn-tertiary:not(.is-style-outline)>.wp-block-button__link:not(.has-background):hover{--wndb--color--borders:var(--wndb--color--subtle)}:where(:root){--wndb--shadow--xs:0 1px 2px 0 rgba(18,18,23,.065);--wndb--shadow--sm:0 1px 3px 0 rgba(18,18,23,.1),0 1px 2px 0 rgba(18,18,23,.06)}.nfd-shadow-xs:not([style*=box-shadow]){box-shadow:var(--wndb--shadow--xs)!important}.nfd-shadow-sm:not([style*=box-shadow]){box-shadow:var(--wndb--shadow--sm)!important}.nfd-bg-subtle.nfd-shadow-xs:not([style*=box-shadow]),.nfd-theme-light .nfd-shadow-xs:not([style*=box-shadow]){--wndb--shadow--xs:none}:where(:root){--wndb--rounded--scale-factor:1;--wndb--border--radius--sm:0.25rem;--wndb--border--radius--md:0.5rem;--wndb--border--radius--lg:0.75rem;--wndb--border--radius--xl:1rem}[class*=nfd-rounded]:not([style*=-radius]),[class*=nfd-rounded]:not([style*=-radius])>.components-resizable-box__container>img:not([style*=-radius]),[class*=nfd-rounded]:not([style*=-radius])>.wp-element-button:not([style*=-radius]),[class*=nfd-rounded]:not([style*=-radius])>a>img,[class*=nfd-rounded]:not([style*=-radius])>img{border-radius:calc(var(--wndb--border--radius)*var(--wndb--rounded--scale-factor))!important}[class*=nfd-rounded-t-]:not([style*=-radius]),[class*=nfd-rounded-t-]:not([style*=-radius])>.components-resizable-box__container>img:not([style*=-radius]),[class*=nfd-rounded-t-]:not([style*=-radius])>.wp-element-button:not([style*=-radius]),[class*=nfd-rounded-t-]:not([style*=-radius])>a>img,[class*=nfd-rounded-t-]:not([style*=-radius])>img{border-radius:calc(var(--wndb--border--radius)*var(--wndb--rounded--scale-factor)) calc(var(--wndb--border--radius)*var(--wndb--rounded--scale-factor)) 0 0!important}.nfd-overflow-hidden.nfd-rounded-xl iframe:not([style*=-radius]){border-radius:calc(var(--wndb--border--radius--md)*var(--wndb--rounded--scale-factor))!important}.nfd-rounded-none:not([style*=-radius]){--wndb--border--radius:0}.nfd-rounded-sm:not([style*=-radius]){--wndb--border--radius:var(--wndb--border--radius--sm)}.nfd-rounded,.nfd-rounded-md,.nfd-rounded-t-md:not([style*=-radius]){--wndb--border--radius:var(--wndb--border--radius--md)}.nfd-rounded-lg,.nfd-rounded-t-lg:not([style*=-radius]){--wndb--border--radius:var(--wndb--border--radius--lg)}.nfd-rounded-t-xl:not([style*=-radius]),.nfd-rounded-xl{--wndb--border--radius:var(--wndb--border--radius--xl)}.nfd-rounded-full:not([style*=-radius]){--wndb--border--radius:9999px}:where(:root){--wndb-gray:#6c6c89;--wndb-gray-50:#f7f7f8;--wndb-gray-100:#ebebef;--wndb-gray-150:#e5e5e9;--wndb-gray-200:#d1d1db;--wndb-gray-300:#a9a9bc;--wndb-gray-400:#8a8aa3;--wndb-gray-500:#6c6c89;--wndb-gray-600:#55556d;--wndb-gray-700:#3f3f50;--wndb-gray-800:#1d1d22;--wndb-gray-900:#121217;--wndb-white:#fff;--wndb-white-50:hsla(0,0%,100%,.05);--wndb-white-100:hsla(0,0%,100%,.1);--wndb-white-150:hsla(0,0%,100%,.15);--wndb-white-200:hsla(0,0%,100%,.2);--wndb-white-300:hsla(0,0%,100%,.3);--wndb-white-400:hsla(0,0%,100%,.4);--wndb-white-500:hsla(0,0%,100%,.5);--wndb-white-600:hsla(0,0%,100%,.6);--wndb-white-700:hsla(0,0%,100%,.7);--wndb-white-800:hsla(0,0%,100%,.8);--wndb-white-900:hsla(0,0%,100%,.9);--wndb--color--primary:#00f;--wndb--color--secondary:#00f;--wndb--color--surface:var(--wndb-gray-50);--wndb--color--text:var(--wndb-gray-800);--wndb--color--text--contrast:var(--wndb-gray-900);--wndb--color--text--faded:var(--wndb-gray-600);--wndb--color--borders:var(--wndb-gray-150);--wndb--color--borders-light:var(--wndb-gray-100);--wndb--color--borders-strong:var(--wndb--color--text--faded);--wndb--color--subtle:var(--wndb-gray-200);--wndb--color--links:var(--wndb--color--primary);--wndb--color--body:var(--wndb--color--surface)}.is-style-nfd-theme-white,.nfd-theme-white:not([class*=is-style-nfd-theme]){--wndb--color--borders:var(--wndb-gray-150);--wndb--color--borders-light:var(--wndb-gray-100);--wndb--color--links:var(--wndb--color--primary);--wndb--color--subtle:var(--wndb-gray-200);--wndb--color--surface:var(--wndb-white);--wndb--color--text--contrast:var(--wndb-gray-900);--wndb--color--text--faded:var(--wndb-gray-700);--wndb--color--text:var(--wndb-gray-800)}.is-style-nfd-theme-light,.nfd-theme-light:not([class*=is-style-nfd-theme]){--wndb--color--borders:var(--wndb-gray-150);--wndb--color--borders-light:var(--wndb-gray-150);--wndb--color--links:var(--wndb--color--primary);--wndb--color--subtle:var(--wndb-gray-200);--wndb--color--surface:var(--wndb-gray-50);--wndb--color--text--contrast:var(--wndb-gray-900);--wndb--color--text--faded:var(--wndb-gray-700);--wndb--color--text:var(--wndb-gray-800)}.is-style-nfd-theme-dark,.nfd-theme-dark:not([class*=is-style-nfd-theme]){--wndb--color--borders:var(--wndb-white-100);--wndb--color--borders-light:var(--wndb--color--borders);--wndb--color--subtle:var(--wndb-white-200);--wndb--color--surface:var(--wndb-gray-800);--wndb--color--text--contrast:var(--wndb-white);--wndb--color--text--faded:var(--wndb-white-800);--wndb--color--text:var(--wndb-white);--wndb--shadow--sm:none;--wndb--shadow--xs:none;--wndb-mask-color:hsla(0,0%,100%,.12)}.is-style-nfd-theme-darker,.nfd-theme-darker:not([class*=is-style-nfd-theme]){--wndb--color--borders:var(--wndb-white-100);--wndb--color--borders-light:var(--wndb--color--borders);--wndb--color--subtle:var(--wndb-white-200);--wndb--color--surface:var(--wndb-gray-900);--wndb--color--text--contrast:var(--wndb-white);--wndb--color--text--faded:var(--wndb-white-800);--wndb--color--text:var(--wndb-white);--wndb--shadow--sm:none;--wndb--shadow--xs:none;--wndb-mask-color:hsla(0,0%,100%,.12)}.is-style-nfd-theme-primary,.nfd-theme-primary:not([class*=is-style-nfd-theme]){--wndb--color--borders:var(--wndb-white-100);--wndb--color--borders-light:var(--wndb--color--borders);--wndb--color--subtle:var(--wndb-white-200);--wndb--color--surface:var(--wndb--color--primary);--wndb--color--text--contrast:var(--wndb-white);--wndb--color--text--faded:var(--wndb-white-900);--wndb--color--text:var(--wndb-white);--wndb--color--links:var(--wndb-white);--wndb--shadow--sm:none;--wndb--shadow--xs:none;--wndb-mask-color:hsla(0,0%,100%,.12)}.is-style-nfd-theme-primary-15,.nfd-theme-primary-15:not([class*=is-style-nfd-theme]){--wndb--color--borders:color-mix(in srgb,var(--wndb--color--primary) 25%,#fff);--wndb--color--borders-light:color-mix(in srgb,var(--wndb--color--primary) 15%,#fff);--wndb--color--subtle:color-mix(in srgb,var(--wndb--color--primary) 30%,#fff);--wndb--color--surface:color-mix(in srgb,var(--wndb--color--primary) 15%,#fff)}.nfd-bg-surface:not(.has-background),[class*=is-style-nfd-theme]:not(.has-background){background-color:var(--wndb--color--surface)!important}.nfd-bg-surface:not(.has-text-color),[class*=is-style-nfd-theme]:not(.has-text-color){color:var(--wndb--color--text)!important}.nfd-text-faded p:not(.has-text-color):not(.has-link-color):not(.has-background):not(.nfd-text-primary),.nfd-text-faded time:not(.has-text-color):not(.has-background),.nfd-text-faded>a:not(.has-text-color):not(.has-link-color):not(.has-background),ol.nfd-text-faded:not(.has-text-color):not(.has-link-color):not(.has-background):not(.nfd-text-primary),p.nfd-text-faded:not(.has-text-color):not(.has-link-color):not(.has-background),ul.nfd-text-faded:not(.has-text-color):not(.has-link-color):not(.has-background):not(.nfd-text-primary){color:var(--wndb--color--text--faded)!important}.editor-styles-wrapper div .nfd-text-contrast:where(:not(.has-text-color)),.editor-styles-wrapper div :where(.nfd-text-contrast:not(.has-text-color):not(.wp-element-button)) a:where(:not(:hover)),.wp-site-blocks .nfd-text-contrast:where(:not(.has-text-color)),.wp-site-blocks .nfd-text-contrast:where(:not(.has-text-color)) a:where(:not(:hover)){color:var(--wndb--color--text--contrast)}.nfd-bg-surface .wp-block-separator:not(.has-background):not(.has-text-color):not(.nfd-border-strong),.nfd-bg-surface [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.nfd-border-strong),.nfd-bg-surface [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>img:not(.has-border-color):not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]),.nfd-bg-surface [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>img:not(.has-border-color):not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>.components-resizable-box__container>img:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]),.nfd-bg-surface:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.has-border-color):not(.nfd-border-strong),[class*=is-style-nfd-theme] .wp-block-separator:not(.has-background):not(.has-text-color):not(.nfd-border-strong),[class*=is-style-nfd-theme] [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.nfd-border-strong),[class*=is-style-nfd-theme] [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>img:not(.has-border-color):not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]),[class*=is-style-nfd-theme] [style*=border]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>img:not(.has-border-color):not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color])>.components-resizable-box__container>img:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]),[class*=is-style-nfd-theme]:not([class*=border-color]):not([style*=border-top-color]):not([style*=border-right-color]):not([style*=border-bottom-color]):not([style*=border-left-color]):not(.has-border-color):not(.nfd-border-strong){border-color:var(--wndb--color--borders)!important}.nfd-bg-surface .wp-block-separator:not(.has-background):not(.has-text-color):not(.nfd-border-2),[class*=is-style-nfd-theme] .wp-block-separator:not(.has-background):not(.has-text-color):not(.nfd-border-2){border-width:2px 0 0!important}.nfd-border-bg{--wndb--color--borders:var(--wndb--color--surface)}.nfd-border-primary{--wndb--color--borders:var(--wndb--color--primary)}.nfd-border-inherit{--wndb--color--borders:inherit}.nfd-bg-accent:not(.has-background),.nfd-bg-primary:not(.has-background),.wp-block-cover.nfd-bg-accent>.wp-block-cover__background:not([class*=background-color]),.wp-block-cover.nfd-bg-primary>.wp-block-cover__background:not([class*=background-color]){background-color:var(--wndb--color--primary)!important}.nfd-bg-secondary:not(.has-background),.wp-block-cover.nfd-bg-secondary>.wp-block-cover__background:not([class*=background-color]){background-color:var(--wndb--color--secondary)!important}.nfd-bg-accent:not(.has-text-color),.nfd-bg-primary:not(.has-text-color),.nfd-bg-secondary:not(.has-text-color){color:var(--wndb--color--white)!important}.nfd-bg-subtle:not(.has-background):not(.wp-block-button),.nfd-bg-subtle:not(.has-background)>.wp-block-button__link:not(.has-background){background-color:var(--wndb--color--borders-light)!important;color:var(--wndb--color--text--contrast)!important}.nfd-text-primary:not(.has-text-color),.wp-block-button.wndb-text-primary>a:not(.has-text-color){color:var(--wndb--color--primary)!important}.nfd-text-secondary:not(.has-text-color),.wp-block-button.wndb-text-secondary>a:not(.has-text-color){color:var(--wndb--color--secondary)!important}[class*=nfd-theme-primary] .nfd-text-primary:not(.has-text-color),[class*=nfd-theme-primary] .nfd-text-secondary:not(.has-text-color),[class*=nfd-theme-primary] .wp-block-button.wndb-text-primary>a:not(.has-text-color),[class*=nfd-theme-secondary] .wp-block-button.wndb-text-secondary>a:not(.has-text-color){color:var(--wndb--color--contrast)!important}[class*=nfd-theme-dark] .nfd-text-primary:not(.has-text-color),[class*=nfd-theme-darker] .nfd-text-primary:not(.has-text-color){color:var(--wndb--color--secondary)!important}.nfd-text-subtle:not(.has-text-color){color:var(--wndb--color--subtle)!important}.editor-styles-wrapper div .nfd-text-current:where(:not(.has-text-color)),.editor-styles-wrapper div :where(.nfd-text-current:not(.has-text-color):not(.wp-element-button)) a:where(:not(:hover)),.wp-site-blocks .nfd-text-current:where(:not(.has-text-color)),.wp-site-blocks .nfd-text-current:where(:not(.has-text-color)) a:where(:not(:hover)){color:currentColor}[class*=nfd-theme-] .wp-block-social-links.is-style-logos-only:not(.has-icon-color) .wp-block-social-link{color:var(--wndb--color--text--faded)!important;fill:var(--wndb--color--text--faded)!important}[class*=nfd-theme-] .wp-block-social-links.is-style-logos-only:not(.has-icon-color) .wp-block-social-link:hover{color:var(--wndb--color--text)!important;fill:var(--wndb--color--text)!important}.nfd-container.is-position-sticky:not([class*=nfd-bg-surface]):not([class*=is-style-nfd-]):not(.has-background){background-color:var(--wndb--color--body)!important}.nfd-container .has-secondary-color{color:var(--wndb--color--secondary)!important}.nfd-bg-gray-100:not(.has-background),.nfd-bg-gray-800:not(.has-background){background-color:var(--wndb--color--surface)!important}.nfd-bg-gray-100:not(.has-text-color),.nfd-bg-gray-800:not(.has-text-color){color:var(--wndb--color--text)!important}.nfd-bg-gray-800{--wndb--color--surface:var(--wndb-gray-800);--wndb--color--text:var(--wndb-white);--wndb--color--borders:var(--wndb-white-100);--wndb--color--text--faded:var(--wndb-white-700)}.nfd-bg-gray-100{--wndb--color--surface:var(--wndb-gray-50);--wndb--color--text:var(--wndb-gray-700);--wndb--color--borders:var(--wndb-gray-100)}.nfd-text-opacity-80 p:not(.has-text-color):not(.has-link-color):not(.has-background),.nfd-text-opacity-80 time:not(.has-text-color):not(.has-background),p.nfd-text-opacity-80:not(.has-text-color):not(.has-link-color):not(.has-background){opacity:.8!important}:where(:root){--wndb--slider-height:100lvh}.nfd-scroll-slider-horizontal,.nfd-scroll-slider-vertical{flex-wrap:nowrap!important;height:var(--wndb--slider-height)!important;overflow-y:auto!important;scroll-snap-type:y mandatory!important;-ms-overflow-style:none!important;scrollbar-width:none!important}.nfd-scroll-slider-horizontal::-webkit-scrollbar,.nfd-scroll-slider-vertical::-webkit-scrollbar{display:none!important}.nfd-scroll-slider-vertical{height:100vh!important;overflow-y:auto!important;scroll-snap-type:y mandatory!important}.nfd-scroll-slider-vertical>*{scroll-snap-align:start!important;width:100%!important}.nfd-scroll-slider-horizontal{flex-direction:row!important;overflow-x:auto!important;scroll-snap-type:x mandatory!important}.nfd-scroll-slider-horizontal>*{flex-shrink:0!important;scroll-snap-align:start!important}.nfd-scroll-slider-horizontal>.wp-block-cover{width:100vw!important}.nfd-container.alignfull .nfd-scroll-slider-horizontal{--half-container:calc(50vw - var(--wndb--container)/2);padding-left:var(--half-container)!important;padding-right:var(--half-container)!important;scroll-padding:var(--half-container)!important}.nfd-scroll-slider-horizontal.nfd-scroll-slider-animate>.wp-block-cover:first-child{animation:scroll-slider-slide 1s ease 1s forwards}@keyframes scroll-slider-slide{0%{margin-left:0}to{margin-left:-100vw}}.block-editor-block-preview__content-iframe .is-root-container{min-height:8rem!important}.block-editor-block-preview__content-iframe figure:has([style*=\\\"aspect-ratio: 16 / 9\\\"]){width:100%!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 100vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:100vh\\\"]{min-height:800px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 70vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:70vh\\\"]{min-height:560px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 60vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:60vh\\\"]{min-height:480px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 50vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:50vh\\\"]{min-height:400px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 40vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:40vh\\\"]{min-height:320px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 35vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:35vh\\\"]{min-height:280px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 30vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:30vh\\\"]{min-height:240px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 10vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:10vh\\\"]{min-height:80px!important}.block-editor-block-preview__content-iframe [style*=\\\"min-height: 5vh\\\"],.block-editor-block-preview__content-iframe [style*=\\\"min-height:5vh\\\"]{min-height:40px!important}.nfd-wba-modal *{box-sizing:border-box!important}.block-editor-block-preview__content-iframe .nfd-wb-animate{opacity:1!important;transform:none!important;transition:none!important}.block-editor-block-preview__content-iframe .block-editor-warning:not(.wp-block-missing .block-editor-warning){display:none!important}.block-editor-block-preview__content-iframe .is-root-container>.nfd-container:not([class*=nfd-p-]):not([class*=nfd-py-]):not([class*=nfd-pt-]):not([class*=nfd-pb-]):not([style*=padding]){padding-block:var(--wndb--p)!important}.block-editor-block-preview__content-iframe [class*=nfd-rounded]:not([style*=-radius])>div>img:not([style*=-radius]){border-radius:calc(var(--wndb--border--radius)*var(--wndb--rounded--scale-factor))!important}ol.nfd-gap-sm:not(.is-layout-flex) li:not(:last-child),ul.nfd-gap-sm:not(.is-layout-flex) li:not(:last-child){margin-bottom:.5em!important}ol.nfd-gap-md:not(.is-layout-flex) li:not(:last-child),ul.nfd-gap-md:not(.is-layout-flex) li:not(:last-child){margin-bottom:1em!important}ul.nfd-list-check{list-style-type:none!important;padding-inline-start:1em!important}ul.nfd-list-check li:before{content:\\\"✓\\\";display:inline-block;margin-inline-end:8px}[class*=nfd-query-loop-] :where(.wp-block-post-author__avatar img){border-radius:999px;display:block}[class*=nfd-query-loop-] :where(.avatar-48){height:36px!important;width:36px!important}[class*=nfd-query-loop-] :where(.wp-block-post-author__content){display:flex;flex-direction:column;gap:4px;justify-content:center}[class*=nfd-query-loop-] .wp-block-post-author__avatar{margin-right:12px!important}.nfd-query-loop-1 :where(.wp-block-cover){aspect-ratio:2/1.1}.nfd-query-loop-1 :where(.wp-block-post-author__content){align-items:center!important;flex-direction:row!important}.nfd-query-loop-1 :where(.wp-block-post-author__byline){font-size:1em!important;opacity:.8!important}[class*=nfd-query-loop-] :where(.wp-block-categories){display:flex;gap:8px;list-style:none;padding:0}[class*=nfd-query-loop-] :where(.wp-block-categories a){color:inherit!important}.nfd-query-loop-2 .wp-block-cover__background{-webkit-mask-image:linear-gradient(180deg,transparent 25%,#000 75%)!important;mask-image:linear-gradient(180deg,transparent 25%,#000 75%)!important}.nfd-query-loop-3 :where(.wp-block-post-author__name){display:none!important}.nfd-form-items-grow>div:not(.wp-block-jetpack-button){flex-grow:1!important}.nfd-jp-form.nfd-text-center .consent{text-align:center!important}.nfd-jp-form .contact-form-submission .go-back-message .link{color:currentColor!important;text-decoration:underline!important}.nfd-jp-form .contact-form-submission .go-back-message{margin-top:0!important}.nfd-jp-form .contact-form-submission{border-color:currentColor!important;padding:calc(var(--wndb--p--md)*.5) 0!important}.nfd-jp-form textarea{resize:vertical!important}.nfd-jp-form .wp-block-button__link{padding-block-end:10px!important;padding-block-start:10px!important}.nfd-jp-form .consent,.nfd-jp-form .jetpack-field-checkbox .jetpack-field-label .jetpack-field-label__input,.nfd-jp-form .jetpack-field-consent .jetpack-field-label .jetpack-field-label__input{font-size:.875rem!important;line-height:1.5em!important;text-transform:none!important;text-wrap:balance!important}.nfd-jp-form input[type=checkbox]{padding:0!important}.nfd-jp-subscribe-form .wp-block-jetpack-label{display:none!important}.nfd-jp-subscribe-form .wp-block-jetpack-input{height:100%!important;margin:0!important}.nfd-heading-styles-panel{border-top:0!important;padding:0!important}.nfd-heading-styles-control .components-h-stack>.components-base-control.components-range-control{flex:1 1 40%!important}.wp-block-heading.is-style-nfd-heading-boxed{align-items:center!important;display:flex!important;gap:2.5rem!important;white-space:nowrap!important}.wp-block-heading.is-style-nfd-heading-boxed:after,.wp-block-heading.is-style-nfd-heading-boxed:before{border-bottom:var(--nfd-heading-border-size,3px) var(--nfd-heading-border-style,solid) var(--nfd-heading-border,#e8d833)!important;content:\\\"\\\"!important}.wp-block-heading.is-style-nfd-heading-boxed{justify-content:center!important}.wp-block-heading.is-style-nfd-heading-boxed:after,.wp-block-heading.is-style-nfd-heading-boxed:before{flex:1 1 0!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-left{justify-content:flex-start!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-left:before{flex:0 0 0!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-left:after{flex:1 1 0!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-right{justify-content:flex-end!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-right:before{flex:1 1 0!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-right:after{flex:0 0 0!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-center{justify-content:center!important}.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-center:after,.wp-block-heading.is-style-nfd-heading-boxed.has-text-align-center:before{flex:1 1 0!important}.wp-block-heading.is-style-nfd-heading-boxed.left-only:after,.wp-block-heading.is-style-nfd-heading-boxed.right-only:before{flex:0 0 0!important}.is-style-nfd-heading-highlight .nfd-heading-highlight__text{--hl-color:var(--nfd-heading-border,#ffeb3b);--hl-height:var(--nfd-heading-border-size,12px);box-decoration-break:clone!important;-webkit-box-decoration-break:clone!important;position:relative!important;text-decoration:none!important;z-index:1!important}.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style: solid\\\"] .nfd-heading-highlight__text,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style:solid\\\"] .nfd-heading-highlight__text{background-image:linear-gradient(var(--hl-color),var(--hl-color))!important;background-position:left 100%!important;background-repeat:no-repeat!important;background-size:100% var(--hl-height)!important}.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style: dashed\\\"] .nfd-heading-highlight__text:after,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style: dotted\\\"] .nfd-heading-highlight__text:after,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style:dashed\\\"] .nfd-heading-highlight__text:after,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style:dotted\\\"] .nfd-heading-highlight__text:after{bottom:0!important;content:\\\"\\\"!important;height:var(--hl-height)!important;left:0!important;pointer-events:none!important;position:absolute!important;right:0!important;z-index:-1!important}.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style: dotted\\\"] .nfd-heading-highlight__text:after,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style:dotted\\\"] .nfd-heading-highlight__text:after{background:radial-gradient(circle,var(--hl-color) 60%,transparent 61%) 0 100% /calc(var(--hl-height)*1.2) var(--hl-height) repeat-x!important}.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style: dashed\\\"] .nfd-heading-highlight__text:after,.is-style-nfd-heading-highlight[style*=\\\"--nfd-heading-border-style:dashed\\\"] .nfd-heading-highlight__text:after{background:repeating-linear-gradient(to right,var(--hl-color) 0 calc(var(--hl-height)*1.4),transparent calc(var(--hl-height)*1.4) calc(var(--hl-height)*2.2)) 0 100% /100% var(--hl-height) no-repeat!important}.is-style-nfd-heading-underline.wp-block-heading{text-decoration-color:var(--nfd-heading-border,#e8d833)!important;text-decoration-line:underline!important;text-decoration-thickness:var(--nfd-heading-border-size,3px)!important;text-underline-offset:.25em!important}.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style: solid\\\"],.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style:solid\\\"]{text-decoration-style:solid!important}.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style: dashed\\\"],.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style:dashed\\\"]{text-decoration-style:dashed!important}.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style: dotted\\\"],.is-style-nfd-heading-underline.wp-block-heading[style*=\\\"--nfd-heading-border-style:dotted\\\"]{text-decoration-style:dotted!important}.nfd-mask-fade-to-b>.wp-block-cover__background{-webkit-mask-image:linear-gradient(180deg,transparent 50%,#000 120%)!important;mask-image:linear-gradient(180deg,transparent 50%,#000 120%)!important}.nfd-mask-radial-center>.wp-block-cover__background{-webkit-mask-image:radial-gradient(circle,transparent -40%,rgba(0,0,0,.9) 58%)!important;mask-image:radial-gradient(circle,transparent -40%,rgba(0,0,0,.9) 58%)!important}p[style*=text-decoration]>a{color:inherit!important;text-decoration:inherit!important}.is-style-dots.nfd-text-left:before{padding-left:0!important}.nfd-h-full,.nfd-h-full>.components-resizable-box__container>img,.nfd-h-full>img{height:100%!important}.nfd-w-full,.nfd-w-full>.components-resizable-box__container>img,.nfd-w-full>img{width:100%!important}.nfd-backdrop-blur-sm{backdrop-filter:blur(4px)!important}.nfd-backdrop-blur-md{backdrop-filter:blur(8px)!important}:not(.editor-styles-wrapper) header:has(.nfd-absolute-header){position:sticky!important;top:0!important;z-index:1!important}.nfd-absolute-header:not([style*=margin]){margin:0!important}:not(.editor-styles-wrapper) .nfd-absolute-header:not([style*=padding]):not([class*=nfd-px-]):not([style*=padding]){padding-inline:var(--wndb--p)!important}body:not(.editor-styles-wrapper) .wp-site-blocks .nfd-transparent-header,body:not(.editor-styles-wrapper) .wp-site-blocks header:has(>:first-child.nfd-transparent-header){min-width:100%!important;position:absolute!important;z-index:1!important}body:not(.editor-styles-wrapper) .nfd-transparent-header{background-color:transparent!important}.editor-styles-wrapper .nfd-transparent-header{background-color:rgba(0,0,0,.2)!important}.wp-site-blocks .nfd-transparent-header+:not([style*=margin]),.wp-site-blocks>header:has(>:first-child.nfd-transparent-header)+:not([style*=margin]){margin-top:0!important}:is([style*=\\\"min-height:100vh\\\"]){min-height:calc(100vh - var(--wp-admin--admin-bar--height))!important}@supports (height:100dvh){:is([style*=\\\"height:100vh\\\"]){min-height:calc(100dvh - var(--wp-admin--admin-bar--height, 0px))!important}}.nfd-wk-search .wp-block-search__input{font-size:inherit!important;min-height:50px!important;padding:8px 16px!important}:where(.wp-block-search__input){border-radius:var(--wndb--border--radius--sm)!important}.nfd-stretch-cover-child,.nfd-stretch-cover-child .wp-block-cover__inner-container{display:flex!important;flex-direction:column!important}.nfd-stretch-cover-child .wp-block-cover__inner-container,.nfd-stretch-cover-child .wp-block-cover__inner-container>.nfd-pseudo-play-icon,.nfd-stretch-cover-child .wp-block-cover__inner-container>.wp-block-group{align-items:inherit!important;flex-grow:1!important;justify-content:inherit!important}.nfd-stretch-cover-child .wp-block-cover__inner-container>.wp-block-group,.nfd-stretch-cover-child .wp-block-cover__inner-container>p{width:100%!important}.nfd-container summary{line-height:1.5!important;padding-right:32px!important;position:relative!important}.nfd-container summary::marker{content:none!important}.nfd-container summary:before{align-items:center!important;background-color:var(--wndb--color--borders)!important;background-image:url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1wbHVzIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik01IDEyaDE0TTEyIDV2MTQiLz48L3N2Zz4=\\\")!important;background-position:50%!important;background-repeat:no-repeat!important;background-size:13px!important;border-radius:999px!important;content:\\\"\\\"!important;display:flex!important;height:1em!important;justify-content:center!important;opacity:.6!important;position:absolute!important;right:0!important;top:50%!important;transform:translateY(-50%)!important;width:1em!important}.nfd-container [open] summary{font-weight:700!important}.nfd-container [open] summary:before{opacity:1!important;transform:translateY(-50%) rotate(45deg)!important}.nfd-container summary:hover:before{opacity:1!important}.is-style-wide.wp-block-separator{width:100%!important}.nfd-aspect-video{aspect-ratio:16/9!important}.nfd-img-object-left img{-o-object-position:left!important;object-position:left!important}.nfd-img-object-right img{-o-object-position:right!important;object-position:right!important}.editor-styles-wrapper .wp-block-image.nfd-h-full>div{aspect-ratio:unset!important;height:100%!important;max-height:unset!important}.nfd-img-floating-photo{border:10px solid #fff!important;border-radius:8px!important;box-shadow:6px 6px 20px rgba(0,0,0,.2)!important;transform:rotate(5deg)!important}.nfd-yoast-toc ul li{list-style-type:disc!important}.nfd-yoast-toc{line-height:1.5!important}[class*=is-style-nfd-dots],[class*=is-style-nfd-waves]{padding-block:var(--wndb--p--sm)!important;position:relative!important}[class*=is-style-nfd-waves]{padding-block:var(--wndb--p--md)!important}.is-style-nfd-dots-bottom-right,.is-style-nfd-dots-top-right{padding-inline-end:var(--wndb--p--sm)!important}.is-style-nfd-dots-bottom-left,.is-style-nfd-dots-top-left{padding-inline-start:var(--wndb--p--sm)!important}.is-style-nfd-waves-bottom-right,.is-style-nfd-waves-top-right{padding-inline-end:var(--wndb--p--md)!important;padding-inline-start:var(--wndb--p--xs)!important}.is-style-nfd-waves-bottom-left,.is-style-nfd-waves-top-left{padding-inline-end:var(--wndb--p--xs)!important;padding-inline-start:var(--wndb--p--md)!important}[class*=is-style-nfd-dots]>img[class^=wp-image-],[class*=is-style-nfd-waves]>img[class^=wp-image-]{position:relative!important}[class*=is-style-nfd-dots]:before{background-image:radial-gradient(var(--wndb--color--primary) 2px,transparent 2px)!important;background-size:16px 16px!important;height:106px!important;opacity:1!important;width:106px!important}[class*=is-style-nfd-dots]:before,[class*=is-style-nfd-waves]:before{content:\\\"\\\"!important;display:block!important;position:absolute!important}[class*=is-style-nfd-waves]:before{--wndb--wave-width:380px;--wndb--wave-spacing:16px;--wndb--wave-thickness:8px;--wndb--wave-curve:0.85;background:color-mix(in srgb,var(--wndb--color--tertiary) 60%,#fff)!important;width:var(--wndb--wave-width)!important;z-index:1!important;--wndb--wave-radius:calc(var(--wndb--wave-spacing)*sqrt(var(--wndb--wave-curve) * var(--wndb--wave-curve) + 1) + var(--wndb--wave-thickness)/2);--wndb--wave-height:calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness));--wndb--wave-gap:14px;height:calc(var(--wndb--wave-height)*3 + var(--wndb--wave-gap)*2)!important;--wndb--y1:0px;--wndb--y2:calc(var(--wndb--wave-height) + var(--wndb--wave-gap));--wndb--y3:calc((var(--wndb--wave-height) + var(--wndb--wave-gap))*2);--wndb--wave-gradient:#0000 calc(99% - var(--wndb--wave-thickness)),#000 calc(101% - var(--wndb--wave-thickness)) 99%,#0000 101%;--wndb--mask-stripe-1-top:radial-gradient(var(--wndb--wave-radius) at left 50% top calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) 50% calc(var(--wndb--y1) + var(--wndb--wave-spacing)/2 + var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;--wndb--mask-stripe-1-bottom:radial-gradient(var(--wndb--wave-radius) at left 50% bottom calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) calc(50% - var(--wndb--wave-spacing)*2) calc(var(--wndb--y1) - var(--wndb--wave-spacing)/2 - var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;--wndb--mask-stripe-2-top:radial-gradient(var(--wndb--wave-radius) at left 50% top calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) 50% calc(var(--wndb--y2) + var(--wndb--wave-spacing)/2 + var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;--wndb--mask-stripe-2-bottom:radial-gradient(var(--wndb--wave-radius) at left 50% bottom calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) calc(50% - var(--wndb--wave-spacing)*2) calc(var(--wndb--y2) - var(--wndb--wave-spacing)/2 - var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;--wndb--mask-stripe-3-top:radial-gradient(var(--wndb--wave-radius) at left 50% top calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) 50% calc(var(--wndb--y3) + var(--wndb--wave-spacing)/2 + var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;--wndb--mask-stripe-3-bottom:radial-gradient(var(--wndb--wave-radius) at left 50% bottom calc(var(--wndb--wave-curve)*-1*var(--wndb--wave-spacing)),var(--wndb--wave-gradient)) calc(50% - var(--wndb--wave-spacing)*2) calc(var(--wndb--y3) - var(--wndb--wave-spacing)/2 - var(--wndb--wave-thickness)/2) /calc(var(--wndb--wave-spacing)*4) calc(var(--wndb--wave-spacing) + var(--wndb--wave-thickness)) repeat-x;mask:var(--wndb--mask-stripe-1-bottom),var(--wndb--mask-stripe-1-top),var(--wndb--mask-stripe-2-bottom),var(--wndb--mask-stripe-2-top),var(--wndb--mask-stripe-3-bottom),var(--wndb--mask-stripe-3-top)!important;-webkit-mask:var(--wndb--mask-stripe-1-bottom),var(--wndb--mask-stripe-1-top),var(--wndb--mask-stripe-2-bottom),var(--wndb--mask-stripe-2-top),var(--wndb--mask-stripe-3-bottom),var(--wndb--mask-stripe-3-top)!important;mask-repeat:repeat-x!important;-webkit-mask-repeat:repeat-x!important}.is-style-nfd-dots-bottom-right:before,.is-style-nfd-waves-bottom-right:before{bottom:0!important;right:0!important}.is-style-nfd-dots-bottom-left:before,.is-style-nfd-waves-bottom-left:before{bottom:0!important;left:0!important}.is-style-nfd-dots-top-left:before,.is-style-nfd-waves-top-left:before{left:0!important;top:0!important}.is-style-nfd-dots-top-right:before,.is-style-nfd-waves-top-right:before{right:0!important;top:0!important}.nfd-hover-settings .components-heading{width:100%!important}.nfd-hoverable{transition:color .15s ease,background-color .15s ease,text-decoration-color .15s ease!important}.nfd-hoverable.nfd-hover-text:hover{color:var(--nfd-hover-text)!important}.nfd-hoverable.nfd-hover-bg:hover{background-color:var(--nfd-hover-bg)!important}@media (max-width:782px){.md\\\\:nfd-order-2{order:2!important}.md\\\\:nfd-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.md\\\\:nfd-flex{display:flex!important}.md\\\\:nfd-hidden{display:none!important}.md\\\\:nfd-basis-full{flex-basis:100%!important}.md\\\\:nfd-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.md\\\\:nfd-flex-col{flex-direction:column!important}.md\\\\:nfd-flex-wrap{flex-wrap:wrap!important}.md\\\\:nfd-items-start{align-items:flex-start!important}.md\\\\:nfd-justify-start{justify-content:flex-start!important}.md\\\\:nfd-justify-end{justify-content:flex-end!important}.md\\\\:nfd-justify-center{justify-content:center!important}.md\\\\:nfd-gap-0{gap:0!important}.md\\\\:nfd-gap-4{gap:1rem!important}.md\\\\:nfd-gap-5{gap:1.25rem!important}.md\\\\:nfd-gap-8{gap:2rem!important}.md\\\\:nfd-self-start{align-self:flex-start!important}.md\\\\:nfd-rounded-lg:not([style*=-radius]){border-radius:.5rem!important}.md\\\\:nfd-border-none{border-style:none!important}.md\\\\:nfd-p-0:not([style*=padding]){padding:0!important}.md\\\\:nfd-p-4:not([style*=padding]){padding:1rem!important}.md\\\\:nfd-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.md\\\\:nfd-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.md\\\\:nfd-text-left{text-align:left!important}.md\\\\:nfd-text-center{text-align:center!important}}','auto'),(3737797,'newfold_features','a:4:{s:8:\"patterns\";b:1;s:11:\"performance\";b:1;s:10:\"helpCenter\";b:1;s:7:\"staging\";b:1;}','on'),(3737798,'newfold_active_modules','a:18:{s:4:\"data\";b:1;s:13:\"wp-module-pls\";b:1;s:9:\"installer\";b:1;s:2:\"ai\";b:1;s:18:\"wp-module-htaccess\";b:1;s:16:\"wp-module-survey\";b:1;s:8:\"facebook\";b:1;s:9:\"migration\";b:1;s:11:\"coming-soon\";b:1;s:9:\"ecommerce\";b:1;s:10:\"global-ctb\";b:1;s:11:\"marketplace\";b:1;s:10:\"next-steps\";b:1;s:13:\"notifications\";b:1;s:10:\"onboarding\";b:1;s:16:\"secure-passwords\";b:1;s:19:\"wp-module-solutions\";b:1;s:3:\"sso\";b:1;}','on'),(3737796,'nfd_data_connection_attempts','0','auto'),(3167510,'allow_major_auto_core_updates','true','yes'),(3167511,'auto_update_core_major','enabled','yes'),(3167512,'auto_update_plugin','true','yes'),(3167513,'auto_update_plugins','a:0:{}','off'),(3167514,'auto_update_theme','true','yes'),(3167515,'auto_update_themes','a:45:{i:0;s:15:\"accesspress-ray\";i:1;s:11:\"adventurous\";i:2;s:10:\"alexandria\";i:3;s:6:\"annina\";i:4;s:12:\"asteria-lite\";i:5;s:6:\"author\";i:6;s:11:\"baskerville\";i:7;s:7:\"bellini\";i:8;s:5:\"britt\";i:9;s:11:\"butterbelly\";i:10;s:8:\"colormag\";i:11;s:25:\"construction-landing-page\";i:12;s:9:\"creattica\";i:13;s:9:\"customizr\";i:14;s:5:\"ember\";i:15;s:6:\"enigma\";i:16;s:4:\"flat\";i:17;s:6:\"hueman\";i:18;s:4:\"kale\";i:19;s:14:\"maskitto-light\";i:20;s:6:\"monaco\";i:21;s:5:\"nulis\";i:22;s:11:\"olsen-light\";i:23;s:8:\"parallax\";i:24;s:4:\"plum\";i:25;s:4:\"poet\";i:26;s:4:\"saga\";i:27;s:9:\"skt-white\";i:28;s:9:\"supernova\";i:29;s:13:\"twentyfifteen\";i:30;s:14:\"twentyfourteen\";i:31;s:14:\"twentynineteen\";i:32;s:14:\"twentythirteen\";i:33;s:12:\"twentytwelve\";i:34;s:12:\"twentytwenty\";i:35;s:16:\"twentytwentyfive\";i:36;s:16:\"twentytwentyfour\";i:37;s:15:\"twentytwentyone\";i:38;s:17:\"twentytwentythree\";i:39;s:15:\"twentytwentytwo\";i:40;s:7:\"vantage\";i:41;s:8:\"weblizar\";i:42;s:14:\"wp-clean-green\";i:43;s:4:\"yarn\";i:44;s:4:\"zeal\";}','off'),(1870935,'widget_britt_about','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1870936,'widget_britt_recent_posts_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1870937,'widget_britt_video','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1870938,'theme_mods_britt','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"hide_featured_cats\";i:1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:50;}}','yes'),(3205315,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"26.9\";}','auto'),(2837753,'widget_jetpack_simple_payments_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3561119,'odyssey_stats_admin_asset_cache_buster','{\"cache_buster\":\"424694a051d\",\"cached_at\":1767460777208}','off'),(1949215,'mm_cache_settings','a:2:{s:4:\"page\";s:8:\"disabled\";s:7:\"browser\";s:8:\"disabled\";}','yes'),(2683613,'jetpack_protect_blocked_attempts','8344','off'),(1672311,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2051627,'disabled_likes','0','yes'),(1672312,'wp_page_for_privacy_policy','0','yes'),(1672313,'show_comments_cookies_opt_in','1','yes'),(1672314,'admin_email_lifespan','1784164313','yes'),(3561470,'so_css_output_location','file','auto'),(3561471,'so_css_version','1.6.5','auto'),(3167627,'ms_was_installed_on','1719073586','yes'),(3167628,'metaslider_new_user','new','yes'),(3167653,'nimble_version_upgraded_from','1.9.11','no'),(3275747,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(3561100,'jetpack_waf_needs_update','','auto'),(3204674,'jp_sync_last_success_sync','1772759503.6586','off'),(3205357,'jp_sync_last_success_immediate-send','1771193045.0569','off'),(3205354,'jpsq_sync-1721509721.529798-221806-3','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:48:\"jetpack_sync_settings_custom_queue_table_enabled\";i:1;s:1:\"0\";i:2;i:1;}i:2;i:0;i:3;d:1721509721.5296230316162109375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:270:\"https://www.monicarenata.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=zRtnIb%5Ecln8Y9%25Z3%21huqYH%289%40pLg%25XSe%3A1%3A0×tamp=1721509720&nonce=ObP4AkBk6I&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=8ItKQnSe7%2Bf%2Fjm9ghxyPIxZGYos%3D\";}}','no'),(3205355,'jpsq_sync-1721509721.530974-221806-4','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:44:\"jetpack_sync_settings_wpcom_rest_api_enabled\";i:1;s:1:\"0\";i:2;i:0;}i:2;i:0;i:3;d:1721509721.5308520793914794921875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:270:\"https://www.monicarenata.com/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=zRtnIb%5Ecln8Y9%25Z3%21huqYH%289%40pLg%25XSe%3A1%3A0×tamp=1721509720&nonce=ObP4AkBk6I&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=8ItKQnSe7%2Bf%2Fjm9ghxyPIxZGYos%3D\";}}','no'),(3327627,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"d4c194055311dd6a9e111c5556cddc2a\";s:6:\"blocks\";a:7:{s:32:\"0368537a03d4b05ed11f802c802c5153\";s:0:\"\";s:32:\"500888137eafa12a508de2c588d9ffdd\";s:46:\":root :where(.wp-block-icon svg){width: 24px;}\";s:32:\"a6036e6eb2ad2df7ed8860b807868647\";s:0:\"\";s:32:\"3b46efc0a10c1dae38f584ad199c3544\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:32:\"ab4df16c9e454bfed8a404309545590d\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}\";s:32:\"68ec5cad52d993402775a7503ba9efb7\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:32:\"b8b4aa19e69b9b2de0f5c27097467bd6\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(3204637,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','auto'),(3204649,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','on'),(3204641,'jetpack_sync_settings_custom_queue_table_enabled','1','on'),(3204642,'widget_wpcom_instagram_widget','a:3:{i:1;a:0:{}s:5:\"__i__\";a:4:{s:8:\"token_id\";i:0;s:5:\"title\";s:9:\"Instagram\";s:7:\"columns\";i:2;s:5:\"count\";i:6;}s:12:\"_multiwidget\";i:1;}','auto'),(3204652,'jetpack_package_versions','a:6:{s:6:\"backup\";s:6:\"4.2.39\";s:10:\"connection\";s:5:\"7.0.0\";s:4:\"sync\";s:6:\"4.26.0\";s:6:\"search\";s:6:\"0.55.2\";s:10:\"videopress\";s:6:\"0.33.4\";s:5:\"stats\";s:6:\"0.17.8\";}','auto'),(3204660,'jetpack_sync_settings_full_sync_send_duration','9','on'),(3204661,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','on'),(3204662,'jetpack_sync_settings_checksum_disable','0','on'),(3204663,'jetpack_sync_settings_wpcom_rest_api_enabled','1','on'),(3220651,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1722820755.6484129428863525390625;}','auto'),(3204672,'_transient_timeout_dirsize_cache','2036827252','off'),(3204673,'_transient_dirsize_cache','a:154:{s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/11\";i:138969;s:54:\"/home4/monicare/public_html/wp-content/uploads/2023/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2023\";i:138969;s:65:\"/home4/monicare/public_html/wp-content/uploads/siteorigin-widgets\";i:3919;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/05\";i:5983496;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/02\";i:6388842;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/04\";i:2653040;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/03\";i:1695104;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/01\";i:2286288;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/08\";i:2402804;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2014/06\";i:301196;s:51:\"/home4/monicare/public_html/wp-content/uploads/2014\";i:21710770;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/12\";i:927076;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2020/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2020\";i:927076;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/01\";i:8179996;s:54:\"/home4/monicare/public_html/wp-content/uploads/2024/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2024\";i:8179996;s:62:\"/home4/monicare/public_html/wp-content/uploads/bws-custom-code\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/04\";i:360682;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/01\";i:1046347;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2018/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2018\";i:1407029;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/09\";i:1643008;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/05\";i:4745021;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/10\";i:3000045;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/07\";i:848168;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/12\";i:5584455;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/04\";i:9524707;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/08\";i:3034686;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/11\";i:16723401;s:54:\"/home4/monicare/public_html/wp-content/uploads/2013/06\";i:1735124;s:51:\"/home4/monicare/public_html/wp-content/uploads/2013\";i:46838615;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/12\";i:1699264;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/03\";i:992640;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2016/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2016\";i:2691904;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/12\";i:12380;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2015/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2015\";i:12380;s:61:\"/home4/monicare/public_html/wp-content/uploads/lana-downloads\";i:188;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/10\";i:190184;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2022/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2022\";i:190184;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/05\";i:1561002;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/02\";i:16789124;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/07\";i:1804312;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/04\";i:17661907;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/03\";i:3569556;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/01\";i:9607835;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/08\";i:7224049;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2017/06\";i:3639878;s:51:\"/home4/monicare/public_html/wp-content/uploads/2017\";i:61857663;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/09\";i:2128810;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2021/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2021\";i:2128810;s:59:\"/home4/monicare/public_html/wp-content/uploads/file-manager\";i:161544;s:60:\"/home4/monicare/public_html/wp-content/uploads/photo-gallery\";i:0;s:52:\"/home4/monicare/public_html/wp-content/uploads/redux\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/09\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/05\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/02\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/10\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/07\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/12\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/04\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/03\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/01\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/08\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/11\";i:0;s:54:\"/home4/monicare/public_html/wp-content/uploads/2019/06\";i:0;s:51:\"/home4/monicare/public_html/wp-content/uploads/2019\";i:0;s:46:\"/home4/monicare/public_html/wp-content/uploads\";i:146249047;}','off'),(3169076,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":6,\"critical\":1}','yes'),(3737807,'nfd_utilities_js','(()=>{var l=class{constructor({clientId:e,...n}={}){this.options={activeClass:\\\"nfd-wb-animated-in\\\",root:null,rootMargin:\\\"0px\\\",threshold:0,...n}}observeElements(e,n=null,t=!1){if(!(\\\"IntersectionObserver\\\"in window)||!e?.length||document.documentElement.classList.contains(\\\"block-editor-block-preview__content-iframe\\\"))return;function o(c,s){this._mutationCallback(c,s,n)}let i=new IntersectionObserver(this._handleIntersection.bind(this),this.options),r=new MutationObserver(o.bind(this)),b=new MutationObserver(this._handleClassMutation.bind(this));e.forEach(c=>{let s=c;c.classList.contains(\\\"nfd-wb-reveal-right\\\")&&(s=c.parentElement),i.observe(s),t&&(b.observe(s,{attributes:!0,attributeFilter:[\\\"class\\\"]}),r.observe(s,{attributes:!0,attributeFilter:[\\\"class\\\"]}))})}_handleIntersection(e,n){e.forEach(t=>{t.isIntersecting&&(t.target.classList.add(this.options.activeClass),t.target.querySelectorAll(\\\".nfd-wb-animate\\\").forEach(o=>{o.classList.add(this.options.activeClass)}),n.unobserve(t.target))})}_handleClassMutation(e){e.forEach(n=>{if(n?.type===\\\"attributes\\\"){let t=n.target;t.classList.contains(\\\"nfd-wb-animated-in\\\")||t.classList.add(\\\"nfd-wb-animated-in\\\")}})}_mutationCallback(e,n,t=null){e.forEach(o=>{if(o?.type===\\\"attributes\\\"){let i=o.target;t&&t===i.getAttribute(\\\"data-block\\\")&&(i.getAttribute(\\\"data-replay-animation\\\")===null&&(i.setAttribute(\\\"data-replay-animation\\\",!0),requestAnimationFrame(()=>{i.removeAttribute(\\\"data-replay-animation\\\")})),n.disconnect())}})}};document.addEventListener(\\\"DOMContentLoaded\\\",()=>{d()});document.addEventListener(\\\"wonder-blocks/toolbar-button-added\\\",()=>{d()});document.addEventListener(\\\"wonder-blocks/animation-changed\\\",a=>{let e=a?.detail?.clientId;d(e)});document.addEventListener(\\\"wonder-blocks/block-order-changed\\\",()=>{d()});window.onload=function(){d()};function d(a=null){let e=document.body?.classList.contains(\\\"block-editor-page\\\")||!!a||document.body?.classList.contains(\\\"block-editor-iframe__body\\\"),n=e?document.querySelector(\\\".interface-interface-skeleton__content\\\"):null,t=new l({root:n,threshold:0});requestAnimationFrame(()=>{let o=Array.from(document.getElementsByClassName(\\\"nfd-wb-animate\\\"));t.observeElements(o,a,e)})}function u(a){(a||document).querySelectorAll(\\\".wp-block-group.nfd-is-linked-group:not(.group-linked), .wp-block-cover.nfd-is-linked-group:not(.group-linked)\\\").forEach(t=>{var o=t.getAttribute(\\\"data-link-url\\\")||t.dataset.linkUrl;if(!o||!t.parentNode)return;let i=o.trim();o=/^(https?:)\\\\/\\\\//i.test(i)?i:\\\"http://\\\"+i;let r=document.createElement(\\\"a\\\");r.href=o,(t.getAttribute(\\\"data-link-blank\\\")===\\\"1\\\"||t.dataset.linkBlank===\\\"1\\\")&&(r.target=\\\"_blank\\\",r.rel=\\\"noopener\\\"),t.classList.add(\\\"group-linked\\\"),[...t.attributes].map(({name:c,value:s})=>{r.setAttribute(c,s)}),r.innerHTML=t.innerHTML,t.parentNode.replaceChild(r,t)}),p()}function p(){document.addEventListener(\\\"click\\\",a=>{a.target.closest(\\\".block-editor-page .wp-block-group.nfd-is-linked-group, .block-editor-page .wp-block-cover.nfd-is-linked-group\\\")&&a.preventDefault()},{capture:!0,passive:!1})}document.readyState===\\\"loading\\\"?document.addEventListener(\\\"DOMContentLoaded\\\",()=>u(document)):u(document);document.addEventListener(\\\"wonder-blocks/group-links-apply\\\",a=>{u(a?.detail?.ctx||document)});})();\n','auto'),(3739029,'nfd_next_steps','a:6:{s:2:\"id\";s:10:\"blog_setup\";s:4:\"type\";s:4:\"blog\";s:5:\"label\";s:10:\"Blog Setup\";s:11:\"description\";s:56:\"Get your blog up and running with these essential steps:\";s:7:\"version\";s:5:\"1.4.5\";s:6:\"tracks\";a:3:{i:0;a:5:{s:2:\"id\";s:16:\"blog_build_track\";s:5:\"label\";s:5:\"Build\";s:4:\"open\";b:1;s:11:\"description\";s:0:\"\";s:8:\"sections\";a:5:{i:0;a:14:{s:2:\"id\";s:16:\"basic_blog_setup\";s:5:\"label\";s:16:\"Basic blog setup\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:1;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:1:{i:0;a:8:{s:2:\"id\";s:16:\"blog_quick_setup\";s:5:\"title\";s:11:\"Quick Setup\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:38:\"{siteUrl}/wp-admin/options-general.php\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:3:{s:12:\"data-test-id\";s:16:\"blog_quick_setup\";s:11:\"data-nfd-id\";s:16:\"blog_quick_start\";s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:1;a:14:{s:2:\"id\";s:14:\"customize_blog\";s:5:\"label\";s:19:\"Customize your blog\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:1;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:4:{i:0;a:8:{s:2:\"id\";s:16:\"blog_upload_logo\";s:5:\"title\";s:11:\"Upload Logo\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:89:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=template&area=header&template=index\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:24:\"blog_choose_colors_fonts\";s:5:\"title\";s:23:\"Choose Colors and Fonts\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:46:\"{siteUrl}/wp-admin/site-editor.php?p=%2Fstyles\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:21:\"blog_customize_header\";s:5:\"title\";s:16:\"Customize Header\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:89:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=template&area=header&template=index\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:3;a:8:{s:2:\"id\";s:21:\"blog_customize_footer\";s:5:\"title\";s:16:\"Customize Footer\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:89:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=template&area=footer&template=index\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:2;a:14:{s:2:\"id\";s:14:\"create_content\";s:5:\"label\";s:14:\"Create content\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:15:\"blog_first_post\";s:5:\"title\";s:24:\"Add Your First Blog Post\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:31:\"{siteUrl}/wp-admin/post-new.php\";s:6:\"status\";s:4:\"done\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:15:\"blog_about_page\";s:5:\"title\";s:22:\"Create an \"About\" Page\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:87:\"{siteUrl}/wp-admin/post-new.php?post_type=page&wb-library=patterns&wb-category=features\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:23:\"blog_set_featured_image\";s:5:\"title\";s:33:\"Set a Featured Image for One Post\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:46:\"{siteUrl}/wp-admin/post.php?post=1&action=edit\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:3;a:14:{s:2:\"id\";s:16:\"setup_navigation\";s:5:\"label\";s:17:\"Set up navigation\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:14:\"blog_add_pages\";s:5:\"title\";s:40:\"Add Pages for Home, Blog, About, Contact\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:42:\"{siteUrl}/wp-admin/edit.php?post_type=page\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:24:\"blog_create_primary_menu\";s:5:\"title\";s:21:\"Create a Primary Menu\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:48:\"{siteUrl}/wp-admin/site-editor.php?p=/navigation\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:23:\"blog_create_footer_menu\";s:5:\"title\";s:20:\"Create a Footer Menu\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:91:\"{siteUrl}/wp-admin/site-editor.php?p=%2Fpattern&postType=wp_template_part&categoryId=footer\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:4;a:14:{s:2:\"id\";s:21:\"setup_essential_pages\";s:5:\"label\";s:22:\"Set up essential pages\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:19:\"blog_privacy_policy\";s:5:\"title\";s:20:\"Add a Privacy Policy\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:38:\"{siteUrl}/wp-admin/options-privacy.php\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:21:\"blog_terms_conditions\";s:5:\"title\";s:22:\"Add Terms & Conditions\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:68:\"{siteUrl}/wp-admin/post-new.php?wb-library=patterns&wb-category=text\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:28:\"blog_accessibility_statement\";s:5:\"title\";s:30:\"Add an Accessibility Statement\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:68:\"{siteUrl}/wp-admin/post-new.php?wb-library=patterns&wb-category=text\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}}}i:1;a:5:{s:2:\"id\";s:16:\"blog_brand_track\";s:5:\"label\";s:5:\"Brand\";s:4:\"open\";b:0;s:11:\"description\";s:0:\"\";s:8:\"sections\";a:3:{i:0;a:14:{s:2:\"id\";s:23:\"first_audience_building\";s:5:\"label\";s:29:\"First Audience-Building Steps\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:28:\"blog_welcome_subscribe_popup\";s:5:\"title\";s:29:\"Add a Welcome-Subscribe Popup\";s:11:\"description\";s:38:\"Convert visitors to email subscribers.\";s:4:\"href\";s:70:\"https://www.bluehost.com/blog/improve-conversion-rate-website-pop-ups/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:1;a:8:{s:2:\"id\";s:34:\"blog_customize_notification_emails\";s:5:\"title\";s:29:\"Customize Notification Emails\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:78:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=email-templates\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:26:\"blog_connect_jetpack_stats\";s:5:\"title\";s:45:\"Connect Jetpack Stats (or Google Analytics 4)\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:97:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=admin.php%3Fpage%3Dstats\";s:6:\"status\";s:4:\"done\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:1;a:14:{s:2:\"id\";s:19:\"blog_promote_social\";s:5:\"label\";s:15:\"Social presence\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:21:\"blog_connect_facebook\";s:5:\"title\";s:34:\"Connect Facebook Page Auto-Sharing\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:106:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=admin.php%3Fpage%3Djetpack-social\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:23:\"blog_add_social_sharing\";s:5:\"title\";s:26:\"Add Social-Sharing Buttons\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:164:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=site-editor.php%3Fp%3D%252Fstyles%26section%3D%252Fblocks%252Fjetpack%25252Fsharing-buttons\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:22:\"blog_embed_social_feed\";s:5:\"title\";s:37:\"Embed a Social Media Feed on Homepage\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:111:\"https://www.bluehost.com/blog/how-to-incorporate-a-social-media-marketing-strategy-with-your-wordpress-website/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}}}i:2;a:14:{s:2:\"id\";s:16:\"blog_promote_seo\";s:5:\"label\";s:16:\"SEO & visibility\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:17:\"blog_optimize_seo\";s:5:\"title\";s:20:\"Optimize On-Page SEO\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:72:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=yoast-seo\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:26:\"blog_submit_search_console\";s:5:\"title\";s:36:\"Submit Site to Google Search Console\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:75:\"https://www.bluehost.com/blog/how-to-submit-your-website-to-search-engines/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:2;a:8:{s:2:\"id\";s:21:\"blog_generate_sitemap\";s:5:\"title\";s:29:\"Generate & Submit XML Sitemap\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:80:\"https://www.bluehost.com/blog/what-is-a-sitemap-how-it-helps-seo-and-navigation/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}}}}}i:2;a:5:{s:2:\"id\";s:15:\"blog_grow_track\";s:5:\"label\";s:4:\"Grow\";s:4:\"open\";b:0;s:11:\"description\";s:0:\"\";s:8:\"sections\";a:5:{i:0;a:14:{s:2:\"id\";s:25:\"enhance_reader_experience\";s:5:\"label\";s:25:\"Enhance reader experience\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:4:{i:0;a:8:{s:2:\"id\";s:20:\"blog_enable_comments\";s:5:\"title\";s:31:\"Enable & Style Comments Section\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:70:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=akismet\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:27:\"blog_customize_author_boxes\";s:5:\"title\";s:30:\"Customize Author/Profile Boxes\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:52:\"{siteUrl}/wp-admin/site-editor.php?p=%2F&canvas=edit\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:25:\"blog_display_testimonials\";s:5:\"title\";s:44:\"Display Testimonials or Highlighted Comments\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:52:\"https://www.bluehost.com/blog/customer-testimonials/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:3;a:8:{s:2:\"id\";s:19:\"blog_create_favicon\";s:5:\"title\";s:16:\"Create a Favicon\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:65:\"{siteUrl}/wp-admin/customize.php?autofocus[section]=title_tagline\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:4;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:1;a:14:{s:2:\"id\";s:31:\"advanced_promotion_partnerships\";s:5:\"label\";s:38:\"Advanced social & influencer marketing\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:4:{i:0;a:8:{s:2:\"id\";s:21:\"blog_build_newsletter\";s:5:\"title\";s:25:\"Build an Email Newsletter\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:64:\"https://www.bluehost.com/blog/how-to-create-an-email-newsletter/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:1;a:8:{s:2:\"id\";s:24:\"blog_draft_outreach_list\";s:5:\"title\";s:44:\"Draft an Influencer/Guest-Post Outreach List\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:45:\"https://www.bluehost.com/blog/guest-blogging/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:2;a:8:{s:2:\"id\";s:17:\"blog_run_first_ad\";s:5:\"title\";s:41:\"Run pillar article promotion on social ad\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:60:\"https://www.bluehost.com/blog/social-media-advertising-tips/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:3;a:8:{s:2:\"id\";s:24:\"blog_track_utm_campaigns\";s:5:\"title\";s:30:\"Track Campaigns with UTM Links\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:63:\"https://www.bluehost.com/blog/how-to-create-a-content-calendar/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:4;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}}}i:2;a:14:{s:2:\"id\";s:24:\"content_traffic_strategy\";s:5:\"label\";s:26:\"Content & traffic strategy\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:24:\"blog_plan_content_series\";s:5:\"title\";s:43:\"Plan a Content Series or Editorial Calendar\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:63:\"https://www.bluehost.com/blog/how-to-create-a-content-calendar/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:1;a:8:{s:2:\"id\";s:31:\"blog_implement_internal_linking\";s:5:\"title\";s:35:\"Implement Internal-Linking Strategy\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:53:\"https://www.bluehost.com/blog/internal-linking-guide/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}i:2;a:8:{s:2:\"id\";s:26:\"blog_install_yoast_premium\";s:5:\"title\";s:42:\"Install Yoast Premium for Advanced Schemas\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:72:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=yoast-seo\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}i:3;a:14:{s:2:\"id\";s:25:\"blog_performance_security\";s:5:\"label\";s:22:\"Performance & security\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:3:{i:0;a:8:{s:2:\"id\";s:18:\"blog_speed_up_site\";s:5:\"title\";s:32:\"Speed-up Site with Jetpack Boost\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:98:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=my-jetpack%23%2Fadd-boost\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:1;a:8:{s:2:\"id\";s:24:\"blog_enable_auto_backups\";s:5:\"title\";s:40:\"Enable Automatic Backups & Update Alerts\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:106:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=admin.php%3Fpage%3Djetpack-backup\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:2;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}i:2;a:8:{s:2:\"id\";s:24:\"blog_create_staging_site\";s:5:\"title\";s:21:\"Create a Staging Site\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:122:\"https://www.bluehost.com/blog/what-is-a-staging-site-and-how-to-create-a-bluehost-staging-site-for-your-wordpress-website/\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:3;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:4:\"true\";}}}}i:4;a:14:{s:2:\"id\";s:14:\"blog_analytics\";s:5:\"label\";s:14:\"Blog analytics\";s:11:\"description\";s:0:\"\";s:4:\"open\";b:0;s:3:\"cta\";N;s:6:\"status\";s:3:\"new\";s:14:\"date_completed\";N;s:4:\"icon\";s:0:\"\";s:11:\"modal_title\";s:0:\"\";s:10:\"modal_desc\";s:0:\"\";s:17:\"complete_on_event\";s:0:\"\";s:9:\"mandatory\";b:0;s:12:\"completed_by\";s:0:\"\";s:5:\"tasks\";a:1:{i:0;a:8:{s:2:\"id\";s:20:\"blog_monitor_traffic\";s:5:\"title\";s:28:\"Monitor Traffic & Engagement\";s:11:\"description\";s:0:\"\";s:4:\"href\";s:97:\"{siteUrl}/wp-admin/admin.php?page=redirect-check&type=plugin&p=jetpack&r=admin.php%3Fpage%3Dstats\";s:6:\"status\";s:3:\"new\";s:8:\"priority\";i:1;s:6:\"source\";s:20:\"wp-module-next-steps\";s:15:\"data_attributes\";a:1:{s:26:\"data-nfd-complete-on-click\";s:5:\"false\";}}}}}}}}','auto'),(3745712,'bluehost_plugin_install_date','1407582777','on'),(3924684,'wpseo_llmstxt','a:7:{s:23:\"llms_txt_selection_mode\";s:4:\"auto\";s:13:\"about_us_page\";i:0;s:12:\"contact_page\";i:0;s:10:\"terms_page\";i:0;s:19:\"privacy_policy_page\";i:0;s:9:\"shop_page\";i:0;s:20:\"other_included_pages\";a:0:{}}','auto'),(3924685,'wpseo_tracking_only','a:3:{s:25:\"task_list_first_opened_on\";s:0:\"\";s:22:\"task_first_actioned_on\";s:0:\"\";s:36:\"frontend_inspector_first_actioned_on\";s:0:\"\";}','auto'),(3763943,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.4\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','on'),(3739020,'nfd_data_module_version','2.8.7','on'),(3739021,'nfd_ecommerce_module_version','1.10.4','on'),(3737788,'nfd_image_optimization','a:8:{s:7:\"enabled\";b:1;s:17:\"bulk_optimization\";b:1;s:34:\"prefer_optimized_image_when_exists\";b:1;s:30:\"auto_optimized_uploaded_images\";a:2:{s:7:\"enabled\";b:1;s:26:\"auto_delete_original_image\";b:0;}s:12:\"lazy_loading\";a:1:{s:7:\"enabled\";b:1;}s:13:\"banned_status\";b:0;s:13:\"monthly_usage\";a:2:{s:19:\"monthlyRequestCount\";i:0;s:19:\"maxRequestsPerMonth\";i:100000;}s:10:\"cloudflare\";a:2:{s:6:\"polish\";a:2:{s:5:\"value\";b:1;s:8:\"user_set\";b:0;}s:6:\"mirage\";a:2:{s:5:\"value\";b:1;s:8:\"user_set\";b:0;}}}','auto'),(3737789,'nfd_fonts_optimization','a:1:{s:10:\"cloudflare\";a:2:{s:5:\"fonts\";a:2:{s:5:\"value\";b:1;s:8:\"user_set\";b:0;}s:12:\"last_updated\";i:1772759277;}}','auto'),(3737790,'nfd_module_htaccess_saved_state','a:6:{s:6:\"blocks\";a:3:{s:17:\"nfd.cache.browser\";a:2:{s:4:\"body\";s:642:\"# BEGIN Newfold Browser Cache\n<IfModule mod_expires.c>\n ExpiresActive On\n ExpiresDefault \"access plus 24 hours\"\n ExpiresByType text/html \"access plus 2 hours\"\n ExpiresByType image/jpg \"access plus 24 hours\"\n ExpiresByType image/jpeg \"access plus 24 hours\"\n ExpiresByType image/gif \"access plus 24 hours\"\n ExpiresByType image/png \"access plus 24 hours\"\n ExpiresByType image/webp \"access plus 24 hours\"\n ExpiresByType text/css \"access plus 24 hours\"\n ExpiresByType text/javascript \"access plus 24 hours\"\n ExpiresByType application/pdf \"access plus 1 week\"\n ExpiresByType image/x-icon \"access plus 1 year\"\n</IfModule>\n# END Newfold Browser Cache\";s:8:\"priority\";i:300;}s:18:\"nfd.skip404.static\";a:2:{s:4:\"body\";s:786:\"# BEGIN Newfold Skip 404 Handling for Static Files\n<IfModule mod_rewrite.c>\n RewriteEngine On\n RewriteCond %{REQUEST_FILENAME} !-f\n RewriteCond %{REQUEST_FILENAME} !-d\n RewriteCond %{REQUEST_URI} !(robots\\.txt|ads\\.txt|[a-z0-9_\\-]*sitemap[a-z0-9_\\.\\-]*\\.(xml|xsl|html)(\\.gz)?)\n RewriteCond %{REQUEST_URI} \\.(css|htc|less|js|js2|js3|js4|html|htm|rtf|rtx|txt|xsd|xsl|xml|asf|asx|wax|wmv|wmx|avi|avif|avifs|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|webp|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|webm|mpp|otf|_otf|odb|odc|odf|odg|odp|ods|odt|ogg|ogv|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|_ttf|wav|wma|wri|woff|woff2|xla|xls|xlsx|xlt|xlw|zip)$ [NC]\n RewriteRule .* - [L]\n</IfModule>\n# END Newfold Skip 404 Handling for Static Files\";s:8:\"priority\";i:300;}s:34:\"nfd.cloudflare.optimization.header\";a:2:{s:4:\"body\";s:864:\"# BEGIN Newfold CF Optimization Header\n<IfModule mod_rewrite.c>\n RewriteEngine On\n # Skip setting for admin/API routes\n RewriteCond %{REQUEST_URI} !/wp-admin/ [NC]\n RewriteCond %{REQUEST_URI} !/wp-login\\.php [NC]\n RewriteCond %{REQUEST_URI} !/wp-json/ [NC]\n RewriteCond %{REQUEST_URI} !/xmlrpc\\.php [NC]\n RewriteCond %{REQUEST_URI} !/admin-ajax\\.php [NC]\n # Skip if the exact cookie and value are already present\n RewriteCond %{HTTP_COOKIE} !(^|;\\s*)nfd\\-enable\\-cf\\-opt\\=63a6825d27cab0f204d3b602 [NC]\n # Set env var if we passed all conditions\n RewriteRule .* - [E=CF_OPT:1]\n</IfModule>\n<IfModule mod_headers.c>\n # Set cookie only if env var is present (i.e., exact cookie not found)\n Header set Set-Cookie \"nfd-enable-cf-opt=63a6825d27cab0f204d3b602; path=/; Max-Age=86400; HttpOnly\" env=CF_OPT\n</IfModule>\n# END Newfold CF Optimization Header\";s:8:\"priority\";i:300;}}s:4:\"body\";s:2296:\"# BEGIN Newfold Browser Cache\n<IfModule mod_expires.c>\n ExpiresActive On\n ExpiresDefault \"access plus 24 hours\"\n ExpiresByType text/html \"access plus 2 hours\"\n ExpiresByType image/jpg \"access plus 24 hours\"\n ExpiresByType image/jpeg \"access plus 24 hours\"\n ExpiresByType image/gif \"access plus 24 hours\"\n ExpiresByType image/png \"access plus 24 hours\"\n ExpiresByType image/webp \"access plus 24 hours\"\n ExpiresByType text/css \"access plus 24 hours\"\n ExpiresByType text/javascript \"access plus 24 hours\"\n ExpiresByType application/pdf \"access plus 1 week\"\n ExpiresByType image/x-icon \"access plus 1 year\"\n</IfModule>\n# END Newfold Browser Cache\n\n# BEGIN Newfold CF Optimization Header\n<IfModule mod_rewrite.c>\n RewriteEngine On\n # Skip setting for admin/API routes\n RewriteCond %{REQUEST_URI} !/wp-admin/ [NC]\n RewriteCond %{REQUEST_URI} !/wp-login\\.php [NC]\n RewriteCond %{REQUEST_URI} !/wp-json/ [NC]\n RewriteCond %{REQUEST_URI} !/xmlrpc\\.php [NC]\n RewriteCond %{REQUEST_URI} !/admin-ajax\\.php [NC]\n # Skip if the exact cookie and value are already present\n RewriteCond %{HTTP_COOKIE} !(^|;\\s*)nfd\\-enable\\-cf\\-opt\\=63a6825d27cab0f204d3b602 [NC]\n # Set env var if we passed all conditions\n RewriteRule .* - [E=CF_OPT:1]\n</IfModule>\n<IfModule mod_headers.c>\n # Set cookie only if env var is present (i.e., exact cookie not found)\n Header set Set-Cookie \"nfd-enable-cf-opt=63a6825d27cab0f204d3b602; path=/; Max-Age=86400; HttpOnly\" env=CF_OPT\n</IfModule>\n# END Newfold CF Optimization Header\n\n# BEGIN Newfold Skip 404 Handling for Static Files\n<IfModule mod_rewrite.c>\n RewriteEngine On\n RewriteCond %{REQUEST_FILENAME} !-f\n RewriteCond %{REQUEST_FILENAME} !-d\n RewriteCond %{REQUEST_URI} !(robots\\.txt|ads\\.txt|[a-z0-9_\\-]*sitemap[a-z0-9_\\.\\-]*\\.(xml|xsl|html)(\\.gz)?)\n RewriteCond %{REQUEST_URI} \\.(css|htc|less|js|js2|js3|js4|html|htm|rtf|rtx|txt|xsd|xsl|xml|asf|asx|wax|wmv|wmx|avi|avif|avifs|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|webp|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|webm|mpp|otf|_otf|odb|odc|odf|odg|odp|ods|odt|ogg|ogv|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|_ttf|wav|wma|wri|woff|woff2|xla|xls|xlsx|xlt|xlw|zip)$ [NC]\n RewriteRule .* - [L]\n</IfModule>\n# END Newfold Skip 404 Handling for Static Files\";s:8:\"checksum\";s:64:\"7c4c00bb13ff8fc0007dfeb8a60d323160d7dc88d31e715d26d48f8bfc9cc3ce\";s:4:\"host\";s:20:\"www.monicarenata.com\";s:7:\"version\";s:5:\"1.0.0\";s:9:\"updatedAt\";i:1763121977;}','auto'),(3737808,'nfd_utilities_last_refresh_time','1771222483','auto'),(3737809,'nfd_link_prefetch_settings','a:7:{s:15:\"activeOnDesktop\";b:0;s:8:\"behavior\";s:10:\"mouseHover\";s:10:\"hoverDelay\";i:60;s:12:\"instantClick\";b:0;s:14:\"activeOnMobile\";b:0;s:14:\"mobileBehavior\";s:10:\"touchstart\";s:14:\"ignoreKeywords\";s:3:\"#,?\";}','auto'),(3739022,'bluehost_plugin_version','4.7.2','on'),(3737945,'metaslider_plugin_version','3.105.0','auto'),(3737946,'metaslider_plugin_path','ml-slider/ml-slider.php','auto'),(3738995,'nfd_data_token','H+NEs7Bu4VOcdJGWziEUPU90RHROSGFLdDR5LzlNUGFhcmxWZVZTS3FEY211Nkt0UVVYWFZjMldnMGZtUmwzcVhzN0JheVptcFM2Q1h0MytkZ2UvVEZORVd4dTdJd0hnUVNHY0kvYjlMcDVTdldXaFpHWGtCM3RYczRaaTI5a09TeDZIYXZPUWlLcFg5OVJQTmoxNWljcSt1Qmo0SFZ3STd5TmJwUHB0RlNSVlpMblozTnBUZGN0SkUySmZvbFMwZGVJN1FyNWJtaXZ2bFVOT0JsSS92cThpUlRiMEN0R3dWZFR4Qm9Rdm1NRUZaaDdSbkRPdzRYZWR0Y2U0b3R2OThFNGQ3a1U9','auto'),(3891105,'jetpack_sync_settings_sync_actions_blacklist','a:0:{}','on'),(3924617,'mnx_wp_auth','[]','auto'),(3941147,'_site_transient_timeout_browser_87532f5c229247f5166d216fad1d829f','1782701555','off'),(3941148,'_site_transient_browser_87532f5c229247f5166d216fad1d829f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.85\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3924590,'88c29368e21ad55be3bd109cc6b38a2a4320bb44_paused_extensions','a:1:{s:6:\"plugin\";a:1:{s:13:\"wordpress-seo\";a:4:{s:4:\"type\";i:1;s:7:\"message\";s:1024:\"Uncaught RuntimeException: Composer detected issues in your platform: Your Composer dependencies require a PHP version \">= 7.4.0\". You are running 7.3.33. in /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php:22\nStack trace:\n#0 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php(25): require()\n#1 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/autoload.php(22): ComposerAutoloaderInitf5e005b8bffa35368fcae0b8114b69c4::getLoader()\n#2 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/wp-seo-main.php(75): require(\'/home4/monicare...\')\n#3 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/wp-seo.php(50): require_once(\'/home4/monicare...\')\n#4 /home4/monicare/public_html/wp-settings.php(560): include_once(\'/home4/monicare...\')\n#5 /home4/monicare/public_html/wp-config.php(94): require_once(\'/home4/monicare...\')\n#6 /home4/monicare/public_html/wp-load.php(50): require_once(\'/home4/monicare...\'\";s:4:\"file\";s:95:\"/home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php\";s:4:\"line\";i:22;}}}','off'),(3924595,'0a085697ff597c1f9d92dd34c9d42a9674e51242_paused_extensions','a:1:{s:6:\"plugin\";a:1:{s:13:\"wordpress-seo\";a:4:{s:4:\"type\";i:1;s:7:\"message\";s:1024:\"Uncaught RuntimeException: Composer detected issues in your platform: Your Composer dependencies require a PHP version \">= 7.4.0\". You are running 7.3.33. in /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php:22\nStack trace:\n#0 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/autoload_real.php(25): require()\n#1 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/autoload.php(22): ComposerAutoloaderInitf5e005b8bffa35368fcae0b8114b69c4::getLoader()\n#2 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/wp-seo-main.php(75): require(\'/home4/monicare...\')\n#3 /home4/monicare/public_html/wp-content/plugins/wordpress-seo/wp-seo.php(50): require_once(\'/home4/monicare...\')\n#4 /home4/monicare/public_html/wp-settings.php(560): include_once(\'/home4/monicare...\')\n#5 /home4/monicare/public_html/wp-config.php(94): require_once(\'/home4/monicare...\')\n#6 /home4/monicare/public_html/wp-load.php(50): require_once(\'/home4/monicare...\'\";s:4:\"file\";s:95:\"/home4/monicare/public_html/wp-content/plugins/wordpress-seo/vendor/composer/platform_check.php\";s:4:\"line\";i:22;}}}','off'),(3797373,'nfd_module_survey_queue','a:0:{}','auto'),(3924668,'jetpack_sync_dedicated_spawn_lock_expires','1772759562.2525','no'),(3924388,'jetpack_nonce_1771232593_JGxUVAWXyH','1771232593','no'),(3924390,'jetpack_nonce_1771232593_clS07Pvtop','1771232594','no'),(3830175,'recovery_mode_email_last_sent','1772753153','auto'),(3941317,'_site_transient_timeout_wp_theme_files_patterns-fb50d7960544dfe5a3ffb1e8036accbd','1782174576','off'),(3941318,'_site_transient_wp_theme_files_patterns-fb50d7960544dfe5a3ffb1e8036accbd','a:2:{s:7:\"version\";s:4:\"1.03\";s:8:\"patterns\";a:0:{}}','off'),(3940722,'_site_transient_timeout_php_check_b2d470a00ad958d6fbddca15b0988775','1782466124','off'),(3940723,'_site_transient_php_check_b2d470a00ad958d6fbddca15b0988775','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(3889652,'nfd_module_onboarding_compatibility_results','a:2:{s:6:\"status\";s:10:\"compatible\";s:9:\"timestamp\";s:19:\"2026-02-03 15:04:03\";}','auto'),(3939429,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1782173425;s:7:\"checked\";a:45:{s:15:\"accesspress-ray\";s:6:\"1.19.5\";s:11:\"adventurous\";s:5:\"3.6.1\";s:10:\"alexandria\";s:5:\"2.5.6\";s:6:\"annina\";s:5:\"1.9.9\";s:12:\"asteria-lite\";s:5:\"1.0.3\";s:6:\"author\";s:4:\"1.56\";s:11:\"baskerville\";s:5:\"2.3.1\";s:7:\"bellini\";s:6:\"1.45.2\";s:5:\"britt\";s:4:\"1.03\";s:11:\"butterbelly\";s:5:\"1.1.8\";s:8:\"colormag\";s:5:\"4.2.0\";s:25:\"construction-landing-page\";s:5:\"1.4.3\";s:9:\"creattica\";s:6:\"1.12.2\";s:9:\"customizr\";s:6:\"4.4.24\";s:5:\"ember\";s:5:\"1.1.4\";s:6:\"enigma\";s:4:\"7.73\";s:4:\"flat\";s:5:\"1.7.7\";s:6:\"hueman\";s:6:\"3.7.27\";s:4:\"kale\";s:5:\"2.8.2\";s:14:\"maskitto-light\";s:5:\"3.4.0\";s:6:\"monaco\";s:5:\"1.5.4\";s:5:\"nulis\";s:5:\"2.0.1\";s:11:\"olsen-light\";s:5:\"1.7.1\";s:8:\"parallax\";s:3:\"1.7\";s:4:\"plum\";s:5:\"1.4.7\";s:4:\"poet\";s:3:\"1.2\";s:4:\"saga\";s:5:\"1.0.2\";s:9:\"skt-white\";s:3:\"2.1\";s:9:\"supernova\";s:5:\"2.1.0\";s:13:\"twentyfifteen\";s:3:\"4.2\";s:14:\"twentyfourteen\";s:3:\"4.5\";s:14:\"twentynineteen\";s:3:\"3.3\";s:14:\"twentythirteen\";s:3:\"4.6\";s:12:\"twentytwelve\";s:3:\"4.8\";s:12:\"twentytwenty\";s:3:\"3.1\";s:16:\"twentytwentyfive\";s:3:\"1.5\";s:16:\"twentytwentyfour\";s:3:\"1.5\";s:15:\"twentytwentyone\";s:3:\"2.8\";s:17:\"twentytwentythree\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"2.1\";s:7:\"vantage\";s:7:\"1.20.33\";s:8:\"weblizar\";s:3:\"3.8\";s:14:\"wp-clean-green\";s:5:\"1.0.5\";s:4:\"yarn\";s:5:\"1.0.0\";s:4:\"zeal\";s:5:\"1.0.8\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:40:{s:11:\"adventurous\";a:6:{s:5:\"theme\";s:11:\"adventurous\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:41:\"https://wordpress.org/themes/adventurous/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/adventurous.3.6.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"alexandria\";a:6:{s:5:\"theme\";s:10:\"alexandria\";s:11:\"new_version\";s:5:\"2.5.6\";s:3:\"url\";s:40:\"https://wordpress.org/themes/alexandria/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/alexandria.2.5.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:6:\"annina\";a:6:{s:5:\"theme\";s:6:\"annina\";s:11:\"new_version\";s:5:\"1.9.9\";s:3:\"url\";s:36:\"https://wordpress.org/themes/annina/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/annina.1.9.9.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"asteria-lite\";a:6:{s:5:\"theme\";s:12:\"asteria-lite\";s:11:\"new_version\";s:5:\"1.0.3\";s:3:\"url\";s:42:\"https://wordpress.org/themes/asteria-lite/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/asteria-lite.1.0.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:6:\"author\";a:6:{s:5:\"theme\";s:6:\"author\";s:11:\"new_version\";s:4:\"1.56\";s:3:\"url\";s:36:\"https://wordpress.org/themes/author/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/author.1.56.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:6:\"5.6.40\";}s:11:\"baskerville\";a:6:{s:5:\"theme\";s:11:\"baskerville\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:41:\"https://wordpress.org/themes/baskerville/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/baskerville.2.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.4\";}s:7:\"bellini\";a:6:{s:5:\"theme\";s:7:\"bellini\";s:11:\"new_version\";s:6:\"1.45.2\";s:3:\"url\";s:37:\"https://wordpress.org/themes/bellini/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/bellini.1.45.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:5:\"britt\";a:6:{s:5:\"theme\";s:5:\"britt\";s:11:\"new_version\";s:4:\"1.03\";s:3:\"url\";s:35:\"https://wordpress.org/themes/britt/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/britt.1.03.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:11:\"butterbelly\";a:6:{s:5:\"theme\";s:11:\"butterbelly\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:41:\"https://wordpress.org/themes/butterbelly/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/butterbelly.1.1.8.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:8:\"colormag\";a:6:{s:5:\"theme\";s:8:\"colormag\";s:11:\"new_version\";s:5:\"4.2.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/colormag/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/colormag.4.2.0.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:25:\"construction-landing-page\";a:6:{s:5:\"theme\";s:25:\"construction-landing-page\";s:11:\"new_version\";s:5:\"1.4.3\";s:3:\"url\";s:55:\"https://wordpress.org/themes/construction-landing-page/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/theme/construction-landing-page.1.4.3.zip\";s:8:\"requires\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:9:\"creattica\";a:6:{s:5:\"theme\";s:9:\"creattica\";s:11:\"new_version\";s:6:\"1.12.2\";s:3:\"url\";s:39:\"https://wordpress.org/themes/creattica/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/creattica.1.12.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:9:\"customizr\";a:6:{s:5:\"theme\";s:9:\"customizr\";s:11:\"new_version\";s:6:\"4.4.24\";s:3:\"url\";s:39:\"https://wordpress.org/themes/customizr/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/customizr.4.4.24.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.3\";}s:5:\"ember\";a:6:{s:5:\"theme\";s:5:\"ember\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/ember/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/ember.1.1.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:6:\"enigma\";a:6:{s:5:\"theme\";s:6:\"enigma\";s:11:\"new_version\";s:4:\"7.73\";s:3:\"url\";s:36:\"https://wordpress.org/themes/enigma/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/enigma.7.73.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"7.4\";}s:6:\"hueman\";a:6:{s:5:\"theme\";s:6:\"hueman\";s:11:\"new_version\";s:6:\"3.7.27\";s:3:\"url\";s:36:\"https://wordpress.org/themes/hueman/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/hueman.3.7.27.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.3\";}s:4:\"kale\";a:6:{s:5:\"theme\";s:4:\"kale\";s:11:\"new_version\";s:5:\"2.8.2\";s:3:\"url\";s:34:\"https://wordpress.org/themes/kale/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/kale.2.8.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"monaco\";a:6:{s:5:\"theme\";s:6:\"monaco\";s:11:\"new_version\";s:5:\"1.5.4\";s:3:\"url\";s:36:\"https://wordpress.org/themes/monaco/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/monaco.1.5.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:5:\"nulis\";a:6:{s:5:\"theme\";s:5:\"nulis\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:35:\"https://wordpress.org/themes/nulis/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/nulis.2.0.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:11:\"olsen-light\";a:6:{s:5:\"theme\";s:11:\"olsen-light\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:41:\"https://wordpress.org/themes/olsen-light/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/olsen-light.1.7.1.zip\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:4:\"plum\";a:6:{s:5:\"theme\";s:4:\"plum\";s:11:\"new_version\";s:5:\"1.4.7\";s:3:\"url\";s:34:\"https://wordpress.org/themes/plum/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/plum.1.4.7.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:4:\"poet\";a:6:{s:5:\"theme\";s:4:\"poet\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:34:\"https://wordpress.org/themes/poet/\";s:7:\"package\";s:50:\"https://downloads.wordpress.org/theme/poet.1.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:4:\"saga\";a:6:{s:5:\"theme\";s:4:\"saga\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:34:\"https://wordpress.org/themes/saga/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/saga.1.0.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:9:\"skt-white\";a:6:{s:5:\"theme\";s:9:\"skt-white\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:39:\"https://wordpress.org/themes/skt-white/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/skt-white.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"supernova\";a:6:{s:5:\"theme\";s:9:\"supernova\";s:11:\"new_version\";s:5:\"2.1.0\";s:3:\"url\";s:39:\"https://wordpress.org/themes/supernova/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/supernova.2.1.0.zip\";s:8:\"requires\";s:5:\"4.4.0\";s:12:\"requires_php\";b:0;}s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"4.2\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.4.2.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.4.5.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.3.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentythirteen\";a:6:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"4.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.4.6.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwelve\";a:6:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"4.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.4.8.zip\";s:8:\"requires\";s:3:\"3.5\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.5.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.5.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:7:\"vantage\";a:6:{s:5:\"theme\";s:7:\"vantage\";s:11:\"new_version\";s:7:\"1.20.33\";s:3:\"url\";s:37:\"https://wordpress.org/themes/vantage/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/vantage.1.20.33.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:14:\"wp-clean-green\";a:6:{s:5:\"theme\";s:14:\"wp-clean-green\";s:11:\"new_version\";s:5:\"1.0.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/wp-clean-green/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/wp-clean-green.1.0.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:4:\"yarn\";a:6:{s:5:\"theme\";s:4:\"yarn\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:34:\"https://wordpress.org/themes/yarn/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/yarn.1.0.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:4:\"zeal\";a:6:{s:5:\"theme\";s:4:\"zeal\";s:11:\"new_version\";s:5:\"1.0.8\";s:3:\"url\";s:34:\"https://wordpress.org/themes/zeal/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/zeal.1.0.8.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','off'),(3936238,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-7.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-7.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"7.0\";s:7:\"version\";s:3:\"7.0\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1782173424;s:15:\"version_checked\";s:3:\"7.0\";s:12:\"translations\";a:0:{}}','off'),(3830241,'ce4wp_ignore_review_notice','1','auto'),(3941274,'_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1782197142','off'),(3941275,'_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1782153942','off'),(3941276,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1782197142','off'),(3941277,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/06/open-web-merch/\'>Browse the New Mercantile Swag Store</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/06/kim-parsell-wcus-scholarship/\'>Kim Parsell Memorial Scholarship Opens for WordCamp US 2026</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/06/open-web-merch/\'>WordPress.org blog: Browse the New Mercantile Swag Store</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/navigating-burnout-in-the-age-of-ai-driven-development/\'>Open Channels FM: Navigating Burnout in the Age of AI-Driven Development</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2026/06/hill-stepper/\'>Matt: Hill For A Stepper</a></li></ul></div>','off'),(3941278,'can_compress_scripts','0','on'),(3941279,'_transient_timeout_filemanager_cancel_lk_popup_2','1784746314','off'),(3941280,'_transient_filemanager_cancel_lk_popup_2','filemanager_cancel_lk_popup_2','off'),(3941281,'filemanager_email_verified_2','yes','auto'),(3941320,'_transient_timeout_mojo_plugin_assets','1782195024','off'),(3941321,'_transient_mojo_plugin_assets','a:6:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:16:{s:4:\"date\";s:29:\"Tue, 23 Jun 2026 00:10:24 GMT\";s:12:\"content-type\";s:16:\"application/json\";s:13:\"last-modified\";s:29:\"Tue, 04 Feb 2025 16:14:03 GMT\";s:17:\"x-rgw-object-type\";s:6:\"Normal\";s:16:\"x-amz-request-id\";s:49:\"tx00000b291db94c1897c6d-00694182d1-5e6d6fcc-nyc3b\";s:4:\"vary\";s:69:\"Origin, Access-Control-Request-Headers, Access-Control-Request-Method\";s:25:\"strict-transport-security\";s:44:\"max-age=15552000; includeSubDomains; preload\";s:13:\"x-do-cdn-uuid\";s:36:\"db0a15ac-e200-43bb-b780-a78e60e36e05\";s:13:\"cache-control\";s:13:\"max-age=86400\";s:10:\"set-cookie\";s:311:\"__cf_bm=zg3.lTbow4whC2MdsmtWe2Mtakt.hj8DB07ME3MUV9U-1782173424.7335758-1.0.1.1-FbCtX6st3fDR6l4pBemcBMOBXXuoEjEaMJoSg7GRiZTyZSi78MuCmVLpASGNBJxcLr0heygsh8Ma63uDj5ZmisMqYB5CKmVjRtO45RRDrPpF0YG8uPmxhNvFha2Kqpin; HttpOnly; SameSite=None; Secure; Path=/; Domain=cdn.hiive.space; Expires=Tue, 23 Jun 2026 00:40:24 GMT\";s:3:\"age\";s:5:\"61641\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:4:\"etag\";s:36:\"W/\"22e52ce24641d89f7dcb5d8cc9bbbd28\"\";s:16:\"content-encoding\";s:4:\"gzip\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"a0ff45009f8aa733-LAX\";}}s:4:\"body\";s:792:\"{\n \"endurance-page-cache\": {\n \"constant\": \"EPC_VERSION\",\n \"version\": \"2.2.2\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-page-cache/production/endurance-page-cache.php\",\n \"destination\": \"/mu-plugins/endurance-page-cache.php\"\n },\n \"endurance-browser-cache\": {\n \"constant\": \"EBC_VERSION\",\n \"version\": \"0.4\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-browser-cache/production/endurance-browser-cache.php\",\n \"destination\": \"/mu-plugins/endurance-browser-cache.php\"\n },\n \"endurance-php-edge\": {\n \"constant\": \"EPE_VERSION\",\n \"version\": \"0.1\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-php-edge/production/endurance-php-edge.php\",\n \"destination\": \"/mu-plugins/endurance-php-edge.php\"\n }\n}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:199:\"zg3.lTbow4whC2MdsmtWe2Mtakt.hj8DB07ME3MUV9U-1782173424.7335758-1.0.1.1-FbCtX6st3fDR6l4pBemcBMOBXXuoEjEaMJoSg7GRiZTyZSi78MuCmVLpASGNBJxcLr0heygsh8Ma63uDj5ZmisMqYB5CKmVjRtO45RRDrPpF0YG8uPmxhNvFha2Kqpin\";s:7:\"expires\";i:1782175224;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"cdn.hiive.space\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;s:11:\"\0*\0response\";O:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:792:\"{\n \"endurance-page-cache\": {\n \"constant\": \"EPC_VERSION\",\n \"version\": \"2.2.2\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-page-cache/production/endurance-page-cache.php\",\n \"destination\": \"/mu-plugins/endurance-page-cache.php\"\n },\n \"endurance-browser-cache\": {\n \"constant\": \"EBC_VERSION\",\n \"version\": \"0.4\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-browser-cache/production/endurance-browser-cache.php\",\n \"destination\": \"/mu-plugins/endurance-browser-cache.php\"\n },\n \"endurance-php-edge\": {\n \"constant\": \"EPE_VERSION\",\n \"version\": \"0.1\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-php-edge/production/endurance-php-edge.php\",\n \"destination\": \"/mu-plugins/endurance-php-edge.php\"\n }\n}\n\";s:3:\"raw\";s:1779:\"HTTP/1.1 200 OK\r\nDate: Tue, 23 Jun 2026 00:10:24 GMT\r\nContent-Type: application/json\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nlast-modified: Tue, 04 Feb 2025 16:14:03 GMT\r\nx-rgw-object-type: Normal\r\nx-amz-request-id: tx00000b291db94c1897c6d-00694182d1-5e6d6fcc-nyc3b\r\nvary: Origin, Access-Control-Request-Headers, Access-Control-Request-Method\r\nstrict-transport-security: max-age=15552000; includeSubDomains; preload\r\nx-do-cdn-uuid: db0a15ac-e200-43bb-b780-a78e60e36e05\r\ncache-control: max-age=86400\r\nset-cookie: __cf_bm=zg3.lTbow4whC2MdsmtWe2Mtakt.hj8DB07ME3MUV9U-1782173424.7335758-1.0.1.1-FbCtX6st3fDR6l4pBemcBMOBXXuoEjEaMJoSg7GRiZTyZSi78MuCmVLpASGNBJxcLr0heygsh8Ma63uDj5ZmisMqYB5CKmVjRtO45RRDrPpF0YG8uPmxhNvFha2Kqpin; HttpOnly; SameSite=None; Secure; Path=/; Domain=cdn.hiive.space; Expires=Tue, 23 Jun 2026 00:40:24 GMT\r\nAge: 61641\r\ncf-cache-status: HIT\r\netag: W/\"22e52ce24641d89f7dcb5d8cc9bbbd28\"\r\nContent-Encoding: gzip\r\nServer: cloudflare\r\nCF-RAY: a0ff45009f8aa733-LAX\r\n\r\n{\n \"endurance-page-cache\": {\n \"constant\": \"EPC_VERSION\",\n \"version\": \"2.2.2\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-page-cache/production/endurance-page-cache.php\",\n \"destination\": \"/mu-plugins/endurance-page-cache.php\"\n },\n \"endurance-browser-cache\": {\n \"constant\": \"EBC_VERSION\",\n \"version\": \"0.4\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-browser-cache/production/endurance-browser-cache.php\",\n \"destination\": \"/mu-plugins/endurance-browser-cache.php\"\n },\n \"endurance-php-edge\": {\n \"constant\": \"EPE_VERSION\",\n \"version\": \"0.1\",\n \"source\": \"https://raw.githubusercontent.com/bluehost/endurance-php-edge/production/endurance-php-edge.php\",\n \"destination\": \"/mu-plugins/endurance-php-edge.php\"\n }\n}\n\";s:7:\"headers\";O:31:\"WpOrg\\Requests\\Response\\Headers\":1:{s:7:\"\0*\0data\";a:16:{s:4:\"date\";a:1:{i:0;s:29:\"Tue, 23 Jun 2026 00:10:24 GMT\";}s:12:\"content-type\";a:1:{i:0;s:16:\"application/json\";}s:13:\"last-modified\";a:1:{i:0;s:29:\"Tue, 04 Feb 2025 16:14:03 GMT\";}s:17:\"x-rgw-object-type\";a:1:{i:0;s:6:\"Normal\";}s:16:\"x-amz-request-id\";a:1:{i:0;s:49:\"tx00000b291db94c1897c6d-00694182d1-5e6d6fcc-nyc3b\";}s:4:\"vary\";a:1:{i:0;s:69:\"Origin, Access-Control-Request-Headers, Access-Control-Request-Method\";}s:25:\"strict-transport-security\";a:1:{i:0;s:44:\"max-age=15552000; includeSubDomains; preload\";}s:13:\"x-do-cdn-uuid\";a:1:{i:0;s:36:\"db0a15ac-e200-43bb-b780-a78e60e36e05\";}s:13:\"cache-control\";a:1:{i:0;s:13:\"max-age=86400\";}s:10:\"set-cookie\";a:1:{i:0;s:311:\"__cf_bm=zg3.lTbow4whC2MdsmtWe2Mtakt.hj8DB07ME3MUV9U-1782173424.7335758-1.0.1.1-FbCtX6st3fDR6l4pBemcBMOBXXuoEjEaMJoSg7GRiZTyZSi78MuCmVLpASGNBJxcLr0heygsh8Ma63uDj5ZmisMqYB5CKmVjRtO45RRDrPpF0YG8uPmxhNvFha2Kqpin; HttpOnly; SameSite=None; Secure; Path=/; Domain=cdn.hiive.space; Expires=Tue, 23 Jun 2026 00:40:24 GMT\";}s:3:\"age\";a:1:{i:0;s:5:\"61641\";}s:15:\"cf-cache-status\";a:1:{i:0;s:3:\"HIT\";}s:4:\"etag\";a:1:{i:0;s:36:\"W/\"22e52ce24641d89f7dcb5d8cc9bbbd28\"\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"a0ff45009f8aa733-LAX\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:48:\"https://cdn.hiive.space/bluehost/mu-plugins.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:25:\"WpOrg\\Requests\\Cookie\\Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"__cf_bm\";O:21:\"WpOrg\\Requests\\Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:199:\"zg3.lTbow4whC2MdsmtWe2Mtakt.hj8DB07ME3MUV9U-1782173424.7335758-1.0.1.1-FbCtX6st3fDR6l4pBemcBMOBXXuoEjEaMJoSg7GRiZTyZSi78MuCmVLpASGNBJxcLr0heygsh8Ma63uDj5ZmisMqYB5CKmVjRtO45RRDrPpF0YG8uPmxhNvFha2Kqpin\";s:10:\"attributes\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"cdn.hiive.space\";s:7:\"expires\";i:1782175224;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1782173424;s:11:\"last-access\";i:1782173424;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1782173424;}}}}s:11:\"\0*\0filename\";N;}}','off'),(3941322,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1782173424;s:8:\"response\";a:14:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.7.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"15.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.15.9.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.9\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:23:\"ml-slider/ml-slider.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/ml-slider\";s:4:\"slug\";s:9:\"ml-slider\";s:6:\"plugin\";s:23:\"ml-slider/ml-slider.php\";s:11:\"new_version\";s:7:\"3.110.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/ml-slider/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/ml-slider.3.110.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/ml-slider/assets/icon.svg?rev=3568997\";s:3:\"svg\";s:54:\"https://ps.w.org/ml-slider/assets/icon.svg?rev=3568997\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/ml-slider/assets/banner-1544x500.png?rev=3568997\";s:2:\"1x\";s:64:\"https://ps.w.org/ml-slider/assets/banner-772x250.png?rev=3568997\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:33:\"nimble-builder/nimble-builder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/nimble-builder\";s:4:\"slug\";s:14:\"nimble-builder\";s:6:\"plugin\";s:33:\"nimble-builder/nimble-builder.php\";s:11:\"new_version\";s:5:\"3.3.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/nimble-builder/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/nimble-builder.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/nimble-builder/assets/icon.svg?rev=1986014\";s:3:\"svg\";s:59:\"https://ps.w.org/nimble-builder/assets/icon.svg?rev=1986014\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/nimble-builder/assets/banner-1544x500.jpg?rev=1986014\";s:2:\"1x\";s:69:\"https://ps.w.org/nimble-builder/assets/banner-772x250.jpg?rev=1986014\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.5\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/page-links-to\";s:4:\"slug\";s:13:\"page-links-to\";s:6:\"plugin\";s:31:\"page-links-to/page-links-to.php\";s:11:\"new_version\";s:5:\"3.4.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/page-links-to.3.4.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://s.w.org/plugins/geopattern-icon/page-links-to_fafafa.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/page-links-to/assets/banner-1544x500.png?rev=1889711\";s:2:\"1x\";s:68:\"https://ps.w.org/page-links-to/assets/banner-772x250.png?rev=1889711\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:31:\"photo-gallery/photo-gallery.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/photo-gallery\";s:4:\"slug\";s:13:\"photo-gallery\";s:6:\"plugin\";s:31:\"photo-gallery/photo-gallery.php\";s:11:\"new_version\";s:6:\"1.8.42\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/photo-gallery/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/photo-gallery.1.8.42.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/photo-gallery/assets/icon-256x256.png?rev=2068745\";s:2:\"1x\";s:66:\"https://ps.w.org/photo-gallery/assets/icon-128x128.png?rev=2068745\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/photo-gallery/assets/banner-1544x500.png?rev=2068745\";s:2:\"1x\";s:68:\"https://ps.w.org/photo-gallery/assets/banner-772x250.png?rev=2068745\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:25:\"sblpq/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:25:\"sblpq/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:25:\"dvkid/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:25:\"dvkid/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:25:\"nvdaw/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:25:\"nvdaw/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:17:\"so-css/so-css.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:20:\"w.org/plugins/so-css\";s:4:\"slug\";s:6:\"so-css\";s:6:\"plugin\";s:17:\"so-css/so-css.php\";s:11:\"new_version\";s:5:\"1.6.6\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/so-css/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/so-css.1.6.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/so-css/assets/icon.svg?rev=2556879\";s:3:\"svg\";s:51:\"https://ps.w.org/so-css/assets/icon.svg?rev=2556879\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/so-css/assets/banner-1544x500.png?rev=2559919\";s:2:\"1x\";s:61:\"https://ps.w.org/so-css/assets/banner-772x250.png?rev=2559919\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:5:\"7.0.0\";s:16:\"requires_plugins\";a:0:{}}s:39:\"so-widgets-bundle/so-widgets-bundle.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/so-widgets-bundle\";s:4:\"slug\";s:17:\"so-widgets-bundle\";s:6:\"plugin\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:11:\"new_version\";s:6:\"1.73.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/so-widgets-bundle/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.73.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/so-widgets-bundle/assets/icon.svg?rev=2556862\";s:3:\"svg\";s:62:\"https://ps.w.org/so-widgets-bundle/assets/icon.svg?rev=2556862\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/so-widgets-bundle/assets/banner-1544x500.png?rev=2556862\";s:2:\"1x\";s:72:\"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.png?rev=2556862\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:5:\"7.0.0\";s:16:\"requires_plugins\";a:0:{}}s:35:\"jekyll-exporter/jekyll-exporter.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/jekyll-exporter\";s:4:\"slug\";s:15:\"jekyll-exporter\";s:6:\"plugin\";s:35:\"jekyll-exporter/jekyll-exporter.php\";s:11:\"new_version\";s:5:\"4.0.4\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/jekyll-exporter/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/jekyll-exporter.4.0.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/jekyll-exporter/assets/icon-256x256.png?rev=3073421\";s:2:\"1x\";s:68:\"https://ps.w.org/jekyll-exporter/assets/icon-128x128.png?rev=3073421\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/jekyll-exporter/assets/banner-1544x500.png?rev=3073421\";s:2:\"1x\";s:70:\"https://ps.w.org/jekyll-exporter/assets/banner-772x250.png?rev=3073421\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"8.2\";s:16:\"requires_plugins\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"27.8\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.27.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3419908\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3419908\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/black-studio-tinymce-widget\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:6:\"plugin\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:11:\"new_version\";s:5:\"2.7.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/black-studio-tinymce-widget.2.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon.svg?rev=2627604\";s:3:\"svg\";s:72:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon.svg?rev=2627604\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-1544x500.png?rev=2627604\";s:2:\"1x\";s:82:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-772x250.png?rev=2627604\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";}s:37:\"blogger-importer/blogger-importer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/blogger-importer\";s:4:\"slug\";s:16:\"blogger-importer\";s:6:\"plugin\";s:37:\"blogger-importer/blogger-importer.php\";s:11:\"new_version\";s:5:\"0.9.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/blogger-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/blogger-importer.0.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/blogger-importer/assets/icon.svg?rev=2828582\";s:3:\"svg\";s:61:\"https://ps.w.org/blogger-importer/assets/icon.svg?rev=2828582\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/blogger-importer/assets/banner-772x250.png?rev=547650\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:41:\"contact-form-to-db/contact_form_to_db.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/contact-form-to-db\";s:4:\"slug\";s:18:\"contact-form-to-db\";s:6:\"plugin\";s:41:\"contact-form-to-db/contact_form_to_db.php\";s:11:\"new_version\";s:5:\"1.7.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/contact-form-to-db/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/contact-form-to-db.1.7.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/contact-form-to-db/assets/icon-128x128.gif?rev=2617080\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/contact-form-to-db/assets/banner-1544x500.jpg?rev=2312367\";s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-to-db/assets/banner-772x250.jpg?rev=2312367\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:51:\"disqus-conditional-load/disqus-conditional-load.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/disqus-conditional-load\";s:4:\"slug\";s:23:\"disqus-conditional-load\";s:6:\"plugin\";s:51:\"disqus-conditional-load/disqus-conditional-load.php\";s:11:\"new_version\";s:6:\"11.1.2\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/disqus-conditional-load/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/disqus-conditional-load.11.1.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/disqus-conditional-load/assets/icon-128x128.png?rev=1643519\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/disqus-conditional-load/assets/banner-772x250.png?rev=1027407\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"ember-companion/ember-companion.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/ember-companion\";s:4:\"slug\";s:15:\"ember-companion\";s:6:\"plugin\";s:35:\"ember-companion/ember-companion.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/ember-companion/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/ember-companion.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:59:\"https://s.w.org/plugins/geopattern-icon/ember-companion.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:21:\"hello-dolly/hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:21:\"hello-dolly/hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:37:\"homepage-control/homepage-control.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/homepage-control\";s:4:\"slug\";s:16:\"homepage-control\";s:6:\"plugin\";s:37:\"homepage-control/homepage-control.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/homepage-control/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/homepage-control.2.0.3.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:67:\"https://s.w.org/plugins/geopattern-icon/homepage-control_f8f8f8.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/homepage-control/assets/banner-1544x500.png?rev=877105\";s:2:\"1x\";s:70:\"https://ps.w.org/homepage-control/assets/banner-772x250.png?rev=877105\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.8.1\";}s:49:\"lana-downloads-manager/lana-downloads-manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/lana-downloads-manager\";s:4:\"slug\";s:22:\"lana-downloads-manager\";s:6:\"plugin\";s:49:\"lana-downloads-manager/lana-downloads-manager.php\";s:11:\"new_version\";s:6:\"1.12.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/lana-downloads-manager/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/lana-downloads-manager.1.12.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/lana-downloads-manager/assets/icon-128x128.jpg?rev=1512693\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/lana-downloads-manager/assets/banner-772x250.jpg?rev=1512693\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:25:\"so-masonry/so-masonry.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/so-masonry\";s:4:\"slug\";s:10:\"so-masonry\";s:6:\"plugin\";s:25:\"so-masonry/so-masonry.php\";s:11:\"new_version\";s:5:\"1.0.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/so-masonry/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/so-masonry.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/so-masonry.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"8.0.4\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}}s:7:\"checked\";a:36:{s:33:\"adsense-plugin/adsense-plugin.php\";s:4:\"1.50\";s:19:\"akismet/akismet.php\";s:3:\"5.6\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:5:\"2.7.3\";s:37:\"blogger-importer/blogger-importer.php\";s:5:\"0.9.3\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.7\";s:41:\"contact-form-to-db/contact_form_to_db.php\";s:5:\"1.7.4\";s:51:\"disqus-conditional-load/disqus-conditional-load.php\";s:6:\"11.1.2\";s:35:\"ember-companion/ember-companion.php\";s:5:\"1.0.0\";s:45:\"footer-cookie-script/footer-cookie-script.php\";s:3:\"1.0\";s:42:\"google-publisher/GooglePublisherPlugin.php\";s:5:\"1.2.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:21:\"hello-dolly/hello.php\";s:5:\"1.7.2\";s:37:\"homepage-control/homepage-control.php\";s:5:\"2.0.3\";s:33:\"impact-template-editor/impact.php\";s:5:\"1.5.4\";s:19:\"jetpack/jetpack.php\";s:4:\"15.5\";s:49:\"lana-downloads-manager/lana-downloads-manager.php\";s:6:\"1.12.0\";s:23:\"ml-slider/ml-slider.php\";s:7:\"3.105.0\";s:25:\"mini-loops/mini-loops.php\";s:5:\"1.3.1\";s:33:\"nimble-builder/nimble-builder.php\";s:5:\"3.3.4\";s:39:\"our-team-enhanced/our-team-showcase.php\";s:5:\"4.4.2\";s:31:\"page-links-to/page-links-to.php\";s:5:\"3.3.7\";s:31:\"photo-gallery/photo-gallery.php\";s:6:\"1.8.38\";s:25:\"sblpq/protect-uploads.php\";s:3:\"0.3\";s:25:\"dvkid/protect-uploads.php\";s:3:\"0.3\";s:25:\"nvdaw/protect-uploads.php\";s:3:\"0.3\";s:17:\"so-css/so-css.php\";s:5:\"1.6.5\";s:25:\"so-masonry/so-masonry.php\";s:5:\"1.0.3\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:6:\"1.71.0\";s:35:\"jekyll-exporter/jekyll-exporter.php\";s:5:\"3.1.1\";s:57:\"bluehost-wordpress-plugin--/bluehost-wordpress-plugin.php\";s:5:\"4.7.2\";s:25:\"wp-default/wp-default.php\";s:3:\"1.0\";s:42:\"spider-random-post_/Spider_Random_Post.php\";s:5:\"1.0.4\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"8.0.4\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"26.9\";s:17:\"zedity/zedity.php\";s:5:\"7.6.2\";s:33:\"zedity-premium/zedity-premium.php\";s:5:\"7.6.2\";}}','off'),(3941262,'_site_transient_timeout_browser_16fee37559dbd42b448204446d02089f','1782758467','off'),(3941263,'_site_transient_browser_16fee37559dbd42b448204446d02089f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"149.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3941264,'_site_transient_timeout_php_check_2cd6b574a37d822556e9c586248b843b','1782758467','off'),(3941265,'_site_transient_php_check_2cd6b574a37d822556e9c586248b843b','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(3941266,'_site_transient_timeout_community-events-ad8c8933a1146c9ea28155011ca3e5f9','1782197141','off'),(3941267,'_site_transient_community-events-ad8c8933a1146c9ea28155011ca3e5f9','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"59.152.1.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://us.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-16 09:00:00\";s:8:\"end_date\";s:19:\"2026-08-19 17:00:00\";s:20:\"start_unix_timestamp\";i:1786896000;s:18:\"end_unix_timestamp\";i:1787184000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Phoenix, Arizona\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.4483771000000018602804630063474178314208984375;s:9:\"longitude\";d:-112.0740373000000005276888259686529636383056640625;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Rajshahi 2026\";s:3:\"url\";s:35:\"https://rajshahi.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-02 00:00:00\";s:8:\"end_date\";s:19:\"2026-07-03 00:00:00\";s:20:\"start_unix_timestamp\";i:1782928800;s:18:\"end_unix_timestamp\";i:1783015200;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Rajshahi,Bangladesh\";s:7:\"country\";s:2:\"BD\";s:8:\"latitude\";d:24.374594900000001729267751215957105159759521484375;s:9:\"longitude\";d:88.6217391999999932750142761506140232086181640625;}}}}','off'),(3941268,'_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1782197141','off'),(3941269,'_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:6:{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:52:\"\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:4:{s:0:\"\";a:8:{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:59:\"The latest news about WordPress and the WordPress 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:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 13:32: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:\"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=7.1-alpha-62517\";s: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 \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:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?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: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:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s: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:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Browse the New Mercantile Swag Store\";s:7:\"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:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s: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 Jun 2026 15:07: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:1:{i:0;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20930\";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:\"Mercantile, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order […]\";s: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:\"jillq\";s: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:5580:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"2048\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&ssl=1\" alt=\"\" class=\"wp-image-20931\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=300%2C155&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=767%2C395&ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1024%2C528&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1536%2C791&ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"2048\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&ssl=1\" alt=\"\" class=\"wp-image-20932\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=300%2C117&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=768%2C300&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1024%2C400&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1536%2C600&ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"2048\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&ssl=1\" alt=\"\" class=\"wp-image-20933\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=300%2C105&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=766%2C269&ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1024%2C360&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1536%2C539&ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20930\";s: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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"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/news/2026/06/kim-parsell-wcus-scholarship/\";s: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, 19 Jun 2026 16:55: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:6:{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:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Kim Parsell\";s: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:\"Scholarship\";s: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:\"WCUS\";s:7:\"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://wordpress.org/news/?p=20927\";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:350:\"Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one […]\";s: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:\"Brett McSherry\";s: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:5857:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&ssl=1\" alt=\"\" class=\"wp-image-20941\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?w=1920&ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1536%2C864&ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color:#6c214f\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"943\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&ssl=1\" alt=\"\" class=\"wp-image-20939\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?w=943&ssl=1 943w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=143%2C300&ssl=1 143w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=768%2C1610&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=488%2C1024&ssl=1 488w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=732%2C1536&ssl=1 732w\" sizes=\"auto, (max-width: 943px) 100vw, 943px\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20927\";s: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:69:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"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/2026/06/global-partners-first-half-2026/\";s: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, 18 Jun 2026 17:01:21 +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: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:9:\"Education\";s: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:\"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:3;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:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"Global Partners\";s:7:\"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://wordpress.org/news/?p=20910\";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:402:\"This post recaps how the WordPress project’s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional the first WordPress Developers Day, and a growing network of WordPress Campus Connect events, Global Partners staffed booths, sponsored sessions, and connected […]\";s: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:\"Harmony Romo\";s: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:8155:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20911\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project’s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1206\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&ssl=1\" alt=\"\" class=\"wp-image-20920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?w=1206&ssl=1 1206w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=300%2C168&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=766%2C429&ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1024%2C573&ssl=1 1024w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community’s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20921\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack’s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed “Tech for Social Good,” welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community’s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20910\";s: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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"What Happened at WordCamp Europe 2026\";s:7:\"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/2026/06/wceu-2026-recap/\";s: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, 06 Jun 2026 17:44: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:4:{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:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"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://wordpress.org/news/?p=20793\";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:249:\"WordCamp Europe 2026 brought the WordPress community to Kraków for three days of contribution and conversation, from CERN going live on WordPress to WordPress 7.0, AI, and a closing fireside chat on where the project goes next. Read the full recap.\";s: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:17:\"Nicholas Garofalo\";s: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:72430:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2560%2C1440&ssl=1\" alt=\"\" class=\"wp-image-20801\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2048%2C1152&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-horizontal is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-e8523bbf wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"386\" height=\"501\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=386%2C501&ssl=1\" alt=\"\" class=\"wp-image-20863\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?w=386&ssl=1 386w, https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=231%2C300&ssl=1 231w\" sizes=\"auto, (max-width: 386px) 100vw, 386px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe, <a href=\"https://europe.wordcamp.org/2026/\">the biggest WordPress conference in Europe</a>, spent the first week of June in Kraków. The 2026 edition of this event filled the ICE Kraków Congress Centre from June 4 to 6, drawing 2,458 ticket holders from 81 countries to the south of Poland. Close to a quarter of them were attending their first WordCamp Europe.</p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">The city made it easy to settle in. Every attendee’s badge carried a transport hologram good for unlimited trams and buses. The Main Market Square, the largest in Europe, sat a short ride away, and the local food ran the gamut from pierogi to żurek soup to obwarzanek pretzels sold off the street.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Kraków is beautiful, with history everywhere.<br><em>– Sebastian Miśniakiewicz, local team lead</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-7387b849 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">The program kept pace with the setting. Across multiple tracks, the schedule held 49 talks and eight hands-on workshops, grouped into themes that ran from core development and AI to business and the open web. Around them sat a full Contributor Day, a sponsor area, side events, on-site childcare, and an after-party the local team stretched to eight hours.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=474%2C500&ssl=1\" alt=\"\" class=\"wp-image-20864\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?w=474&ssl=1 474w, https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=284%2C300&ssl=1 284w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" /></figure>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day Opens the Week</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As it does every year, the event began the day before the talks. Contributors filled the venue for Contributor Day, a working session where people work together to improve WordPress itself rather than watch a presentation about it. The morning started with registration and a welcome, the room split into teams, and a group photo broke up the work around midday. The afternoon ran a second working block before each team gathered to share what it had done.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a39812ba92fb"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6a39812ba9b12"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812ba9b12\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20812\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20812\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812baa610"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812baa610\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20806\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20806\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bab004"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bab004\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20805\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20805\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1536%2C1025&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812baba23"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812baba23\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20807\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20807\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bac4a6"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bac4a6\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20808\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20808\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bace72"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bace72\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20809\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20809\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bad6ba"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bad6ba\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20810\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20810\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812badfc0"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812badfc0\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20813\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.25.24-1-scaled.jpeg?ssl=1\" alt=\"\" class=\"wp-image-20813\" style=\"aspect-ratio:1\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bae83e"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bae83e\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20811\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20811\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The range of tables is the clearest picture of how wide the project has become. Newcomers could sit down with Polyglots to translate WordPress into their own language, with Documentation to fix the pages people reach when they get stuck, or with Support to answer questions in the forums. More technical tables covered Core, Performance, Testing, Themes, and the Plugins team, whose reviewers screen every plugin submitted to the directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First-timers were not left to find their own way. The day was built around onboarding tables, named table leads, and mentors, with an open invitation for experienced contributors to adopt a newcomer and walk them through their first patch, string, or ticket.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People who could not travel to Kraków were welcomed to join remotely through the #contributor-day channel in the <a href=\"https://make.wordpress.org/\">Make WordPress Slack</a>, so distance was not a reason to sit the day out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Birthplace of the Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It was fitting that the opening keynote came from CERN. The European Laboratory for Particle Physics, on the French-Swiss border outside Geneva, is where the World Wide Web was invented more than 30 years ago, and <a href=\"https://profiles.wordpress.org/joachimv\">Joachim Valdemar Yde</a>, who has managed CERN’s web team since 2021, came to explain why the laboratory had chosen WordPress to carry its web presence forward.</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-ef2f134e wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/712t_Kjbj3I?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent&listType=playlist&list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Yde and <a href=\"https://profiles.wordpress.org/franciscobbarros\">Francisco Borges Aurindo Barros</a>, who leads CERN’s WordPress infrastructure, framed the move as a chance to give a web presence built up over three decades a shared, modern foundation. After evaluating several leading content management systems against CERN’s needs, WordPress came out on top.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Barros walked through what they had built. The guiding idea is that people at CERN focus on their content while the web team looks after the platform underneath. A self-service portal lets anyone request a site in a few clicks. Behind it, a shared distribution supplies a common theme and a set of approved, security-hardened plugins, and an in-house tool provisions each new site on Kubernetes in about a minute. In its first year, the platform has already set up hundreds of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Moving years of existing content onto the new platform is the other half of the work, and the team automated it: a single command lifts each site’s pages, headings, and images and rebuilds them as Gutenberg blocks, with no downtime. They plan to open source the tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then Yde delivered the line that the room had been waiting for.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">As of today, our main flagship website, home.cern, is now served on WordPress. It’s been automatically migrated, and it’s live.<br><br><em>– Joachim Valdemar Yde, Web Manager, CERN</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The rollout is on track to wrap up over the coming months, and early impressions, Yde said, have been overwhelmingly positive, with easy wins in responsiveness and accessibility. For those at the event, the keynote pointed the room toward <a href=\"https://youtu.be/f09yvh3mnME\">a later talk by CERN’s Akanksha Chatterjee</a> on building and maintaining the laboratory’s engineering websites on the same service.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a neat symmetry to it. The institution that published the world’s first website now runs on the software that powers more than 40% of today’s web, licensed under the GPL and maintained by the people in the room.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 and AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 was a throughline of the conference. Several sessions placed the release at the center, framing it less as a routine update than as a change in what the software is, and in what it makes possible for the people who build with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The anchor for that conversation was a panel called “Inside WordPress 7.0.” It gathered contributors who worked on the release, among them <a href=\"https://profiles.wordpress.org/juanmaguitar\">Juan Manuel Garrido</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, and <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>. It was framed around more than a feature list, setting out to cover how a release of this size actually comes together: the contribution workflows, the coordination, and the human aspects of shipping software in the open.</p>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bafe59"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bafe59\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1264\" height=\"843\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1264%2C843&ssl=1\" alt=\"Photo of the stage for the panel inside WordPress 7.0\" class=\"wp-image-20878\" title=\"Panel: Inside WordPress 7.0\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=768%2C512&ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">What gives this release its weight is the work moving into WordPress’s core: a native AI client, a new Abilities API that lets plugins declare what they can do in a way other tools can discover, and a Connectors screen for wiring up providers such as OpenAI, Anthropic, or Google Gemini. The argument running through the AI sessions was that this belongs to everyone who builds on WordPress, not only to developers shipping their own integrations. Speakers got specific about how to put that to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/anukasha\">Anukasha Singh</a> focused on how the Abilities API can make plugin permissions cleaner and safer than the capability checks developers have leaned on for years.</li>\n\n\n\n<li>In a workshop, <a href=\"https://profiles.wordpress.org/wpfeedback\">Vito Peleg</a> set out to take builders from one-off prompts toward a tool-using workflow that audits a live site and files structured tickets.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, a WP-CLI maintainer who has worked on structured data and the AI-native web, turned to a fast-growing opportunity. AI assistants and search now send real traffic to the open web, with more than a billion referral visits logged by the middle of 2025. His session framed WordPress as well-placed to earn that attention, with a practical checklist for getting a site ready to be found, read, and cited.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">People stayed at the center of the conversation, too. <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, in a talk called “Human in the loop means something,” framed the phrase as a real commitment rather than a checkbox. Humans and AI are each good at different things, and the products worth building let each do what it does best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Development and Craft</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The development sessions were where the craft lived. <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, who co-wrote the HTML API and designed the block parser, devoted a deep-dive workshop to that API. <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, a long-time Core committer on the Performance team, focused on how the WP_Query class has been made faster through better caching, and how site builders can take advantage of that at scale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scaling got a hands-on session of its own. One talk set out to see how far a WordPress site can run on a twelve-dollar virtual server, profiling it under load in Grafana and tuning away the bottlenecks, with a GitHub repository so attendees could follow along at home. <a href=\"https://profiles.wordpress.org/fellyph\">Fellyph Cintra</a> focused on the latest in <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, the browser-based tooling and architectural changes that the project credits with a real speed-up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, a Core contributor and former default-theme co-lead, set out to make the case that accessibility-ready requirements are far easier to meet than most theme developers assume, drawing on real reviews of both block and classic themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two members of the Plugins team, <a href=\"https://profiles.wordpress.org/davidperez\">David Perez</a> and <a href=\"https://profiles.wordpress.org/frantorres\">Fran Torres</a>, framed their session as a practical clinic. Between them, they have reviewed more than 25,000 plugins, and they set out to name the common, avoidable issues that keep good plugins stuck in the review queue. For a first-time author, that is the difference between an afternoon and a month of waiting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Business of WordPress and the Open Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The business and community sessions pulled the lens back to people, with a refreshingly unsentimental view of running a WordPress business. <a href=\"https://profiles.wordpress.org/deltacx\">Debbie Levitt</a> built her talk around a model for finding product-market fit at three levels at once, on the premise that teams celebrate one good metric and then wonder months later where their users went. <a href=\"https://profiles.wordpress.org/vasvalch\">Vassilena Valchanova</a> took on a quieter problem: being good at the work is not the same as anyone knowing you are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a local thread here as well. <a href=\"https://profiles.wordpress.org/irsilviana\">Irfani Silviana</a>, a full-stack developer at a Kraków-based agency, framed the Business Model Canvas as a translation layer that moves developers from shipping features to engineering business value, a fitting talk to give in her own city.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The web’s standards, the argument goes, remain as open as the day Tim Berners-Lee created them at CERN.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That idea carried through the rest of the community sessions. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/wdavidsnead\">David Snead</a>, an attorney who works with internet infrastructure providers, set out to explain how hosts, registrars, and registries coordinate against abuse through shared, real-time intelligence, on the logic that a threat to one WordPress host is a threat to all of them.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a> shared a practical playbook for how companies and individuals can support open source sustainably and look after the people who keep it going.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/karinchristen\">Karin Christen</a> set out to describe how her Swiss agency turned <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> from a good intention into a standing team habit through internal contributor days.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Running alongside the talks, the hands-on workshops were a chance to build something on the spot. In one, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a> set out to build a touch-enabled gallery slider with the Interactivity API, while another centered on Full Site Editing, with a working portfolio theme attendees could reuse on their next client project. These were laptop-open, leave-with-working-code sessions.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a39812bb07a0"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6a39812bb0d69"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb0d69\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20849\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20849\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb14ad"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb14ad\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20850\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20850\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing Fireside Chat</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The closing session opened with a warm gesture from Kraków University of Technology. Representatives took the stage to thank the organizers and the community and to present <a href=\"https://profiles.wordpress.org/4thhubbard\">Mary Hubbard</a>, the Executive Director of WordPress, with a gift from their faculty of informatics and mathematics. They described what the university and the WordCamp community share: a love of learning and sharing knowledge, and an openness to new ideas, skills, and connections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard used the moment to share some news. Starting in October, the university will open a WordPress-specific course, which she called a trail-blazing event for Poland and for WordPress. Earlier that day, the program’s first cohort, around 20 students, had shown what they built, part of the <a href=\"https://wordpress.org/education/campus-connect/\">WordPress Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a> education work.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a39812bb193b"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6a39812bb1f36"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb1f36\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20888\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20888\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb27d2"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb27d2\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20887\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20887\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard then turned the stage into a conversation, inviting <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, the lead of the Gutenberg project, and <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, a WordPress designer and developer, to talk through where WordPress is heading and how AI fits in. WordPress 7.0 had just launched with Ventura as its release lead, and he asked everyone who had contributed to it to stand for a round of applause.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the chat explored the balance between building WordPress with AI, and building with AI on WordPress, without losing the human part. Ventura noted that WordPress’s long investment in its design system is paying off now that you can ask an AI to extend a menu or a control, and it reaches for the right components. He pointed to older primitives gaining new value, like <a href=\"https://wordpress.org/cli/\">WP-CLI</a>, which AI models use fluently, and to <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/studio-code/\">Studio Code</a>, an open source, agent-based coding tool the team has been building for WordPress. Tabor showed how he now ships many small editor improvements by talking to an agent instead of typing code, and Ventura demoed desktop mode and open-canvas experiments that reimagine the admin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On open source and AI, Hubbard argued that open source is why WordPress has thrived, that the same values should shape AI, and that the community should be far more vocal about it. As she put it, “We should be talking about it, and we should be much louder about it.”</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9c97b5da wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/X4GG-sfH94M?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Audience questions pushed on multilingual support, unsticking long-stalled tickets, and reaching a younger, more diverse community. On that last point, Hubbard came back to education, pointing to a <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">US pilot of an AI literacy micro-credential</a> that uses WordPress as the playground, and made the case for it:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I think that focusing in on younger generations, and bringing them into the project in a healthy way, with the dynamic of education as well as mentorship, and how we can understand and learn from them, as well as mentor them and adopt them as contributors, is very important.<br><br><em>– Mary Hubbard, WordPress Executive Director</em></p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Talks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp is also about the corridor outside the talks, and Kraków gave people reason to roam. Between sessions, attendees moved through the sponsor area for product demos and conversations that often carried on over lunch.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a39812bb3271"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-3 is-cropped has-black-background-color has-background wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6a39812bb390a"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb390a\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20823\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20823\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb4184"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb4184\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20828\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb49bc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb49bc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20825\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20825\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb5243"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb5243\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20824\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20824\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb5c00"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb5c00\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20826\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20826\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=2048%2C1366&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a39812bb6457"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a39812bb6457\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20827\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58.jpeg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-20827\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The after-party was the not-so-subtle flourish of a local team that doubled the usual length to eight hours, with Polish food and dragon-and-floral swag that nodded to the Wawel Dragon of Kraków legend. The nearby artistic Kazimierz district kept the evening going, and the trams, as one organizer had promised, were still running reliably afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps run on people, and 2026 was no different. The organizing teams, the speakers, the sponsors who funded the venue and the meals, the local crew who sorted trams and pierogi, and the contributors who arrived a day early to work on the project all built this WCEU together. The people watching the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\">livestream</a> from outside Kraków were part of it as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone whose appetite was only sharpened by three days in Poland, the calendar already has the next stop. <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a> (Phoenix, USA) runs August 16 to 19, with its own Contributor Day opening the week.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe will return next year (May 27-29, 2027) in Málaga, Spain.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Photography by the <a href=\"https://europe.wordcamp.org/2026/community/organisers/#photography-team\">WCEU 2026 photography team</a>. See the full galleries on <a href=\"https://www.flickr.com/photos/wceu/albums/\">Flickr</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20793\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Protect The Shire\";s:7:\"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:39:\"https://wordpress.org/news/2026/06/pts/\";s: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, 05 Jun 2026 18:51:15 +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:\"Meta\";s:7:\"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://wordpress.org/news/?p=20783\";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:353:\"tl;dr: Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org.  One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex […]\";s: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:7910:\"\n<p class=\"wp-block-paragraph\"><strong>tl;dr:</strong> <em>Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex or inaccessible and make it available to everyone, running in as many environments as possible. It’s the Open Source way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just last December there was a <a href=\"https://x.com/karpathy/status/2026731645169185220\">step-change in coding ability</a> that rocked many developers, and since April’s <a href=\"https://red.anthropic.com/2026/mythos-preview/\">reveal of Mythos</a>, security activity has kicked into high gear. A few days ago, <a href=\"https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html\">Chrome shipped a release with 429 security fixes</a>! The threats and opportunities of these new capabilities inspired us to kick off an initiative we call <strong>Protect The Shire</strong> (hat tip <a href=\"https://www.tolkiensociety.org/discover/biography/\">J. R. R. Tolkien</a>) with the aim of using our best minds and the infrastructure of WordPress.org to make all code in our directories and repositories as secure as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this work was and will remain behind the scenes, and we hope its success is defined mostly by what <em>doesn’t</em> happen. However, while we reckon with our newfound powers, we need to make space for review.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To Update or Not</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress core updates go through multiple people and layers of review before they go out, a process we’ve polished to a high art in the 18 years since we <a href=\"https://wordpress.org/news/2008/12/coltrane/\">introduced one-click upgrades in 2.7 “Coltrane.”</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Core is solid, and I’m so proud that <a href=\"https://wordpress.org/about/stats/\">over 50% of all WordPress sites have upgraded to 7.0 within two weeks</a>! That’s the result of an unimaginable amount of work across thousands of hosts, developers, and teams across WordPress.org. We’ve pushed hard to make upgrades happen automagically, and as fast as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re in a liminal period now, and I believe 2026 will be a year of tension between two approaches: updating as quickly as possible to stay secure, and holding back on updating to stay secure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve seen clever and dangerous supply chain attacks across the npm, PyPI, GitHub, and RubyGems ecosystems, and we even had our own mini-version with the <a href=\"https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/\">Essential Plugins debacle</a>, where good plugins were unknowingly sold to a new author who had malicious intent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How to balance security updates and <em>securing</em> updates?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mirkwood or the Wild West?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everyone knows the fun of WordPress is in its 78k+ plugins and themes. We have a rigorous, human-powered review process for <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme</a> and <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">plugin</a> submissions, but once you’re published in the directory, you’re on your own. Our update system currently distributes every plugin and theme release as soon as a developer presses the button. That’s what keeps the directory as robust as WordPress itself. There were over 3,000 commits to the plugin repository yesterday! </p>\n\n\n\n<p class=\"wp-block-paragraph\">For now, each new plugin release will wait up to 24 hours before being distributed through auto-updates. This will give everyone, including a <a href=\"https://wapuu.studio/wapuu/a-gandalf-wapuu-that-is-a-coding-wizard-302912b8/\">new Wapuu</a> we call Gandalf, a chance to review changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I expect 24 hours could be reduced to minutes as the process evolves, but we’ll err on the side of caution while AI models are advancing so rapidly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our <a href=\"https://make.wordpress.org/plugins/\">plugin review team</a> seems superhuman, but still needs to sleep. But bots don’t, and a depth of review that seemed unimaginable before is now a matter of time and tokens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The security capabilities of AI are going to make the world weird and take a lot of our focus in the next few months, but there’s a light at the end of the tunnel.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Shire Is Special</h2>\n\n\n\n<p class=\"wp-block-paragraph\">There’s no shortage of ways to find, install, and update plugins and themes for WordPress. For those who choose WordPress.org, though, we want to make sure that it feels safe and secure. That means staying strict about some things—like guidelines and Open Source licenses—while also remaining flexible enough to allow solo hackers, community projects, and for-profit commercial plugins and themes to thrive in our ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">GitHub stars may get the hype, but if you add up all the numbers <a href=\"https://wordpress.org/plugins/\">in our plugin directory</a>, it’s over 400M installs. There are 78k+ extensions, many from solo devs, installed on over a million sites each! Now we need to learn from the best parts of GitHub and make that available to every developer on WordPress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just because WordPress plugins have a reputation for vulnerabilities is no reason not to aim for the same security and stability we’ve achieved in core. We’ve done the impossible a few times already in <a href=\"https://wordpress.org/book/table-of-contents/\">our journey from a b2/cafelog fork</a> to <a href=\"https://wordpress.org/showcase/\">where we are today</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Freedom and security are not zero-sum.</strong> With Open Source, we can show how security comes from transparency, not obscurity. Collaboration over competition. What we accomplish when we come together is nothing short of incredible. Success always attracts bad actors, but we grow stronger through every adversity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scale of WordPress can make some challenges seem too big to tackle, but given time, there is no problem that’s insurmountable. I’m reminded of the story behind the title of <a href=\"https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Anne Lamott’s book <em>Bird by Bird</em></a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Thirty years ago my older brother, who was ten years old at the time, was trying to get a report written on birds that he’d had three months to write, which was due the next day. We were out at our family cabin in Bolinas, and he was at the kitchen table close to tears, surrounded by binder paper and pencils and unopened books about birds, immobilized by the hugeness of the task ahead. Then my father sat down beside him, put his arm around my brother’s shoulder, and said, “Bird by bird, buddy. Just take it bird by bird.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">More to come, stay tuned. I wish everyone <a href=\"https://europe.wordcamp.org/2026/\">in Kraków at WordCamp Europe</a> the best and hope to see you soon!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20783\";s: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:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"WP23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2026/05/wp23/\";s: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 May 2026 17:40: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:4:{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:4:\"Meta\";s: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:\"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:3;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:35:\"https://wordpress.org/news/?p=20747\";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:349:\"WordPress at 23 is simultaneously both the strongest and most precarious it’s ever been. Last week, we shipped WordPress 7 to the world. In seven days, 46% of all WordPresses, tens of millions across countless different hosting environments, are already on 7.0, auto-updated with no breakage. From a Raspberry Pi to the most secure 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: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:5651:\"\n<p class=\"wp-block-paragraph\">WordPress at 23 is simultaneously both the strongest and most precarious it’s ever been.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last week, <a href=\"https://wordpress.org/news/2026/05/armstrong/\">we shipped WordPress 7 to the world</a>. In seven days, <a href=\"https://wordpress.org/about/stats/\">46% of all WordPresses</a>, tens of millions across countless different hosting environments, are already on 7.0, auto-updated with no breakage. From a <a href=\"https://projects.raspberrypi.org/en/projects/lamp-web-server-with-wordpress\">Raspberry Pi</a> to the most secure sites in the world, like <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>. Sit with that for a minute when you think of all the resources and all the projects that have had security problems in the past few weeks. No supply chain attacks, no security problems, just a stable, secure infrastructure doing its job invisibly to power a huge portion of the open internet.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><em>I’m really proud of the capability and security of WordPress, and we should celebrate that. That accomplishment represents the work of thousands and thousands of people coming together to make the web a better place. Also, an iceberg of what is going on behind the scenes. </em> </h2>\n\n\n\n<p class=\"wp-block-paragraph\">However, the release was not what I hoped it would be because so much time from key people was taken away by <a href=\"https://wpengine.com/\">WP Engine’s</a> attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.silverlake.com/\">Silver Lake</a>, in its immense 100B+ power, summoned a <a href=\"https://en.wikipedia.org/wiki/Shoggoth\">shoggoth</a> in <a href=\"https://www.quinnemanuel.com/\">Quinn Emanuel</a> that has been paperclip-maximizing legal torture that is not just going after <a href=\"https://automattic.com/\">Automattic</a> and <a href=\"https://wordpress.org/\">WordPress.org</a> and me personally, but this Golem Jagannath is now trying to dissolve the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> itself, a non-profit with <a href=\"https://projects.propublica.org/nonprofits/organizations/205498932\">no employees or payroll</a> that supports <a href=\"https://central.wordcamp.org/\">WordCamps</a> and <a href=\"https://wordpress.org/education/credits/\">Open Source education around the world</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you know anyone at <a href=\"https://www.linkedin.com/company/silver-lake/\">Silver Lake</a>, <a href=\"https://www.linkedin.com/company/quinn-emanuel/\">Quinn Emanuel</a>, or <a href=\"https://www.linkedin.com/company/wpengine/\">WP Engine</a> in that order, please beg, plead with them to stop the violence. <strong>End this internecine warfare</strong> that is threatening to destroy one of the last stalwarts of the Open Web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s not fun and games anymore, not just business. This is having a real impact on people’s lives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It took every ounce of will in my body, and I am grateful to thousands of hours of meditation, to not explode in rage when asked about pineapple on pizza and debating the <a href=\"https://en.wikipedia.org/wiki/Jean_Baudrillard\">meaning of Jean Baudrillard</a> and “<a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">bastardized simalcra</a>” when miles away, my closest friend is in a hospital bed waiting for a heart transplant.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have colleagues <a href=\"https://eric.blog/2026/05/24/six-months/\">LITERALLY DYING</a> I can’t be with because Silver Lake / Quinn Emanuel / WP Engine shoggoth is trying to make it seem like <a href=\"https://www.therepository.email/wp-engine-and-automattic-trade-accusations-of-withheld-evidence-in-flurry-of-court-filings\">I am hiding or destroying evidence because we rotate logs on wordpress.org or I have disappearing chats on Signal with romantic partners</a>. I don’t curse, but this is so f-ed up I don’t know what to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>If you don’t know anyone at these entities, please pray, meditate, and call on whatever forces or divine interventions you can to bring this to an end.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">I reached out multiple times to resolve this with open arms; I’ve extended every olive branch; and I’ve even said positive things about Silver Lake and WP Engine in the press, trying to bring this to a close. Heather Brunner would not even come into the same room with me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of this from a stupid presentation <a href=\"https://www.youtube.com/watch?v=fnI-QcVSwMU\">I gave at WordCamp US 2024 about how private equity can hollow out high-trust-based Open Source communities that in the past 19 months has only gotten 16k views on YouTube</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Silver Lake, you have already extracted all your pounds of flesh. I missed my Mom’s knee surgery. If you wanted me to suffer for my sins, I have, and probably deeper than you will ever know. WordPress and WordPress.org, and yes, even my flawed leadership, are at the heart of what has made WP Engine successful so far. You have so much money and power, <a href=\"https://pe-insights.com/trump-approves-14bn-tiktok-us-spin-off-with-oracle-silver-lake-and-kkr-as-investors/\">you just got TikTok, the Trump administration loves you</a>, you don’t need to control and take over WordPress, too. If you win, you destroy it, and then what? Please have mercy and stop trying to ruin people’s lives. Let’s move on.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20747\";s: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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Looking Ahead to WordCamp Europe 2026\";s:7:\"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/news/2026/05/wceu-2026-sessions/\";s: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, 26 May 2026 12:52:13 +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: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:1;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:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"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://wordpress.org/news/?p=20721\";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:385:\"June 4-6, 2026 | ICE Kraków Congress Centre, Kraków, Poland WordCamp Europe 2026 will bring the WordPress community together in Kraków, Poland, from June 4–6 for Contributor Day, two conference days, and a program shaped by the ideas, tools, and people moving WordPress forward. This year’s schedule includes two official keynotes, hands-on workshops, panels, 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:14:\"Brett McSherry\";s: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:17685:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"390\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1024%2C390&ssl=1\" alt=\"\" class=\"wp-image-20725\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1024%2C390&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=300%2C114&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=768%2C292&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1536%2C585&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?w=1892&ssl=1 1892w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>June 4-6, 2026 | ICE Kraków Congress Centre, Kraków, Poland</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring the WordPress community together in Kraków, Poland, from June 4–6 for Contributor Day, two conference days, and a program shaped by the ideas, tools, and people moving WordPress forward. This year’s schedule includes two official keynotes, hands-on workshops, panels, and sessions across development, accessibility, artificial intelligence, content, search, business, education, security, and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program offers a broad view of how WordPress is used today: as publishing software, a framework for building at scale, a tool for business growth, and a global open source project shaped by contributors around the world. Whether you build with WordPress, write for the web, support clients, teach new learners, or contribute to the project, WordCamp Europe offers a chance to learn from practical examples and connect them to the platform’s future.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-82d461e8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/tickets/\" style=\"background-color:#31416c\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/schedule/\" style=\"background-color:#31416c\">WCEU Schedule</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/wordcamp-europe-2026/\" style=\"background-color:#31416c\">About WCEU 2026</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"411\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1024%2C411&ssl=1\" alt=\"\" class=\"wp-image-20724\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1024%2C411&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=300%2C120&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=768%2C308&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1536%2C616&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Keynotes at WordCamp Europe 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote sessions at WordCamp Europe 2026 will give attendees two ways to look at WordPress today: through a large-scale institutional adoption story and through a broader closing reflection on where the project is headed. These sessions anchor the program while connecting many of the themes that appear throughout the conference, from infrastructure and governance to contribution, innovation, and the future of the web.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-right:0;margin-bottom:var(--wp--preset--spacing--10);margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=1024%2C538&ssl=1\" alt=\"\" class=\"wp-image-20726\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=300%2C158&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=768%2C403&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?w=1200&ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Joachim Valdemar Yde and Francisco Borges Aurindo Barros will share how <a href=\"https://europe.wordcamp.org/2026/session/two-worlds-collide-wordpress-at-cern/\">CERN is adopting WordPress as its future content management system</a>. Their keynote will explore the governance, infrastructure, and migration work behind moving more than 800 websites onto a customized WordPress Service, offering a look at WordPress on an institutional scale.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=1024%2C538&ssl=1\" alt=\"\" class=\"wp-image-20727\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=1024%2C538&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=300%2C158&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=768%2C403&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?w=1200&ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Ma.tt Mullenweg will close WordCamp Europe 2026 with a broader look at <a href=\"https://europe.wordcamp.org/2026/session/closing-keynote/\">WordPress, the open web, and the ideas shaping what comes next</a>. As the event’s final keynote, this session will bring together many of the conversations happening across Contributor Day, sessions, workshops, and community gatherings throughout the week.</p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Program Themes to Watch at WCEU 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The rest of the WCEU themes are organized around topics that reflect the breadth of the WordPress ecosystem. These themes give attendees a way to follow the sessions most relevant to their work, from building better sites and improving content discovery to growing sustainable businesses, strengthening security, expanding access, and supporting the people and communities behind the project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search, Visibility, and Discovery</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Search continues to change, but helping people find the right information remains central to the web. WCEU’s search and SEO sessions look at how AI-generated answers, generative engine optimization, shifting user habits, and new discovery platforms are changing visibility for publishers, businesses, and builders. Sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-the-future-of-seo/\">Panel: The Future of SEO</a>, with Kacper Bartoszak, Pam Aungst Cronin, Alex Moss, David Cuesta, and Jovana Smoljanovic Tucakov, as well as Emma Young’s <a href=\"https://europe.wordcamp.org/2026/session/ai-search-why-your-whole-company-should-care/\">AI Search: Why Your Whole Company Should Care</a>, which looks at why AI-native discovery now affects content, development, partnerships, and business strategy.</p>\n\n\n\n<h3 class=\"wp-block-heading\">AI and the Future of Building</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence has a dedicated presence at WordCamp Europe 2026, with sessions that move beyond general discussion and into practical use cases for marketing, product work, development, and site management. Vito Peleg’s <a href=\"https://europe.wordcamp.org/2026/session/agentic-ai-wordpress-from-prompts-to-tools-systems/\">Agentic AI & WordPress: From Prompts to Tools & Systems</a> will explore how teams can move from simple prompts to AI workflows that execute tasks, while Monika Dimitrova’s <a href=\"https://europe.wordcamp.org/2026/session/ai-wont-save-your-marketing-but-it-might-save-your-time-and-money/\">AI Won’t Save Your Marketing (but it might save your time and money)</a> focuses on how small businesses can use AI without losing the strategy and identity that make their work effective.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Development and Technical Practice</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Development sessions at WCEU will focus on how WordPress sites, tools, and workflows are built for long-term use. The program includes a <a href=\"https://europe.wordcamp.org/2026/session/panel-inside-wordpress-7-0/\">Panel: Inside WordPress 7.0</a>, with contributors discussing the release, its features, and the process behind it, along with sessions such as Anukasha Singh’s <a href=\"https://europe.wordcamp.org/2026/session/smarter-plugin-permissions-with-the-abilities-api/\">Smarter Plugin Permissions with the Abilities API</a>, Ariel Ramos’s <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">Headless WordPress API Security in 10 Minutes</a>, and Dejan Rudić Vranić’s hands-on workshop <a href=\"https://europe.wordcamp.org/2026/session/build-your-developer-portfolio-a-hands-on-guide-to-fse/\">Build Your Developer Portfolio: A Hands-on Guide to FSE</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility and Inclusive Design</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Accessibility is part of building a better web for everyone, and WCEU’s accessibility sessions give attendees practical ways to make digital experiences more usable, inclusive, and sustainable. This theme connects directly to WordPress’s project values, from how content is structured to how themes, plugins, and interfaces are designed. For designers, developers, content creators, and project leads, these sessions offer a chance to make accessibility part of everyday decisions rather than a final step at the end of a project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Content, Writing, and Communication</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Content and writing sessions at WCEU will focus on how clearer communication helps users find what they need, teams share what they know, and communities make information easier to understand. Pooja Sanwal’s <a href=\"https://europe.wordcamp.org/2026/session/why-writing-still-matters-in-a-video-first-internet/\">Why Writing Still Matters in a Video-First Internet</a> looks at the role of written content as video continues to dominate online traffic, Fernando Tellado’s <a href=\"https://europe.wordcamp.org/2026/session/do-you-really-need-an-seo-geo-plugin-for-wordpress/\">Do You Really Need an SEO/GEO Pugin for WordPress</a>? explores what WordPress can already do for visibility, and Birgit Olzem’s <a href=\"https://europe.wordcamp.org/2026/session/documentation-as-a-love-language-for-the-future-you/\">Documentation as a Love Language for the Future You</a> looks at how simple documentation practices can help teams and communities preserve knowledge.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Security and Trust</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Security remains central to maintaining websites people can rely on. WCEU’s security-focused sessions look beyond basic reminders and into the risks, systems, and decisions that shape safer WordPress experiences. The broader program includes talks on <a href=\"https://europe.wordcamp.org/2026/session/fighting-spam-and-bots-on-wordpress-with-ai/\">AI-assisted spam and bot detection</a>, plugin permissions, and <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">secure headless WordPress architectures</a>, giving attendees practical ways to think about resilience, trust, and responsible site management.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Business and Sustainable Growth</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The business sessions at WCEU will explore how WordPress professionals turn ideas, services, and products into sustainable work. Debbie Levitt’s <a href=\"https://europe.wordcamp.org/2026/session/three-levels-of-atomic-product-market-fit/\">Three Levels of Atomic Product-Market Fit</a> looks at how teams can understand product-market fit beyond a single metric, Irfani Silviana’s <a href=\"https://europe.wordcamp.org/2026/session/wordpress-roi-map-engineering-business-value-with-bmc/\">WordPress ROI Map: Engineering Business Value with BMC</a> connects technical decisions to business outcomes, and Liza Bogatyrev’s <a href=\"https://europe.wordcamp.org/2026/session/stop-positioning-into-obscurity-to-unlock-growth/\">Stop Positioning Into Obscurity to Unlock Growth</a> focuses on how clearer positioning can support revenue and adoption.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Education, Contribution, and Community</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress grows when people can learn, participate, and find a place to contribute. WCEU’s education and community sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-rethinking-learning-in-wordpress/\">Panel: Rethinking Learning in WordPress</a>, featuring Mary Hubbard, Rade Jekic, Klaus Harris, Natalia Basiura, and Benjamin Zekavica, along with Daniel Grzonka’s <a href=\"https://europe.wordcamp.org/2026/session/the-new-engineer-psychology-systems-and-open-source/\">The New Engineer: Psychology, Systems, and Open Source</a>, Ivana Ćirković’s <a href=\"https://europe.wordcamp.org/2026/session/what-it-really-means-to-be-a-part-of-the-wp-credits-program/\">What It (Really) Means To Be a Part of the WP Credits Program</a>?, and Jörg Pareigis’s <a href=\"https://europe.wordcamp.org/2026/session/sovereign-university-ai-tutors-powered-by-wordpress/\">Sovereign University AI Tutors Powered by WordPress</a>. Together, these sessions connect contributor onboarding, academic partnerships, open source learning, and the future skills people need to work with WordPress.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" style=\"background-color:#31416c\">Get Your Tickets Today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Explore the Full Program</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring together many parts of the WordPress ecosystem in one place: software, publishing, business, design, education, and community. The keynotes and theme-based sessions offer a broad look at how WordPress is being used today and how contributors, builders, and users are preparing for what comes next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the full <a href=\"https://europe.wordcamp.org/2026/schedule/\">WordCamp Europe 2026 schedule</a> and choose the sessions that match how you use, build, teach, support, or contribute to WordPress. <a href=\"https://europe.wordcamp.org/2026/tickets/\">Tickets are available now</a> for attendees joining the community in Kraków. All sessions will be live streamed. Keep checking back for updates. </p>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-right:0;margin-bottom:var(--wp--preset--spacing--10);margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18817\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Kraków is calling. See you at WordCamp Europe 2026!</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20721\";s: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:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 7.0 “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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2026/05/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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 May 2026 18:41: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:8:\"category\";a:4:{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:\"7-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:5:{s:4:\"data\";s:3:\"7.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:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20583\";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:\"Explore AI abilities directly in your website, all managed from a central hub. Slide seamlessly through the sleek, new admin theme implemented across the dashboard. Ignite creative flow with new blocks and design tools, and tap into an expansive developer toolbox that gives you more control than ever, letting you make it uniquely yours.\";s: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:\"Matias Ventura\";s: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:86610:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0.png?resize=1024%2C683&ssl=1\" alt=\"WP 7.0 Release Edition Main Image\" class=\"wp-image-20705\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Every WordPress release celebrates an artist who has made an indelible mark on the world of music. Say Hello to WordPress 7.0 “Armstrong”, named in honor of “Satchmo” himself, jazz musician Louis Armstrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Known as the “first great jazz soloist”, Louis Armstrong created ensembles that highlighted his own profound trumpeting skills, and in the process, transformed jazz from an orchestral art form into a solo art form. The master trumpeter also impressed the world with his signature vocals, introducing improvisation into Jazz, influencing every artist he worked with, and permanently changing the landscape of music.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Louis Armstrong wove his personal touch into the world of Jazz. With WordPress 7.0 “Armstrong”, you can build with yours.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 7.0!</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 marks the start of a new era, laying the foundation for AI across the WordPress experience. Greeting you with a modern, more intuitive dashboard, 7.0 introduces enhanced customization and development tools that inspire creativity and tap into endless potential.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you’re a creator, business owner or developer – WordPress 7.0 let’s you create in a way that is uniquely your own.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-7.0.zip\">Download WordPress 7.0 now</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Explore AI abilities directly in your website, all managed from a central hub. Slide seamlessly through the sleek, new admin theme implemented across the dashboard. Ignite creative flow with new blocks and design tools, and tap into an expansive developer toolbox that gives you more control than ever, letting you create your way.</p>\n\n\n\n<h3 class=\"wp-block-heading\">AI-Integrated WordPress</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Possibilities right in your hands.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">With AI integrated throughout WordPress the potential is endless. A new AI Client in Core lets WordPress communicate with generative AI models, while connections are easily managed from a single hub in the dashboard. The AI Client combined with the Abilities API makes a fiery duo that introduces new functionality, workflow automation, and creation tools to your website. Install the new AI plugin to expand your options even more: generate and edit images, create titles or excerpts, or even suggest alt text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">7.0 also includes a new Client-Side Abilities package: a Javascript counterpart to the Abilities API, with a built in UI and command palette that delivers extensive new and hybrid AI abilities.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20700\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Manage all your external connections in a central hub on the Connector’s screen. Easily dive in with 3 presets, or add your own connections. Authenticate and get started with AI abilities in just a few clicks.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20699\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">An AI-integrated WordPress promises infinite potential, ready to be discovered.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Modernized Dashboard</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Elevate your admin experience</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">7.0 introduces a fully revitalized dashboard with a chic, modern new color scheme, and clean finishes throughout.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Polished with smooth transitions that seamlessly shift as you move between screens, you’ll feel like you’re effortlessly gliding through the dashboard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just one click of the new Command Palette shortcut, a <code>⌘K</code> or <code>Ctrl+K</code> icon in the upper admin bar, lets you access your favorite tools from anywhere in the dashboard.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20698\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Explore typography from one place, regardless of theme. Install, upload and manage your font collection from the new dedicated font management page, with support for block, hybrid and classic themes.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20697\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Visually scrub through revision versions to see what changed at a glance, with markers that make editorial choices more intuitive. Easily pick the revision you want and restore instantly.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20696\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Design, Create, Customize</h2>\n\n\n\n<p class=\"wp-block-paragraph\"> <strong>A simpler way to build</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let WordPress be your muse with new blocks, block supports, and design tools that add visual agility, granular control, and keep every element of your website on brand, with fresh new touches.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Showcase your ideas in a lightbox slideshow with the new gallery block, and finesse your markup with the new Heading block. Deliver clear site navigation with the new Breadcrumbs block, and add more detail to your designs with the new Icons block.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20695\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Enhanced responsiveness controls in 7.0 make your site more user friendly. Hide and reveal blocks based on device, without affecting other viewports. </p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20694\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Design and build your menu overlay with blocks and patterns, fully customizable with the styles you want visitors to see. Add columns, stylize typography, or embed your own close button in the overlay. Start with a template or create your own menu from scratch.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20693\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Fine tune page design and layout with Patterns that act as a single unit, detachable for more isolated control. Insert your pattern, swap elements and customize with ease.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20692\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Style every detail of content with custom CSS at the block level, right in your post or page.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=1024%2C632&ssl=1\" alt=\"\" class=\"wp-image-20691\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=1024%2C632&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=300%2C185&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=768%2C474&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?w=1360&ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Developer’s toolbox</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advanced tools for building</strong> <strong>your way</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 lets you build faster, better, stronger, and easier with an extensive set of expanded APIs and enhanced functionality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Create blocks and patterns on the server level using only PHP, auto-registered with the block API.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore a more extensible Site Editor, with routing, route validation, and a new wordpress/boot package that allows plugins to build custom site-editor pages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">And much more</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For a comprehensive overview of all the new features and enhancements in WordPress 7.0, please visit the feature-showcase website.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/download/releases/7-0\">Check out whats new in 7.0</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 7.0</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7.0\">WordPress 7.0 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the <a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a> and learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 7.0 release squad</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 7.0 is a global, cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a></li>\n\n\n\n<li>Release Coordination: <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a></li>\n\n\n\n<li>Tech Leads: <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a></li>\n\n\n\n<li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 reflects the tireless efforts and passion of more than 875+ contributors in countries all over the world. This release also welcomed over 200+ first-time contributors!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Their collaboration delivered more than 420 enhancements and fixes, ensuring a stable release for all – a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><p class=\"has-small-font-size\"><a href=\"https://profiles.wordpress.org/1000camels/\">1000camels</a> · <a href=\"https://profiles.wordpress.org/aakashverma1/\">Aakash Verma</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/abdullah17/\">Abdullah Kaludi</a> · <a href=\"https://profiles.wordpress.org/abduremon/\">Abdur Rahman Emon</a> · <a href=\"https://profiles.wordpress.org/hiabhaykulkarni/\">Abhay Kulkarni</a> · <a href=\"https://profiles.wordpress.org/fitehal/\">Abhishek Deshpande</a> · <a href=\"https://profiles.wordpress.org/acmoifr/\">acmoifr</a> · <a href=\"https://profiles.wordpress.org/dannythedog/\">Adam</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a> · <a href=\"https://profiles.wordpress.org/adithyanaik/\">adithyanaik</a> · <a href=\"https://profiles.wordpress.org/iamadisingh/\">Aditya Singh</a> · <a href=\"https://profiles.wordpress.org/adnanhyder/\">Adnan Hyder Pervez</a> · <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a> · <a href=\"https://profiles.wordpress.org/adrianpiedra/\">adrianpiedra</a> · <a href=\"https://profiles.wordpress.org/adrmf25/\">adrmf25</a> · <a href=\"https://profiles.wordpress.org/afwebdev/\">afwebdev</a> · <a href=\"https://profiles.wordpress.org/agnieszkaszuba/\">Agnieszka Szuba</a> · <a href=\"https://profiles.wordpress.org/elazzabi/\">Ahmed</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/aileenf/\">aileenf</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a> · <a href=\"https://profiles.wordpress.org/alecrust/\">Alec Rust</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexsanford1/\">Alex Sanford</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/aliaghdam/\">Ali Aghdam</a> · <a href=\"https://profiles.wordpress.org/allanespinoza/\">Allan Espinoza</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro Gómez</a> · <a href=\"https://profiles.wordpress.org/amanandhishoe/\">amanandhishoe</a> · <a href=\"https://profiles.wordpress.org/alh0319/\">Amber Hinds</a> · <a href=\"https://profiles.wordpress.org/amesplant/\">Ames Plant</a> · <a href=\"https://profiles.wordpress.org/amibe/\">Amibe Websites</a> · <a href=\"https://profiles.wordpress.org/amin7/\">Amin</a> · <a href=\"https://profiles.wordpress.org/amitraj2203/\">Amit Raj</a> · <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a> · <a href=\"https://profiles.wordpress.org/altf4falt/\">Anand Rajaram</a> · <a href=\"https://profiles.wordpress.org/anastis/\">Anastis Sourgoutsidis</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Norén</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a> · <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewryno/\">Andrew Ryno</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> · <a href=\"https://profiles.wordpress.org/aidvu/\">Andrija Vučinić</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/rilwis/\">Anh Tran</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K. Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/slieptsov/\">anton7249</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/antonrinas/\">antonrinas</a> · <a href=\"https://profiles.wordpress.org/anukasha/\">Anukasha Singh</a> · <a href=\"https://profiles.wordpress.org/anupkankale/\">Anup Kankale</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a> · <a href=\"https://profiles.wordpress.org/arcwp/\">arcwp</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arkaprabhachowdhury/\">Arkaprabha Chowdhury</a> · <a href=\"https://profiles.wordpress.org/armandmatthey/\">Armand MD</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/arunu1996/\">Arun</a> · <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun Sathiya</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/asadowski10/\">asadowski10</a> · <a href=\"https://profiles.wordpress.org/ashirhabib/\">Ashir Habib</a> · <a href=\"https://profiles.wordpress.org/atharvasagane/\">atharvasagane</a> · <a href=\"https://profiles.wordpress.org/racinesdesign/\">Audrey Soler</a> · <a href=\"https://profiles.wordpress.org/audunmb/\">audunmb</a> · <a href=\"https://profiles.wordpress.org/awardpress/\">awardpress</a> · <a href=\"https://profiles.wordpress.org/azharderaiya/\">Azhar Deraiya</a> · <a href=\"https://profiles.wordpress.org/azragh/\">Azragh</a> · <a href=\"https://profiles.wordpress.org/neo2k23/\">BackuPs</a> · <a href=\"https://profiles.wordpress.org/badasswp/\">badasswp</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benniledl/\">Benedikt Ledl</a> · <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/benpinales/\">benpinales</a> · <a href=\"https://profiles.wordpress.org/bernattorras/\">Bernat Torras (a11n)</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/berislavgrgicak/\">Bero</a> · <a href=\"https://profiles.wordpress.org/beaubhavik/\">Bhavik Panchal</a> · <a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> · <a href=\"https://profiles.wordpress.org/wilcosky/\">Billy Wilcosky</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blackstar1991/\">BlackStar</a> · <a href=\"https://profiles.wordpress.org/bluefuton/\">bluefuton</a> · <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a> · <a href=\"https://profiles.wordpress.org/safedawn/\">Boris Gherman</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradshawtm/\">bradshawtm</a> · <a href=\"https://profiles.wordpress.org/brajdas0022/\">brajdas0022</a> · <a href=\"https://profiles.wordpress.org/bhubbard/\">Brandon Hubbard</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brbrr/\">brbrr</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/brumack/\">brumack</a> · <a href=\"https://profiles.wordpress.org/freibergergarcia/\">Bruno Freiberger Garcia</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">Béryl de La Grandière</a> · <a href=\"https://profiles.wordpress.org/calin/\">Calin Don</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/cgastrell/\">cgastrell</a> · <a href=\"https://profiles.wordpress.org/chexee/\">Chelsea Otakan</a> · <a href=\"https://profiles.wordpress.org/chihsuan/\">Chi-Hsuan Huang</a> · <a href=\"https://profiles.wordpress.org/xristos3490/\">Chris Lilitsas</a> · <a href=\"https://profiles.wordpress.org/chrismcelroyseo/\">Chris McElroy SEO</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chrisdotdotdot/\">chrisdotdotdot</a> · <a href=\"https://profiles.wordpress.org/chrispecoraro/\">chrispecoraro</a> · <a href=\"https://profiles.wordpress.org/cris31/\">Christelle Stasse</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/cagrimmett/\">Chuck Grimmett</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian Popescu</a> · <a href=\"https://profiles.wordpress.org/claycarpenter/\">claycarpenter</a> · <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a> · <a href=\"https://profiles.wordpress.org/clementpolito/\">Clément Polito</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/themearts/\">Cuong Le</a> · <a href=\"https://profiles.wordpress.org/czarflix/\">czarflix</a> · <a href=\"https://profiles.wordpress.org/daledupreez/\">Dale du Preez</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/dpknauss/\">Dan Knauss</a> · <a href=\"https://profiles.wordpress.org/danluu/\">Dan Luu</a> · <a href=\"https://profiles.wordpress.org/alexodiy/\">Dan Zakirov</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/dmallory42/\">Daniel M (a11n)</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">Dave Ryan</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">David Arenas</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidborrink/\">David Borrink</a> · <a href=\"https://profiles.wordpress.org/davidabowman/\">David Bowman</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/superdav42/\">David Stone</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/deborah86/\">deborah86</a> · <a href=\"https://profiles.wordpress.org/raftaar1191/\">Deepak Gupta</a> · <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a> · <a href=\"https://profiles.wordpress.org/deepakprajapati/\">Deepak Prajapati</a> · <a href=\"https://profiles.wordpress.org/deepakrohilla/\">Deepak Rohilla</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/realloc/\">Dennis Ploetner</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/deoladev/\">deoladev</a> · <a href=\"https://profiles.wordpress.org/dhansondesigns/\">Derek Hanson</a> · <a href=\"https://profiles.wordpress.org/devangvachheta137/\">Devang Vachheta</a> · <a href=\"https://profiles.wordpress.org/dhavalkapadane/\">Dhaval Kapadane</a> · <a href=\"https://profiles.wordpress.org/dhiraj0901/\">Dhiraj Joshi</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dhruvik18/\">Dhruvik Malaviya</a> · <a href=\"https://profiles.wordpress.org/alvitidiana/\">Diana Alviti</a> · <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> · <a href=\"https://profiles.wordpress.org/digamberpradhan/\">digamberpradhan</a> · <a href=\"https://profiles.wordpress.org/digitalblanket/\">digitalblanket</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dimitro/\">Dimitris Mitropoulos</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divyeshpatel01/\">divyeshpatel01</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/thehenridev/\">Douglas Henri</a> · <a href=\"https://profiles.wordpress.org/drebbitsweb/\">Dreb Bitanghol</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drysand/\">drysand</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a> · <a href=\"https://profiles.wordpress.org/egill/\">Egill R. Erlendsson</a> · <a href=\"https://profiles.wordpress.org/ehti/\">Ehti</a> · <a href=\"https://profiles.wordpress.org/elemrr/\">elemrr</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a> · <a href=\"https://profiles.wordpress.org/ytfeldrawkcab/\">Eric Michel</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/r1k0/\">Erick Wambua</a> · <a href=\"https://profiles.wordpress.org/ericmacknight/\">ericmacknight</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/ecairol/\">Esteban</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/evansolomon/\">Evan Solomon</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fcartin22/\">Fabricio</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fakhriaz/\">Fakhri Azzouz</a> · <a href=\"https://profiles.wordpress.org/farhad0/\">Farhad Sakhaei</a> · <a href=\"https://profiles.wordpress.org/feli22/\">feli22</a> · <a href=\"https://profiles.wordpress.org/felipevelzani/\">Felipe Velzani</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/fernandot/\">Fernando Tellado</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/fandevelop/\">Florence ANDROLUS</a> · <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a> · <a href=\"https://profiles.wordpress.org/chiscoleiton/\">Francisco Leiton</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/vanhoucke/\">Franck VANHOUCKE</a> · <a href=\"https://profiles.wordpress.org/franckmee/\">franckmee</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/frozzare/\">Fredrik Forsmo</a> · <a href=\"https://profiles.wordpress.org/from/\">frOM</a> · <a href=\"https://profiles.wordpress.org/fushar/\">fushar</a> · <a href=\"https://profiles.wordpress.org/gajendrasingh/\">Gajendra Singh</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/gaurangsondagar/\">Gaurang Sondagar</a> · <a href=\"https://profiles.wordpress.org/gautammkgarg/\">Gautam Garg</a> · <a href=\"https://profiles.wordpress.org/gautam23/\">Gautam Mehta</a> · <a href=\"https://profiles.wordpress.org/geminorum/\">geminorum</a> · <a href=\"https://profiles.wordpress.org/generosus/\">Generosus</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/gmjuhasz/\">Gergely J</a> · <a href=\"https://profiles.wordpress.org/gierand/\">gierand</a> · <a href=\"https://profiles.wordpress.org/giuliorubelli/\">giuliorubelli</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/grahamarmfield/\">Graham Armfield</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/guido07111975/\">Guido</a> · <a href=\"https://profiles.wordpress.org/gulamdastgir04/\">Gulamdastgir Momin</a> · <a href=\"https://profiles.wordpress.org/gustavohappyeng/\">Gustavo Hilario</a> · <a href=\"https://profiles.wordpress.org/gyurmey/\">Gyurmey</a> · <a href=\"https://profiles.wordpress.org/adrock42/\">H. Adam Lenz</a> · <a href=\"https://profiles.wordpress.org/kabir93/\">H. Kabir</a> · <a href=\"https://profiles.wordpress.org/hack_nug/\">hack_nug</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardikhuptechdev/\">Hardik Kumar</a> · <a href=\"https://profiles.wordpress.org/hardipparmar/\">Hardip Parmar</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshbhonsle08/\">harshbhonsle08</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/himshekhar07/\">Himanshu Shekhar</a> · <a href=\"https://profiles.wordpress.org/hiranimahaveer/\">hiranimahaveer</a> · <a href=\"https://profiles.wordpress.org/hiroshisato/\">Hiroshi Sato</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hiteshtalpada/\">Hitesh Talpada</a> · <a href=\"https://profiles.wordpress.org/hozefasmile/\">Hozefa Saleh</a> · <a href=\"https://profiles.wordpress.org/royhridoy/\">Hridoy Roy</a> · <a href=\"https://profiles.wordpress.org/hugod/\">Hugo</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimriaz/\">Ibrahim Riaz</a> · <a href=\"https://profiles.wordpress.org/ierwira/\">ierwira</a> · <a href=\"https://profiles.wordpress.org/iflairwebtechnologies/\">iflairwebtechnologies</a> · <a href=\"https://profiles.wordpress.org/ignatiusjeroe/\">ignatiusjeroe</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/iqbal1hossain/\">Iqbal Hossain</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/iseulde/\">iseulde</a> · <a href=\"https://profiles.wordpress.org/itsyash1421/\">itsyash1421</a> · <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> · <a href=\"https://profiles.wordpress.org/ivanbachev/\">ivanbachev</a> · <a href=\"https://profiles.wordpress.org/jabe/\">Jabe</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/smithjw1/\">Jacob Smith</a> · <a href=\"https://profiles.wordpress.org/jadavsanjay/\">Jadav Sanjay</a> · <a href=\"https://profiles.wordpress.org/jyb1603/\">Jainish Brahmbhatt</a> · <a href=\"https://profiles.wordpress.org/jamesgiroux/\">James Giroux</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> · <a href=\"https://profiles.wordpress.org/jhmonroe/\">James Monroe</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/jarodortegaaraya/\">jarodortegaaraya</a> · <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> · <a href=\"https://profiles.wordpress.org/jasonkytros/\">Jason Kytros</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a> · <a href=\"https://profiles.wordpress.org/jaspercck/\">jaspercck</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jdeep/\">Jaydeep Das</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">Jaydip Ahir</a> · <a href=\"https://profiles.wordpress.org/jcnetsys/\">jcnetsys</a> · <a href=\"https://profiles.wordpress.org/jdoubleu/\">jdoubleu</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jsmansart/\">Jean-Sébastien Mansart</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/maverick3x6/\">Jeff Golenski</a> · <a href=\"https://profiles.wordpress.org/phpbits/\">Jeffrey Carandang</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jessedyck/\">Jesse Dyck</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jf1994/\">jf1994</a> · <a href=\"https://profiles.wordpress.org/jfacemyer/\">JF::IA</a> · <a href=\"https://profiles.wordpress.org/jhtjards/\">jhtjards</a> · <a href=\"https://profiles.wordpress.org/jigarkahar/\">Jigar Kahar</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jimnelin/\">Jim Nelin</a> · <a href=\"https://profiles.wordpress.org/jmarx75/\">jmarx75</a> · <a href=\"https://profiles.wordpress.org/jojo256/\">Joan Namunina</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joefusco/\">Joe Fusco</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/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/joezappie/\">joezappie</a> · <a href=\"https://profiles.wordpress.org/wedgemaster/\">Johan</a> · <a href=\"https://profiles.wordpress.org/timse201/\">Johannes Jülg</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjago/\">John Jago</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/mindctrl/\">John Parris</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joppuyo/\">joppuyo</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/jorge1017/\">jorge1017</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/josevarghese/\">Jose Varghese</a> · <a href=\"https://profiles.wordpress.org/josephscott/\">Joseph Scott</a> · <a href=\"https://profiles.wordpress.org/jdwire/\">Joshua Dwire</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/joshualipstone/\">joshualipstone</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jtquip88/\">jtquip88</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/julianoe/\">julianoe</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/itsroy69/\">Jyotirmoy Roy</a> · <a href=\"https://profiles.wordpress.org/djidjou/\">Jérill</a> · <a href=\"https://profiles.wordpress.org/kkeerthiprabhu/\">K Keerthi Prabhu</a> · <a href=\"https://profiles.wordpress.org/kaelansmith/\">kaelansmith</a> · <a href=\"https://profiles.wordpress.org/kallyansin/\">Kallyan Singha</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karinchristen/\">Karin Christen</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/karthickmurugan/\">Karthick</a> · <a href=\"https://profiles.wordpress.org/karthikeya01/\">Karthikeya Bethu</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/khushdoms/\">Kaushik Domadiya</a> · <a href=\"https://profiles.wordpress.org/kjoyner/\">Kedar Joyner</a> · <a href=\"https://profiles.wordpress.org/kmurphyzuora/\">Keith Murphy</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kelvinballoo/\">kelvinballoo</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/khushipatel15/\">Khushi Patel</a> · <a href=\"https://profiles.wordpress.org/khushi1501/\">Khushi Thakrar</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/solankisoftware/\">Kirtikumar Solanki</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/kpapazov/\">kpapazov</a> · <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/gohelkunjan/\">Kunjan Gohel</a> · <a href=\"https://profiles.wordpress.org/mywp459/\">Kyle Mott</a> · <a href=\"https://profiles.wordpress.org/l0id/\">l0id</a> · <a href=\"https://profiles.wordpress.org/mlaetitia/\">Lae</a> · <a href=\"https://profiles.wordpress.org/lakshyajeet/\">Lakshyajeet Singh Goyal</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/landwire/\">landwire</a> · <a href=\"https://profiles.wordpress.org/lgersman/\">Lars Gersmann</a> · <a href=\"https://profiles.wordpress.org/lasacco/\">Laura Sacco</a> · <a href=\"https://profiles.wordpress.org/laurisaarni/\">Lauri Saarni</a> · <a href=\"https://profiles.wordpress.org/lapsrj/\">Leandro Amorim</a> · <a href=\"https://profiles.wordpress.org/leedxw/\">leedxw</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/lbones/\">Lela</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leogg/\">leogg</a> · <a href=\"https://profiles.wordpress.org/levinbaria/\">Levin Baria</a> · <a href=\"https://profiles.wordpress.org/lsarsfield/\">Liam Sarsfield (a11n)</a> · <a href=\"https://profiles.wordpress.org/lidarroy/\">Lidia Arroyo Vargas</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/lobsangw/\">Lobsang Wangdu</a> · <a href=\"https://profiles.wordpress.org/louischan/\">Louis Chance</a> · <a href=\"https://profiles.wordpress.org/louiswol94/\">Louis Wolmarans</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/luigipulcini/\">luigipulcini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasfritzedev/\">LukasFritzeDev</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/griffbrad/\">Lynn Bradley Griffith</a> · <a href=\"https://profiles.wordpress.org/leaprvt/\">Léa Prévot</a> · <a href=\"https://profiles.wordpress.org/maccyd/\">maccyd</a> · <a href=\"https://profiles.wordpress.org/madhavishah01/\">Madhavi Shah</a> · <a href=\"https://profiles.wordpress.org/madhavraj/\">madhavraj</a> · <a href=\"https://profiles.wordpress.org/magaliechetrit/\">Magalie Chetrit</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/aion11/\">Mainul Kabir Aion</a> · <a href=\"https://profiles.wordpress.org/mkrndmane/\">Makarand Mane</a> · <a href=\"https://profiles.wordpress.org/maksvi/\">maksvi</a> · <a href=\"https://profiles.wordpress.org/malayladu/\">Malay Ladu</a> · <a href=\"https://profiles.wordpress.org/malt3/\">Malte</a> · <a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a> · <a href=\"https://profiles.wordpress.org/manhar/\">Manhar Barot</a> · <a href=\"https://profiles.wordpress.org/manishxdp/\">Manish Dhorepatil</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">Manuel Camargo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Marcio Duarte</a> · <a href=\"https://profiles.wordpress.org/webdados/\">Marco Almeida | Webdados</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/olmostblue/\">Marco Olmedi</a> · <a href=\"https://profiles.wordpress.org/power2009/\">Marcus</a> · <a href=\"https://profiles.wordpress.org/marian1/\">marian1</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">Marianne</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/motylanogha/\">Mariusz Szatkowski</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> · <a href=\"https://profiles.wordpress.org/muryam/\">Maryam Sultana</a> · <a href=\"https://profiles.wordpress.org/mathiaspeguet/\">Mathias Peguet</a> · <a href=\"https://profiles.wordpress.org/mathijsvdbeek/\">mathijsvdbeek</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattmiklic/\">Matt Miklic</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattshaw/\">Matt Shaw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a> · <a href=\"https://profiles.wordpress.org/jillro/\">Maud Royer</a> · <a href=\"https://profiles.wordpress.org/maulikmakwana2008/\">Maulik Makwana</a> · <a href=\"https://profiles.wordpress.org/maxschmeling/\">Max Schmeling</a> · <a href=\"https://profiles.wordpress.org/djsuperfive/\">Maxime Freschard</a> · <a href=\"https://profiles.wordpress.org/maximumsoftware/\">maximum.software</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mabfahad/\">Md Abdullah Al Fahad</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/ismail0071/\">MD ISMAIL</a> · <a href=\"https://profiles.wordpress.org/mdibrahimk48/\">Md. Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/mehrazmorshed/\">Mehraz Morshed</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/donmhico/\">Michael</a> · <a href=\"https://profiles.wordpress.org/hrkhal/\">Michael James Ilett</a> · <a href=\"https://profiles.wordpress.org/chellycat/\">Michelle Langston</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mirmpro/\">Mir Monoarul Alam</a> · <a href=\"https://profiles.wordpress.org/illuminea/\">Miriam Schwab</a> · <a href=\"https://profiles.wordpress.org/369work/\">Miroku</a> · <a href=\"https://profiles.wordpress.org/m1r0/\">Miroslav Mitev (a11n)</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mmorris8/\">mmorris8</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/hmrisad/\">Mohammad Risad</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/jabir20/\">Mohammed Jabir shaikh</a> · <a href=\"https://profiles.wordpress.org/mohkatz/\">Mohammed Kateregga</a> · <a href=\"https://profiles.wordpress.org/mohamedahamed/\">Mohammed Noumaan Ahamed</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/mohitbsf/\">Mohit Sharma</a> · <a href=\"https://profiles.wordpress.org/mokshasharmila13/\">Moksha Shah</a> · <a href=\"https://profiles.wordpress.org/monarobase/\">Monarobase</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/munirkamal/\">Munir Kamal</a> · <a href=\"https://profiles.wordpress.org/mustafabharmal/\">Mustafa Bharmal</a> · <a href=\"https://profiles.wordpress.org/mydesign78/\">mydesign78</a> · <a href=\"https://profiles.wordpress.org/trickster301/\">Nabhishek Singh</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a> · <a href=\"https://profiles.wordpress.org/senadir/\">Nadir Seghir</a> · <a href=\"https://profiles.wordpress.org/namankhare/\">Naman Khare</a> · <a href=\"https://profiles.wordpress.org/nanisamireddy/\">NANI SAMIREDDY</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/muddassirnasim/\">Nasim Miah</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/navi161/\">Navneet Kaur</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/naissvr/\">Naïs</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickfmc/\">Nick Murray</a> · <a href=\"https://profiles.wordpress.org/nicmare/\">nicmare</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikitasolanki1812/\">Nikita Solanki</a> · <a href=\"https://profiles.wordpress.org/nikunj8866/\">Nikunj Hatkar</a> · <a href=\"https://profiles.wordpress.org/nilambar/\">Nilambar Sharma</a> · <a href=\"https://profiles.wordpress.org/snilesh/\">Nilesh Shiragave</a> · <a href=\"https://profiles.wordpress.org/nimeshatxecurify/\">Nimesh</a> · <a href=\"https://profiles.wordpress.org/ninomiho/\">Nino Mihovilic</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">Nirav Sherasiya</a> · <a href=\"https://profiles.wordpress.org/nishantkapadiya/\">Nishant Kapadiya</a> · <a href=\"https://profiles.wordpress.org/govardhane/\">Nitin Govardhane</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman Rubel</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/yasunocco/\">Okawa Yasuno</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/triple0t/\">Oluwaseun Olorunsola</a> · <a href=\"https://profiles.wordpress.org/timhibberd/\">OnePressTech</a> · <a href=\"https://profiles.wordpress.org/onuro/\">onuro</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Ophelia Rose</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/ottok/\">Otto Kekäläinen</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/ovidiu-galatan/\">Ovidiu Galatan</a> · <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> · <a href=\"https://profiles.wordpress.org/owolter/\">owolter</a> · <a href=\"https://profiles.wordpress.org/ozgursar/\">Ozgur Sar</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/palak678/\">Palak Patel</a> · <a href=\"https://profiles.wordpress.org/paragjethva/\">Parag Jethva</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/patricedefago/\">Patrice Défago</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/patrickwclanden/\">patrickwclanden</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/bbpaule/\">Paul English</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/ciorici/\">Pavel Ciorici</a> · <a href=\"https://profiles.wordpress.org/vybiral/\">Pavel Vybíral</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/penelopeadrian/\">penelopeadrian</a> · <a href=\"https://profiles.wordpress.org/pers/\">Per Søderlind</a> · <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/peter8nss/\">peter8nss</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/philhoyt/\">philhoyt</a> · <a href=\"https://profiles.wordpress.org/vheemstra/\">Philip</a> · <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a> · <a href=\"https://profiles.wordpress.org/manhphucofficial/\">Phuc Nguyen</a> · <a href=\"https://profiles.wordpress.org/pierrelannoy/\">Pierre Lannoy</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/piyushpatel123/\">Piyush Patel</a> · <a href=\"https://profiles.wordpress.org/pmbs/\">pmbs</a> · <a href=\"https://profiles.wordpress.org/poligilad/\">poligilad</a> · <a href=\"https://profiles.wordpress.org/pooja-n/\">Pooja Kakkad</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja Killekar (Muchandikar)</a> · <a href=\"https://profiles.wordpress.org/poojapadamad/\">poojapadamad</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/gaisma22/\">Pradeep Pasam</a> · <a href=\"https://profiles.wordpress.org/prajapatvishnu/\">prajapatvishnu</a> · <a href=\"https://profiles.wordpress.org/pranavyeole/\">Pranav Yeole</a> · <a href=\"https://profiles.wordpress.org/pranjalpratapsingh/\">Pranjal Pratap Singh</a> · <a href=\"https://profiles.wordpress.org/prasadkarmalkar/\">Prasad Karmalkar</a> · <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a> · <a href=\"https://profiles.wordpress.org/prathameshbhagat1511/\">Prathamesh Bhagat</a> · <a href=\"https://profiles.wordpress.org/pratik-jain/\">Pratik Jain</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/pratiknawkar94/\">Pratik Nawkar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/priyankagusani/\">Priyanka Gusani</a> · <a href=\"https://profiles.wordpress.org/psorensen/\">psorensen</a> · <a href=\"https://profiles.wordpress.org/qhaensler/\">qhaensler</a> · <a href=\"https://profiles.wordpress.org/ronya4927/\">Rabbi Islam rony</a> · <a href=\"https://profiles.wordpress.org/rachid84/\">rachid84</a> · <a href=\"https://profiles.wordpress.org/rafaeldella/\">Rafael Della</a> · <a href=\"https://profiles.wordpress.org/rafa8626/\">Rafael Miranda</a> · <a href=\"https://profiles.wordpress.org/rafaelkr/\">rafaelkr</a> · <a href=\"https://profiles.wordpress.org/rahan00123/\">Rahan Al Rashid</a> · <a href=\"https://profiles.wordpress.org/ekla/\">Rahul Kumar</a> · <a href=\"https://profiles.wordpress.org/rahulsprajapati/\">Rahul Prajapati</a> · <a href=\"https://profiles.wordpress.org/rahultank/\">Rahul Tank</a> · <a href=\"https://profiles.wordpress.org/chauhanraj754/\">Raj Chauhan</a> · <a href=\"https://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a> · <a href=\"https://profiles.wordpress.org/rajdiptank111/\">Rajdip Tank</a> · <a href=\"https://profiles.wordpress.org/ralphonz/\">ralphonz</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">Raluca</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/wprashed/\">Rashed Hossain</a> · <a href=\"https://profiles.wordpress.org/ravichudasama01/\">Ravi Chudasama</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/ravikhadka/\">Ravi Khadka</a> · <a href=\"https://profiles.wordpress.org/rcrdortiz/\">rcrdortiz</a> · <a href=\"https://profiles.wordpress.org/rebeensarbast/\">Rebeen Sarbast</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho</a> · <a href=\"https://profiles.wordpress.org/retnonindya/\">Retno Nindya</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riadev/\">riadev</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/ricjcs/\">Ricardo S.</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkalpagdar/\">Rinkal Pagdar</a> · <a href=\"https://profiles.wordpress.org/rishabhwp/\">Rishabh Gupta</a> · <a href=\"https://profiles.wordpress.org/rishavdutta/\">Rishav Dutta</a> · <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/shibleemehdi/\">RM Shiblee Mehdi</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinvandervliet/\">Robin van der Vliet</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/geekofshire/\">Rohan Jha</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">Rolly Bueno</a> · <a href=\"https://profiles.wordpress.org/romainmrhenry/\">Romain Menke</a> · <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/rutujaparamane2004/\">Rutuja Paramane</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ruba1956/\">Ruud Baarslag</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sachinrajcp123/\">SACHINRAJ CP</a> · <a href=\"https://profiles.wordpress.org/sagardeshmukh/\">Sagar Deshmukh</a> · <a href=\"https://profiles.wordpress.org/sagarjadhav/\">Sagar Jadhav</a> · <a href=\"https://profiles.wordpress.org/sagarladani/\">Sagar Ladani</a> · <a href=\"https://profiles.wordpress.org/sageth/\">Sageth</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a> · <a href=\"https://profiles.wordpress.org/samueljseay/\">Sam</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/sanayasir/\">Sana Yasir</a> · <a href=\"https://profiles.wordpress.org/sandeepdahiya/\">Sandeep Dahiya</a> · <a href=\"https://profiles.wordpress.org/sandipsinh007/\">Sandip Sinh</a> · <a href=\"https://profiles.wordpress.org/sandipmaurya2611/\">sandipmaurya2611</a> · <a href=\"https://profiles.wordpress.org/andrewssanya/\">SAndrew</a> · <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a> · <a href=\"https://profiles.wordpress.org/sarayourfriend/\">Sara</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a> · <a href=\"https://profiles.wordpress.org/saranshsinha/\">Saransh Sinha</a> · <a href=\"https://profiles.wordpress.org/saratheonline/\">Sarath E</a> · <a href=\"https://profiles.wordpress.org/sarthak8858/\">Sarthak Jaiswal</a> · <a href=\"https://profiles.wordpress.org/sfougnier/\">Saul Fougnier</a> · <a href=\"https://profiles.wordpress.org/saurabhdhariwal/\">saurabh.dhariwal</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/se02vas/\">se02vas</a> · <a href=\"https://profiles.wordpress.org/seanwei/\">Sean Wei</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/vyatka/\">Sergey Mochalov</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shadyvb/\">Shadi Sharaf</a> · <a href=\"https://profiles.wordpress.org/ferdoused/\">Shahi Ferdous</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemac10/\">shanemac10</a> · <a href=\"https://profiles.wordpress.org/shekh0109/\">Shashank Shekhar</a> · <a href=\"https://profiles.wordpress.org/shatrumyatra/\">Shatrughan Myatra</a> · <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a> · <a href=\"https://profiles.wordpress.org/sajib1223/\">Shazzad Hossain Khan</a> · <a href=\"https://profiles.wordpress.org/shekharnwagh/\">shekharnwagh</a> · <a href=\"https://profiles.wordpress.org/whiteshadow01/\">Shivam Jha</a> · <a href=\"https://profiles.wordpress.org/showravhasan/\">Showrav Hasan</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shreya0shrivastava/\">Shreya Shrivastava</a> · <a href=\"https://profiles.wordpress.org/shubhtoy/\">Shubh Mittal</a> · <a href=\"https://profiles.wordpress.org/iamshubhamsp/\">Shubham Patil</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/sidhanttomar/\">Sidhant Tomar</a> · <a href=\"https://profiles.wordpress.org/sidharthpandita/\">sidharthpandita</a> · <a href=\"https://profiles.wordpress.org/silaskoehler/\">Silas Köhler</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/silvanarnet/\">silvanarnet</a> · <a href=\"https://profiles.wordpress.org/sky_76/\">sky_76</a> · <a href=\"https://profiles.wordpress.org/skylarkcob/\">skylarkcob</a> · <a href=\"https://profiles.wordpress.org/slrslr/\">slrslr</a> · <a href=\"https://profiles.wordpress.org/sonaliprajapati/\">Sonali Prajapati</a> · <a href=\"https://profiles.wordpress.org/sophiecaperaa/\">Sophie Caperaa</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/soyebsalar01/\">Soyeb Salar</a> · <a href=\"https://profiles.wordpress.org/spencerfinnell/\">Spencer Finnell</a> · <a href=\"https://profiles.wordpress.org/emptyopssphere/\">Sphere Plugins</a> · <a href=\"https://profiles.wordpress.org/staggerlee/\">staggerlee</a> · <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a> · <a href=\"https://profiles.wordpress.org/hubersen/\">Stefan Pasch</a> · <a href=\"https://profiles.wordpress.org/stefanvelthuys/\">Stefan Velthuys</a> · <a href=\"https://profiles.wordpress.org/stefanfisk/\">stefanfisk</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stevejburge/\">Steve Burge</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/malgra/\">Steve Mosby</a> · <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a> · <a href=\"https://profiles.wordpress.org/strarsis/\">strarsis</a> · <a href=\"https://profiles.wordpress.org/aquarius/\">Stuart Langridge</a> · <a href=\"https://profiles.wordpress.org/studiomondiale/\">studio_m</a> · <a href=\"https://profiles.wordpress.org/styankov/\">styankov</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/suhel5047/\">Suhel-Shaikh-Mohammad</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunilkumarthz/\">Sunil Kumar Sharma</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/susiyanti/\">susiyanti</a> · <a href=\"https://profiles.wordpress.org/swanandm/\">Swanand M</a> · <a href=\"https://profiles.wordpress.org/swoyamjeetcodes/\">swoyamjeetcodes</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/riko910/\">Syed Tarikul Islam</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">Sören Wünsch</a> · <a href=\"https://profiles.wordpress.org/tainacan/\">tainacan</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanbirali/\">tanbirali</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan Kumer Das</a> · <a href=\"https://profiles.wordpress.org/suhan2411/\">Tejas Gajjar</a> · <a href=\"https://profiles.wordpress.org/azora/\">the.pro</a> · <a href=\"https://profiles.wordpress.org/thejaymo/\">thejaymo</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a> · <a href=\"https://profiles.wordpress.org/octotoot/\">TheViv</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kräftner</a> · <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a> · <a href=\"https://profiles.wordpress.org/threadi/\">threadi</a> · <a href=\"https://profiles.wordpress.org/timwright12/\">Tim Wright</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">Tobias Bäthge</a> · <a href=\"https://profiles.wordpress.org/themightymo/\">Toby Cryns (@themightymo)</a> · <a href=\"https://profiles.wordpress.org/tomauger/\">Tom Auger</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/spiraltee/\">Tosin Oguntuyi</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/alerzhus/\">Tsvetan Tsvetanov</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/tule/\">TuomasL</a> · <a href=\"https://profiles.wordpress.org/tusharbharti/\">Tushar Bharti</a> · <a href=\"https://profiles.wordpress.org/tusharaddweb/\">Tushar Patel</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/umeshnevase/\">Umesh Nevase</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/up1512001/\">up1512001</a> · <a href=\"https://profiles.wordpress.org/utsavladani/\">Utsav Ladani</a> · <a href=\"https://profiles.wordpress.org/vaibhavsweb/\">Vaibhav Singh Web</a> · <a href=\"https://profiles.wordpress.org/valentingrenier/\">Valentin Grenier</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">Valérie Galassi</a> · <a href=\"https://profiles.wordpress.org/vanonsopensource/\">Van Ons Open Source</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/vascobaiao/\">Vasco Daniel Baião</a> · <a href=\"https://profiles.wordpress.org/supernovia/\">Velda</a> · <a href=\"https://profiles.wordpress.org/vgnavada/\">vgnavada</a> · <a href=\"https://profiles.wordpress.org/vietcgi/\">vietcgi</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a> · <a href=\"https://profiles.wordpress.org/vincentbreton/\">Vincent Breton</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vishalkakadiya/\">Vishal Kakadiya</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vishnuprajapat/\">vishnu prajapat</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/waqassafdar/\">Waqas Safdar</a> · <a href=\"https://profiles.wordpress.org/wooxperto/\">WebCartisan</a> · <a href=\"https://profiles.wordpress.org/george9/\">webtasky</a> · <a href=\"https://profiles.wordpress.org/gauri87/\">WebTechee</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/winsleyj/\">WinsleyJ</a> · <a href=\"https://profiles.wordpress.org/wiuempe/\">wiuempe</a> · <a href=\"https://profiles.wordpress.org/wolf45/\">wolf45</a> · <a href=\"https://profiles.wordpress.org/wongjn/\">wongjn</a> · <a href=\"https://profiles.wordpress.org/wpexplorer/\">WPExplorer</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> · <a href=\"https://profiles.wordpress.org/x-raym/\">X-Raym</a> · <a href=\"https://profiles.wordpress.org/xate/\">xate</a> · <a href=\"https://profiles.wordpress.org/xavilc/\">xavilc</a> · <a href=\"https://profiles.wordpress.org/xwolf/\">xwolf</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/yguyon/\">Yannis Guyon</a> · <a href=\"https://profiles.wordpress.org/getsyash/\">Yash B</a> · <a href=\"https://profiles.wordpress.org/yashjawale/\">Yash Jawale</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yusufmudagal/\">Yusuf Mudagal</a> · <a href=\"https://profiles.wordpress.org/zoe20/\">zoe20</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/zuveria/\">zuveria</a> · <a href=\"https://profiles.wordpress.org/lstraczynski/\">Łukasz Strączyński</a></p></p>\n\n\n\n<p class=\"wp-block-paragraph\">More than <a href=\"https://translate.wordpress.org/stats/\">70 locales have fully translated</a> WordPress 7.0 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200+ languages.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you to the <a href=\"https://make.wordpress.org/hosting/test-results/\">more than 21 web hosts</a> that have tested pre-release versions for WordPress 7.0, helping ensure that WordPress and hosting platforms are fully compatible, free of errors, and optimized for the best possible user experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/forums/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Participation in WordPress goes far beyond coding. And learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20583\";s: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:78:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 7.0 Release Candidate 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:69:\"https://wordpress.org/news/2026/05/wordpress-7-0-release-candidate-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 May 2026 16:47:15 +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: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:7:\"General\";s: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:\"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:3;a:5:{s:4:\"data\";s:3:\"7-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: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:7:\"general\";s: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:18:\"release candidates\";s: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:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20570\";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:367:\"The fourth Release Candidate (“RC4”) for WordPress 7.0 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC4 on a test server and site. Reaching this phase […]\";s: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:\"Amy Kamala\";s: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:6713:\"\n<p class=\"wp-block-paragraph\">The fourth Release Candidate (“RC4”) for WordPress 7.0 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC4 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 7.0 is the best it can be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.0 RC4 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-RC4.zip\" data-type=\"link\" data-id=\"https://wordpress.org/wordpress-7.0-RC4.zip\">RC4 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br><code>wp core update --version=7.0-</code>RC4</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&wp=beta&networking=no&language=&multisite=no&random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser. No setup required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is <strong>May 20, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/04/22/wordpress-7-0-release-party-updated-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/7-0\">7.0-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.0 RC4?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? Take a look at the <a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a>. For technical information related to the issues addressed since <a href=\"https://wordpress.org/news/2026/05/wordpress-7-0-release-candidate-3/\">RC3</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=05%2F08%2F2026..05%2F14%2F2026&milestone=7.0&group=component&col=id&col=summary&col=milestone&col=changetime&col=type&order=id\">Closed 7.0 WordPress Core Trac tickets</a> since May 8, 2026</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=026-05-08&until=2026-05-14\">7.0 Gutenberg commits</a> since May 8, 2026</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can get involved with the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. Your help testing the WordPress 7.0 RC4 version is key to ensuring that the final release is the best it can be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">detailed guide</a> will walk you through testing features in WordPress 7.0. </p>\n\n\n\n<p class=\"wp-block-paragraph\">For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter a potential bug or issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC4) marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the <a href=\"https://make.wordpress.org/core/2026/03/25/wordpress-7-0-release-candidate-phase/\">7.0 release cycle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC4 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Step into the next,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>bold, new era of WordPress.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven-oh is blessed.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a></em> <em>for proofreading and review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20570\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Get Your WordCamp US 2026 Tickets\";s:7:\"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/news/2026/05/wcus-2026-get-tickets/\";s: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 May 2026 13:56: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:\"category\";a:3:{i:0;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:1;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:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"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://wordpress.org/news/?p=20548\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:386:\"August 16–19, 2026, Phoenix Convention Center – Phoenix, Arizona Tickets are now available for WordCamp US 2026, taking place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. The flagship event brings together people from across the WordPress community to learn, contribute, share ideas, connect with contributor teams, and help shape the future […]\";s: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:\"Brett McSherry\";s: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:16128:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"470\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2.png?resize=1024%2C470&ssl=1\" alt=\"\" class=\"wp-image-20551\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2-scaled.png?resize=1024%2C470&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2-scaled.png?resize=300%2C138&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2-scaled.png?resize=768%2C352&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2-scaled.png?resize=1536%2C704&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCUS-sign-2-scaled.png?resize=2048%2C939&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>August 16–19, 2026, Phoenix Convention Center – Phoenix, Arizona</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Tickets are now available for WordCamp US 2026, taking place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. The flagship event brings together people from across the WordPress community to learn, contribute, share ideas, connect with contributor teams, and help shape the future of an open source project that powers over 40% of the web.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9598f8b8 wp-block-group-is-layout-constrained\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-large-font-size wp-block-paragraph\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>Tickets are limited. Secure yours today!</strong></p>\n\n\n\n<div style=\"height:25px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\"><strong>Get Your Tickets</strong></a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/contributor-day/\"><strong>Sign Up For Contributor Day</strong></a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US is designed for people at many points in their WordPress journey, including contributors, developers, designers, marketers, publishers, business owners, educators, students, and anyone who wants to learn more about WordPress. This year’s event will include Contributor Day, where attendees can work alongside contributor teams and learn how to take part in the project; Showcase Day, which highlights real-world uses of WordPress; and two full days of sessions and workshops. The programming will also explore how artificial intelligence is changing the way people create, publish, build, and maintain digital experiences, with WordPress as an important part of that broader conversation.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Gather in Phoenix</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">This year also brings WordCamp US to downtown Phoenix, where the <a href=\"https://www.phoenixconventioncenter.com/\">Phoenix Convention Center</a> is close to restaurants, museums, theaters, galleries, live music, and the <a href=\"https://www.visitphoenix.com/greater-phoenix/phoenix/downtown-phoenix/roosevelt-row/\">Roosevelt Row Arts District</a>. Attendees can stay near the venue, meet with other community members between sessions, and explore a downtown area served by <a href=\"https://www.valleymetro.org/how-to-ride/rail\">Valley Metro Rail</a>. For those extending their trip, Phoenix also offers access to the wider Sonoran Desert region, including parks, gardens, and outdoor spaces that make the city a distinct setting for this year’s event.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-darker-grey-background-color has-background wp-block-gallery-5 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px\">\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"1024\" data-id=\"20566\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/2188855058_459eb2d870_k.jpg?resize=768%2C1024&ssl=1\" alt=\"\" class=\"wp-image-20566\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/2188855058_459eb2d870_k.jpg?resize=768%2C1024&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/2188855058_459eb2d870_k.jpg?resize=225%2C300&ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2026/05/2188855058_459eb2d870_k.jpg?resize=1152%2C1536&ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2026/05/2188855058_459eb2d870_k.jpg?w=1536&ssl=1 1536w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-id=\"19086\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19086\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" data-id=\"19112\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948.jpg?resize=1024%2C577&ssl=1\" alt=\"\" class=\"wp-image-19112\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1024%2C577&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1536%2C865&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=2048%2C1153&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-id=\"19100\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-19100\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1.jpg?w=1600&ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" data-id=\"20565\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-20565\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?resize=1024%2C768&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?resize=768%2C576&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?resize=1536%2C1152&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/2248829384_7f84e3b500_h.jpg?w=1600&ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-id=\"19110\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19110\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-id=\"19115\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19115\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5869-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-id=\"19114\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19114\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-1-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"501\" data-id=\"20564\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3.jpg?resize=1024%2C501&ssl=1\" alt=\"\" class=\"wp-image-20564\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3-scaled.jpg?resize=1024%2C501&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3-scaled.jpg?resize=300%2C147&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3-scaled.jpg?resize=768%2C376&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3-scaled.jpg?resize=1536%2C751&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/Ksblack99_Yukimi_Doro_Lantern_in_Phoenix_Arizona_3-scaled.jpg?resize=2048%2C1002&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-id=\"19085\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19085\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Choose the Ticket That Fits</strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\">Several ticket options are available, giving attendees different ways to join or support the event:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>General Admission:</strong> A $100 ticket that includes access to all four days of WordCamp US programming, including Contributor Day, Showcase Day, sessions, workshops, lunch and snacks, sponsor booths, and the community social.</li>\n\n\n\n<li><strong>Student:</strong> A $25 ticket for students who want to learn more about WordPress, connect with mentors and community members, explore open source contribution, and build practical experience.</li>\n\n\n\n<li><strong>Micro-Sponsor:</strong> A $750 ticket that includes the same access and attendee benefits as General Admission while helping support the true cost of the event. Micro-Sponsors will also be listed on the official WordCamp US Sponsors page.</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\"><strong>Get Your Ticket Today</strong></a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Full ticket details, including refund information, visa support, dietary accommodations, registration requirements, and other attendee information, are available on the ticket page. You can also follow the <a href=\"https://us.wordcamp.org/2026/news/\">WordCamp US 2026 website</a> for updates on the schedule, speakers, travel information, and more as the event gets closer.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-18898\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/wordcamp-us.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 Jun 2026 18:45:41 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 22 Jun 2026 15:07:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}s:5:\"build\";i:1772760451;s:21:\"cache_expiration_time\";i:1782197141;s:23:\"__cache_expiration_time\";i:1782197141;}','off'),(3941323,'_site_transient_timeout_theme_roots','1782175224','off'),(3941324,'_site_transient_theme_roots','a:45:{s:15:\"accesspress-ray\";s:7:\"/themes\";s:11:\"adventurous\";s:7:\"/themes\";s:10:\"alexandria\";s:7:\"/themes\";s:6:\"annina\";s:7:\"/themes\";s:12:\"asteria-lite\";s:7:\"/themes\";s:6:\"author\";s:7:\"/themes\";s:11:\"baskerville\";s:7:\"/themes\";s:7:\"bellini\";s:7:\"/themes\";s:5:\"britt\";s:7:\"/themes\";s:11:\"butterbelly\";s:7:\"/themes\";s:8:\"colormag\";s:7:\"/themes\";s:25:\"construction-landing-page\";s:7:\"/themes\";s:9:\"creattica\";s:7:\"/themes\";s:9:\"customizr\";s:7:\"/themes\";s:5:\"ember\";s:7:\"/themes\";s:6:\"enigma\";s:7:\"/themes\";s:4:\"flat\";s:7:\"/themes\";s:6:\"hueman\";s:7:\"/themes\";s:4:\"kale\";s:7:\"/themes\";s:14:\"maskitto-light\";s:7:\"/themes\";s:6:\"monaco\";s:7:\"/themes\";s:5:\"nulis\";s:7:\"/themes\";s:11:\"olsen-light\";s:7:\"/themes\";s:8:\"parallax\";s:7:\"/themes\";s:4:\"plum\";s:7:\"/themes\";s:4:\"poet\";s:7:\"/themes\";s:4:\"saga\";s:7:\"/themes\";s:9:\"skt-white\";s:7:\"/themes\";s:9:\"supernova\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:7:\"vantage\";s:7:\"/themes\";s:8:\"weblizar\";s:7:\"/themes\";s:14:\"wp-clean-green\";s:7:\"/themes\";s:4:\"yarn\";s:7:\"/themes\";s:4:\"zeal\";s:7:\"/themes\";}','off'),(3941173,'_site_transient_timeout_browser_13334439d469dd3dae5bc2cd580b430b','1782703582','off'),(3941174,'_site_transient_browser_13334439d469dd3dae5bc2cd580b430b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"84.0.4147.125\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3941157,'_site_transient_timeout_browser_6dbb10952a38c11d19e2648023d5055b','1782701561','off'),(3941158,'_site_transient_browser_6dbb10952a38c11d19e2648023d5055b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"133.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3940726,'_site_transient_timeout_browser_df3076892ccd0147ca6e0ef4673595d0','1782466126','off'),(3940727,'_site_transient_browser_df3076892ccd0147ca6e0ef4673595d0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"119.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(3940729,'_transient_is_multi_author','0','on'),(3940730,'_transient_britt_categories','2','on'),(3941270,'_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1782197141','off'),(3941271,'_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1782153941','off'),(3941272,'_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1782197142','off');
INSERT INTO `wp_xwml_options` VALUES (3941273,'_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{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:112:\"\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\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\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:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"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:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s: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:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: Browse the New Mercantile Swag Store\";s:7:\"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://wordpress.org/news/?p=20930\";s:7:\"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:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s: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:3868:\"<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20931\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20932\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20933\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\n</div>\";s: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 Jun 2026 15:07: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"jillq\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Open Channels FM: Navigating Burnout in the Age of AI-Driven 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555430\";s:7:\"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:\"https://openchannels.fm/navigating-burnout-in-the-age-of-ai-driven-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"AI transforms developer workflows, causing cognitive overload and blurring work-rest boundaries. Establishing intentional breaks is crucial to maintain balance and prevent burnout.\";s: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 Jun 2026 10:08:08 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Hill For A Stepper\";s:7:\"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:23:\"https://ma.tt/?p=153269\";s:7:\"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:35:\"https://ma.tt/2026/06/hill-stepper/\";s: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:798:\"<p class=\"wp-block-paragraph\">In honor of Father’s Day, I wanted to add to the <a href=\"https://ma.tt/chuck/\">two quotes from my Dad’s obituary</a>, “Seven days without chicken made one weak.” and “If you fail at raising your children, nothing else mattered.” with another saying he had.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Ain’t no hill for a stepper.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to learn more about this, <a href=\"https://waywordradio.org/stepper-like-you/\">check out this part of the A Way with Words podcast</a>, and apparently, it <a href=\"https://www.youtube.com/watch?v=Lui5y2AcYpM\">might have come from the musician John Gaar</a>.</p>\";s: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 Jun 2026 06:58: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Death by PowerPoint\";s:7:\"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:23:\"https://ma.tt/?p=153252\";s:7:\"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://ma.tt/2026/06/death-by-powerpoint/\";s: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:760:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">PowerPoint makes us stupid. </p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">— Gen. James N. Mattis of the Marine Corps, the Joint Forces commander</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.nytimes.com/2010/04/27/world/27powerpoint.html\"><img alt=\"\" class=\"wp-image-153254\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2026/06/27powerpoint_CA0-articleLarge.webp?resize=600%2C340&quality=80&ssl=1\" width=\"600\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Classic <a href=\"https://www.nytimes.com/2010/04/27/world/27powerpoint.html\">2010 NYT <em>We Have Met the Enemy and He Is PowerPoint</em></a>.</p>\";s: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, 21 Jun 2026 06:03: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Best Trash\";s:7:\"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:23:\"https://ma.tt/?p=153245\";s:7:\"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:33:\"https://ma.tt/2026/06/best-trash/\";s: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:1194:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">A typography savant on staff had spent a month designing link underlines (literally just lines) that were more visually pleasing than Chrome or Safari’s defaults. On Tuesdays, engineers stayed late at the office, fixing design imperfections over dinner. One of them began a 2,500-word <a href=\"https://medium.com/@fat/mediums-css-is-actually-pretty-fucking-good-b8e2a6c78b06\" rel=\"noopener\" target=\"_blank\">post</a> about Medium’s CSS code with a quote attributed to Lil Wayne: “I believe that to be the best, you have to smell like the best, dress like the best, act like the best. When you throw your trash in the garbage can, it has to be better than anybody else who ever threw their trash in the garbage can.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">From Harris Sockel’s essay <a href=\"https://www.piratewires.com/p/what-happened-to-medium\">What Happened to Medium</a>, which I think is meant to be a dunk? But I think it’s awesome. Medium’s design and typography has always been really impeccable. I love when people obsess like this.</p>\";s: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, 20 Jun 2026 13:51: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Midjourney Medical\";s:7:\"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:23:\"https://ma.tt/?p=153216\";s:7:\"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:\"https://ma.tt/2026/06/midjourney-medical/\";s: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:3191:\"<p class=\"wp-block-paragraph\">I’m sorry I couldn’t be there in person, but I was so excited to watch the <a href=\"https://www.midjourney.com/medical\">Midjourney Medical</a> launch from afar. This is a really big deal. <a href=\"https://x.com/DavidSHolz\">David Holz</a>, one of the most underrated pioneers in AI, has taken money from <a href=\"https://www.midjourney.com/explore?tab=top\">making cat pictures</a> to build a full-body ultrasound scanner that can give you <a href=\"https://www.midjourney.com/medical/blogpost\">incredible visibility in 60 seconds</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153220\" height=\"302\" src=\"https://i0.wp.com/ma.tt/files/2026/06/female_lower_abdomen_mask-458023b86b6cf387-1024x512.webp?resize=604%2C302&quality=80&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://x.com/i/broadcasts/1MJgNNoAPLyGL\">re-watch the livestream here</a>, which I recommend. You might remember David from Leap Motion, which <a href=\"https://ma.tt/2012/05/leap-motion/\">I blogged back in 2012</a>. It’s so cool to a small but mighty independent company innovate and apply learnings across seemingly disparate sectors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wish all my friends in jazz and the arts who are despondent about tech could meet David:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">“We’re going to be a little confusing for the next six months as we announce all the things, but I’m hoping as they all are out there, they form a picture which I hope feels cohesive. Most of them are around creativity, but some of them, like this, are just around positive human futures that we actually want to be a part of. And I think this is an important thing for AI companies to do—for all humans to do.” — David Holz</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">If you understand imaging, you know the tradeoffs between X-ray, CT (computed tomography), MRI (magnetic resonance imaging), and ultrasound, and Midjourney’s approach doesn’t cover everything, but what’s incredible is the speed, amount of data, and using AI to process and get something useful out of it. Ultrasonics will be an incredibly exciting area over the next few years, first for imaging and later <a href=\"https://www.mayoclinic.org/tests-procedures/high-intensity-focused-ultrasound/about/pac-20596150\">for intervention</a>. I can imagine a future where you dip into one of these once a month just to keep an eye on things, not just to find bad stuff but to see the impact of exercise or dietary changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re fairly new to scanning healthy people, and I always advise friends getting their first whole-body MRI with <a href=\"https://www.biograph.com/\">Biograph</a> or <a href=\"https://prenuvo.com/\">Prenuvo</a> that it’s very common to hear something scary at first, only to find it’s benign. Also, I’ve now heard many examples of things that were caught and treated early, years before they might otherwise have been noticed.</p>\";s: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, 20 Jun 2026 04:09: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WordPress.org blog: Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"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://wordpress.org/news/?p=20927\";s:7:\"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/news/2026/06/kim-parsell-wcus-scholarship/\";s: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:4552:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20941\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&ssl=1\" width=\"1920\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color: #6c214f;\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20939\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&ssl=1\" width=\"943\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s: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, 19 Jun 2026 16:55: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Open Channels FM: Open Channels FM v4.8 Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555724\";s:7:\"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://openchannels.fm/open-channels-fm-v4-8-changelog/\";s: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:208:\"Bob Dunn has launched a blog commentary and a weekly series, \"Open Tabs.\" Do the Woo is now an independent podcast. Updates include a redesigned homepage, new episode features, and a newsletter format change.\";s: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, 19 Jun 2026 09:23: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WordPress.org blog: Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"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://wordpress.org/news/?p=20910\";s:7:\"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/2026/06/global-partners-first-half-2026/\";s: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:7579:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20911\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project’s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20920\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&ssl=1\" width=\"1206\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community’s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20921\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack’s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed “Tech for Social Good,” welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br /></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community’s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</a>.</p>\";s: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, 18 Jun 2026 17:01:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Open Channels FM: AI Hype and Hope Navigating Optimism and Skepticism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555778\";s:7:\"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://openchannels.fm/ai-hype-and-hope-navigating-optimism-and-skepticism/\";s: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:170:\"In this episode, hosts and guests share diverse perspectives on AI\'s rise, touching on its potential, challenges, and how it\'s reshaping industries and human interaction.\";s: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, 18 Jun 2026 09:58: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: #221 – Rahul Bansal on Using AI Everywhere at rtCamp\";s:7:\"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:48:\"https://wptavern.com/?post_type=podcast&p=204828\";s:7:\"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://wptavern.com/podcast/221-rahul-bansal-on-using-ai-everywhere-at-rtcamp\";s: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:55356:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case using AI everywhere at rtCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you or your idea featured on the show. Head to wptavern.com/contact/jukebox? And use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Rahul Bansal. Rahul has a long and accomplished history in the WordPress ecosystem. As the founder and CEO of rtCamp, a company he started 17 years ago, he’s led his agency through the rapidly changing landscape of the web, helping enterprise clients such as Google, Fortune 500 companies, and major publishers solve complex problems with innovative WordPress based solutions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">rtCamp specialises in everything from large scale website builds, to more bespoke projects like Chrome extensions and SaaS connectors, and has grown to a team of hundreds over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today’s episode takes a deep dive into Raul’s recent talk at WordCamp Asia, which focused on what it will take to launch and scale an enterprise WordPress agency in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on real, hard won, lessons from rtCamp’s journey, but also how rapidly the playbook is changing with advances in technology, particularly the explosion of AI tools and workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss Rahul’s philosophy around hiring, namely building a team of people whose strengths complement each other rather than just replicating your own skillset. This approach has allowed rtCamp to adapt to new challenges, fill gaps in expertise, and whether major industry changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We then explore how this idea of complimentary sets can also apply to choosing the right kinds of clients, those who value your expertise because they need what you offer, rather than simply hiring somebody who does what they already know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A theme that emerged in the conversation was specialisation. Rahul outlines how, whereas rtCamp’s earliest differentiator was a simple focus on WordPress, when virtually nobody else in India was, today’s agencies must drill down much further to stand out choosing niches within niches, such as WooCommerce, or payment gateway integrations, and becoming recognised experts in those areas in order to thrive in a much more crowded field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end of the episode, the discussion turns to what might be the most significant topic for agencies today, artificial intelligence. Rahul describes how recent advances in AI have not only altered his agency’s practises, but given them a firm mandate. If something in rtCamp can be done by AI it will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how AI is being leveraged inside rtCamp to automate and optimise everything from sales and proposal writing to project management, and even technical proof of concept builds. With a unified platform for all business processes, the agency is now able to significantly reduce costs, speed up delivery, and focus on higher value consulting and creativity, reshaping roles and team composition as a result.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in what it takes to stand out and succeed in the evolving world of enterprise WordPress agencies, how to confront uncertainty with both optimism and realism, and how AI can become not just a bolt-on feature, but the operational backbone of your business, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Rahul Bansal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Rahul Bansal. Hello, Rahul.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Hello Nathan. Thanks for having me here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> You are very welcome. Rahul and I were both at WordCamp Asia and that is going to be the main focus of the podcast today. We’re going to be talking about agencies, growth in agencies, and then probably delving into AI a little bit at the end because of a recent announcement that came out of rtCamp, which is the company that Rahul founded many years ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In order to, I suppose, lend credibility to a conversation about agency work, would you mind Rahul, just introducing yourself and tell us a little bit about who you are, what you do in WordPress, and maybe give us a few little interesting facts about rtCamp and what you do over there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> So I’m, as you mentioned, founder and CEO of rtCamp. We started this 17 years ago. We primarily help large enterprise client, sometimes we build websites for their marketing team, which is the most common use case of WordPress. But at the same time, we help large tech companies like Google communicate better with the WordPress ecosystem for their offering. Like sometimes we build products that includes neither thing, neither plugin, but something like Chrome extension. For large companies sometimes we build like SaaS connectors for technology companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, so we work with, like a big companies really Fortune 500, and the idea is to deliver something related to WordPress in one form or another form.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> If you go to the rtCamp website, you can probably Google it I would’ve imagined, then you’ll be able to get some impression of what the company is like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think last time we spoke you were into the sort of 200 employees level. I’m not sure if those numbers have gone up or down or what have you. But you get an impression of how large it is. And one of the interesting things that I spotted during my time at WordCamp Asia was just how vibrant the community, the WordPress community is. So maybe we’ll get into that a little bit as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m going to concentrate to begin with on the presentation that you gave at WordCamp Asia. If you would like to see that, wordpress.tv will have a video. And if the video is already available, I will link to it in the show notes. But the presentation that Rahul gave was entitled, how to Start an Enterprise WordPress Agency in 2026. And I’ll just read the blurb that goes with it because it was fairly short and easy to manage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Building a WordPress agency business for large enterprises. In this talk, I’ll share the story of how rtCamp grew from a small WordPress shop into a globally recognised enterprise agency, trusted by Fortune 500 companies and major publishers. If you’re starting an agency today or looking to move up market in 2026, this session will give you a realistic roadmap building on real lessons from my personal experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I suppose what I’m going to do at the beginning, Rahul, if it’s all right with you, is just ask you to tell us some of the bits and pieces that you mentioned during that. Some of the advice that you would give an agency owner beginning in 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah. So first, like I deviated a little bit from the blurb because when I applied this talk I had a different frame of mind that, hey, I’m going to do this. And then as I was preparing the talk, and in during those months, especially like last few months, the AI has reshaped everything. And then I realised that a lot of what worked for rtCamp won’t work even for rtCamp if I start again today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rather than making it as a nice story about what worked for us, I lean more towards practical advice, and that’s where the essence remained. But I focus more on the 2026 part, because when we started, it was 2006. The first time when I used WordPress was 2006. rtCamp started in 2009. 20 years is a big time. And then at the end of this 20th year, like we are going through this AI led change.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a lot of things that worked for me won’t work anymore. And that is how I restructured my talk to take enough from our history, enough from our learnings, what worked for us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The way we hire is very different. And after the talk, if that one line that stick with the audience, that many people told me that the hire your complementary set was the most different idea. And it’s timeless idea. It’s relevant in AI world also.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the idea was basically that we have this bias that when we try to scale, like basically when we go from freelancing to agency business, the idea of building a business, we try to find people like us. But my idea was that we should initially, especially, we should find people who are opposite of us. Like I was good at engineering, bad at sales, so my co-founder is sales heavy. My English was not good. His English was very polished.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I literally listed down my weakness and found people who were opposite of me. Even interesting part was that, to the few initial hires I asked the questions, whose answer I had no idea whether they’re saying right or wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that was the most interesting idea and I think that’s still relevant today. I will do exactly same thing if I have to start building a new agency. I will build in WordPress, build in AI, any kind of business I will, my initial few hires will all together will cover each other’s weaknesses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s at certain scale then you need to replicate, like, you need 50 engineers, you need 20 React engineers, you need five people who can write same proposal. That comes much later. But starting is all about finding your complementary set. And this was inspired by a set theory from math class that I attended in when I was like some 12-year-old. That stuck around before the life. And that is what I put in this talk as a biggest lesson we learned and that worked.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The second most specific thing that I would say, practical advice, like that was more about hiring advice, but that is not only hiring address, that is, I advise in many walks of life applicable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you’re looking for your client, you have to look for complimentary set there as well. Because you are trying to sell to agencies like yours, your margins gets hit a lot. You need to find people who do not understand WordPress at all because then, that is why your expertise become more important and premium for them, because they need to depend on you. They value you more. You are not commoditised for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that hiring your complementary set works across the board. But then the most specific advice I gave that I didn’t follow myself, I would say. Actually there was nothing to follow that. When I started WordPress was just a blogging platform. There was custom post type were not yet part of WordPress Core. Everybody was just building blogs. We were playing around themes, and the race was to make our blog look unique. The metric usually was like traffic and how many email subscribers you got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there was no niche to pick. Like, that was the only thing WordPress was doing. And after post type, people started building a lot more than WordPress. Actually people started pushing WordPress earlier, and as a result of that, WordPress created those APIs to make it easy to extend WordPress beyond blogging platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But today, in 2026, there is so many things happening. And if you’re starting new and you do what rtCamp did on day one, like, hey, we are WordPress agency. That is not going to work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It worked for us 20 years back because we were like, probably only one in India at that time who said at that time that we will be only taking WordPress project. Because India was a land of outsourcing. Like in supply chain, it was like a, it’s like a Chinese manufacturer saying that, hey, we are only going to assemble if you are building for iPhone. So it’s like, hey, we are only going to write PHP if it is going to end up as a WordPress theme or plugin. We are not going to do what was Cake PHP project at that time. We are not going to write custom PHP script.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in a way we picked the whole WordPress as a niche among the largest set of choices available to us. But if your largest set of choices was building a iOS company, like mobile app company. Mobile app was big because with the introduction of iPhone, there was a sudden shift and huge demand for iOS apps, and we haven’t built one till 17 years. Like literally we built our first iOS app, public iOS app last month.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That time we were like, well, we are going to only do WordPress. So now that advice translate into, pick a niche within WordPress because WordPress itself is the web now. That time, WordPress was very small. Now you can choose e-commerce. Within e-commerce then you can probably pick WooCommerce. Within WooCommerce then probably you can pick like, depending on your market, payment gateway specialisation, ERPs, back office specialisation, subscription based businesses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Start by picking a niche as small as possible and then go bottoms up, rather than starting with everything. So that was the key takeaway of my session, I would say that. Pick a niche, position yourself as a expert in the niche. Don’t just say that, hey, we build WooCommerce store, or we build WordPress site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Okay. Yeah, I’ve got all of that. So firstly, hiring. That’s an interesting one. Hire people that are different from you. I was imagining when you were saying that, I wonder how long you can do that, because you can’t, eventually, you have a company of a hundred people and all of them are not the same as you. Eventually it must be nice to find somebody who’s a little bit like you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then also you mentioned picking clients who will trust your expertise, I think is a good way of describing that. Because they themselves are perhaps not expert within that WordPress platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now of course, moving forwards, what worked for you in terms of being a WordPress agency 17 odd years ago, that was, as it turns out, really successful. But now you are going to be amongst tens of thousands in India alone, if all you say is that you are a WordPress agency. So you need to go a little bit more specialised and niche down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder, Rahul, with the benefit of hindsight, it’s always easy to look back and sort of see for example, from my perspective, I see rtCamp as an entirely successful enterprise. You know, you began all those years ago, and decisions were made and you grew and you grew and you grew and you grew, and now we are where you are now. Committing a lot to WordPress with incredible growth and a really amazing agency on your hands.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I’m just wondering, looking back, with the benefit of hindsight, were there any moments where you made some decisions where you were very nervous about how it was going to be?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for example, one of those could be WordPress. There was no writing on the wall that said WordPress will be the successful CMS. That really could have gone either way. It could have been Drupal, it could have been something that some kid in a basement created. So I’m just wondering, are there moments when you look back and you think to yourself, gosh, I am so glad that we did that random choice than all the others that we could have made?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yep. So it’s a reality that, one of the co-founders we lost, within the first year of company formation was because, I refused to add Joomla to our offering. And Joomla I think was market leader at that time when we started. So we were like more like engineers, like some were good at sales, some were good at communication, but we were all from the same kind of school, like we didn’t know if there was any survey existed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we didn’t back by any data. The only reason we chose to stay with WordPress or build this agency with WordPress because we were using WordPress. So rtCamp for the most part, people missed that. So rtCamp was not started as an agency. rtCamp was basically a media company, a blog network. And that blog network was running on WordPress. As a technology blogger. It’s like just imagine WP Beginners, like that is more relevant example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So by the way, we, and WP Beginner were operating at the same time, that’s the power of niche. Like say I chose to focus on WordPress and say very very well. And my technical blog was everything like from iPhone to Windows operating system to Mac OS update to web APIs, to HTTP2. Whatever, like it was a larger technology blog So we were more like a stripped down version of TechCrunch rather than picking a niche. And Syed picked this WordPress as a niche.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Both were contemporaries in that same era. Now just imagine Syed in those days I started an agency. So we were using WordPress, we needed to stand out because, social network or blogging or web was still a fancy place. Like minimalism wasn’t the trend. It was how much you can push, like how you can make your website look different without using Flash. That was the coolest thing. Like how much you can push jQuery, how advanced CSS you can write. So all those things led to we customising our WordPress a lot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Another thing that worked in our part was, our blog was one of the biggest in India. Globally also, it had good traffic. In fact, it had so much traffic that one of the most Googled keyword in my name was Rahul Bansal, how much money this guy make. Like that was the first question I used to get asked because traffic was insane. We used to get a lot of traffic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That led us to writing nice WordPress code. In early days, like especially when I was freelancer, I had to write amazing WordPress code that will scale and host it in a way that it will also scale. So not only WordPress, we choose Nginx before it become a norm. Like before there was. anybody started any WordPress managed hosting company. We managed to scale WordPress at a very high level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so now we, are this famous blog running on WordPress handling so much traffic, on Linode’s $10 something plan. Customising it. So we got this natural market. We got initial customers were technically our competitors, like other tech bloggers. It’s like TechCrunch hiring Mashable to customise their blog So something like, because Mashable has a tech team. So that was at early story of rtCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then we realised that we are making more money and faster money via customising WordPress. So we started cutting down on our editorials. And then, slowly, slowly like the business has shifted from, being a blogging agency, to WordPress custom development agency. That’s why we chose WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that has been the principle since then, like we only sell what we use. That was the reason we didn’t, so it wasn’t any ideological decision. So the ideology is at open source level. So rtCamp is committed to providing open source solution to its client from day one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Joomla tick that box. But Joomla didn’t tick the box that we use Joomla. We don’t use Joomla. There was no reason for us to have our blog running on WordPress and website running on Joomla, and that’s why we stick around WordPress when there was no data, no trend. And I think in hindsight it was just luck. I would say like it could have backfired.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Well, okay, I really like this story. Firstly, I like the fact that you are identifying luck as a component, because I think too often when you listen to people who have had success, they sort of chart this narrative of how brilliant the decisions were along the journey and how impeccable, you know, we did this and then we did this, and then we did this, and then we did this. But never a nod to luck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And of course, with the benefit of hindsight, we did this, we did this, we did this does lead to where you are now. But I really enjoy it when founders and people have that confession in them. Yeah, there was a bit of luck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also, and we’ll get onto this in a minute, because a big part of what you are about to do, or have recently done with your business kind of leans into what you’ve just been saying.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It sounds like you were led by what was in front of you, if you know what I mean? It doesn’t sound like there was a great big, okay, by 2016 or 2026, we want to be here. It was more like, okay, this is where we’re at now. These are the things that are coming to us. Okay, looks like WordPress, not only are we using it, but it looks like people want us to help them to use it. Well, let’s go there then. Let’s put the blogging to one side and let’s become more of a, I don’t know, a technical helper for you and your website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there’s this sort of lucky piece, but also the willingness to steer into favourable winds, if you know what I mean? I love that story. Thank you very much for that. I also admire your humility in all of that. That’s lovely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the next thing then, I suppose that I want to get into is some change in the landscape at the moment. And again, this maps to what you were just saying about move where the wind takes you. We all know that AI is a thing. You cannot have missed that. But I think a lot of people are taking nervous steps into their business and how they’re doing things with AI and maybe biting off a little bit here with AI and leaving the rest as it is, and biting off another chunk here, and leaving the rest as it is and slowly moving into AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You have a very different approach. And I will link in the show notes to a blog post on the rtCamp website, which I read several weeks ago. I’ve got to say, I was a little bit, not surprised, that’s the wrong word, but it was written in such a way that I thought, gosh, now that’s interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because in it you painted the case that rtCamp in the future is going to do AI everywhere. And I know we hear that all the time. You know, we’re going to use AI here, and we’re going to use AI there. You have painted your colours on the mast, and literally, I think you said, if it can be done with AI, it will be done with AI. There will be no stone left unturned.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay. Firstly, why? Why have you got that approach? What’s the reason? Now, I’m sure it’s fairly obvious, but lay it out for us anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah. So I don’t know from where it comes, anytime I see things going south across industry like COVID or, like AI, like everybody was gloomy, my brain kind of think of opposite. So in my brain, I’m not building, I’m actually imagining an AI only agency with humans required to probably feel capture. That’s how my brain works. So it’s like AI first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then again, like WordPress, so I have been lucky more than once in my life. So before this AI came, this famous saying by Steve Jobs like you can only connect the dots looking backward. Three to four years ago, riding on the digital boom, we survived the COVID, like all agencies grew. rtCamp grew a lot more, and a lot faster in very short span of time. And to manage this humongous workforce, we needed to refactor a lot internal tooling, softwares, processes, to the point that we have internally codified our mission that we want to build McDonald’s of consulting business, inspired by that movie Founder. That was also part of my talk at WorkCamp Asia.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in fact, I had somebody to literally a complimentary set example. I know we want to build this, but I don’t have that kind of mental model. So that’s the brief I give to our chief delivery officer that you have to give me this. McDonald’s of agency business.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start thinking of every process that we can repeat, and we realised that we need to take control of our software stack. And we ended up finding something, in open source. That’s, I would say truly a spiritually aligned to the WordPress ecosystem called Frappe ERPNext, which handle our accounting, payroll, project management, CRM. So many business processes in one single source of truth, like single source of truth for so many things. Earlier it was all siloed data.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this was started with a different intent, to scale rtCamp, 2000 people, 5,000 people, 10,000 people, because that was a business model then. Agencies growth with capacity. You want to sell more, you need to hire more. Basically agencies growth was limited by on one dimension, the inventory, human inventory you can have. So we started implementing this open source back office software automation with the idea that we will own, central piece of our operating system of connecting, getting thousands of people working together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then AI happened, and then we realised we don’t need to hire those many people anymore. Year on year, we moved from 200 to 250, but I think next 50 will be very slow. Because, now we are no longer aiming to sell, or hire people. But as luck would’ve been, we ended up creating this system of record, which is unified and cleaned. When we think of a client or a project or a human. All aspect of their metadata is available in a single system.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is why we can leverage AI more than a company, agency to agency. For agencies using say, Jira for project management. QuickBook for accounting, some other software. If their operations is scattered across 6, 7 software, we have leverage over them. Not only we are paying very less because all our software is open source. The data is first party. Like sitting duck there to query in any way we can. We are not limited by SaaS providers, enterprise plan or this AI capability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is where we realised that we can take this huge bet on AI where we can now build a lot more, in a lot less time using AI across the board. And if you look at a business like not just WordPress business, when you buy something, like you buy a car from a car company. You are actually paying for everything that company does, advertising, researching on the EV technologies, hiring a brand ambassador to put billboard, sponsoring F1. Anything that company does. every penny they spend on their business, the customer ends up paying it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we thought like now we have a single stack, which technically takes care of 70 to 80% critical nature of our business operations. From when the lead enters the CRM, the project management, time entry, people’s new management, everything is linked. Everything is beautifully linked in a single unified interface and database. So why don’t we just use AI to cut down the cost.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because now we cannot charge by hours, we can try, but, it’s not making sense anymore for clients. They want us to commit to fix output bid. Now when we say, hey, we can migrate this thing for 100k, or we can build this website for half million dollars. So those numbers, traditionally, and actually all the time will include all the operation cost. Like my salary. I’m not doing any coding work, but my salary will be eventually paid by all the clients. Electricity bill that is also going to be paid by all the client.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we thought like rather than just thinking AI to build a website, let’s use AI to bring our operational costs dramatically down. Because we have single source of truth for maximum data we have, and that is where we went all AI in. Now it’s like we can submit a proposal in one third of the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In old days we used to build PPTs. Now we vibe code a WordPress demo site and attach it to the proposal. Hey is this something that you want? Not just the screenshot, not just the Figma, like we are actually building Playground, like websites, and launching them and sharing those links to the client. Go play with it. We are even trying to copy the design systems if they’re migrating. So migration is a big category of work we do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is what we mean by going AI ready. So we are leveraging AI to reduce the cost of sale, increase probability of winning the project by pitching them something. And then while estimating the effort, like let’s say we would traditionally say, oh, this might cost us a thousand hours. Now we blindly said Make it 30% less, as if it will be done in 700 hours and it will be, sometimes it backfires.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then on some project it’ll be 500 hours. In some project it’ll be 900 hours, but average will come back to 700 hours. Then again, the idea is we have a central operating system, which gives us, like bird’s eye view of how healthy our projects education are. Are we getting returns on our AI engagement? And all this is possible because few years back we took a bet in different direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like we choose WordPress because we wanted to be a better media agencies, and that was what media agencies were doing in the early days. But we ended up building an agency business with the WordPress. Likewise we choose this Frappe ERPNext software. To operationalise our back office. But now it is starting out to be our advantage point in this areas like we are able to do AI a lot more. In the end, it’s all about bringing the cost down at certain quality. You have to keep the quality up, and just make it more affordable. If that is not. as a business you cannot do that with AI, then something is wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So AI is not about building something new. I have another approach. So if you’re an agency people are hiring you to move things from A to B, like you are the movers and packers of internet. I put crudely, what rtCamp does. We move things, like a shipping company who moves your house, remove you from Sitecore to WordSpace.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that’s still big part of our business. We don’t have to reinvent or reimagine different experiences all the time. Sometimes we have to just do what everybody’s doing, the boring part. Put AI there to make it efficient, more cost effective. And if you do that, that means more people wanting to shift to new house. Again, a different approach. People think that they need to build something out of the world to benefit from this AI way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My idea is that pick a boring thing and make it so affordable that people who were sitting on the fence, just imagine travel, Middle East travel. Like this is a very actually a bad example, might sound inhuman, but, say like X number of people wanted to experience Dubai as a destination, but let’s say, it was beyond their budget. For some even unfortunately now suddenly that comes within their budget, they will be able to do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People wanted to move to WordPress Initially, agencies were quoting a hundred thousand dollars for that big shift. Now if you can, suddenly you can do it in 50k a lot more people will shift. So, you don’t have to do things like out of the world thing. You don’t have to invent new. You have to sometimes just make existing problem more efficient to solve.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it was not always about money, especially in large client. It was not always about 100k versus 50k versus half million versus 1 million. It was about timeline. It’s like you are refurbishing your home and it is going to take three month, then it’s a different mental model, like to put up yourself in a hotel or a second home for three months. If a magically a new company appears and hey, we can refurbish your home overnight. You don’t mind checking into hotel for one night. And that is where I feel like this WordPress will be net gain because of AI. Agencies has to be optimistic, and think differently to gain from AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like, what people are doing is everybody’s trying to act like a ChatGPT, OpenAI, it’s their job to invent AI algorithm. We are agency. Our job is to apply AI, not invent AI. We don’t have to think of what is Opus 4.8 will do. Let cloud engineers think of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we need to understand we are AI’s consumers or consultant, and that is where some people are getting it wrong by vibe coding things that they’re not able to sell to anyone. Then they will cry that, hey, six months later they will realise they built stuff nobody bought. Now they don’t have money to pay AI bills, or their developer salaries and then they will try that, hey, AI took over job, AI killed our business. No, think what existing problems we can solve with AI cheaply, efficiently, with better quality. And a lot of work is there to be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> There’s a lot in there, but one of the things that I’m taking out is. So prior to AI coming along and demonstrating to us all what it could do, which by the way didn’t kind of happen overnight, although it feels like it did, there was a sort of, a year in which we could suddenly see, oh boy, it’s getting much more performant and much more interesting. But prior to that, it sounds like post COVID, you kind of inspected your business and were thinking, okay, how can we refine everything that we’ve got in the business and how can we put it all into this one system?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And again, with the benefit of hindsight, and I’m maybe going to use the word luck, maybe that’s not the right word. You, having done that work, then meant that when AI did come along, you weren’t trying to link up four or five or six or ten different things. You had this one source of truth. Which meant that you could cut waste, for want of a better word. You know, waste could be measured in terms of dollars or it could be measured in terms of time or it, whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You happened to be in that place because you’d done that preparatory work, not necessarily knowing that AI was going to come along and make all of this fun stuff possible. But with the benefit of hindsight, that’s exactly what it did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it’s curious, you said 70 or 80% of the business could be streamlined in that way. And I’m so staggered by that number. I thought you’d be in the kind of, I don’t know, 20, 30% or something like that. But a full 70 to 80%. So does that mean 70 to 80% of the things available, or do you mean that you were able to cut 70 to 80% of the cost or the time? Because I wasn’t sure which 70 or 80% you were meaning.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> It meant different things. First like, as I mentioned that we are not thinking AI adds just something to sell, but something to consume first. Because, again, dog fooding principle. We managed to sell WordPress better because we were a blog network. That’s why we could understood publishers better. We got into this Frappe ERPNext consulting because we built our backend with it. Now before we make any promise with AI, we have to be net gainer with the AI. And we believe that our internally, we will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there are two parts, actual cost of building something and the meta cost. Like cost of sale, like the writing proposal. marketing costs, like case studies, going to even preparing for articles. Non build cost is definitely, we are able to bring, I would say it’s already half, but it’ll be, further down. I will give you a very simple example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like in early days is when somebody used to submit rtCamps form, inquiry form, a human, would manually check like, Hey, what is the domain name of this email id? Are they on LinkedIn? Some 30 minutes and then they will write a note hey, this looks like a good quality lead. We are fortunate that we get a lot of inbound inquiries, so we had to have prioritise, like which leads we are going to respond first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, as soon as somebody submits a form an AI integration does that, within minutes. And the notes are much more details, it creates action items. Across like WordPress our Frappe CRM, our Slack, everything runs like a clockwork, and we don’t need a human. So that, junior human job is definitely gone. So in sales team, we used to have like this entry level job. That is no longer there. Some jobs are actually going to get vanished. So now going on a call, meeting notes, a lot of those things are getting automated. So the cost of sale has dramatically came down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What is the effect? Like, say we can now assume flat 10% discount compared to earlier pricing when we are thinking of a migration project. Like, let’s say, in early days, we used to think like hey, anybody wanting to migrate from Adobe Experience Manager? We must assume that they need to pay us 100k. On the initial call, we can say, hey, that would probably cost something like minimum 50,000 dollars.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The minimums, the starting numbers has came down because we need less energy to have those pre-sales conversations. Less number of minutes of ours spent building those demos. Very fast discovery. Data mapping sometimes happens in minutes. In fact we did one 10 days to prepare this migration literally in five days, that was unthinkable. And that included data migration, QA testing, like automation testing where somebody built a bought in panel, which would randomly open a Zendesk ticket and verify that all metadata and deploys are migrated into new health desk system, all within five days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where I have been saying that the cost of building custom solutions will fail. For like so low, like it’s 60, 70, 58. Like definitely more than half. It’ll be reduced by half more. People will buy custom solutions. So agencies are going to grow from here in just these one or two years. Because agencies, to price something upfront, we need consistencies. Like I’m running an airline and if my jet fuel is my biggest cost, and that is out of my control. Then how do I price my tickets? That’s AI hallucination, which is, I would say the jet fuel version of aviation industry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Something happens in Middle East and fuel prices goes up. A war starts. So now when AI hallucinates so it’s like what we are internally tracking, or what we call as a KPI or internal metric is that, worst case, AI gains, that’s already 20%. Best case is more than 90%. In some cases it’s literally 90%. This range will keep compressing and that’s what I think 70% is my expectation in two years. We will have that maturity that, the build time will fall by 70%. That means. the client companies will hire more agencies to do more work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress will emerge as a winner, not only for its ecosystem, but its ability to expose structured data without any proprietary walls. AI was so fast that only an open source can keep up with it. In fact, we are seeing more migration inquiries with with the AI boom.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Oh, interesting. I was going to ask a sort of follow up question. Do you think that you, so you were mentioning, how to describe it, a rising tide carries all boats, or you certainly implied that the pie is getting bigger, if you know what I mean? So you are getting more phone calls, more migrations, more work, and you can obviously do that more affordably. And because you can pass on some of those savings to the clients, the price point lowers and so you get more inquiries because there’s this virtuous cycle of price going down, but quality staying the same or getting better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder if you, given your success in the past, I wonder if that transition will be easier for you, because the phone is already ringing, than it would be for somebody who was beginning in 2026? Because we all know when you begin, getting the phone to ring is probably the hardest thing. You know, getting those first 5, 10, 15 reliable clients, whatever it is that makes you work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder if you are in a uniquely good position, having a history of clients, a roster of clients that will come back to you. And also just being famous, for want of a better word, in the WordPress space, for doing the kind of things that you do. I wonder just what your thoughts are on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> They’re both pros and cons. The only con for rtCamp is that our business model, a big part of what’s traditional like setting our flagship revenue stream for last 8 to 10 years was staffing solutions. We used to provide engineers, sometimes to other agencies, sometimes to publishers. So usually they used to have the leadership layer with them. We were more of executors, and if AI within the IT industry, the first casualty of AI revolution was that people who code, or people who can only code but cannot think. But luckily our hiring was very different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">While it is taking time, so as I said, net headcount addition has been slowed down. I think this is probably first time rtCamp’s career site doesn’t have any engineering opening. If we would’ve been like a publicly listed or like a shareholder owned company, we might have got mandate to fire a hundred people right now, because we have already gained by, so much that, our one third of our WordPress engineers are currently out of work when the work is rising.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because traditionally, when we needed eight people, now we were able to do in four people. But now we are using this. We have our own challenges, going from one kind of business to another kind of business model. The switch is causing some friction, but we are communicating it openly. We are giving people like more freedom. You give us ideas like which part of the entire business equation you can optimise. Is it editorial experience, is it migration cost? Is it data mapping, visual testing? So people are constantly building.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So change is there. Change is scary. It is scary for us also because we don’t want to fire people. We don’t want to lay off people. We want to return this team. From here onwards, we don’t see we are hiring more engineers for at least a year, because we have enough of them. But, we are so optimistic about this WordPress growth and the pie getting bigger.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are hiring more sales and marketing team. Two days back I was telling like traditionally, we had this 90 to 10% ratio, like in 200 people, our headcount team, we would have 20 people. That would be, we can call as a sales and marketing department, I think next 50 hires will be only sales and marketing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Oh, that’s a big skew, isn’t it? So you’ll go to more like 30% marketing as opposed to 10% marketing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah sales and marketing. By the way, when we say sales, sales in rtCamp means slightly different. It’s more of a initial consulting, basically making those solid promise, which can be backed by engineering, not over promising. So our sales team needs are more like a WordPress consultant, but we have a category within rtCamp which we call Growth Engineers, who are some of our best coders. But rather than writing code, they go on the first client call and make promises on behalf of WordPress which are practical, feasible, and real.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That is what our internship look like, because coding is race to bottom. Eventually the cost of building will shrink to the point that you don’t need many, you won’t need many traditional developers in any agency. You will need people who can imagine what needs to be built. There might be 20 different ways and which way this project should be executed. That prompt engineering, context in engineering.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the value is shifting and it’s definitely shifting away from people who can only code. That is why, probably from two years now, we might be at 300 people. Hundred of them will not be coding at all. But they will be prompting AI. They will be building vibe coded prototype in pre-sale stage to gain that customer confidence like early on that day. What you want is possible with the WordPress. It won’t cost that much. It’ll be given you fast enough that your life won’t be disrupted for many months, like your business operations won’t be disrupted for many months, so this is a thing</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Yeah, nobody could deny that we’re in interesting times. I think a lot of people are very confused by what’s going on at the moment. You know, they’re trying to figure out a path. They’re trying to figure out how it affects their business. They’re probably in, I would imagine, quite a lot of cases, quite keen to stick to the ways that they’ve done it in the past. But certainly the picture that you’ve painted over at rtCamp is that you are aligning yourself with a very different future, kind of embracing AI, seeing where it can take you, trying to adapt your business. Being optimistic about it rather than pessimistic. Because I think there is quite a lot of pessimism around there at the moment. But seeing the opportunity and seizing it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Absolutely fascinating. There was so much to unpack there. I feel like we could talk probably for another nine hours about this because it genuinely is never ending. I would love to prize back the curtain a little bit more. However, time allows only this much. So what an interesting conversation. Thank you very much, Rahul.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just before we end, could you just tell us where we can find you online, should somebody want to, you know, maybe they’re experiencing a bit of anxiety of their own. Their agency is in a rudderless ship at the moment and they’re trying to figure it out. Where can people get in touch with you best?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> I am actually available on all social networks. I use LinkedIn least and email is most level way, I’m a bit old school there. But, yeah, Twitter. I check daily.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> I will link to your bio in the show notes, but also, I will link to the presentation that you gave and any other bits and pieces that we discussed that I can find links for. I will mention those well. So head to wptaven.com, search for the episode with Rahul in it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you so much for chatting to me, and all I can say is all the best. I hope that all of the intuitions that you have turn out to bear fruit and be fruitful for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Thank you Nathan.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://www.linkedin.com/in/rahul286/\">Rahul Bansal</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rahul has a long and accomplished history in the WordPress ecosystem. As the founder and CEO of rtCamp, a company he started 17 years ago, he’s led his agency through the rapidly changing landscape of the web, helping enterprise clients such as Google, Fortune 500 companies, and major publishers solve complex problems with innovative WordPress-based solutions. <a href=\"https://rtcamp.com\">rtCamp</a> specialises in everything from large-scale website builds to more bespoke projects like Chrome extensions and SaaS connectors, and has grown to a team of hundreds over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today’s episode takes a deep dive into Rahul’s recent talk at WordCamp Asia, which focused on what it will take to launch and scale an enterprise WordPress agency in the future. The conversation focused on real, hard-won lessons from rtCamp’s journey, but also on how rapidly the playbook is changing with advances in technology, particularly the explosion of AI tools and workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss Rahul’s philosophy around hiring, namely, building a team of people whose strengths complement each other, rather than just replicating your own skillset. This approach has allowed rtCamp to adapt to new challenges, fill gaps in expertise, and weather major industry changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We then explore how this idea of “complementary sets” can also apply to choosing the right kinds of clients, those who value your expertise because they need what you offer, rather than simply hiring someone who does what they already know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A theme that emerged in the conversation was specialisation. Rahul outlines how, whereas rtCamp’s earliest differentiator was a simple focus on WordPress (when virtually no one else in India was), today’s agencies must drill down much further to stand out, choosing niches within niches, such as WooCommerce or payment gateway integrations, and becoming recognised experts in those areas in order to thrive in a much more crowded field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end of the episode the discussion turns toward what might be the most significant topic for agencies today, artificial intelligence. Rahul described how recent advances in AI have not only altered his agency’s practices, but have given them a firm mandate, if something within rtCamp can be done by AI, it will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how AI is being leveraged inside rtCamp to automate and optimise everything from sales and proposal writing to project management and even technical proof-of-concept builds. With a unified platform for all business processes, the agency is now able to significantly reduce costs, speed up delivery, and focus on higher-value consulting and creativity, reshaping roles and team composition as a result.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in what it takes to stand out and succeed in the evolving world of enterprise WordPress agencies, how to confront uncertainty with both optimism and realism, and how AI can become not just a bolt-on feature but the operational backbone of your business, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://rtcamp.com\">rtCamp</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Rahul’s presentation at WordCamp Asia 2026: <a href=\"https://asia.wordcamp.org/2026/session/how-to-start-an-enterprise-wordpress-agency-in-2026/\">How to start an enterprise WordPress agency in 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.tv/2026/04/21/how-to-start-an-enterprise-wordpress-agency-in-2026/\">The same presentation on WordPress.tv</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://rtcamp.com/blog/17-years-of-good-work/\">A year of reinvention as we turn 17</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://frappe.io\">Frappe tools</a> mentioned several times during the podcast</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/rahul286\">Rahul on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.linkedin.com/in/rahul286/\">Rahul on LinkedIn</a></p>\";s: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, 17 Jun 2026 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Open Channels FM: BackTalk on Mission, Media, Localization, AI, and Giving Back to Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555607\";s:7:\"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:97:\"https://openchannels.fm/backtalk-on-mission-media-localization-ai-and-giving-back-to-open-source/\";s: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:189:\"The content reflects on past discussions highlighting the importance of amplifying diverse voices, localizing strategies, and contributing to the open-source ecosystem for future relevance.\";s: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, 17 Jun 2026 09:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Audio Wars\";s:7:\"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:23:\"https://ma.tt/?p=153172\";s:7:\"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:33:\"https://ma.tt/2026/06/audio-wars/\";s: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:1875:\"<p class=\"wp-block-paragraph\">It looks like Ubiquiti is coming for Sonos with its <a href=\"https://store.ui.com/us/en/category/premium-iot/products/upl-port\">PoE Audio Port, a $199 device</a> that closely resembles <a href=\"https://amzn.to/4vXqjcH\">the $499 Sonos Port</a>, and <a href=\"https://store.ui.com/us/en/products/upl-amp\">$599 PowerAmp</a>. Sonos is going up-market with <a href=\"https://www.sonos.com/en-us/shop/amp-multi\">the Amp Multi</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Sonos has <a href=\"https://www.bloomberg.com/news/features/2026-03-10/sonos-new-speaker-heralds-revival-under-ceo-tom-conrad-after-app-fiasco?sref=tT7Af65V\">had a rough patch</a>, but I’m pretty ride or die for them, and some of my favorite people are there: <a href=\"https://www.linkedin.com/in/tomconrad/\">Tom Conrad, the CEO</a>, <a href=\"https://www.linkedin.com/in/hbarra/\">Hugo Barra on the board</a>, and <a href=\"https://miketatum.com/\">Mike Tatum</a> in CorpDev (he’s the guy who got me to drop out of college and join CNET back in 2004!).</p>\n\n\n\n<p class=\"wp-block-paragraph\">The only time I don’t do Sonos in a home is for the <a href=\"https://syngspace.com/\">amazing audio experience of Syng Alpha</a>. The triphonic thing can be really magical. (Analog/vinyl is <a href=\"https://ma.tt/2009/04/visiting-shindo-labs/\">still Shindo Laboratories</a>, but that’s just for special occasions.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">For headphones right now, it’s either <a href=\"https://www.colorware.com/collections/wordpress\">some custom Airpods Pro 3</a> or <a href=\"https://amzn.to/44c5wGf\">the Sennheiser HDB 630</a> (<em>Hat tip: <a href=\"https://pud.com/\">Pud</a></em>, who is also making some crazy headphones).</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the go, I love pairing two <a href=\"https://amzn.to/4fQSchD\">Logitech Megaboom 4s</a>.</p>\";s: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, 17 Jun 2026 06:59: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: Summer Updates New Features and Changes to Open Channels FM\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555698\";s:7:\"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://openchannels.fm/summer-updates-new-features-and-changes-to-open-channels-fm/\";s: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:192:\"Bob Dunn updates on Open Channels FM\'s recent developments, including a homepage redesign, the launch of \"Do the Woo\" as a standalone podcast, and upcoming features like Open Channels FM Live.\";s: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, 16 Jun 2026 11:55: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Assorted 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153102\";s:7:\"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:39:\"https://ma.tt/2026/06/assorted-links-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10498:\"<p class=\"wp-block-paragraph\">Sometimes you have to just start with beauty.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Listen to <a href=\"https://open.spotify.com/album/3eXr4s3rCLxNJpxqaIDyqJ?si=Z2vNOEF2Rm-s6BAkCVN4hg\">Jon Batiste’s <em>Beethoven Blues</em></a>, then <a href=\"https://www.youtube.com/watch?v=7VM8MsR4K10\">relish this interview, where he plays and talks about it</a>. I can’t <a href=\"https://theisolationjournals.substack.com/p/black-mozart\">wait for Black Mozart</a>, which is already starting <a href=\"https://open.spotify.com/prerelease/4WWjrjAmp0Xqah9zqgir4M?si=6ea98fbd9d1d40ee\">to trickle on Spotify</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Forget all <a href=\"https://www.ferrari.com/en-EN/auto/ferrari-luce\">that Ferrari stuff</a>, what <a href=\"https://www.wallpaper.com/design-interiors/lighting/jony-ive-lovefrom-balmuda-sailing-lantern\">Jony Ive did with his LoveFrom Sailing Lantern</a> is divine. I’ve now seen it in person, and it’s the light at the end of the tunnel.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153109\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2026/06/sailing-lantern-1024x576.jpg?resize=604%2C340&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">That led me to discover how awesome <a href=\"https://us.balmuda.com/\">Balmuda is</a>, and stumble upon the Japanese word <em>Monozukuri</em>, which, according to Google, “(ものづくり) is a foundational Japanese philosophy that translates literally to <em>the art and science of making things</em>” It goes far beyond standard manufacturing or production, representing a deep, holistic mindset that embraces craftsmanship, a relentless pursuit of perfection, pride in one’s labor, and a deep respect for materials.” Look <a href=\"https://global.toyota/en/newsroom/corporate/39758220.html\">at how Toyota embodies it</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Om has a <a href=\"https://om.co/2026/06/07/the-myth-the-mythos-and-the-man/\">beautiful and prescient post on The Myth, the Mythos and the Man</a>. It predicted some of this <a href=\"https://www.techmeme.com/260615/p20#a260615p20\">Fable kerfuffle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Connection</h2>\n\n\n\n<p class=\"wp-block-paragraph\">How <a href=\"https://source.android.com/docs/core/ota/modular-system/tethering\">amazing is tethering on Android</a>? I have a <a href=\"https://amzn.to/49TXYeM\">Pixel 10 Pro</a> with a USB-C Ethernet hub plugged into the WAN port of a <a href=\"https://store.ui.com/us/en/products/udr-5g-max\">Unifi Dream Router 5G Max</a> because the <a href=\"https://www.qualcomm.com/modems/products/snapdragon-x62-5g-modem-rf-system\">Qualcomm chip Unifi uses</a> is two generations behind what’s in the phone. (Hat tip: <a href=\"https://jesse.blog/\">Jesse</a>.) How <a href=\"https://satellitemap.space/constellation/starlink\">amazing are the 10,653 Starlink satellites floating above us, providing broadband from space</a>, from a company I heard <a href=\"https://x.com/gjurvetson/status/2065452568902279655\">might have had an IPO last week</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I reconfigure ports, channels, and flows, as nurses do for arteries and cannulas.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Numbers Don’t Lie, Check The Scoreboard</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Not <a href=\"https://www.nytimes.com/athletic/7355407/2026/06/13/knicks-nba-championship-game-5-win/\">just the Knicks</a>. After a 3-year hiatus of Review Signal benchmarks, the headline was <a href=\"https://www.therepository.email/review-signal-publishes-2026-hosting-benchmarks-after-three-year-gap-powered-by-its-own-open-source-load-testing-platform\">that Pressable dominated every category</a>, and with perfect uptime. However, the real story is about <a href=\"https://wp.cloud/\">WP.cloud</a>, which is behind the top scores for not just Pressable and WordPress.com but also the <a href=\"https://www.bluehost.com/cloud-hosting\">Bluehost Cloud plans</a>, beating <a href=\"https://www.oracle.com/cloud/\">Oracle Cloud</a> and <a href=\"https://cloud.google.com/\">GCP</a>-based solutions. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wp.cloud/\">WP.cloud</a> is <a href=\"https://ma.tt/files/2026/06/bezos-aws.jpeg\">our AWS</a>; <a href=\"http://pressable.com/\">Pressable</a> is our demo site. We want <em>every</em> host to offer the fastest and <em>most secure</em> WordPress possible. I’m happy to focus on infrastructure and let others figure out marketing and such <a href=\"https://en.wikipedia.org/wiki/Hi_and_Lois\">foofram</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you speak Danish and would like a random Radical Speed Month art project detour, check out <a href=\"https://automattic.github.io/nima/\">Joen Asmussens’ Nima</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://automattic.com/\">Automattic</a> has been shipping, shipping, shipping. <a href=\"https://wordpress.com/blog/2026/06/10/wordpress-com-is-now-available-in-stripe-projects/\">Start a WP.com site from the terminal with Stripe Projects</a>. <a href=\"https://akismet.com/blog/introducing-the-official-akismet-php-sdk/\">Akismet PHP SDK</a>. Fun experiments from Radical Speed Month like <a href=\"https://wordpress.com/blog/2026/04/27/studio-code-beta/\">Studio Code</a>, <a href=\"https://www.stattic.net/\">Stattic</a>, <a href=\"https://wordpress.com/workspace/\">Workspace Mac App</a>, <a href=\"https://github.com/Automattic/cortext\">Cortext</a>, <a href=\"https://pressship.org/\">Pressship</a>, <a href=\"https://wapuu.studio/\">Wapuu Studio</a>, <a href=\"https://studiowrite.app/\">Studio Write</a>, <a href=\"https://wordpress.org/plugins/desktop-mode/\">Desktop Mode</a>, <a href=\"https://flavorpress.io/\">FlavorPress</a>, <a href=\"https://github.com/jonathanbossenger/concilium\">Concilium</a>, <a href=\"https://developer.woocommerce.com/2026/05/07/woocommerce-for-claude/\">WooCommerce insights in Claude</a>, and <a href=\"https://en.wikipedia.org/wiki/Kaizen\">the <em>kaizen</em></a> of hundreds of behind-the-scenes bug fixes and improvements across our product suite. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this came from those not historically in a product or engineering role, which we’re learning to navigate. I loved how customer-centric many things were. We also made a lot of rookie mistakes, but that’s part of how you learn, and I believe the acceleration of learning will be the biggest legacy of the Radical Speed Month experiment. That, and the fun games on <a href=\"https://automattic.com/work-with-us/\">our intranet</a>. <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png\" style=\"height: 1em;\" /></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153136\" height=\"201\" src=\"https://i0.wp.com/ma.tt/files/2026/06/automattic-game-center-banner-1024x341.jpeg?resize=604%2C201&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">AI Hangover</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I have <a href=\"https://ma.tt/2023/10/wowza/\">drunk from the sweet nectar of Waymo</a>, and now find myself calling an Uber so I can talk to 72-year-old Antoly from Azerbaijan, whom I slip a hundred-dollar bill as I step out. I weep when I see talented colleagues speak and write with words not quite their own. I <a href=\"https://www.pangram.com/\">masochistically Pangram everything</a> even though it sometimes mistakes my own hand-crafted prose for slop, or is that actually my soul being sanded down by consuming too many statistically probable next tokens?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The uncanny valley of software, writing, products, and presentations so polished on the surface but built on thin foundations of understanding gives me an almost physical, nauseous reaction. I write this even as I listen to <a href=\"https://www.youtube.com/watch?v=tRsQsTMvPNg\">Claude FM music for thinking and building</a>, probably <a href=\"https://ma.tt/files/2026/06/mythos-jailbreak-791x1024.jpeg\">Mythos-injected with subliminal messages</a> to remind me of the hours of audio transcribed in minutes; the programs that would have taken a team months, conjured from my hand in hours; the way I feel <a href=\"https://www.youtube.com/watch?v=8XV8aBNOIqI\">like Neo in the Matrix</a>, rapidly downloading new domains of knowledge.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What’s the name for the paradox, <a href=\"https://en.wikipedia.org/wiki/Jevons_paradox\">like Jevon’s</a>, that AI abundance and polish makes you crave messy, imperfect humanity even more?</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s good to debate and ruminate, but only in small doses. Like salt in a dish, a little goes a long way. Avoid the <a href=\"https://pmc.ncbi.nlm.nih.gov/articles/PMC11036542/\">existential angst</a> of charting new territory by getting your hands dirty and trying things. You learn the most from failures when you can <a href=\"https://apagefrommunakusbook834350529.blog/2023/02/03/learning-to-laugh-at-yourself/\">laugh at yourself</a>. <a href=\"https://amzn.to/4vmWaDB\">Build one to throw away</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Write Different</h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Writing is not the most important thing; thinking is. But writing is probably the best way to improve your thinking.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I saw this quote attributed to me and didn’t remember it, so I thought it might be an AI hallucination, but it’s actually something I said! In <a href=\"https://perell.com/podcast/matt-mulleweg/\">this early-years podcast with David Perell</a> buried on some corner of his site. Now <a href=\"https://www.youtube.com/@DavidPerellChannel\">David’s production quality is stellar</a>, and he gets amazing guests like <a href=\"https://www.youtube.com/watch?v=yb9Tz-RQFN4\">Maria Popova to discuss their craft</a>. I’ve enjoyed his rise and look forward to <a href=\"https://perell.com/\">following him</a> in the decades to come.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">I could edit and link much more, but sometimes you have to just <a href=\"https://vimeo.com/12238385\">press the Publish button</a> and <a href=\"https://www.youtube.com/watch?v=bJVOo4K_GGM\">let go</a>.</p>\";s: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, 15 Jun 2026 19:20: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Open Channels FM: The Balancing Act: Freedom, Convenience, and Open Source in an AI-Driven World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555638\";s:7:\"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:100:\"https://openchannels.fm/the-balancing-act-freedom-convenience-and-open-source-in-an-ai-driven-world/\";s: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:341:\"So many of us are in a evolving relationship between freedom, convenience, and open source software in the world shaped by AI. The promise of freedom which is central to the open web and open source movements has to be continually weighed against the growing demand for convenience and simplicity. While open source software offers […]\";s: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, 15 Jun 2026 12:16: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Akismet: Introducing the official Akismet PHP SDK\";s:7:\"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:28:\"http://akismet.com/?p=284799\";s:7:\"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:66:\"https://akismet.com/blog/introducing-the-official-akismet-php-sdk/\";s: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:4711:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284805\" height=\"429\" src=\"https://akismet.com/wp-content/uploads/2026/06/screenshot-2026-06-10-at-11.38.37-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><p>For twenty years, Akismet has kept spam out of WordPress. But spammers don’t care what your site runs on and neither do we.</p>\n<p>Last month we launched the <a href=\"https://akismet.com/blog/introducing-the-official-akismet-drupal-module/\">official Akismet Drupal module</a>. Today we’re introducing the engine that powers it: the official Akismet PHP SDK, a first-party client that brings Akismet to any PHP application.</p>\n<h2 id=\"what-it-is-and-who-it’s-for\">What it is, and who it’s for</h2>\n<p>The Akismet PHP SDK is a first-party PHP client for the Akismet API. It’s built for the platforms the WordPress plugin doesn’t reach: custom apps, SaaS backends, and PHP frameworks like Laravel and Symfony. (The official plugins are still the way to go for <a href=\"https://wordpress.org/plugins/akismet/\">WordPress</a> and <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal</a>.)</p>\n<p>Under the hood it’s built to feel at home in a modern PHP codebase:</p>\n<ul>\n<li>Covers the full Akismet API, from comment-check and spam/ham submissions to key verification, usage limits, and account stats.</li>\n<li>Works with any PSR-18 HTTP client you already have (Guzzle, Symfony HttpClient, and the like) through auto-discovery.</li>\n<li>Ships a typed exception hierarchy that redacts your API key, so credentials never leak into your logs.</li>\n</ul>\n<h2 id=\"a-two-minute-quick-start\">A two-minute quick start</h2>\n<p>Install it with Composer:</p>\n<pre><code class=\"language-bash\">composer require automattic/akismet-sdk\n</code></pre>\n<p>Then check a submission:</p>\n<pre><code class=\"language-php\">use Automattic\\Akismet\\Akismet;\nuse Automattic\\Akismet\\DTO\\Content;\nuse Automattic\\Akismet\\Enum\\ContentType;\n\n$akismet = Akismet::create(\n apiKey: \'your-api-key\',\n site: \'https://your-site.com\',\n);\n\n$content = new Content(\n userIp: $_SERVER[\'REMOTE_ADDR\'],\n userAgent: $_SERVER[\'HTTP_USER_AGENT\'],\n body: $formData[\'message\'],\n authorEmail: $formData[\'email\'],\n type: ContentType::ContactForm,\n);\n\n$result = $akismet-&gt;check($content);\n\nif ($result-&gt;isSpam()) {\n // Reject it, flag it, or queue it for review.\n // $result-&gt;shouldDiscard() marks the blatant spam you can drop outright.\n}\n</code></pre>\n<p>That’s the loop: build a <code>Content</code> object, call <code>check()</code>, act on the result.</p>\n<h2 id=\"already-running-in-production\">Already running in production</h2>\n<p>The official Akismet <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal module</a> is built on this SDK. The SDK handles the API contract and type safety, while the module handles Drupal’s service wiring, queues, and moderation UI. That’s the pattern for Laravel, Symfony, and anything else you build: the SDK owns the Akismet integration and your framework owns the glue.</p>\n<h2 id=\"what’s-new-in-1-5-0\">What’s new in 1.5.0</h2>\n<p>We have just released v1.5.0, which is about giving Akismet more to work with, and giving you more back:</p>\n<ul>\n<li><strong>Richer content signals:</strong> <code>Content</code> now carries the site’s language and character set, plus the surrounding conversation context, so every check has more to go on.</li>\n<li><strong>More insight into every verdict:</strong> <code>CheckResult</code> now surfaces the error and classification Akismet returns, so you can log and act on <em>why</em> something was flagged, not just whether it was.</li>\n<li><strong>Extended multi-site reporting:</strong> For keys that span many sites, the new extended key-sites data adds per-site metadata for cleaner reporting and account hygiene.</li>\n</ul>\n<h2 id=\"get-started\">Get started</h2>\n<p>The SDK is open source and live on Packagist today.</p>\n<ul>\n<li>Install: <code>composer require automattic/akismet-sdk</code></li>\n<li>Packagist: <a href=\"https://packagist.org/packages/automattic/akismet-sdk\">automattic/akismet-sdk</a></li>\n<li>Source and docs: <a href=\"https://github.com/Automattic/akismet-sdk-php\">github.com/Automattic/akismet-sdk-php</a></li>\n</ul>\n<p>You’ll need an Akismet API key to make calls. Akismet’s <a href=\"https://akismet.com/pricing/\">Personal plan</a> is pay-what-you-can and free for personal, non-commercial sites. If you’re running something commercial, pick a paid plan that matches your traffic. Either way your code stays identical, since the plan lives with your API key, not in the SDK.</p>\n</div>\";s: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, 15 Jun 2026 10: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Derek Springer\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Open Channels FM: The Changelog: Still Here, Still Doing 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555551\";s:7:\"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://openchannels.fm/the-changelog-still-here-still-doing-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:305:\"A bit over four years ago, in 2022, I recorded an episode from San Diego. I was getting ready for an event, about to attend my first-ever Contributor Day (which, yes, felt a little absurd given how many WordCamps I’d been to by that point). To fill the time before things kicked off, I sat […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jun 2026 08:10: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Dennis Snell: Gutenberg Package Activity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://fluffyandflakey.blog/?p=3901\";s:7:\"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://fluffyandflakey.blog/2026/06/11/gutenberg-package-activity/\";s: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:1001:\"<p class=\"wp-block-paragraph\">Last week at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a> there was a get-together among WordPress Core committers and a question arose concerning the separate Gutenberg <code>npm</code> packages that are built and distributed. I was curious about how frequently they are updated and which ones are most active, so I asked Codex to review <code>git</code> commit activity, gather commits per package which touch files in that package, and then render it into a plot. It produced this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also available <a href=\"https://fluffyandflakey.blog/wp-content/uploads/2026/06/gb-package-rates.html\">as a PNG image</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Script available <a href=\"https://gist.github.com/dmsnell/107642d8791e5bb88c4a3f9c521dad3d\">in a gist</a>.</p>\n\n\n\n<div class=\"wp-block-group alignwide\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n\n</div></div>\";s: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 2026 20:34:47 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Dennis Snell\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Open Channels FM: WordCamp Europe Takeaways: Community Vibes, Tech Advancements and Smarter 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555456\";s:7:\"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:102:\"https://openchannels.fm/wordcamp-europe-takeaways-community-vibes-tech-advancements-and-smarter-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"This Open Channels FM episode from WordCamp Europe discusses the event\'s vibrant atmosphere, the integration of AI in WordPress workflows, and the positive community outlook on evolving technology and opportunities.\";s: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 2026 08: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: #220 – Cathy Mitchell on Why WordPress Events Matter: Community, Connection, and Giving 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=204704\";s:7:\"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:115:\"https://wptavern.com/podcast/220-cathy-mitchell-on-why-wordpress-events-matter-community-connection-and-giving-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52587:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, why WordPress events and community matter.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Cathy Mitchell. Cathy has been working with WordPress since 2007. What began as a fun personal project during her maternity leave soon evolved into a fully fledged business with the launch of WPBarista in 2008. Over the years, Cathy has garnered extensive experience in the WordPress space, and is now working towards the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focuses on the powerful role of community within the WordPress ecosystem, something that Cathy is deeply passionate about. We discuss how open, welcoming, and international the WordPress community feels, compared to more traditional corporate or volunteer environments. A theme that emerged was how involvement in WordPress has provided Cathy, and many others, with a sense of belonging and fulfilment, especially after life changes like becoming an empty nester.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the motivations for volunteering and organising within the WordPress community, both from the perspective of newcomers looking for purpose and connection, and business owners assessing the return on investment from contributing or sponsoring events. This includes how easy it is to get involved, the unique lack of barriers and red tape, and the value of altruism and camaraderie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other topics we explored with a broader impact of technology and loneliness, the importance of service and community for wellbeing, challenges in sponsorship amid changes economic times, and the vital need to engage the next generation in open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the human side of WordPress, how volunteering shapes both individual and the broader community, and what the future might hold for WordPress events and contributors, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Cathy Mitchell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Cathy Mitchell. Hello, Cathy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:25] <strong>Cathy Mitchell:</strong> Hello. Thanks for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:27] <strong>Nathan Wrigley:</strong> You are very welcome. Cathy and I have been having, well, 15 minutes or so of chit chat just before we started the podcast. I’ve been learning a little bit about Cathy and we’re going to share all sorts of information.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think probably broadly we could talk about it as being the WordPress community, which is a subject which is dear to my heart.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, before we get into that, Cathy, I’ve had an introduction from you over the last few minutes, but would you mind sort of giving us your potted version of that, your shorter version, your bio if you like. Tell us who you are and how come you’re featuring on a WordPress podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:58] <strong>Cathy Mitchell:</strong> Well that’s a whole lot of imposter syndrome. Why I am featuring, because you’re kind enough to have me. I’ve been working with WordPress since 2007 and it was just something fun that I did to begin, much like you with podcasting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then a couple years in, I told my friends that they’d have to start paying me, or I was going to go back to work, find a real job. This was during my mat leave, and so it kind of just took off from there in 2008, started WPBarista.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now I’m very interested in the community because I was looking for something to do in the WordPress community last year. Dan in the Canada Slack got a hold of me and said, hey, do you want to help with the WordCamp? And I said, sure. You know, I had time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And he got me in and brought me right up to like being on the organising team. And it was so fun but so shocking. Like, there is a lot of red tape in the corporate world before they let you do anything meaningful. Like you have to sweep the floors for a whole long time before they let you actually do something you’re good at. So this was remarkable. And this year I find to my surprise, I’m leading the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s what I’m doing now. And we’re going to focus on community too. So I’m very excited about this topic, both from a corporate, like what do we get out of this? Or are we supposed to get something out of this? And from a personal standpoint, it’s been amazing to meet these people, and to be given a chance. And I found out I’m not the only one. This is like normal, which is bizarre and wonderful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:37] <strong>Nathan Wrigley:</strong> My experience of the WordPress community, so I started in WordPress actually quite a long time after you did. Maybe sort of six or seven years after you began using WordPress. I really didn’t know that there was a community at all. I just downloaded the software and used the software. And then I can’t even remember really how it happened. It might have been through things like Facebook Groups or something like that, where I was trying to learn a particular thing? Or perhaps there was something in the dashboard which indicated that there was an event nearby.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I found myself, to my own surprise actually, I found myself at a WordPress event in London, WordCamp London, which at the time was going really strong. You know, hundreds and hundreds of people would show up every year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remember purchasing a ticket and getting the train ticket and thinking, what am I doing? What am I possibly hoping to get out of this? And showing up and kind of being a bit like a timid rabbit sitting in the corner a little bit, and then it kind of worked out fairly quickly. Okay, this is all fairly benign. Nobody seems to be all that boastful. Nobody seems to be sort of shoving corporate speech down my throat, or trying to sell me anything unnecessarily.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And during the course of a day or maybe a couple of days, opened up a little bit and got chatting to people. And lo and behold, within a couple of years, a significant proportion of my free time, let’s call it that, outside of the commitments of daily life and family and all of that kind of thing, was taken up with doing WordPressy things in my spare time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I, I don’t know if the story maps the same as you, I’ve shared mine, maybe you’ll share something similar in a moment. The community to me is much more than just, oh, there’s a community there. It genuinely is a seriously important part of my life. To the point where if that was to be sort of whipped away, or somebody like a Thanos type character suddenly clicked their fingers and that disappeared, I don’t know what I would do with myself. I would really have to go out there and find an awful lot of other things to do. Was it a bit like that for you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:41] <strong>Cathy Mitchell:</strong> Not at all. I went to the forums first. And in 2008, 2009, there were some big names nowadays that were just answering us in the support forums. And so I learned from the best of the best, I think. And they would answer my ridiculous questions. I had no idea about PHP. I didn’t even know HTML. I didn’t even know what the internet was, like as broad concept. I asked my husband at the time like, okay, I don’t understand how my computer is talking to someone else’s computer, like you need to draw me a picture.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So anyway, I’ve only recently, I went to a couple of events, but I’ve always had the business mind. If I can’t see an ROI financially, I’ll say, from what I’m doing, then I don’t have time for it. But that was also during a time when I had a young family and then I became a single mum and then I had to work this business. And so it’s only really recently that I’m looking around and seeing people like you and going, this is unique.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’ve been in volunteer communities, and now that my kids are all grown up, I’m kind of looking for those opportunities. What meaningful thing can I do with my time? And this just seems so unique. Like I volunteered at other places and there’s so much red tape and there’s so much, I don’t know, different feelings than this one. This one’s very open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:09] <strong>Nathan Wrigley:</strong> I think the bit that is so curious to me is you can sort of dip in and dip out of it. Because, I don’t know, let’s say for example, you do something much more local, involved with your hometown or something like that. And you get involved in it and there’s a certain kind of, pressure is the wrong word, I suppose you can dip in and dip out of that as well, but do you know what I mean? You get involved in those philanthropic things locally and you get to know things and it becomes more of a habit, and you do the same thing over and over again. At least that’s my experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I quite like about this is the international flavour of it. The fact that I’m being introduced people from really different parts of the world and cultures. And it’s very, very open, and it’s a real contrast to the bit that you just mentioned, where the corporate bit, and obviously there’s a side of our community which is very much devoted to turning a profit and what have you. But there’s a significant proportion of the people who don’t have that metric in their head when they’re introducing themselves to people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They are just trying to be helpful and trying to deliver on the promise that the internet gave us back in the 1990s of, here’s the infrastructure to pass information around freely. Wouldn’t it be nice if everybody had the capacity to publish things, or to share things online without some sort of corporate overlord or paywall or algorithm? Which we’ve now probably regret deeply allowing that to happen to the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of those kind of things come into play. I have constantly, for the last decade, tried to sum up and capture what this is. And I always fail. It simply feels nice, is all that I’ve got, really. This community, the people in it that I hang out with, it just feels like a nice thing to do. That’s all I’ve got. No wisdom beyond that. It’s bizarre, isn’t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:53] <strong>Cathy Mitchell:</strong> I’ve been trying to quantify it too, and especially planning this next conference. I feel much like a student because there’s a large group, probably most people are not like me. Like they’re like you, at least the ones, in Slack that I’m talking to on a daily basis. And they’re the original nerds who are so happy, like were inspired and spent their free time, like this wasn’t their job. Promoting this and like answering my questions in forum as an absolute noob. So in that way I feel like I would really like to give back now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the community, yeah, I can’t quite put my finger on. I just talked to a sponsor yesterday and she is of course wanting to get in front of her audience, which is agency owners. But there’s a real sense of promoting the community because the healthier the community, the healthier all of us are. Not just financially, but it creates the forward momentum, I think as far as open source as a whole too. Like there’s a bunch of us, me included, even though I kind of am taking a corporate angle that really believe that open source could change the world. I still do, maybe even more so because AI is, can actually talk to things that are open source. Less so if everything’s behind a paywall.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:09] <strong>Nathan Wrigley:</strong> I think one of the things that you mentioned there, which suddenly sort of struck me is whilst there are a handful of people out there, and I say a handful, there’s obviously many millions of people. I think it’s fair to say that many people prefer to be in proximity to other people, to do things, to be in conversation with people, to have a shared experience. You know, we go to the cinema or the movie theatre to watch a movie. I mean I know the screen’s bigger and everything, but part of it is to be with other people and to go ooh and ah, at the same time and go to firework displays and concerts and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now all of that stuff can be done in an isolated environment in your house. You know, you can watch Netflix and you can watch the TV and get a similar kind of experience. But I think there’s some sort of core part of me at least, and the people that I hang out with at these kind of events and online who just enjoy that shared experience, that willingness to be involved in a similar task. Just to be pointing in the same direction as a bunch of other people, pulling together on the same team. And it’s unquantifiable. I literally can’t encapsulate it, but I think you and I are talking about the same thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What’s interesting is I accidentally found it fairly early on in my WordPress journey. Serendipity played a really blinding hand for me there. But I think had I not had, bit like that film Sliding Doors, I could easily have missed the cues which sent me to that WordCamp or whatever it was that got me started. And I probably could have gone for a decade or more and not even noticed it was a community and maybe discovered it much more recently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it sounds like that’s kind of happening to you. You mentioned that you are, I think in the show notes you described it as, it’s a lovely phrase, empty nesting. Does that mean when your children grow up and go away? Is that what that means?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:53] <strong>Cathy Mitchell:</strong> Yeah. That’s a pretty common phrase over here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:55] <strong>Nathan Wrigley:</strong> Oh, okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:56] <strong>Cathy Mitchell:</strong> This side of the pond. You know, you kick the little birdies out, and they’re spreading their wings. All of a sudden we’re left with, it’s a different life stage. I think we were talking a little bit about it. You’re getting there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:08] <strong>Nathan Wrigley:</strong> I’m going to there very, yeah, awh, it’s kind of filled with melancholy. On the hand, obviously I would love for my children to grow up, but on the other hand it’s, pulls all the heartstrings, doesn’t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you are finding space in your life to do this kind of stuff. I’m going to ask a question, which is maybe a little bit personal, I don’t know. Hope you don’t read it in the wrong way. Do you find this stuff like meaningful and significant? Do you get a sense of fulfilment and satisfaction from the work that you are doing? For example, with WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because there must be moments when it’s a real chore and, you know, you’ve got far too many tasks which are spilling over, and you think, gosh, I’m just a volunteer. There’s no quid pro quo here. I’m just doing it out of the goodness of my heart. But on balance, do you get that warm and fuzzy feeling from doing all of this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:54] <strong>Cathy Mitchell:</strong> That’s a good question. I had time, so I started volunteering at a bunch of things. I started volunteering teaching kids, and then to go the complete other end of the spectrum, I did a seniors class at my local college last month. I just started volunteering because in my opinion, as a little amateur psychologist, I think service, serving our community is kind of the best way to, like you said, pull alongside someone. And then when you have like a focused goal, there’s a togetherness and I really need to grow my community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Me, and I think quite a few other people, there’s this whole epidemic of loneliness to be frank. Having raised the kids and then having done the job, now all of a sudden it’s like, I have time to invest in a real community. And I really want it to be worthwhile. I don’t want to sweep the floors for, maybe it’s an age thing, I don’t know. I’m so, so grateful that they let me do something that I’m good at, as far as organising, because they didn’t have to. That’s a big responsibility to put on somebody. And I am praying it all works out in the fall.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it comes because of the huge number of volunteers that all work together. So my job’s just basically pulling all these people together, and making sure that we’re talking to each other. Because one person can’t possibly do all of the work that comes with putting on a conference. At least not part-time. But yeah, I’m finding it immensely rewarding because I also feel like I’m good at it. Everybody loves to do something they’re good at.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:28] <strong>Nathan Wrigley:</strong> You mentioned something earlier where you sort of implied that you were very surprised that in the WordPress world, you were given a bunch of responsibility for an event. I mean, basically, I think a lot of that, isn’t there? There’s a lot of, whoever can show up does get the job really, because there’s a paucity of volunteers. And for an event of the magnitude of WordCamp Canada, if you’ve ever been to events like that, you sort of walk in and on every level it feels like a corporate event. You know, it’s very polished, highly polished. There’s catering, the venue’s all been booked, you’ve got name badges and there’s probably some translation going on, and there slides and every, there’s timetables and everything. And it’s all done by volunteers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remember the same sort of thing, being asked to do a variety of different things and thinking, wait, really? You don’t know the inside of my head. I will mess this up so badly. But that is such a nice characteristic of our community. And you’ll fail together, if you know what I mean? You know, it is not like anybody’s going to let you deeply fail. People will step in and help you, should you need to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:31] <strong>Cathy Mitchell:</strong> Yeah, we have to say yes, like it’s part of the culture is, if people volunteer, we have to find a way to say yes. Like our default is yes, not, well, have you done this first?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:43] <strong>Nathan Wrigley:</strong> Yeah. It’s interesting because you obviously have done a lot of this kind of corporate stuff, and so have the impression that you ought to be qualified, I don’t know, a decade or two decades of this particular thing in order to be trusted to do it. And this is just, yeah, this is so different. Anybody? Bueller. Okay, you’ll do it. Great. Fine. That’s great, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:03] <strong>Cathy Mitchell:</strong> Yeah. You’re hired.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:04] <strong>Nathan Wrigley:</strong> Yeah, that’s it. That’s I’ve never done it before. It doesn’t matter. You’ll be brilliant.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:07] <strong>Cathy Mitchell:</strong> We’ll help you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:08] <strong>Nathan Wrigley:</strong> Yeah. And that camaraderie of binding together on a particular thing, in your case WordCamp, but the broader project, you know, the WordPress project as a whole, I feel it’s full of these kind of people. And we will get into in a minute I’m sure, how that maybe has changed for some people in the more recent past, and about the fact that the community does feel like it’s in a bit of a challenging place at the moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I just want to go back a little bit because you mentioned, and neither of us I suspect will have the answer to this, but I’m interested in your intuitions anyway. You mentioned that people nowadays, maybe this has always been the case, but it feels like there’s been a change. Loneliness seems to be a very common thing now. And my sort of back of the napkin calculus points me in the direction of wondering if it is actually oddly technology. The very thing that we’re celebrating. If technology might be responsible for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, I look around and I see a lot of people who give an awful lot of what would’ve otherwise been free time, time that they could have gone out and socialised and what have you. And, you know, you sort of end up sitting on the couch and scrolling through social media and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Television has become so absolutely fascinating. You know, there’s like a billion different channels, and essentially there’s a thousand ways to keep yourself entertained all by yourself, and never speak to another human being, or be in proximity to another human being. There’s no question there, I just wondered if you had an observation or a similar thought process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:39] <strong>Cathy Mitchell:</strong> I looked up, because I knew we were going to talk about this, the stat on it. Because I know I’ve had the same feeling. And I’ve heard people talk about it, but I didn’t really know if that was like true or not, because whenever I am thinking or researching something, of course that’s what the algorithm shows me. So I’m always kind of hesitant, like is this actually real or am I just seeing this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it did say in a 2021 report, the US Surgeon General, and this is in the States, no 2023, that the health impact of a loneliness epidemic. Okay, General Vivek Murthy declared a loneliness epidemic in 2023. And he said that the health impact is the same as smoking 15 cigarettes a day. It’s not good for us. And that the biggest effect, 79% reported feeling lonely of the 18 to 24-year-old group, which is more like 40 some percent. What was it? 41% of 66 plus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:35] <strong>Nathan Wrigley:</strong> Okay, so the younger you skew, the more lonely you are likely to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>Cathy Mitchell:</strong> Yeah. And we also see, now I don’t know if this is correlative or causative, but technology has also skyrocketed in that period of time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:48] <strong>Nathan Wrigley:</strong> Yes. Yeah, and also probably, again, I’m drawing conclusions which are not based in fact or research or anything like that. You and I were both born in an era where that technology wasn’t available. So I imagine patterns were set down in our infant brains, which are perhaps different to the patterns that are set down now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’d be curious to see if there is a there, there. If the broad adoption, certainly in the UK, I can’t speak to Canada, but the broad adoption of technology to ever and ever younger children, to a really alarmingly early age. You know, you see children who are not even at school age who seem to have access to every technology under the sun, and who don’t seem to get that interaction from another human being. I wonder. And I’m going to sound all curmudgeonly and there’s probably going to be people shouting at me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:34] <strong>Cathy Mitchell:</strong> I have seen it change with the Gen Z that they’re talking about. And my kids fall in that category. Whereas I wanted to be, okay, it’s personal responsibility, so we’re going to raise them. It was new to me, so I raised my kids thinking, okay, tablets, I’m going to teach you how to use it, not restrict it. I was all open-minded about all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now they’ve told me that if they have kids, they will restrict it far greater than I ever did. They were like, they won’t have nearly the freedom that I gave them in my open-mindedness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:06] <strong>Nathan Wrigley:</strong> Yeah, well, but you are forgiven for your open-mindedness because I guess humanity perhaps needed more evidence to draw conclusions around that. And perhaps those conclusions are now landing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:16] <strong>Cathy Mitchell:</strong> I think so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:16] <strong>Nathan Wrigley:</strong> Yeah, well, certainly as an example, I know that in Australia more recently, there’s now a widespread ban, I think under the age of 16, and I’m going to use the word illegal, maybe that’s the wrong word. Maybe there’s a technical definition, but social media is not permitted for children under the age of 16. And I think that there’s legislation being talked about in the UK of a similar nature, and some other European countries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t know how much traction that will have because I feel that there’s a persuasive argument, much like you described of, it’ll all work itself out. You know, we don’t need the government to tell us what to do, and all of that, and that all makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But my, I can well understand, I think in the UK also, there is a growing, a groundswell of this alternative way of looking at it. Like a rejection of the phones and the technology.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anyway, there we go. That was an aside. Do you want to contribute into that a little bit more before I push us back in the WordPress space?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:11] <strong>Cathy Mitchell:</strong> Yeah, I don’t want to be all, it’s bad, it’s bad, but I think that we’re seeing an effect. I really do believe that volunteerism, whether it’s with WordPress or anything else, in my faith background, being a person, a Christian person, I grew up seeing the service as an answer, as just part of our lifestyle. You just serve others. But now I’m seeing it come in a secular sort of way as well, where service is an antidote to loneliness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think no matter where you’re serving, not the church or any, like just pick a service. Being that cameraderie with people, having a similar goal, going in the same direction, like I really do think there’s hope. There’s hope out there for all of us. And it’s a great way to do something meaningful. Like you get to do all those things. You get to practise a skill, you get to do something meaningful, you get direction, you get cameraderie all by serving.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:03] <strong>Nathan Wrigley:</strong> I’m going to, say something now, and I’m going to caveat it heavily before I say it because A, it relies on my prodigiously bad memory, and B, it could just be fabricated anyway because the source could be utterly wrong. But it feels like there’s a kernel of truth in it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I was doing some research recently about happiness, that broad subject. You know, we would all like to be happy I’m sure. There’s a lot of people who spend a lot of time thinking about what this actually means, and trying to drill it down to some fairly basic maxims, if you like, for what leads to happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two of the biggest indicators of happiness are really interesting. One of the two is how often you spend with other people basically. How much time you interact with other human beings. Now I know that that’s not for everybody, but broadly speaking, that seems to be a huge indicator. If you actually get yourself out and you do things with other human beings, there is a definite benefit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the other one, which is very curious because I think it’s fair to say, you know, Canada and the UK, we’ve been brought up to worry about our own finances and amassing as much stuff as we can, and lining your nest for the future and everything. Well, this other one, controversially, the second one that I’m going to mention is the amount of stuff that you basically give away. And that could be time, or it could be finance, it could be any of those things. The more that you give away with no expectation of a return, that also apparently is a real indicator of happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think we can all identify that. That moment where you give somebody a gift and you’ve really thought about it, and you hand it over and you watch the face change as they unwrap it. And you think, they’ve loved that, haven’t they? And you’re not thinking to yourself, well, I did that. I made them happy there. You’re just thinking, oh look, they’re really happy. Isn’t that wonderful? So anyway, there’s my 2 cents of utterly unproven thoughts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:59] <strong>Cathy Mitchell:</strong> Okay. Learned something. Those are two, so the two things were being around people and altruism basically, with nothing expected in return.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:08] <strong>Nathan Wrigley:</strong> And funnily enough, they map very closely to what we’re talking about, right? We’re talking about events and socialising with other people, but also that, in this case, it’s not a financial thing that you are giving away, but you are definitely giving away an awful lot of your time for doing these kind of things. And maybe, given that little bit of information, it kind of becomes a little bit easier to justify because if you can say to yourself, this makes me happy, it might not seem it in those stressful moments.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:36] <strong>Cathy Mitchell:</strong> Yeah, today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:37] <strong>Nathan Wrigley:</strong> Yeah, that’s right. But ultimately that might be causing your happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so there we go. That was our little segue. Let’s sort of bring it back to WordCamps. You were very kind to write me a bunch of show notes, and they really drew me in as I was reading them. And I want to sort of dwell on a few of them because you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:53] <strong>Cathy Mitchell:</strong> Had to convince you to get me on the podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:54] <strong>Nathan Wrigley:</strong> Yeah, no, there not a lot of convincing needed. I loved it. You’ve got some sort of bullet points if you like, not really bullet points. You’ve touched on different areas where you feel that you’ve got something to say about, I dont know, why people might contribute and why they might volunteer and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it’s things like, why might new people, newbies, as you’ve described them, volunteer and why might business folk volunteer?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the first one was, let me go back. So I’ll read into the record what you wrote because it makes a lot of sense. You said, in 2025 I helped the organisers for WordCamp Canada and this year found myself the lead organiser. And this has been consistently one of the nicest, most open groups, that I’ve ever been part of. And then you strayed into why other people, for example, new people and business people might like to contribute.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the business side, you said, volunteers, boundaries when not getting paid, giving back, sponsoring folks, not necessarily a financial return on investment. And then for the newbies, you said, there’s other ways to contribute, for example, contributing in code or non-coding ways, and also just being a recipient of the open, friendly community that you encounter. So that was really it. Maybe I’ve said everything that you wanted to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:07] <strong>Cathy Mitchell:</strong> Well, those are kind of questions that I had coming from a corporate, and I keep talking to different people trying to figure out, I guess I’m looking for something other than altruism when comes to the corporate people at least. Like why are they sponsoring? And I can see, the pessimistic, or maybe the pragmatic, side of me to be positive wants to know why. Why are they putting the dollars in?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then on the other side, I think, well, if WordPress doesn’t do well, then they don’t do well. Like, if their businesses are based on WordPress. But then I also saw something that, if you sponsor open source projects, it makes hiring people that much easier, and also vetting people that much easier. Because it gets you into the community and so it goes both ways. People will be more likely to apply for your jobs and you will be more likely to have a way to vet them. That’s one thing I saw.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:04] <strong>Nathan Wrigley:</strong> I think there’s a lot of truth in that, or at least I’d like to believe there’s a lot of truth in that. That makes me feel happy about the whole situation. But what’s curious about what you’ve just said, and I don’t know how much of an intuition you’ve got on this, but if you were to go back to, let’s say the year, oh, I don’t know, 2018 or something like that, WordPress was experiencing this really stratospheric growth. You know, in terms of market share of the internet broadly, you know, the number of websites as a percentage, WordPress was going from sort of the low twenties to the mid twenties, high twenties, and then through the thirties, and then finally landing at this sort of 40%.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And during that time, saying this phrase sounds ridiculous because it is ridiculous, WordPress could kind of do no wrong, I think. There was just growth upon growth upon growth and a lot of companies, I don’t think needed to explain themselves to their directors quite so much. The return on the investment didn’t need to be made. It was just, look, we’re part of this thing, and there’s this rising tide, and we are one of the boats. And look, we’re going up as it all goes up. So it just happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, during COVID, and then especially over the last few years, and then now especially the last couple of years, inject AI into the mix, I feel that that calculus has changed a little bit. And there’s this inkling when you speak to the same corporate people who a few years ago were willing to open their wallets to sponsor events, the wallets are much, much harder to open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Again, in much the same way that I don’t really know why the community is so fabulous. I don’t really know why the wallets are harder to open. But I think the landscape for sponsorship, and the requirement of a return on investment, as opposed to, well let’s just join in because WordPress is growing. I think that calculation is going to be harder and harder to make. And maybe you’ve got experience of this over at WordCamp Canada trying to gather sponsors. Perhaps you found it straightforward. Perhaps it’s been difficult. I don’t really know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:08] <strong>Cathy Mitchell:</strong> There’s almost like a perfect storm right now because wallets are tighter because over the last few years, at least in the States where my clients are, it’s become, economically there’s uncertainty. And so that trickles down and trickles up, right? And so more wallets are going to be a little bit more restrictive on what they’re going to buy, and they’re going to want to see more bang for their buck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Corporately, also there’s been this huge rise in competition in the corporate world. There’s just way more competition over the last five or six years for just about anything when it comes to agencies or plugins or themes or whatever, there’s a lot more great competition, like good products out there. But then there’s also a lot more competition to get the clients, like clients have a lot more options.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I think it’s a perfect storm. Like, do you want to put your money into WordPress because is that the future? Is there money for sponsorship? Plus WordPress has become stricter on what they require to sponsor, as far as trademark use and different things that have been put higher on the priority list.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I kind of see it like a levelling off. Like not as a bad thing because every industry can’t just, go, go, go, go. Like there’s going to be a levelling, right? Can’t be that easy. When I started, I didn’t even advertise. And I’ve had this business for 19 years. I’ve never advertised. That is going to go away. Like it was just, you know, I lucked out starting somewhere, but that’s not realistic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:44] <strong>Nathan Wrigley:</strong> So what’s interesting in that is I think I am the same. The only period in which I’ve been in the WordPress community was during this stratospheric growth period really. Everything has been, you know, people have argued on the inside about this, that, and the other thing, and whether a feature should ship in Core, or whether or not we should do this thing at an event or what have you. So there’s been some minor disagreements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But broadly speaking, the whole project has just swelled and swelled and swelled. There’s this overarching sense of optimism and growth, and now the brakes are on. And so for me, it feels like unfamiliar territory. And because it’s unfamiliar, it feels a little bit scary because I don’t know what that means. I don’t know whether that means that things are going to just level out as you just described, or whether it means things are going to decline, or whether it means some of my friends are going to go away because the community, it’s no longer going to be something that they wish to frequent because their profitability is under question and they need to seek revenue from other different options. Maybe AI, maybe, whatever it might be. And so I think my concern just, it’s probably self-interest really. I’m just concerned because I don’t know what’s coming and that fear is, well, it’s fear.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:57] <strong>Cathy Mitchell:</strong> I think this brings me perfectly into the WordCamp Canada thing that I wanted to mention. Just because I see this event, and even the community team, as a whole in WordPress. There are teams in WordPress, by the way, for people that don’t know, that help you get involved. It’s not just coders, like there’s all kinds of teams. And one of them is the community team, and all we have to know how to do is plan an event or host an event or serve coffee. It’s amazing. But anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am excited about WordCamp Canada, and the reason I’m putting so much time and effort into this conference is because I really see it as a light at the end of this tunnel. Not at the end. Maybe midway. I have no idea what’s going to happen to my own business, to WordPress, I don’t know. But I think there’s one thing that I’m fairly certain of, even now, even in the midst of AI, and that’s open source. I really still believe that open source is the way of the future. I still think it is, open source and AI are probably the way of the future. Yeah, I don’t know how else to say it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think the exciting thing, and the thing that we need to do as people who got to take advantage of that uprise and that uptick, is you and I need to get young people involved. Like we need to get those young people involved in open source. I don’t even care if it’s WordPress or not, but they need to become part of a community that is exciting, that is beyond themselves. They need to see that we’re nice. We don’t bite. We’ll hire them. There’s just so much good that can come out of being together. And these are the nicest people. They’ll talk to people that are just standing around in the hallways with nobody to talk to, which is me. I’m an introvert, ironically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:38] <strong>Nathan Wrigley:</strong> You definitely don’t come across like that, just so that you know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:40] <strong>Cathy Mitchell:</strong> Well, we’re I’m pretending nobody else is listening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:43] <strong>Nathan Wrigley:</strong> The other thing that I would add, as you were saying all of those things, it occurred to me that, I would imagine that people in more senior positions, I don’t really know how to describe it in the WordPress world, have got a similar intuition to the one that you just described. In that they can definitely see that the future needs to be thought about in terms of the youth coming in. Because there’s an awful lot of work being done at the moment and an awful lot of hours being put into educational initiatives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And also, not just where you and I are living, but all over the world. And it was kind of interesting at WordCamp Asia recently, that was a big focus. A lot of people talking about exactly this thing and these kind of overlapping initiatives that are beginning to bear fruit. So people coming out of universities who’ve had experience of open source and WordPress in particular. And children at schools having experience of open source and WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think, as much as we would like open source and WordPress to win, just from a moral point of view, wouldn’t that be a great thing if everybody just noticed it and got on and used it? I think we need to do a bit of work to make sure that it’s being put under their noses so that they can make those judgements for themselves. And that is definitely a part of the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:57] <strong>Cathy Mitchell:</strong> Yeah, the Campus Connect and the Credits where they can university credits, like it is getting popular in other places we haven’t heard so much. But I really want to introduce it and bring it to the conference in Vancouver this fall. Because we can have universities in Canada and the US, on this side of the pond get involved in this and actually give kids credits that they can use to graduate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:21] <strong>Nathan Wrigley:</strong> It’s so interesting as well because it’s very hard to, how to describe this, that’s a difficult one to sell, let’s put it that way. The people that are really into those initiatives really love it, but it’s hard to get people to notice that that’s going on, and hard for people perhaps to notice how important that is. But without those little foundational bricks being put in place for the future, this rising tide carries all boats metaphor, that’s not going to happen. You know, I think maybe another good metaphor there is they’re kind of building the harbour wall to make sure that the boats have got something to rise against. And I think that’s really important.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And your part of the world is definitely open to that, I’m sure. Seems to be that some European institutions, colleges, universities and South American institutions and parts in India and Southeast Asia and places like that are also beginning to bite on those ideas as well. So it’d be really interesting to see how that all goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You’re painting a picture, Cathy, which makes me feel optimistic. Feels like there’s a lot of positivity coming out of where you are, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:24] <strong>Cathy Mitchell:</strong> I’m probably going to get in trouble for saying this, but for all of the faults that Matt might be accused of, somehow he put something in place that became very, very popular. And the culture that I have been a part of, I haven’t worked for Automattic, but the culture at the WordCamp level and volunteering and the community team has been unbelievably positive, and foreign to me. Like I’ve had to learn this culture. What do you mean there’s no application process? How do I say yes? What are you talking about? So somehow this has grown. And he has had a lot to do with it. People don’t like that he’s had a lot to do with it, but there’s some truth there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:07] <strong>Nathan Wrigley:</strong> It’s really interesting and it doesn’t matter how many times I have conversations like this, I’m always confused by it. I can never get my hands around it and work out what the secret sauce is so that I could copy and paste it into a different locale or a different jurisdiction or different era. But there’s a there, there. There’s something very satisfying about this community. And from everything that you’ve said, it sounds like you are very positive about it. And I share your positivity, even though sometimes it seems quite hard to grasp in the more recent times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Oh, Cathy, that’s been absolutely wonderful. I’ve enjoyed chatting to you today. We’ve hit the sort of sweet spot of the amount of time that we’ve got, so if it’s okay with you, we’ll wrap it up there. Just before we go, if anybody wants to get in touch with you, or just sort of wants to pat you on the back for your wisdom there, where would we find you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:55] <strong>Cathy Mitchell:</strong> Well they can find me at WPBarista. And right now they can also find me at canada.wordcamp.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:02] <strong>Nathan Wrigley:</strong> Okay. Well I will make sure that that goes into the show notes. So if you’re listening to this, head to wptavern.com, search for the episode with Cathy Mitchell, that’s Cathy with a C, and you’ll be able to find the details in the show notes there. So Cathy Mitchell, thank you very much for chatting to me today. That was lovely. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:19] <strong>Cathy Mitchell:</strong> Thank you. I enjoyed it.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Cathy Mitchell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cathy has been working with WordPress since 2007. What began as a fun personal project during her maternity leave soon evolved into a fully fledged business with the launch of WPBarista in 2008. Over the years, Cathy has garnered extensive experience in the WordPress space, and is now working towards the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focuses on the powerful role of community within the WordPress ecosystem, something that Cathy is deeply passionate about. We discuss how open, welcoming, and international the WordPress community feels compared to more traditional corporate or volunteer environments. A theme that emerged was how involvement in WordPress has provided Cathy, and many others, with a sense of belonging and fulfillment, especially after life changes like becoming an “empty nester”.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the motivations for volunteering and organising within the WordPress community, both from the perspective of newcomers looking for purpose and connection, and business owners assessing the return on investment from contributing or sponsoring events. This included how easy it is to get involved, the unique lack of barriers and red tape, and the value of altruism and camaraderie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other topics we explored were the broader impact of technology and loneliness, the importance of service and community for well-being, challenges in sponsorship amid changing economic times, and the vital need to engage the next generation in open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the human side of WordPress, how volunteering shapes both individuals and the broader community, and what the future might hold for WordPress events and contributors, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbarista.com\"> WPBarista</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://canada.wordcamp.org/2026/\">WordCamp Canada 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://london.wordcamp.org/2019/\">WordCamp London</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/\"> WordPress Campus Connect</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a></p>\";s: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, 10 Jun 2026 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Open Channels FM: BackTalk on AI Burnout, Bridging Innovation and Standards, and the Risks of Single-Maintainer 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555405\";s:7:\"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:122:\"https://openchannels.fm/backtalk-on-ai-burnout-bridging-innovation-and-standards-and-the-risks-of-single-maintainer-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:212:\"Conversations reveal insights on deep work, innovation standards, and the risks of underappreciated developer tools, highlighting challenges of mental fatigue, standardization, and reliance on single maintainers.\";s: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, 10 Jun 2026 09:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Open Channels FM: Rethinking Developer Life and Productivity with Rapid AI Advancements\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555214\";s:7:\"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:\"https://openchannels.fm/rethinking-developer-life-and-productivity-with-rapid-ai-advancements/\";s: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:264:\"In this episode of Open Web Conversations, Zach Stepek and Carl Alexander discuss with Alex Standiford the impact of AI on developers, highlighting productivity, burnout, workflow changes, and the necessity of setting boundaries in this rapidly evolving landscape.\";s: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, 09 Jun 2026 10:41: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Gutenberg Times: Gutenberg Changelog #131 – Gutenberg Plugin Releases 23.1 – 23.3, Calls for Testing for 7.1 and more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=45809\";s:7:\"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://gutenbergtimes.com/podcast/gutenberg-changelog-131/\";s: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:60685:\"<p class=\"wp-block-paragraph\">In episode 131 of the Gutenberg Changelog, Birgit Pauli-Haack welcomes Isabel Brison to discuss the latest developments in Gutenberg plugin releases 23.1, 23.2, and 23.3, as well as progress leading up to WordPress 7.1. The hosts highlight recent calls for testing, including collaborative editing—previously delayed from 7.0 due to stability concerns—and the new media editor modal for the image block.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Isabel Brison shares insights into the new responsive global block styles, allowing users to customize styles per device breakpoint, as well as updates to the layout and dimensions controls in the block editor. She encourages feedback from users as these features iterate for the upcoming WordPress 7.1 release. The episode covers stabilizations, such as the improved, more ergonomic media editor and cropper, and strides in accessibility, particularly regarding the tabs block.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The hosts also discuss experiments in dashboard widgets, content type management, and empowering plugin developers with new admin UI components. Both stress the importance of community feedback and testing, given the ambitious new features arriving soon. The episode wraps with practical notes on documentation improvements, React 19 integration, and a reminder of the short summer break ahead.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size wp-block-paragraph\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Isabel Brison</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>GitHub <a href=\"https://github.com/tellthemachines\">@tellthemachines</a></li>\n\n\n\n<li>WordPress <a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a></li>\n\n\n\n<li>X (former Twitter) <a href=\"https://twitter.com/ijayessbe\">@ijayessbe</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Calls for Testing</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">Announcing a collaborative editing outreach effort for 7.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">Media Editor Modal: call for testing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\">Call for Testing: client-side media processing</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What’s released</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2026/05/wordpress-7-0-armstrong/\">WordPress 7.0 “Armstrong”</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/\">WordPress 7.0 Source of Truth</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\">React 19 upgrade temporarily reverted in Gutenberg</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg releases </h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">What’s new in Gutenberg 23.1? (07 May)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">What’s new in Gutenberg 23.2? (21 May)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">What’s new in Gutenberg 23.3? (03 Jun)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So welcome to our 131st episode of the Gutenberg Changelog. We will talk about Gutenberg plugin releases 23.1, 23.2 and 23.3. There are calls for testing out for WordPress 7.1 and we have more. I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project sponsored by Automattic. Today, Isabel Brison joins me from Sydney again. Isabel is a longtime core contributor and JavaScript developer on the Gutenberg Project. Welcome back to the show, Isabel. Thank you for joining me. How are you?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison</em>: I’ll be good. Thanks for having me. It’s always a pleasure to be here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Well, I’m so glad you’re here because you and your team have worked on some of the most exciting features that coming to Gutenberg. People have been waiting for quite a long time. So we will dive in when we get to the updates. How is Sydney?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>It’s winter, cold, rainy, you know, the usual.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>The usual? Yeah. How is the technology? I know you’re going to meetups there. Are these WordPress meetups or are these other technology meetups?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I go to a variety of tech meetups. There’s not a huge amount, so I’ll go say to JavaScript meetup and there’s a good technology leaders one too. I enjoy going to the Python meetup even though I don’t work with Python. It’s just a lovely community and they have some interesting talks. So it’s sort of whatever’s on offer, I guess.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, nice. Yeah, I found out in Munich to the technology community and I kind of connected with a local Claude meetup community and it was kind of interesting at the Technical university or the Design university, they switch around the places, but it was interesting. Yeah, they had some lightning talks. Yeah, like 20-minute talks and it was really cool. Yeah, I think we need to get out more.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, no, I like, I like going out after work and just, you know, even if it’s just to listen to some tech talks, you get a bit of air and meet new people.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that’s good. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">All right, so we have a few announcements. WordPress 7.0 has been released two weeks ago and we are heading big steps towards 7.1. Beta 1 is scheduled for July 15th. That’s kind of a little bit of ahh. It’s only six weeks away.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah. So we get going not long time at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And contributors have been working on the next major version already. So the official roadmap planning post is in the works. The team is in the final steps to assemble the release squad and we do well from the Gutenberg plugin releases we get a pretty good idea what might come through also from what didn’t make it into 7.0 as well. So we will. But it’s the web, right? Web is translated for me in the Japanese kind of design thing. Yeah, it’s like wabi sabi. Nothing is finished, nothing is last, and nothing is perfect. So we always get work to do and it’s always getting better. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yep. It’s a work in progress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>It’s a work in progress. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Calls for Testing – WordPress 7.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">So there are two calls for testing out now. One is announcing the collaborative editing outreach effort for 7.1. Many of you dear listeners remember, okay, collaborative editing, real time collaborative editing was pulled from the 7.0 because it wasn’t stable enough for all the hosting environments that are out there. And there was this call for testing out for hosting and now there’s another one for outreach effort to make sure that everything is kind of caught for 7.1. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And Anne McCarthy just published it on the Make Core blog so you can join it anytime. There’s a separate channel Collaborative Editing Outreach that you can. It’s kind of modeled after the full site editing outreach program that ran for two or three years. I hope this doesn’t run for two or three years before it’s released, but it definitely there are more people kind of discussing it and how it all supposed to work. Amy Kamala, who was the Release Coordinator for 7.0 and Justin Tadlock, who is a developer advocate at Automattic and Theme Team Rep are helping Anne to coordinate those calls for testing. And also some of the teams at Automattic who work with Enterprise level are also there. So yeah, it’s a bigger discussion on how collaborative editing works on all the levels.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it’s a pretty big and complex piece of work.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, join the channel and dive right in if that’s a feature that you are excited about. I’m excited about it. But I also only have two or three people that handle my editing stuff. So I don’t have 10 or 15 editors in my post zone. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Another call for testing is about the media editor Modal that has been added to the image block. Ramon Dodd published a call for testing about two weeks ago about the new modal for the image cropper. It’s kind of the bigger image cropping in the block editor, so you don’t have to. It’s a much easier way to get your images in line, but you can also rotate the images and resize them. And it has been merged with the Gutenberg plugin. It also, with 23.3, is out of experimentation. So anybody who has the Gutenberg plugin installed can be testers. And Ramon has some great details on how to test things and what to look for and how to share the feedback. It also has a little paragraph there on what’s out of scope. So for this version, we of course share all the links in the show. Notes. Isabel, you’re part of that project. What excites you about it?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I haven’t actually, actually worked on it. Well, not I, I, I helped a little, a little bit at the very beginning when we were discussing sort of choice of libraries and whether to build our own or use a third party. And a bit with the initial testing, but it was mostly Ramon and Andrew’s work. This latter part, the bit that’s now in Gutenberg, in fact, it was all their work. And I think it’s super exciting because replacing the old, the old Cropper, I. I never liked it. I have to be perfectly honest.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I hate the old Cropper.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I never could figure out how to use it. It was not ergonomic at all. And this one is such a better experience. Aside from allowing us to do all the stuff that the old Cropper, the in Editor Cropper is what I’m talking about. The one that you can access from the Image block toolbar. It’s also on the site Logo block. So you can now access it from both those blocks and the new one, in addition to what the old one did, also allows you to do free cropping and free rotating. So if you want to rotate your image 3 degrees and if you want to crop it to whatever weird aspect ratio you like, you can do that, which you couldn’t on the old one. Yeah, and it’s. It’s just a much nicer experience. I believe it’s also more accessible than the old one in terms of the keyboard accessibility of it. It’s. It’s better too, so. All advantages. Yeah, they did a great job on it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I used it just for a little bit and I was so amazed how smooth it was. Yeah, I kind of. It was also much more intuitive. I never knew what to do with the Cropper when I was pinging it previously and said, so how do I do this now? Every. I had to think every time. And this one is very, very intuitive and very smooth also to use it and to see it. So I’m really happy about that. I’m hoping it makes it into 7.1. Yeah, so we have that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it’s, it’s on track, I don’t think. I mean, barring any major natural disaster, I don’t think that there’s any reason for that not to make 7.1. It’s a great piece of work. It’s really stable and now that it’s not behind the experiment flag anymore, real users are using it. I’m sure we’re going to get tons of feedback if there’s anything that’s not 100% perfect and we still have time to iterate on it until beta one.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I really appreciate that Roman and Andrew went to the research portion and kind of looked at how other graphic programs actually are doing things and tried to get some of the experiences also into the blocked. So okay, yeah, so two calls for testing for those who want to dive in. It’s a very good way to contribute to WordPress because it’s so close to what you’re doing with WordPress. And not only developers but also content creators can help testers even better and those who work at agencies or work with clients at agencies to kind of see how that all works. Which brings us to what’s released. I mentioned it. </p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released – WordPress 7.0</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Armstrong was released. We talked about it in previous episodes on this changelog with various people from the agency view, from the designer view, from the content creators views. We will share in the show notes in case you need to catch up. The Field Guide the link to the official field guide for WordPress 7.0 as well as to the source of truth on Gutenberg Times that has all the user facing stuff in there. Those are the best information on 7.0. I have not seen in the last two weeks any major boo boos that came in. Yeah, it was such a great testing cycle with a delay of six weeks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Most of the bugs were actually caught quite early or in the loliso, I don’t think. I’m not sure when there will be a point release which normally happens within a few weeks of the major release, but I have not seen any planning for that. But it could be end of June after WorldCap Europe. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So let’s dive into the Gutenberg releases. We start with Gutenberg 23.1. Oh, one question, Isabel, do you have a favorite feature that came into WordPress 7.0?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Oh, I don’t know. There’s a bunch of interesting features and I worked on some of them. Of course I have sort of my personal favorites of the ones that I worked on of which one that is. It was very, very subtle or sort of low profile. We didn’t talk about it much, but I worked on a little handy addition to the grid block or the grid layout type, I should say. That allows us to configure a responsive number of columns. So by setting column count and a minimum width you can say I want my block to always have at maximum three columns but on smaller screens it can go down to two and even one. So that’s something we didn’t have before and I’m quite happy with it. I think it’s a good improvement. But compared to. Oh, there was. There was loads of stuff. The pattern editing work I think is going to be really handy. And what else? There was the notes feature.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> No, I was in 6.9 already. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh yeah. No, there was something about what? Oh God, I’m confusing my releases.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, yeah, they’re kind of. They melt together once it’s released. They melt all together. It’s kind of. Yeah. Was it there or there? Yeah, sometimes. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">All right, let’s dive into Gutenberg 23.1. It was released on May 7, had 212 closed PRs by 49 contributors. So we are really wrapping up the releases or the work on Gutenberg and the block editor. It’s now not only the block editor, it’s also the site editor. It’s the data views, it’s the. The design system, those all. So the Gutenberg repo has kind of exploded in other areas for the WordPress ecosystem. So. But yeah, the first one on the list and it’s. It’s really interesting how these change logs are actually automated and coming together is the upload media and it enabling concurrent sideload uploads. That’s an interesting thing because it’s so performance issue to have multiple streams on upload on images so you don’t have to wait so long that the image shows up in your block canvas. And that’s a really good improvement for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, yeah. I’d imagine when uploading, when bulk uploading particularly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So when you copy paste content from another source it has this also a feature that you can download and upload the images that you connect there. And that also happens in this module stream uploads thing. So it’s really cool. You only know this because it’s faster but other than that there’s no disruption of your work or any of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, there’s a lot of good work. This was also the client side. This is part, I believe, of the client side media processing work that did not make 7.0 but is now being aimed at 7.1. That’s mostly Adam Silverstein’s been working on that. I haven’t kept a close eye on it, but it looks like, you know, very useful work and it’ll be good once we manage to get it in for performance.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, Adam Silverstein has worked on these image handling features quite a bit for 6.9 as well. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, there is an enhancement that I have flagged here, but I’m not sure how useful that is. It’s for the WordPress UI overlays and a global preview styles on the storybook. So the WordPress UI is the next level of components for WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>It’s sort of the successor of the components package.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And at the moment both are used, but I have seen now efforts to migrate, merge things, I don’t know how you call it, but to get it kind of in one thing. But the overlays, the preview styles is how you can show the preview in the storybook so you have a better inkling how it’s going to look later on.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that should be good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And then there are tons of changes for the components, the admin ui, the UI components, dialogues. This is mostly for developers that are working with WordPress and creating their own either building WordPress or creating plugins for WordPress to have a unified design system, unified component system that they don’t have to kind of come up with their own interfaces. Those decisions are already made and you can kind of build on top of things before any of that, even the components, every plugin had to design their own interfaces and now this is really cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it’s good to have a sort of a system that you can use when you’re extending and you need to build a new screen or something for your plugin, you can just use these components and everything looks integrated with WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And it’s also good for the users because they don’t have to think about how do I use this tool now? Or how, how is. How do I filter now on this screen? Because it’s all a unified system and it’s all built out and stable. So the next thing is on the notes getting a few updates. So right now it’s in 23.1. It’s mostly refactors on the positions and the floating board. But we will see later in, in the other releases that there are some nice features coming in for the Blocked libraries. We have updates to the tabs block. I’m really hoping that it comes into 7.1. It’s still behind an experiment flag, but now it can handle duplicate tabs, meaning duplicate handles on the tabs. And it follows now WCAG tabs pattern for accessibility in the renaming of the blocks. So which is a. It’s a major step towards accessibility and acceptance for that. I’m really waiting for the tabs to come into Gutenberg or to.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Mostly I think the renaming was about as I understand it, so that the blocks have names that match the accessibility standards or how these things are known as. There’s a WCAG pattern it’s linked to in the PR, and those sort of example patterns that the WCAG website has for people to know how to use ARIA attributes correctly, which is a whole science. And the idea is to have our tabs blocks match the names of that pattern so that it feels more standard and it’ll be more familiar to people who might have implemented tabs in other places.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And those are the standards also where screen readers kind of tap into and people are. That use screen readers kind of have a common pattern for that. Yes. So that definitely elevates the tabs block in its accessibility. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>So it’s going to be pretty useful block once it’s stabilized. So I hope it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Yeah. I know that quite a few block collections have tabs right from the beginning in the last eight years. And they’re not going to go away because the first iteration of any of the core blocks will not be as feature rich as any of the block collections that have been developed for the last six or seven years. Yeah. The next one is tapping into the image cropper we talked about. So you can. And it was tapping into the keyboard actions with drag handles on the canvas. So you can use your mouse to do some of the actions that you want to do with the image cropper or the image tool. Yeah, if you say Image Cropper, it kind of reduces it to cropping, but yeah, it’s also the handling to rotate</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>And all that too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, yeah. There’s a new API for the WordPress grid package, but that’s a different grid that you are working on.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that’s not the layout. The block layout grid. This is something else. This is a grid that you can use for dashboard UI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Sort of admin stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. That’s the new API that powers the new experiments that in Gutenberg. That is the dashboard widgets. We kind of talked about it a little later. You as a plugin developer or extender of WordPress, you can use them now as well for any of your dashboards. If you are having a plugin that has some data vising kind of, you can put them into these grid package and display them on your plugin settings pages. The guidelines is also a new API and it has now a public API method and the REST API route to it. There have been iterations after 23.1, so I think that that would be really helpful to look at later. </p>\n\n\n\n<h3 class=\"wp-block-heading\">New APIs</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The guidelines are actually a whole set of content types that are for AIs. Pretty much when your agents come to the WordPress site, you can tell them what to do with things. What’s the purpose of the site? The editing guidelines? Yeah, how, how you want AIs to behave on your site if you let them in. And it’s really important when you have other agents come in that you don’t control. Yeah, that sounds scary. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But if you as a site owner connect your Claude to your website, you can have in the guidelines all the things that you want Claude to know about your site. So it’s. You don’t have to put it all in a prompt and it kind of finds all the things and it’s also your memory. So if you use an agent to do your SEO, to do your. Some of the content updates like headlines or tags, your policies on how to do tags and categories, that’s all things that you can solidify in your documentation in the guidelines for your AI. And it will remember that. But it’s also interesting to see the discussions about it. I had a short discussion with Grzegorz, who was a former co-host here on the Changelog, a few, I would say a few hundred episodes before, but it wasn’t that much. But he is now part of that team who thinks about AI and memory and all that. And it was really interesting to hear because if you are in an agency, you work on multiple different sites, but you have one Claude, so you don’t want things to bleed over from one site to the next. And these guidelines help you kind of keep track of everything. So it’s an interesting problem space that came out with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> It’s like providing the correct context and the correct amount of context so that the AI can be maximally productive on your website, whatever you want to do with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, right. Yeah, yeah. Most people are really not all that into. Site owners are not so into AI, but it helps a few things quite nicely. I find it with SEO and with yeah, accessibility and all that. It’s really helpful to have a double check there. Yeah. All right, what’s next in 23.1? Do we have something? </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Oh yeah, there’s these custom taxonomies experiment in 23.1 with the custom post types and taxonomy management that started out as out of. I don’t know how that came about, but it probably is one of the radical speed month project as well that people say okay, we probably need to have content management when the APIs were in WordPress in 3.1. But there is no interface there and there were always plugins there to do this, be it custom UI, custom post UI or ACF or so. But there’s no interface for. And that’s where this experiment comes in to kind of push the envelope on that a bit. Have the REST controllers in there, have the interface in there. But it definitely is not the last word spoken there yet because that is a field where there have been a lot of extensions in the universe or in the WordPress ecosystem that might not fit in where this is going. So it’s just a. It’s a prototype kind of experimental way to do that. But check it out. You just have to enable the experiment in the Gutenberg plugin and then you can kind of try it out and work with it. It uses the common APIs. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The other experiment is the dashboard. We talked a little bit about it because that’s the grid package was created for that. The dashboard to have administ page routes and sidebar menus as a shell to add additional grids on the dashboard. I’m interested to see. I haven’t played with it yet but I want to see if I can. So what are the dashboards? The dashboard right now is just a. The quick edit and the site health and the news that’s on your dashboard right now and a few other things and plugin kind of tap into that as well. But I have never have not seen yet and I’m still thinking about it to. Maybe Claude can help me with that. Having a quick edit that’s a block editor actually. So when you log in into your WordPress site you don’t want to kind of just do all the other admin stuff. You just want to create a new post. So why not have it on the dashboard and create a blog post right there from the quick edit. Quick Edit only gives you text based things but not block editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> So a block based quick edit, do you reckon all the blocks. I reckon it would need to be A very simplified version of the block editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Maybe images, paragraphs, but yeah, that would be cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, yeah. Lists. Yeah. Like an outliner kind of. Yeah. Very fast kind of. Yeah. Maybe come back to the white space, but kind of instead of having a classic editor, just build blocks with it. Yeah. So kind of a distraction free, quick edit, full set, toolbar on top kind of thing. I don’t know. When I’m bored, I’m gonna star B. Prototype it. Prototype it. Yeah. And get it in. Yeah. That. That was one of the things that a lot of writers said. I don’t want to deal with all the stuff I’m getting so distracted. Yeah. There’s announcements and all that. So let me just start my blog post. But anyway, and then there is a list of Media editor modal call for testing. We talked about it. There’s a whole in 23.1. There’s a whole list of bigger and smaller PRs that went in. I think the call for testing gives you all the ins and outs of it that I think was. Was it. Did you find anything for 23.1 that you wanted to talk about further?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Not. Not really. Apart from the things that you’ve already highlighted. I just thought. I already mentioned that the media editor is also on the site logo block. So you can test it on both blocks and that’s it.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.2</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So right into Gutenberg. 23.2 was released on May 21st and also with 204 PRs by 50 contributors and there were four first timers there. Congratulations. You got your first contribution to WordPress core. Yeah. And you got your badge. Well, you got your badge when 7.1 is released, I guess the first feature that is listed is the responsive global block styles with states. This is so cool. Yeah. What does it say? Can you walk us through it?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. So this was the first part of the work towards enabling responsive styles for blocks. And it’s with States because it leverages a style states API that was already built. So Maggie Cabrera was who did that initial work for the States API, and her part was just leveraging it for adding the ability to style pseudo states for very few blocks have pseudo states. Well, this might be extended, but it won’t be super extended because not all blocks need to have pseudo by pseudo states, I mean hover focus and things like that. So usually only interactive blocks would need those. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And so States came about to cater to that pseudo element scenario. But it was always something that could potentially be extended further. And one of the use cases that had been thought out when this initial idea of having the states API was thought it was using it to be able to create responsive styles for blocks was one of the possibilities there. And I had been eyeballing all those issues that have been sitting in the Gutenberg repo for years about creating some mechanism that allows us to define responsive styles. And I finally had the opportunity to pick them up. And having that state’s work already partially done was great because, you know, sometimes it’s starting something is the hard part. And there were endless decisions in the repo about how should we build this and let’s do this and let’s do that and let’s not do that. And it’s like we should take this into account. You know, how you can talk and talk and talk and then it never actually starts because it seems like the problem is too big and too complicated. And the more that’s added to the discussion, the bigger and the more complicated it gets. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But there was this little stepping stone. This states API had already been built. And so I thought, well, it’s already in there for pseudo states, let’s try building responsive. So we call them viewport states. I’ve been working on this with my teammate Dan Richards. We’ve both started working on this and thought, okay, let’s do as sort of a baseline for global styles, but then as a stretch goal, let’s try and do it for actual block instance too. So we managed to do both in the end, but for 23.2, it was only the global block styles that was ready. And this means when you go into the site editor and into the style section, where you have global styles, then you go into blocks. This only works for blocks. It doesn’t work for top level global styles yet. We’re not quite sure. Well, we’re not quite sure if there’s a need to add this to top level stars yet. It’s still something that’s being thought about because for a lot of them, so a lot of really sort of global basic elements like typography, you know, font sizes. Okay, we already have ways of defining them responsively even without using breakpoints. So we are using the clamp function. You can define a maximum and a minimum and you can pretty much, you know, manipulate it so that you get your different font sizes on mobile and tablet and desktop. So there is to some extent you already have that responsive functionality there. So that’s something that might be looked at later on for enabling actual breakpoints for those global styles. But for now it only applies to blocks so for each block you can go into the block, into the block’s global styles and you can pick a state. There’s a new little states drop down at the top and so by default you’ll be styling the default state that’s you know, no media query. And then you have a tablet and a mobile state and the tablet state is only, so it’s, it’s only from you know, the top level. Like what’s your maximum Breakpoint to the minimum, which is the maximum for mobile. So the tablet styles will only apply to tablet to that breakpoint and then the mobile styles will only apply to their own breakpoint. And that’s. Yeah, essentially that’s it. </p>\n\n\n\n<p class=\"wp-block-paragraph\">You can do anything color typography and spacing wise. So for most blocks you know, you have the typography, you have the colors, you have dimensions like not for most blocks you don’t have dimensions, you have, you know, margin, padding, block gap if the block has layout and you can define per break point what you want those values to be. And there are certain features that exist in global styles that do not yet work with, with that responsive logic and those. So when you enter that breakpoint you know, you get, you choose the tablet viewport and you’ll see that some of the tools might be hidden. So for instance, Duotone is one. You can’t set Duotone per breakpoint yet. This is something that will be worked on in the future but it feels like a bit like I’m not sure how many people will need to change the colors per break point. That’s not usually responsive styles are more about spacing dimensions, that sort of thing. So we focused more on those that felt like these are the ones that are really going to be used by most people and the more edge Casey ones if they don’t work out of the box, we sort of. Okay that, you know, that’s a problem for later. We’ll, we’ll figure it out later. And Duotone is one of those awesome.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Well a lot of people have been waiting for that a long time. So glad you, you finally started taking it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I hope it’s useful. I just hope that folks can take this and like ok, okay, I can finally build the thing and yeah, and it works. And please, please, to anyone listening and wanting to try this out, if there’s anything that’s not working, if there’s anything you don’t like or you think, no, no, this should be different because it doesn’t work. Just please give us feedback. We need feedback because this is in the plugin now it’s aimed to go into 7.1. We still have those six weeks until beta one. Those six weeks will be iterating on the feature. The earlier we get feedback the better so that we know if there’s anything that really isn’t working for anyone then we can change it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah. Yeah. Awesome. So that’s a 23.2. There’s also a WordPress components called WordPress Theme and that’s actually the theme for the admin section. We have definitely confusion things going on because we use the same term for multiple things that are totally different and have nothing to do with each other except they are now motion design tokens for duration and easing in the WordPress theme component. So if you want to use those for your admin pages and plugins, go have at it. I am really because it kind of gets you a little bit more into a more interactive way to build websites and I think we really like those or I do. Yeah. Although I’m not a motion or animation kind of person. But yeah, I like when it’s nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. Little bits of discreet smooth animation here and there can really make a web experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. It’s kind of a quality of life kind of thing. Yeah. Yeah. What else is in the 23? Yeah, the content types. It was an iteration on. We talked about it on the content types experiments with various improvements and post type and taxonomy management, duplicate view, quick edit actions. A ton of PRs have been added to that so it definitely is maturing and you can with 23.2 also the media editor modal had matured and there is now. I also will share in the show notes a link to an overview issue on the Dashboard experiment so you can go back and read up about it, what it’s all about. Because there’s a whole lot of work still being done with that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">There’s also an experiment on the classic block migration notice. I’m just pointing that out because you might see it that the classic block might get deprecated or might not be available in certain situations.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. I believe the plan is to deprecate it and remove it at some point, but it’s a whole process because I guess lots of folks are using it. So it needs to be slow, give people time to adjust, choose alternatives.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, well it has been in Gutenberg for eight years and all that and actually what I found is that some of the AI tools actually create blocks that need to be. That are looking like classic blocks and need to be migrated to blocks before they can be in the block editor canvas. So, yeah, those things also need to be kind of tested in that space.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that’s a good point. With AI, with AI tools increasingly being used to build websites and create and. Or move content across from other places, it. You don’t want AI sort of adding the classic block to its knowledge base and suddenly deciding that the easiest way to do anything is to just dump all the content into a classic block,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Which what they’re doing right now. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> So this is a good time to deprecate it so that. Okay, let’s. Let’s ensure that AI works properly, that it’s easier for AI tools to work properly and do things as we expect them to.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It hasn’t been merged yet, but there is also a documentation issue. It’s a big. It was a big undertaking that Juan Margarito took on, was that it was found that an AI can’t really find documentation on the block markup for each of the core blocks. And that was a documentation gap that was kind of found that none of the block library blocks had a readme so it wouldn’t. So what Guan Ma did, he created automatically from the block JSON files a readme for each block on documentation site and then created some tokens where you can have on the readme additional manual content that’s put in there and then have a parser go through that and put it into the block editor handbook. And that is a really. So it talks about the supports, it talks about the, the, the global styles design tool supports about the block markup and also the connection with other blocks. It’s a comprehensive documentation about each block and that’s in the block handbook. It will be merged. We had a hardware hangout on it. We had a proposal on MakeBlog, a core block about that. And I think it’s finally going to be merged within I hope a week, but maybe days.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh, cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>That’ll be super useful. So it will be in the, in the block edit handbook. It has an additional 80 pages, of course. Yeah. But they’re all connected and categorized by blocks. And so now block developers and there were some comments from the community where people said, well, I wish I had that when I was starting out learning about block development and now it’s finally coming. But it was a huge undertaking because it kind of created a ton of new code and that all needs to be reviewed. And it was so. But there were a lot of people kind of working on that. Guided or spearheaded by Guan Ma but it’s now coming and it’s really cool. I’m so happy that it made it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I mean, you can never have too much documentation, but developers are crap at writing it. So, you know, nowadays we have tools to assist us in the creation of the documentation and we should leverage them.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And the hybrid version, automatic documentation plus a way to have also manual content in that is actually a good combination because for some of the blocks, Joe Dawson from the Accessibility team has said, okay, maybe we also want to have some documentation about the accessibility of blocks. And anybody who has comments on that can add it to the, the readme file of that particular block to elaborate on that. And that is outside of any automation. You can just add it to the page. And it was really cool to see that process working. I post a link to the proposal into the show notes just as a side note here. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.3</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And now we’re coming to 23.3. That was just released a day ago June 3rd with 270 closed PRs and 57 contributors. So we are ramping up to 7.1 kind of thing. And the first item on that is really cool that you can now that the notes section. And I think it was Adam Silverstein as well who worked on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh yeah, the multiple notes per block. Yeah. Oh, that’s cool. That’s really useful.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, so you can have multiple threads or comments per block. That’s also helpful when you work with AI that comes in and kind of reviews some of your post and posts notes in there. So yeah, it was really helpful. And it’s also. And he found it to be necessary to have that. So what’s missing in the notes in comparison to Google Docs is that you can highlight a section and then comment on that section. So yeah, like, okay, you probably can delete this half sentence or something like that. And that you couldn’t do that up until now. And with the multi threads on the notes for a block you can highlight a section because if the paragraph is, I don’t know, 10 lines or something like that, you might have multiple comments on the, on that block. And now you can have that. So it’s really cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. So the note is attached to a part of a block and not to the block itself.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, yeah. The next sections are a continuation on your quest for responsive styles.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, that’s part two, part two of the work which is enabling responsive styles for block instances. So again this, this was a part. So Maggie Cabrera had worked on the sudo style states for global styles and she had an open PR to add them to block instances. And Dan and I basically hijacked her PR with her approval of course. We asked Maggie first, can we just take this work that you. She was off doing something else. She wasn’t actively working on the PR at the time. We thought ah, we could just take that over and finish it and then build the responsive styles on top of it. So we did and that obviously there was work already pre-existing so it sort of made it easier to build it step by step on top of it. And now we have in 23.3 the ability to add responsive styles to. So any block, open a post, pick a block, open the inspector controls and then at the top where you have the block name you have this little menu which has a drop down that has the states. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So again just like with global styles we have tablet and mobile. The default is what you get by default what you already had. And then you have a tablet breakpoint and a mobile breakpoint. And for those again as in global styles there were a few things that didn’t really work out of the box, a few of the controls. So we decided to hide everything that doesn’t work. So for now what’s enabled is only the controls that you can actually create responsive styles with. Those are pretty much all the block supports, the standard block supports like color typography, dimensions, block gap. Now layout is also supported and we aside a sort of side effect of that was that we ended up moving the layout panel into the styles tab. And well that was sort of. I’d been wanting to do that for ages I have to say because to me it didn’t make any sense at all that layout was in at the same time. Settings tab and Dimensions, which has controls that are intimately related to layout such as block gap was in the styles tab. And so I felt the. The only thing that makes sense is to have them side by side. If it’s not the same panel, which I still think we could maybe make it the same panel. But that’s another different conversation. But at least they’re side by side. So now layout is in the styles panel. That’s the reason why it’s in the styles panel. So when we have a responsive state enabled we’re only showing the styles panel in the inspector and only the controls that work, which is most of them. There’s a couple of things that we had to hide again, you know, duotonethings like that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And for block instances there are some blocks have custom controls and some of those custom controls should probably become Block supports. Some are like aspect ratio is a block support, but there’s only one block using it and there’s a couple of blocks that have their own custom implementation of aspect ratio. This is something that should change. I have an open PR to try and enable aspect ratio to work responsively because I feel that that’s one of the important ones that people will want to change aspect ratios for different breakpoints. So that’s in progress and what our plan is basically to try to get as much as we can working until 7.1.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Awesome. So when I want to start testing this, I’m going to add a paragraph to my block canvas and then I go to the block inspector and say, okay, this paragraph, I want a different background for a different viewport. So on the mobile I want it green and on tablet I want it yellow and on desktop I want it gray.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yep, you can do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Okay. Yeah, so that’s how I will change it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> You go into. So you give the default. The desktop is the default. I guess we’re not mobile. We were never mobile first really. I mean Gutenberg has from the beginning being a dev stop first experience. And that’s how it’s sort of turned out to be. So you have default desktop and then you can go into the tablet state, you can select the tablet state and then whatever you add to the visible controls in the block inspector in that state is exclusive to that state. And you can go into the mobile and choose a different color for that and save everything and then you can go and do the good old resizing. Well, in the block editor we leveraging the responsive preview, the sort of device specific preview to show you a preview of what the styles are as you’re editing them. And then once you go into the front end, you can resize your window to your heart’s content and see all the changes happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> All right, all right. So that is really cool and I’m looking forward to kind of testing it out and trying it out and have opinions.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, yeah, no, lots of opinions, I’m sure. And one of the things that I feel like we haven’t got 100% right is the previewing because you switch like you go enable mobile state for this block and it switches you to the mobile preview. But then you can select another block while still being in the mobile preview and then you’re not in the mobile state for that blocking. So I feel like this is something that we’re working on. We need to improve that experience and feedback. Again, very welcome. What are your opinions on this and how you think it would be the most intuitive to work with.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Well, awesome. Yeah. I’m thinking maybe we should actually have a demo hallway hangout about that somewhere. Let me think about that. Well, I have a time issue because I’m going on vacation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Okay. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Coming back to the beginning of July, but yeah, definitely. Maybe find somebody to do a demo video or something like that. Well, the demos are all on the PR, so definitely check those out because they’re the best way to learn how to use that and how what works or what doesn’t work. Yeah. All right. What’s else in 23.3?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> There was so much. Well, the media editor was stabilized, so now it’s no longer an experiment. You get it by default whether you want it or not. Again, I mean, we hope to get feedback on that. I think it’s a pretty good piece of work, honestly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, it is. Yeah. Yeah, absolutely. Yeah. Just wanted to. You said it in the. You talked about it. But if you are looking for the layout panel after 23.3 Gutenberg plugin install, it’s not hidden, it’s not lost. It’s in the Styles tab now.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Some content creators that are not interested in this, all that, they might have a little oops, where is it? Kind of thing. It’s in the other tab now. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> And that is. It might be weird for blocks that still have a Settings panel. So, for blocks, what happened with the group block? For instance, the group block only had layout and position in Settings, so we moved position into styles. Because it makes sense. Position is a style. And now the group block doesn’t have a Settings tab. So you open the group. I think it’s much easier because you don’t have clicking, clicking, clicking. Everything’s there, everything’s visible. Layout, position, all the other controls in the same tab for other blocks. For instance, the navigation block still has a bunch of stuff in Settings. So if you put a navigation block on the page and suddenly you’re, oh, where’s the layout controls gone? Okay, they’re in the Styles tab. They’re no longer in the Settings tab.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> I just wanted to point that out. People kind of miss that part because they’re so excited about the responsiveness. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there’s also. Oh, there was one thing that was fixed. It was a. I would say it was a bug, but it is an enhancement that the additional CSS. If there was an error in there, you wouldn’t see that when you get back into the post again, until you interact with the additional CSS field, you wouldn’t see the error message. So unless you interact with that, you wouldn’t see that it’s actually not working. That has changed. That now has a little notification that there is something in the additional CSS that’s not valid CSS for those who muck about with that. Yeah. And here it is. The PR78653 has the modal media editor, image cropper modal being the default experience for the block editor. It’s out of experiments in. Another thing for 23.3 is that Gutenberg upgraded to React 19. This is important for plugin developers and those who have a very tight handle on the dependencies for their work. React 19 is now the default and there might be dragons out there. Please, please, please, yeah. Give feedback on that. Create issues what works and what doesn’t work. Especially what doesn’t work. So those can be fixed PR 7.1 so you don’t have any surprises later on. What else? I think those were the, the big items.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, I mean I’ve, I’ve been sort of like under, under my responsive styles rock for these past few weeks just working on that. Very, very fixated on getting this thing right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So I have to say nothing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I mean it’s definitely got a huge amount of attention to. Yeah. What else is out there?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Definitely God’s work.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Hopefully it’s worth it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, absolutely. Yeah, absolutely. Yeah, I think that’s it. As I said, there are 270 PRs. So. Yeah. And it just has been released for a while ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> There’s a lot of enhancements and bug fixes and stuff in here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that’s it. I think we are good. So, dear listeners, you will see on the Weekend Edition and the Gutenberg Changelog will pause during my vacation. I’m going on vacation next week, which is June 15th and I’m coming back in beginning of July. So in time for 7.1 beta, you’ll hear us again and you will read us again. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m so happy, Isabel, you are here on the show to walk us through all the good things that come with Gutenberg to 7.1, especially the responsive parts. The responsive parts. I like that. Responsive parts. Thank you so much for taking the time out of your busy work schedule and be on the show and walk us through that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>No worries. You always enjoy this show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Well, thank you so much. And as always, dear listeners, the show notes will be published on GutenbergTimes.com podcast. This is episode 1311 31st. And if you have questions or suggestions or news you want us to include, send them to <a href=\"http://changelogutenbergtimecs.com\">changelogutenbergtimecs.com</a> that’s <a href=\"http://changelogutenburgtimes.com\">changelogutenburgtimes.com</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you all for listening. And until the next time, and I see you in July. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Bye bye.</p>\";s: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 2026 10:03: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: What Happened at WordCamp Europe 2026\";s:7:\"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://wordpress.org/news/?p=20793\";s:7:\"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/2026/06/wceu-2026-recap/\";s: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:36048:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20801\" height=\"1440\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2560%2C1440&ssl=1\" width=\"2560\" /></figure>\n\n\n\n<div class=\"wp-block-group is-horizontal is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-e8523bbf wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20863\" height=\"501\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=386%2C501&ssl=1\" width=\"386\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe, <a href=\"https://europe.wordcamp.org/2026/\">the biggest WordPress conference in Europe</a>, spent the first week of June in Kraków. The 2026 edition of this event filled the ICE Kraków Congress Centre from June 4 to 6, drawing 2,458 ticket holders from 81 countries to the south of Poland. Close to a quarter of them were attending their first WordCamp Europe.</p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">The city made it easy to settle in. Every attendee’s badge carried a transport hologram good for unlimited trams and buses. The Main Market Square, the largest in Europe, sat a short ride away, and the local food ran the gamut from pierogi to żurek soup to obwarzanek pretzels sold off the street.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Kraków is beautiful, with history everywhere.<br /><em>– Sebastian Miśniakiewicz, local team lead</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-7387b849 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">The program kept pace with the setting. Across multiple tracks, the schedule held 49 talks and eight hands-on workshops, grouped into themes that ran from core development and AI to business and the open web. Around them sat a full Contributor Day, a sponsor area, side events, on-site childcare, and an after-party the local team stretched to eight hours.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20864\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=474%2C500&ssl=1\" width=\"474\" /></figure>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day Opens the Week</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As it does every year, the event began the day before the talks. Contributors filled the venue for Contributor Day, a working session where people work together to improve WordPress itself rather than watch a presentation about it. The morning started with registration and a welcome, the room split into teams, and a group photo broke up the work around midday. The afternoon ran a second working block before each team gathered to share what it had done.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20812\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20806\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20805\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20807\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20808\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20809\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20810\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20813\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.25.24-1-scaled.jpeg?ssl=1\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20811\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The range of tables is the clearest picture of how wide the project has become. Newcomers could sit down with Polyglots to translate WordPress into their own language, with Documentation to fix the pages people reach when they get stuck, or with Support to answer questions in the forums. More technical tables covered Core, Performance, Testing, Themes, and the Plugins team, whose reviewers screen every plugin submitted to the directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First-timers were not left to find their own way. The day was built around onboarding tables, named table leads, and mentors, with an open invitation for experienced contributors to adopt a newcomer and walk them through their first patch, string, or ticket.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People who could not travel to Kraków were welcomed to join remotely through the #contributor-day channel in the <a href=\"https://make.wordpress.org/\">Make WordPress Slack</a>, so distance was not a reason to sit the day out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Birthplace of the Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It was fitting that the opening keynote came from CERN. The European Laboratory for Particle Physics, on the French-Swiss border outside Geneva, is where the World Wide Web was invented more than 30 years ago, and <a href=\"https://profiles.wordpress.org/joachimv\">Joachim Valdemar Yde</a>, who has managed CERN’s web team since 2021, came to explain why the laboratory had chosen WordPress to carry its web presence forward.</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-ef2f134e wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Yde and <a href=\"https://profiles.wordpress.org/franciscobbarros\">Francisco Borges Aurindo Barros</a>, who leads CERN’s WordPress infrastructure, framed the move as a chance to give a web presence built up over three decades a shared, modern foundation. After evaluating several leading content management systems against CERN’s needs, WordPress came out on top.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Barros walked through what they had built. The guiding idea is that people at CERN focus on their content while the web team looks after the platform underneath. A self-service portal lets anyone request a site in a few clicks. Behind it, a shared distribution supplies a common theme and a set of approved, security-hardened plugins, and an in-house tool provisions each new site on Kubernetes in about a minute. In its first year, the platform has already set up hundreds of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Moving years of existing content onto the new platform is the other half of the work, and the team automated it: a single command lifts each site’s pages, headings, and images and rebuilds them as Gutenberg blocks, with no downtime. They plan to open source the tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then Yde delivered the line that the room had been waiting for.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">As of today, our main flagship website, home.cern, is now served on WordPress. It’s been automatically migrated, and it’s live.<br /><br /><em>– Joachim Valdemar Yde, Web Manager, CERN</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The rollout is on track to wrap up over the coming months, and early impressions, Yde said, have been overwhelmingly positive, with easy wins in responsiveness and accessibility. For those at the event, the keynote pointed the room toward <a href=\"https://youtu.be/f09yvh3mnME\">a later talk by CERN’s Akanksha Chatterjee</a> on building and maintaining the laboratory’s engineering websites on the same service.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a neat symmetry to it. The institution that published the world’s first website now runs on the software that powers more than 40% of today’s web, licensed under the GPL and maintained by the people in the room.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 and AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 was a throughline of the conference. Several sessions placed the release at the center, framing it less as a routine update than as a change in what the software is, and in what it makes possible for the people who build with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The anchor for that conversation was a panel called “Inside WordPress 7.0.” It gathered contributors who worked on the release, among them <a href=\"https://profiles.wordpress.org/juanmaguitar\">Juan Manuel Garrido</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, and <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>. It was framed around more than a feature list, setting out to cover how a release of this size actually comes together: the contribution workflows, the coordination, and the human aspects of shipping software in the open.</p>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"Photo of the stage for the panel inside WordPress 7.0\" class=\"wp-image-20878\" height=\"843\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1264%2C843&ssl=1\" title=\"Panel: Inside WordPress 7.0\" width=\"1264\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">What gives this release its weight is the work moving into WordPress’s core: a native AI client, a new Abilities API that lets plugins declare what they can do in a way other tools can discover, and a Connectors screen for wiring up providers such as OpenAI, Anthropic, or Google Gemini. The argument running through the AI sessions was that this belongs to everyone who builds on WordPress, not only to developers shipping their own integrations. Speakers got specific about how to put that to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/anukasha\">Anukasha Singh</a> focused on how the Abilities API can make plugin permissions cleaner and safer than the capability checks developers have leaned on for years.</li>\n\n\n\n<li>In a workshop, <a href=\"https://profiles.wordpress.org/wpfeedback\">Vito Peleg</a> set out to take builders from one-off prompts toward a tool-using workflow that audits a live site and files structured tickets.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, a WP-CLI maintainer who has worked on structured data and the AI-native web, turned to a fast-growing opportunity. AI assistants and search now send real traffic to the open web, with more than a billion referral visits logged by the middle of 2025. His session framed WordPress as well-placed to earn that attention, with a practical checklist for getting a site ready to be found, read, and cited.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">People stayed at the center of the conversation, too. <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, in a talk called “Human in the loop means something,” framed the phrase as a real commitment rather than a checkbox. Humans and AI are each good at different things, and the products worth building let each do what it does best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Development and Craft</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The development sessions were where the craft lived. <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, who co-wrote the HTML API and designed the block parser, devoted a deep-dive workshop to that API. <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, a long-time Core committer on the Performance team, focused on how the WP_Query class has been made faster through better caching, and how site builders can take advantage of that at scale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scaling got a hands-on session of its own. One talk set out to see how far a WordPress site can run on a twelve-dollar virtual server, profiling it under load in Grafana and tuning away the bottlenecks, with a GitHub repository so attendees could follow along at home. <a href=\"https://profiles.wordpress.org/fellyph\">Fellyph Cintra</a> focused on the latest in <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, the browser-based tooling and architectural changes that the project credits with a real speed-up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, a Core contributor and former default-theme co-lead, set out to make the case that accessibility-ready requirements are far easier to meet than most theme developers assume, drawing on real reviews of both block and classic themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two members of the Plugins team, <a href=\"https://profiles.wordpress.org/davidperez\">David Perez</a> and <a href=\"https://profiles.wordpress.org/frantorres\">Fran Torres</a>, framed their session as a practical clinic. Between them, they have reviewed more than 25,000 plugins, and they set out to name the common, avoidable issues that keep good plugins stuck in the review queue. For a first-time author, that is the difference between an afternoon and a month of waiting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Business of WordPress and the Open Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The business and community sessions pulled the lens back to people, with a refreshingly unsentimental view of running a WordPress business. <a href=\"https://profiles.wordpress.org/deltacx\">Debbie Levitt</a> built her talk around a model for finding product-market fit at three levels at once, on the premise that teams celebrate one good metric and then wonder months later where their users went. <a href=\"https://profiles.wordpress.org/vasvalch\">Vassilena Valchanova</a> took on a quieter problem: being good at the work is not the same as anyone knowing you are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a local thread here as well. <a href=\"https://profiles.wordpress.org/irsilviana\">Irfani Silviana</a>, a full-stack developer at a Kraków-based agency, framed the Business Model Canvas as a translation layer that moves developers from shipping features to engineering business value, a fitting talk to give in her own city.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The web’s standards, the argument goes, remain as open as the day Tim Berners-Lee created them at CERN.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That idea carried through the rest of the community sessions. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/wdavidsnead\">David Snead</a>, an attorney who works with internet infrastructure providers, set out to explain how hosts, registrars, and registries coordinate against abuse through shared, real-time intelligence, on the logic that a threat to one WordPress host is a threat to all of them.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a> shared a practical playbook for how companies and individuals can support open source sustainably and look after the people who keep it going.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/karinchristen\">Karin Christen</a> set out to describe how her Swiss agency turned <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> from a good intention into a standing team habit through internal contributor days.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Running alongside the talks, the hands-on workshops were a chance to build something on the spot. In one, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a> set out to build a touch-enabled gallery slider with the Interactivity API, while another centered on Full Site Editing, with a working portfolio theme attendees could reuse on their next client project. These were laptop-open, leave-with-working-code sessions.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20849\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20850\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing Fireside Chat</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The closing session opened with a warm gesture from Kraków University of Technology. Representatives took the stage to thank the organizers and the community and to present <a href=\"https://profiles.wordpress.org/4thhubbard\">Mary Hubbard</a>, the Executive Director of WordPress, with a gift from their faculty of informatics and mathematics. They described what the university and the WordCamp community share: a love of learning and sharing knowledge, and an openness to new ideas, skills, and connections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard used the moment to share some news. Starting in October, the university will open a WordPress-specific course, which she called a trail-blazing event for Poland and for WordPress. Earlier that day, the program’s first cohort, around 20 students, had shown what they built, part of the <a href=\"https://wordpress.org/education/campus-connect/\">WordPress Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a> education work.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20888\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20887\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard then turned the stage into a conversation, inviting <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, the lead of the Gutenberg project, and <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, a WordPress designer and developer, to talk through where WordPress is heading and how AI fits in. WordPress 7.0 had just launched with Ventura as its release lead, and he asked everyone who had contributed to it to stand for a round of applause.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the chat explored the balance between building WordPress with AI, and building with AI on WordPress, without losing the human part. Ventura noted that WordPress’s long investment in its design system is paying off now that you can ask an AI to extend a menu or a control, and it reaches for the right components. He pointed to older primitives gaining new value, like <a href=\"https://wordpress.org/cli/\">WP-CLI</a>, which AI models use fluently, and to <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/studio-code/\">Studio Code</a>, an open source, agent-based coding tool the team has been building for WordPress. Tabor showed how he now ships many small editor improvements by talking to an agent instead of typing code, and Ventura demoed desktop mode and open-canvas experiments that reimagine the admin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On open source and AI, Hubbard argued that open source is why WordPress has thrived, that the same values should shape AI, and that the community should be far more vocal about it. As she put it, “We should be talking about it, and we should be much louder about it.”</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9c97b5da wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Audience questions pushed on multilingual support, unsticking long-stalled tickets, and reaching a younger, more diverse community. On that last point, Hubbard came back to education, pointing to a <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">US pilot of an AI literacy micro-credential</a> that uses WordPress as the playground, and made the case for it:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I think that focusing in on younger generations, and bringing them into the project in a healthy way, with the dynamic of education as well as mentorship, and how we can understand and learn from them, as well as mentor them and adopt them as contributors, is very important.<br /><br /><em>– Mary Hubbard, WordPress Executive Director</em></p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Talks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp is also about the corridor outside the talks, and Kraków gave people reason to roam. Between sessions, attendees moved through the sponsor area for product demos and conversations that often carried on over lunch.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-3 is-cropped has-black-background-color has-background wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20823\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20828\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20825\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20824\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20826\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20827\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58.jpeg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The after-party was the not-so-subtle flourish of a local team that doubled the usual length to eight hours, with Polish food and dragon-and-floral swag that nodded to the Wawel Dragon of Kraków legend. The nearby artistic Kazimierz district kept the evening going, and the trams, as one organizer had promised, were still running reliably afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps run on people, and 2026 was no different. The organizing teams, the speakers, the sponsors who funded the venue and the meals, the local crew who sorted trams and pierogi, and the contributors who arrived a day early to work on the project all built this WCEU together. The people watching the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\">livestream</a> from outside Kraków were part of it as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone whose appetite was only sharpened by three days in Poland, the calendar already has the next stop. <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a> (Phoenix, USA) runs August 16 to 19, with its own Contributor Day opening the week.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" width=\"1024\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe will return next year (May 27-29, 2027) in Málaga, Spain.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Photography by the <a href=\"https://europe.wordcamp.org/2026/community/organisers/#photography-team\">WCEU 2026 photography team</a>. See the full galleries on <a href=\"https://www.flickr.com/photos/wceu/albums/\">Flickr</a>.</em></p>\";s: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, 06 Jun 2026 17:44: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Gutenberg Times: Calls for Testing, Gutenberg 23.3, Block MCP and more — Weekend Edition 367\";s:7:\"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://gutenbergtimes.com/?p=45754\";s:7:\"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:\"https://gutenbergtimes.com/calls-for-testing-gutenberg-23-3-block-mcp-weekend-edition-367/\";s: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:23404:\"<p class=\"wp-block-paragraph\">Howdy,</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the time of the year when publishing on the Gutenberg Times becomes less frequent. I will be on vacation and back at the beginning of July with the weekend edition, just in-time for Beta 1 of WordPress 7.1. Three more Gutenberg plugin releases will happen before that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">What also happened was that someone <a href=\"https://techcrunch.com/2026/06/01/hackers-hijacked-instagram-accounts-by-tricking-meta-ai-support-chatbot-into-granting-access/\">grabbed my instagram account in this AI hack</a> at Meta. Although Meta reports this as resolved, I probably won’t get my account back. I am now actively looking for a better way to share my photos without the overlords that can’t keep things tight. <img alt=\"?♀️\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f926-200d-2640-fe0f.png\" style=\"height: 1em;\" /> It’s not that I didn’t know better. <sigh/> <img alt=\"?♀️\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f937-200d-2640-fe0f.png\" style=\"height: 1em;\" /> It’s a cautionary tale for what’s in store for all internet services handing over crucial business processes to a gulliable AI.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">I had the great pleasure of going on the <strong>OpenMakers</strong> show with <strong>Abha Thakor</strong> to <a href=\"https://openchannels.fm/new-tools-and-updates-in-wordpress-7-0-for-developers-and-content-managers/\">talk through what WordPress 7.0 “Armstrong” means for you</a>. First, the safety bit: test on a staging site or Playground before updating, and check your PHP. Then the good stuff. Visual revisions show edits in context with color coding. Notes keep feedback inside the editor. Patterns gain content-only editing, blocks can hide by device, and new AI connector APIs give developers a unified foundation. Real-time editing waits for a later release.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordCamp Europe</strong> LiveStream was up and running and Friday’s keynote can be watched online. <strong><a href=\"https://www.youtube.com/live/cLGiNR-h_34?si=7JEdopb4nHMec5Bs&t=5032\">Two worlds collide: WordPress at CERN</a></strong> with Joachim Valdemar Yde and Francisco Borges Aurindo Barros. The Livestream are all routed to the <a href=\"https://www.youtube.com/@WordPress/streams\">WordPress YouTube account</a>. <a href=\"https://europe.wordcamp.org/2026/schedule/\">The schedule</a> is posted on the website. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<p class=\"wp-block-paragraph\">Over the course of the weekend more recordings will be uploaded to <a href=\"https://wordpress.tv/event/wordcamp-europe-2026/\">WordPress TV > WordCamp Europe 2026</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">On Saturday, Matt Mullenweg, co-founder of WordPress and CEO of Automattic will close out WordCamp Europe 2026 with his keynote. Afterward, the organizers will reveal where WordCamp Europe 2027 will take place. Tune in around 2:15 UTC / 8:15 am EDT. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Arthur Chu </strong>walks you through <strong><a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">what’s new in Gutenberg 23.3</a>.</strong> The modal media editor is now the default for cropping. It pulls cropping, flip, rotation, and metadata into one place. The experimental customizable dashboard grows too, with five new widgets you can drag and resize. Responsive styles now reach individual blocks, so designs adapt per screen. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rae Morey</strong> reports that <a href=\"https://www.therepository.email/gutenberg-23-3-ships-experimental-customizable-wordpress-dashboard\">Gutenberg 23.3 brings an experimental, customizable WordPress dashboard</a>. It’s the admin’s biggest structural shakeup in years. You can drag, resize, and rearrange widgets like Welcome, Activity, and Site Health to fit how you actually work. It’s the first testable preview of a long-discussed overhaul. Enable it under Gutenberg > Experiments to try it. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jarda Snajdr</strong> reports that <a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\"><strong>the React 19 upgrade has been reverted in Gutenberg</strong></a>. Shortly after 23.3.0 shipped, many plugins built for React 18 started crashing. The APIs barely changed, but the runtimes clashed: React 19 rejects elements made by a bundled React 18 JSX helper. So 23.3.2 rolls back to React 18. The team still plans the upgrade for 7.1—this time with a feature flag and a compatibility layer.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Isabel Brison</strong> and I chatted extensively about the latest Gutenberg plugin releases 23.1 to 23.3 and discussed the responsive controls now available in the Gutenberg plugin for desktop, tablet and mobile view ports. The episode will drop in your favorite podcast app over the weekend. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/\">Gutenberg Changelog #131 – Gutenberg Plugin Releases 23.1 – 23.3, Calls for Testing for 7.1 and more</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45775\" height=\"280\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/06/Screenshot-2026-06-05-at-17.56.38.png?resize=652%2C280&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rich Tabor</strong> shares a few <strong><a href=\"https://rich.blog/little-big-things/\">“little big things” for WordPress editing</a>. </strong>The idea is simple: complexity has piled up, and small fixes can clear it. His PRs make block locking a one-click job in List View. They keep you in place when editing synced patterns, instead of whisking you off to another view. And zooming out reuses the familiar Patterns Explorer. He’s not precious about them—contributors are warmly invited to take them over the line.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dave Smith</strong> walks you through <a href=\"https://www.youtube.com/watch?v=TdsQe9oi8mg\">an interactive prototype reimagining the WordPress Site Editor around user goals rather than system architecture</a>. Built during Automattic’s Radical Speed Month, it keeps the same blocks, templates, and data model intact while changing entry points, language, and defaults. Since internal research flags the Site Editor as the top driver of negative support outcomes, you’ll see how remapping it around what you want to do could ease that friction. It’s an experiment, not a roadmap.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"calls-for-testing-for-wordpress-7-1\">Calls for Testing for WordPress 7.1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">With WordPress 7.0 out the door, contributors shared a series of Calls for testing this week to prepare for WordPress 7.1. The schedule is tight with Beta 1 slated for July 15, 2026. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ramon Dodd</strong> puts out a <strong><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">call for testing the new Media Editor Modal</a>.</strong> Cropping in the block editor hasn’t changed much in years, and the old inline tool leans on a limited third-party library. This new standard way of Image edition inside the Block editor replaces it with a WordPress-native one. You get freeform and aspect-ratio cropping, flip, rotation, and metadata editing in one place. The quickest way to try it is a ready-made Playground link. Feedback is welcome via the comments or GitHub.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> announced a <strong><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">collaborative editing outreach effort for WordPress 7.1</a>.</strong> After real-time collaboration was pulled from 7.0, this gathers real-world early adopters across many hosting setups to find bugs faster. It lives in one Slack channel, <a href=\"https://wordpress.slack.com/archives/C0B7W4UQFC2\">#collaborative-editing-outreach</a>. If you’d use collaborative editing regularly and run the latest Gutenberg, you’re invited—through the cycle, with a test team badge at the end. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rae Morey</strong> has the skinny for you in <strong><a href=\"https://www.therepository.email/contributors-launch-fse-style-outreach-program-to-get-real-time-collaboration-ready-for-wordpress-7-1\" rel=\"noopener\" target=\"_blank\">Contributors Launch FSE-Style Outreach Program to Get Real-Time Collaboration Ready for WordPress 7.1</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Adam Silverstein</strong> puts out a <a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\"><strong>call for testing client-side media processing</strong></a>, now targeting WordPress 7.1. Here’s the idea: when you upload an image, your browser resizes and encodes every size locally using VIPS in WebAssembly, before anything reaches the server. That eases CPU and memory load on hosts and brings modern formats like AVIF, WebP, HEIC, and JPEG XL to every site. Browsers that can’t cope fall back quietly to server-side. Try it in Chromium with the latest Gutenberg.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Brian Coords</strong> invites you to a <a href=\"https://developer.woocommerce.com/2026/06/03/ai-wordpress-woo-live-event/\"><strong>live panel on practical AI workflows for WordPress and WooCommerce</strong></a> on Tuesday, June 30, 2026, at 10am PDT. Hosted with Shani Banerjee and featuring Nik McLaughlin, Kyle Runner, and Suzanne Kolpakov, the conversation covers WooCommerce MCP, the WordPress Abilities API, Pressable MCP, and making your own plugins more agent-ready. You’ll come away with practical ideas for managing stores and guiding cautious clients, plus open Q&A. Can’t make it live? Register anyway for the recording.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley</strong> talks with plugin reviewer Luke Carbis about <a href=\"https://wptavern.com/podcast/218-luke-carbis-on-the-future-of-wordpress-plugins-ai-ethics-and-new-directory-standards\">the future of WordPress plugins on the Jukebox podcast</a>. Here’s the worry: plugin submissions have quadrupled in a year, largely AI-generated, so good plugins struggle to stand out. Carbis floats ideas you can test: logging into your site with your WordPress.org account, installing from your own Git repos, or a commercial marketplace funding contributors. They also weigh AI ethics, a generational backlash, and his proposed AI-disclosure header for the directory.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> published a new training video and you can learn <strong><a href=\"https://www.youtube.com/watch?v=MIbZSbBbF2k\">how to customize your site’s navigation menus with AI</a><a>.</a></strong> Once your site is connected, you describe the change and the agent makes it. You’ll learn to add a page to your header, remove an outdated link, and reorder items. It also covers building dropdown menus under an unclickable parent, adding a footer menu, and linking to blog categories. The point: clear menus help visitors find what matters.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ajit Bohra</strong> and the LUBUS team released <a href=\"https://wordpress.org/plugins/color-palette-block/\">Color Palette Block 2.0, a free plugin for building and sharing color palettes</a> in the block editor. It grew out of their own client and internal documentation needs. It’s handy for brand kits, design systems, and style guides. You add swatches manually, pull from your theme, or generate random ones. Pick from four display styles—Square, Polaroid, Circle, or Droplet—and copy each color as HEX, RGB, HSL, or a CSS variable.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong> shares a playful tutorial on registering custom icons for WordPress 7.0’s new Icon block. Since the public registration API won’t land until 7.1, you’ll learn a clever workaround using PHP Reflection to reach the protected <code>WP_Icons_Registry::register()</code> method, bundling SVGs in your theme through an Icon enum and registrar class. Built on work by Ryan Welcher and Nick Diego, it’s educational fun—not for production, where Nick’s Icon Block plugin still does the job properly.</p>\n\n\n<div class=\"ng-block-542969ab46baacee wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-d8d1794ff91ba597 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2025”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-928d236bf18a8e06 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Casey Burridge</strong> introduced <strong><a href=\"https://www.gravitykit.com/introducing-block-mcp/\">Block MCP, GravityKit’s open-source WordPress MCP server</a>. </strong>The problem it solves is familiar: existing MCPs treat a post as one HTML blob, so AI edits strip block markers and break your layout. Block MCP exposes each block as an addressable unit with a stable ID. Your agent can make surgical edits, batch up to 50 changes atomically, and undo any of them. In their tests across Claude models, only Block MCP worked reliably. </p>\n\n\n<div class=\"ng-block-46106d6386b6aed0 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-33c834146037c3b4 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-b66f8d5cf0223729 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-6bdd066a479623a4 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-65cc7458a843a2b4 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-ef754c39b15c6585 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s: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, 05 Jun 2026 23:14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Matt: WCEU\";s:7:\"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:23:\"https://ma.tt/?p=152996\";s:7:\"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:27:\"https://ma.tt/2026/06/wceu/\";s: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:1597:\"<p class=\"wp-block-paragraph\">Cześć wszystkim, Kraków… I made the call not to fly to Poland for <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. I’m very sorry for the last-minute notice; I was really hoping to make it. I’m okay, but I <a href=\"https://waitbutwhy.com/2015/12/the-tail-end.html\">want to stay close</a> to loved ones going through difficult times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Seeing the pictures from <a href=\"https://europe.wordcamp.org/2026/community/contributor-day/\">Contributor Day</a> warms my heart.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-152999\" height=\"378\" src=\"https://i0.wp.com/ma.tt/files/2026/06/wceu-2026-contrib-day-1024x640.jpg?resize=604%2C378&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Bardzo za Wami tęsknię. I miss you dearly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The <a href=\"https://wordpress.org/news/2026/06/pts/\">Protect The Shire post on W.org</a> contains what I planned to talk about, and <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> and <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> will lead the Q&A keynote at the end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’ll watch all the sessions so if any WordCamp speakers would like feedback on their talk, <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdIeEJ8L2tGDVeJVZQrD5LMGMdtJLXP9RYKOB4DhbXIOADMyQ/viewform\">just fill out this form</a>, and I’ll write something up and message it to you on the .org Slack. </p>\";s: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, 05 Jun 2026 19:07: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: Protect The Shire\";s:7:\"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://wordpress.org/news/?p=20783\";s:7:\"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:39:\"https://wordpress.org/news/2026/06/pts/\";s: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:7893:\"<p class=\"wp-block-paragraph\"><strong>tl;dr:</strong> <em>Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex or inaccessible and make it available to everyone, running in as many environments as possible. It’s the Open Source way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just last December there was a <a href=\"https://x.com/karpathy/status/2026731645169185220\">step-change in coding ability</a> that rocked many developers, and since April’s <a href=\"https://red.anthropic.com/2026/mythos-preview/\">reveal of Mythos</a>, security activity has kicked into high gear. A few days ago, <a href=\"https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html\">Chrome shipped a release with 429 security fixes</a>! The threats and opportunities of these new capabilities inspired us to kick off an initiative we call <strong>Protect The Shire</strong> (hat tip <a href=\"https://www.tolkiensociety.org/discover/biography/\">J. R. R. Tolkien</a>) with the aim of using our best minds and the infrastructure of WordPress.org to make all code in our directories and repositories as secure as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this work was and will remain behind the scenes, and we hope its success is defined mostly by what <em>doesn’t</em> happen. However, while we reckon with our newfound powers, we need to make space for review.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To Update or Not</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress core updates go through multiple people and layers of review before they go out, a process we’ve polished to a high art in the 18 years since we <a href=\"https://wordpress.org/news/2008/12/coltrane/\">introduced one-click upgrades in 2.7 “Coltrane.”</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Core is solid, and I’m so proud that <a href=\"https://wordpress.org/about/stats/\">over 50% of all WordPress sites have upgraded to 7.0 within two weeks</a>! That’s the result of an unimaginable amount of work across thousands of hosts, developers, and teams across WordPress.org. We’ve pushed hard to make upgrades happen automagically, and as fast as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re in a liminal period now, and I believe 2026 will be a year of tension between two approaches: updating as quickly as possible to stay secure, and holding back on updating to stay secure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve seen clever and dangerous supply chain attacks across the npm, PyPI, GitHub, and RubyGems ecosystems, and we even had our own mini-version with the <a href=\"https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/\">Essential Plugins debacle</a>, where good plugins were unknowingly sold to a new author who had malicious intent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How to balance security updates and <em>securing</em> updates?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mirkwood or the Wild West?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everyone knows the fun of WordPress is in its 78k+ plugins and themes. We have a rigorous, human-powered review process for <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme</a> and <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">plugin</a> submissions, but once you’re published in the directory, you’re on your own. Our update system currently distributes every plugin and theme release as soon as a developer presses the button. That’s what keeps the directory as robust as WordPress itself. There were over 3,000 commits to the plugin repository yesterday! </p>\n\n\n\n<p class=\"wp-block-paragraph\">For now, each new plugin release will wait up to 24 hours before being distributed through auto-updates. This will give everyone, including a <a href=\"https://wapuu.studio/wapuu/a-gandalf-wapuu-that-is-a-coding-wizard-302912b8/\">new Wapuu</a> we call Gandalf, a chance to review changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I expect 24 hours could be reduced to minutes as the process evolves, but we’ll err on the side of caution while AI models are advancing so rapidly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our <a href=\"https://make.wordpress.org/plugins/\">plugin review team</a> seems superhuman, but still needs to sleep. But bots don’t, and a depth of review that seemed unimaginable before is now a matter of time and tokens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The security capabilities of AI are going to make the world weird and take a lot of our focus in the next few months, but there’s a light at the end of the tunnel.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Shire Is Special</h2>\n\n\n\n<p class=\"wp-block-paragraph\">There’s no shortage of ways to find, install, and update plugins and themes for WordPress. For those who choose WordPress.org, though, we want to make sure that it feels safe and secure. That means staying strict about some things—like guidelines and Open Source licenses—while also remaining flexible enough to allow solo hackers, community projects, and for-profit commercial plugins and themes to thrive in our ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">GitHub stars may get the hype, but if you add up all the numbers <a href=\"https://wordpress.org/plugins/\">in our plugin directory</a>, it’s over 400M installs. There are 78k+ extensions, many from solo devs, installed on over a million sites each! Now we need to learn from the best parts of GitHub and make that available to every developer on WordPress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just because WordPress plugins have a reputation for vulnerabilities is no reason not to aim for the same security and stability we’ve achieved in core. We’ve done the impossible a few times already in <a href=\"https://wordpress.org/book/table-of-contents/\">our journey from a b2/cafelog fork</a> to <a href=\"https://wordpress.org/showcase/\">where we are today</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Freedom and security are not zero-sum.</strong> With Open Source, we can show how security comes from transparency, not obscurity. Collaboration over competition. What we accomplish when we come together is nothing short of incredible. Success always attracts bad actors, but we grow stronger through every adversity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scale of WordPress can make some challenges seem too big to tackle, but given time, there is no problem that’s insurmountable. I’m reminded of the story behind the title of <a href=\"https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Anne Lamott’s book <em>Bird by Bird</em></a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Thirty years ago my older brother, who was ten years old at the time, was trying to get a report written on birds that he’d had three months to write, which was due the next day. We were out at our family cabin in Bolinas, and he was at the kitchen table close to tears, surrounded by binder paper and pencils and unopened books about birds, immobilized by the hugeness of the task ahead. Then my father sat down beside him, put his arm around my brother’s shoulder, and said, “Bird by bird, buddy. Just take it bird by bird.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">More to come, stay tuned. I wish everyone <a href=\"https://europe.wordcamp.org/2026/\">in Kraków at WordCamp Europe</a> the best and hope to see you soon!</p>\";s: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, 05 Jun 2026 18:51:15 +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: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:28;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Open Channels FM: Artificial Intelligence” Just a Fancy Way to Say “Fake”?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554616\";s:7:\"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:77:\"https://openchannels.fm/artificial-intelligence-just-a-fancy-way-to-say-fake/\";s: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:128:\"The light side of whether artificial intelligence is genuinely intelligent or merely advanced technology misrepresented as such.\";s: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 2026 13:19:13 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s: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:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Open Channels FM: Open Tabs: Lists Over Grids, AI-Assisted Content &amp; A Global Tech Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555279\";s:7:\"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:\"https://openchannels.fm/open-tabs-lists-over-grids-ai-assisted-content-a-global-tech-read/\";s: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:219:\"Bob Dunn launches \"Open Tabs,\" sharing business insights while discussing his new design preferences, the importance of human touch in podcasting, efficient content repurposing with AI, and recommending restofworld.org.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jun 2026 14:30: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: #219 – Austin Ginder on How AI Is Exposing Hidden Threats in WordPress Plugin Updates\";s:7:\"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:48:\"https://wptavern.com/?post_type=podcast&p=204491\";s:7:\"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:111:\"https://wptavern.com/podcast/219-austin-ginder-on-how-ai-is-exposing-hidden-threats-in-wordpress-plugin-updates\";s: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:47921:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, how AI is exposing hidden threats is WordPress plugin updates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact forward slash jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Austin Ginder. Austin has been involved in the WordPress ecosystem since 2010, and since 2014 has run Anchor Hosting, a business that manages thousands of WordPress websites. While he’s a developer and automation enthusiast at heart, in recent months Austin has found himself at the forefront of a burgeoning crisis in WordPress, security supply chain attacks targeting plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A chance discovery during a malware cleanup on a client’s site, propelled Austin into what would become a wider investigation of plugin vulnerabilities. What he uncovered is both alarming and timely. Bad actors aren’t just hacking sites directly, but are instead infiltrating the supply chain, either by purchasing plugin companies and weaponising them, or by hijacking plugins and pushing out malicious updates. These attacks are subtle, often shifting plugin update servers away from wordpress.org to rogue channels where malware can be distributed, leaving end users in the dark, and their sites at risk.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We trace Austin’s journey from accidental security investigator to creator of the WP Beacon Project, a resource aimed at tracking, documenting, and alerting the WordPress community to known supply chain attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He shares how AI tools have radically changed what’s possible in threat detection and forensics, enabling individuals, and hopefully someday, the larger hosting providers to identify patterns and root causes behind widespread infections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into case studies of specific plugins compromised in recent months, the challenges of auditing over 60,000 plugins in the wordpress.org repo, and the complexities of stopping these attacks once malicious code is in the wild. Austin also discusses his hopes for greater collaboration with hosts and security researchers aiming for better automated monitoring and response.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you manage WordPress websites, create plugins, or just care about the future of open source security, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Austin Ginder.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Austin Ginder. Hello, Austin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:40] <strong>Austin Ginder:</strong> Hey, good to meet you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:41] <strong>Nathan Wrigley:</strong> Very nice to meet you too. I was put in Austin’s way by I think Courtney Robertson.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you Courtney for that because, on a different podcast, which I do, we were talking about an item, which is very much in the news at the moment. It’s all to do with plugins and security. And whenever I say security, any of the people that I have on the podcast, I feel it’s pretty important that person gets a chance to stamp their credentials into the podcast about themselves. Because it’s one of those areas where a little bit of knowledge can go a long way. Tell us about your background, WordPress hosting, security, those kind of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:16] <strong>Austin Ginder:</strong> Sure. So I’m a developer, first off. I’ve been running a WordPress hosting service since 2014, and I’ve been working in the WordPress space since 2010. A long timer. I love automation. WPCLI commands, bash scripts. I’m in the weeds on a technical basis.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in terms of security, I wouldn’t call myself a security expert, which is ironic for this conversation because of some of the things I’ve been finding over the last month or so. And it’s all thanks to AI. AI has been my friend. It’s just right place, right time, getting lucky and also just a mix of everything is changing right now in the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:56] <strong>Nathan Wrigley:</strong> Yeah. Thank you for that. So as you’re about to hear, we’re not gonna be talking at from the perspective of Austin demonstrates how to fix a particular challenge in WordPress. It’s much more of a general thing, and an alert really. It’s a bit of a call to action about a problem which has been systemic in the WordPress ecosystem, well, forever really, since I guess, plugins came along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this is all about really change of ownership of plugins, and I could do a job of trying to describe the scenario here, but do you want to just run through what you’ve discovered in the last few weeks, and the three or four incidents that you’ve uncovered and what they mean and how they’ve come about?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:37] <strong>Austin Ginder:</strong> Yeah. So in particular, we’re talking about supply chain attacks, and a supply chain attack is a different kind of attack. It’s not a direct, my site got infected with malware or something like that. It runs a little bit more deeper. It’s a scenario where either it can happen a couple different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A hacker might get control over the plugin repo itself, maybe a credential breach, where they sign in and they are acting as the author, and they push out bad code. As a user, you just update your plugin and you don’t realise you’re updating to something that’s harmful for your website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s one scenario. The other scenario which is crazy to me, but like hackers literally buying companies and then weaponizing the plugins themselves and distributing them through the official channels. So that’s the big story that I was covering this last month. That is just what possesses someone to spend six figures to buy a suite of plugins and then weaponize them and try to get away with it? No, that can’t happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:42] <strong>Nathan Wrigley:</strong> Except, it does. So let me just reiterate what’s going on there. So if you’ve been to the wordpress.org repository, or indeed you’ve downloaded plugins from third party vendors, maybe a pro version of a plugin or what have you. Usually there is some aspect of the WordPress admin UI, which enables that plugin to be updated by clicking a link or perhaps automated, the update will happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Increasingly, I think people are being, have been encouraged to click enable automatic updates. So it just ticks over in the background. Perhaps while you’re asleep, it gets updated to the latest version. This in a universe occupied only by honest people would be absolutely fine. We’d have no problem that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, the scenario that you are describing is that kind of invisibly it’s entirely possible for somebody to sell their plugin or indeed maybe even have their plugin repo hijacked in some way. But let’s go with the sell their plugin scenario, because that’s the easiest one to get a hold of. Sell it to somebody.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Obviously, I would imagine in most cases, assuming that person is a good actor, is just going to carry on doing the nice things that the plugin does, updating the code, and doing security updates and what have you. However, there is zero guardrail to stop them putting whatever they want into the plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so overnight, a plugin which has been working for a decade or more, doing its job, now suddenly is masquerading. And it may be that the functionality of the plugin is also still there. It’s not like suddenly the plugin just stops working, or it’s really obvious what’s going on. It may be that just a few lines of code have been adapted, modified, there’s some backdoor smuggled in to the plugin. An end user would never know that this was going on. Have I summed that up? Is that about where we’re at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:35] <strong>Austin Ginder:</strong> Yeah, these are bad actors trying to hide themselves. They’re sneaky. They don’t do things that are obvious. Like they’re not just uploading malware to WordPress plugin repo. What they’ll do instead is they might slip a third party updater, which is against the guidelines, clearly. But they can do it a little bit more sneaky.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if they can get a third party uploader put into their plugin, then they can actually hijack the plugin. Meaning you download a plugin from wordpress.org, and you run auto updates, and it updates not from the wordpress.org version to the newest wordpress.org version. It offloads to their own compromised update channel.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then once it’s on the update channel, wordpress.org has zero visibility, and you’re just running a hijacked plugin and you don’t even know it. Unless you go in and you run a verify command, from the command line or, you’re scanning for things like this. And then after they get the plugin hijacked, that’s when they compromise your site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They could do SEO spam attacks, or display ads, or poison the search results from Google’s perspective. Many different things that they do to try to recoup their money in the investment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:50] <strong>Nathan Wrigley:</strong> So let me just run that by you again. So just to make sure I’ve understood. So in this scenario, the plugin, it is like a one time thing in a way, but we’ll explore that as well in a moment. The plugin is acquired by somebody else and potentially some of the behaviour that you’ve seen is that the only part of the plugin that they modify is the location of the update server.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, typically that would’ve been over at wordpress.org, and every time you click the update button, you are receiving the repo version of it. However, this updated version will then offload to a third party server somewhere. And at that moment, wordpress.org loses all visibility of what’s going on. As far as they’re aware nothing has happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You are now just getting updates from elsewhere. You would never see anything. But obviously whatever payload they wish to put into that plugin is completely invisible to wordpress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, I suppose the wordpress.org version, there’d be a telltale sign that this was happening because there would be new and modified code to indicate, oh, look, there’s a third party server in play here. But WordPress org has no visibility into what the malicious code being updated onto your website is. Again, is that about where we’re at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:07] <strong>Austin Ginder:</strong> Yeah. Everything on wordpress.org is open source. Even the platform itself is open source, so you can see the full code, how everything operates there. And in addition to that, all of the plugin activity happens on SVN, which is like the raw pipeline.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So all of the data is there and available to anyone to go in and audit the data, but it’s, it’s an after the fact situation. Like after a situation happens, you can go back to the raw data and run a full audit to try to piece together all these missing pieces. And all these missing pieces would’ve been impossible to correlate together if it wouldn’t be for AI. Like now we have a superpower where we could just run AI through it all. If we feed it the right points, we can start to make the correlation after the fact as to what happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:59] <strong>Nathan Wrigley:</strong> Okay, so essentially what you are saying, I think, is that the work of checking this, prior to AI, let’s go with that, it was just too humanly intensive. There were 60 plus thousand plugins on the wordpress.org repo, going back and having a human inspect every single update, every single file, every line of code is, as you can imagine, a completely unrealistic process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, now AI really its superpower is its capacity to take a giant corpus of data, and then do things with that data. It’s almost like it can capture the entirety of the internet in one hit. And so that’s what’s enabled you to weed out this sort of stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have to ask from a personal point of view, why are you doing this? And I don’t mean that the way it sounds, because obviously it’s philanthropic. I’m extremely grateful that you are doing this. But how did you end up taking this on as a, I don’t know, a hobby, a pet project, a sideline?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:59] <strong>Austin Ginder:</strong> This is completely accidental, right? The backstory is in February, I saw a huge shift at my own customers websites, where sites that have been secure for years and years, all of a sudden was getting malware. The short version of it is while I was doing some malware cleanup for a customer, I uncovered one of these big back doors, and it was just like going through the process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So malware cleanup before AI was always a little bit of a dicey thing. You can check all the boxes, make sure everything looks good, but you never had the certainty that it was all a hundred percent clean. Did I miss something? But with AI it’s very easy to do a thorough, in depth, investigation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How did this happen? Where did it come from? Is my site actually clean now? It just crawls over all the files with Claude Code and other tools, and it gives you a nice report. When I had some recent, my own customers that got malware, and I ran through the forensics level style that AI can give, it uncovered some things that made me question, maybe I should look upstream, maybe I should look at wordpress.org. And I started to feed that into the AI and sure enough, there was something there and it was story worthy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:13] <strong>Nathan Wrigley:</strong> So presumably that was then bound to a particular plugin. So your customer, something went wrong, you pointed the AI at it, it gave you a report, pointed you to the wordpress.org repo. And that in theory could have been the end of that. You clean up your client website and move on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it sounds like this became much more than that, because over the intervening days and weeks, you found that this was alarmingly, not just a one-off. This was a pattern. And I think the last time I was reading about this, I think you’d found four. I don’t know if four plugins is now up into some other figure or not, but certainly at the time I was reading you’d found four plugins with exactly the same strategy. I don’t know if they were from the same vendor or what have you. Just tell us where you’re at in the middle of May 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:07] <strong>Austin Ginder:</strong> Yeah, so I’ve now published four more or less in depth research. Now, I wasn’t the sole finder of all these, but I was the one who actually pointed the AI at it, and got to the root of it. And it uncovered some other things that previous folks hadn’t found. So the crazy thing is all four situations are completely different, and that’s the wild thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the one was, the source was the WordPress Plugin Team. So they saw there was some bad activity happening, with a set of the Essential Plugins package. So that’s like a 30 plus plugins. So they closed down all the plugins. They issued an alert, Hey, your site might be compromised. And they actually put code in the patch of the plugins that would check the wp-config file, was it tampered with by the plugin authors themselves?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So one of my customers saw the notice flagged me. I scanned it, saw it was compromised, and then that’s when I uncovered how big of a deal it was, the Essential Plugins. It was actually a purchase of a company. That was just one of them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The other three situations, again it’s all kind of part, it stems back to me overhauling my security system for my clients. The other one was flagged by a new security feature I was implementing where I check all of my customers JavaScript embeds.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m basically scanning changes over time, hoping to catch like a credit card skimmer, or something else like that for my own customers. Well one of them came back. Something’s weird. It was a widget logic plugin that was embedding some weird sports JavaScript code for one of my sites. And I kept digging and digging into it, and sure enough, it was another supply chain attack on that particular plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, in all these instances, the WordPress Plugin Team has been fantastic. Very responsive and closing down the plugin, and applying patches, and getting the out there. Yeah, it’s weird. I had no plans to building something like this. I just stumbled upon it and every situation was a different story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The last one I’ll share is, I was messing around with this idea that, I wonder if I could use AI to hunt through my own customer’s plugins to detect plugins that are running different versions of the code base. You might have Jetpack installed with the latest version, but maybe there’s a variant version Jetpack’s running. That’s the core idea, or the core concept.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I built this tool with AI to scan my own customers, and it found a variant version of the Quick Redirection Plugin installed. I’m like, what’s going on here? So I dig into it and I had 12 sites running a version of the plugin that wasn’t on wordpress.org. So then I threw it through AI. It told me the difference. And sure enough, like you had to keep digging to get actually get to the answer what happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But that was a situation where many, the plugin author themselves offloaded most of their customers to a hijacked version. And my own customers years later were running a hijacked version. So I wasn’t directly searching for this stuff, it just came up, and then I’m like, after you get three of them, it’s alright, now I just wanna see if I can find one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I built the scanner and while I was scanning the top 2000 WordPress sites, I found one, and it was active. It was active, meaning the plugin, it’s called Scroll To Top. It was wired in to 20,000 sites, but it wasn’t active. So a lot of these bad actors, they will take their time, get a plugin that’s compromised in a lot of people’s sites, and then when the moment’s right, pull a trigger. And then at that point they can start to flow in bad content or SEO and actually do the compromise.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The one that I actually found was a compromise scenario, from what I can tell, the bad actor hadn’t actually pulled the trigger yet. So it was a success story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:13] <strong>Nathan Wrigley:</strong> Yeah, that is really, kind of makes it more alarming in a sense, doesn’t it? Because once I suppose there’s an active exploit, and people are beginning to report what’s going on here? There’s some strange behaviour on a website, I presume at that point eyeballs will fall on what’s going on and work will be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, as you’ve just described maybe months, weeks, possibly years, a plugin can have incredible functionality. It might gain widespread adoption, because it’s doing this one thing particularly well. Just with this dormant code sitting there waiting for the moment that’s opportune. Maybe there’s some scenario in the real world in which it will become a timely thing to be able to deploy that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s really alarming, isn’t it? Because who knows how many websites are currently sitting there with as yet undiscovered, back doors, or problems that we simply don’t know about because they haven’t been triggered? Yeah, that one is really alarming.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Austin, I’m going to give you a little opportunity because you keep saying my clients, and I don’t think we painted the context of that. Just tell us a little bit about what you do and how that aligns you to have, have an eyeball on so many websites. I think currently, when you say my clients, I think it’s true to say that you’ve got something in the order of 3000 websites that you manage. Now, if you were building those as client websites, that’s a lot of clients. Just tell us what it is that you do, and that might widen the debate a little bit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:39] <strong>Austin Ginder:</strong> No, I don’t do consulting work anymore. So back in 2014, I transitioned into web hosting full-time. I run Anchor Hosting, and my business is, it’s a pretty simple business model. I resell other managed WordPress hosting services, and provide all of the support and maintenance on top of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I primarily use web hosts like Kinsta and Rocket.net. They are larger companies. They have a lot more eyeballs on it. I like to layer as many layers between me and the web host infrastructure as I can, so that I can actually solve what I want to solve. And that’s the WordPress maintenance part.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I have a little bit more visibility than some. So that is more unique position than most. And I actually would say if there’s any takeaway from this conversation, the takeaway is any hosting company out there that has more data than me, they are sitting on a gold mine and they don’t know it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because any site that gets malware, that is the gold. If you can point AI at every malware situation or attack, you can sometimes back channel it to figure out where it actually happened, and start to paint a bigger picture. I would love to get my hands on like a web host that has millions of sites and run some scans, because that’s how you’re going to discover it, weed it out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:59] <strong>Nathan Wrigley:</strong> And there’s maybe patterns going on. I don’t suppose every hacker of WordPress plugins is some kind of evil genius. They might just be, I think what’s often called script kiddies. The idea being that they are taking templates and copying and pasting these ideas far and wide.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And therefore I suppose patterns would emerge and maybe as you said, some of these larger hosts would be able to spot that pattern, and get out in front of these different problems which have, as yet, been undetected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so you’ve then taken an additional step. You’ve got yourself a URL, wpbeacon.io. Dear listener, as is always the case, anything that we mention today, so the links to the articles which Austin has written, I will put those in the show notes, but also I’ll link to wpbeacon.io. Just tell us a little bit about that and that, how that’s helping the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:52] <strong>Austin Ginder:</strong> So WP Beacon was again, an idea I threw together last month. Not a whole lot of planning. But it was just like, okay, I’ve got three of these now. These are basically in depth investigations. Where do you put it? Because this is different than a typical vulnerability database. Like a vulnerability database is really good about endeavour to find bad code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is not bad code, this is bad actors. They’re two completely different problems. So I built WP Beacon as like my place to put all these findings. And the idea is actually have it be a legitimate feed for other folks, like another metric or another vulnerability database, but for supply chain attacks in particular.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:39] <strong>Nathan Wrigley:</strong> And so I suppose the idea being that people who are, I mean obviously if you’ve got one WordPress website, it’s fairly unlikely that you’ll come across WP Beacon, because you’re not in the business of being in the community or what have you. But if you are somebody that’s, I don’t know, managing multiple clients, half a dozen or what have you’re in the WordPress space, this is the kind of thing you might want to know about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I suppose you are then hoping to be some sort of gatekeeper of knowledge around whether a supply chain attack has occurred. So let’s say for example, I’m considering putting a new plugin in. I find something on the wordpress.org repo, and it looks fine. Everything about it is screaming, yes, install me. I would go over to WP Beacon. I see that you’ve got a search on the homepage. There’s a list of the number of installations that have been covered, authors, tracked plugins that are being watched and what have you. I would be able to, in some way, interact with that website and gain an understanding of, yep, we’ve got nothing on them. Everything looks fine, or no, hold on, have a second thought. This thing happened last month. Is that again? Is that kind of what’s going on there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:45] <strong>Austin Ginder:</strong> I think end users might find value in it, but I think the better target audience is, this is missing security research that security people don’t have. I see it as that. It’s like when I do a report and I put it up on WP Beacon, those identifiers of these bad actors can then be, action can be taken on that by real legitimate security people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I have a friend, his name’s Sal. He used to work at Kinsta. So when I was dealing with one of these cleanups, I was messaging him privately. I’m like, hey, Sal, look what I found. And he is oh, gimme a second. I’m going take their compromise server offline. I’m like, what do you mean? So he whips it out and he gets their domain suspended, website taken offline. And this is like the crucial gap, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The research person wants to make people’s site safe. So if you’re out there and you’ve got a hijacked plugin installed and you don’t know about it, you need a research person, and a security person, to take care of the issue for you. And that is like taking down their infrastructure, taking down the bad actors infrastructure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:51] <strong>Nathan Wrigley:</strong> Oh, that is interesting, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Austin Ginder:</strong> My goal of WP Beacon is just like, this stuff needs to be more visible. We need to be drafting and documenting this is how the supply chain attack happened in this case. And here is all of the identifiers for the security firms to go for, and take down their infrastructure. To give some sort of incentive that like this kind of behaviour isn’t going to be tolerated or a signal to the bad actors like, we’re coming for you. We’re going to find you, we’re going to weed you out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:21] <strong>Nathan Wrigley:</strong> Yeah, so that’s interesting. So connections with hosting companies would certainly be beneficial, wouldn’t it? Because let’s say a bunch of hosting companies are pointing their staff at the WP Beacon data, then you could probably satisfy, I don’t know, 60, 70, 80% of WordPress instal by communicating with the bigger hosts. Because I imagine that’s where the majority of WordPress websites occur. I presume another angle would be the .org repo itself. The team over there, the Plugin Review Team and the Security Team and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One ray of light, I suppose is that if you fix this, then you have fixed it. Whereas a lot of security problems keep coming back. Well, no, that’s not entirely true, is it? Having said all of that, I was fairly confidently thinking if you can, if you can get the plugin turned off so that it can’t be installed anymore, that’s one thing. If you can switch off the supply chain server, that’s another thing. But there’s going to be loads of different scenarios. It might be that they don’t have a supply chain server. It might be that they’re just defacing your website. And how do we disable that that particular functionality and the plugin?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I believe that wordpress.org has in rare situations deployed the, we will overwrite your plugin. I don’t know how to describe that, but I have a memory that in the past, something so catastrophic had happened inside of a wordpress.org repo, that there is the capacity for WordPress to say, okay, we’re taking command here, and we’re going to rewrite your plugins. I don’t think that’s very common, but I think that is something that can be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:59] <strong>Austin Ginder:</strong> In these situations, that’s exactly what they did. They reverted a patch, closed down the repos, and their patch is what stands.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:08] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:09] <strong>Austin Ginder:</strong> So I think a lot of what my, what I’m trying to do is complimentary to what everyone else is doing. And I think it’s a little bit more, it’s an unexplored area, what WP Beacon is exploring. We have all this data, let’s see what we can get out of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I do share your optimism, and also I would love this to just be a solved problem, and six months later we shut down WP Beacon, like it’s not even needed. But that’s just not how the world works, right? What I do hope will come from this is the bad actors that have been operating for years, 10 plus years, we make it harder for them to operate. I think that would be a more realistic success story of this project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the bigger findings I found this past week, in the last few days, is this bad operator he’s been operating for the last 13 years. And what happens is his accounts get shut down, his plugins get shut down, and he just tries again. He opens up new accounts, new plugins, and he just keeps trying. We’ve got to make it a little bit harder for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:09] <strong>Nathan Wrigley:</strong> And also what’s really interesting there is that this is not, for you at least anyway, this doesn’t feel like a finished story. This kind of feels like, for you, now that you’ve put yourself in this seat, if you like, it feels each week possibly something new will be coming along, something that you’ve explored? Is that the case? I would like for you to say no at this point, no, there’s nothing new happening, but I the feeling that there’s quite a lot that you are uncovering on a daily, weekly, monthly basis.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:37] <strong>Austin Ginder:</strong> I do think it’s going to be harder and harder to find interesting things based on the raw data, using my technique of just going through and auditing things? That’s a good thing, right? If it’s harder to uncover these problems, that’s a positive indication that something’s happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think I’ve been extremely lucky by reverse engineering a problem. Like, how does the malware get here? Oh, okay. So then figuring out that there’s a bigger issue at hand. And I also think it’s one of those scenarios that we all think people are searching through the data, but they aren’t. I’ve got a $200 month Claude Code subscription, and I can search through the data with that. It’s actually feasible for individuals to start auditing the data and to get more eyeballs on this in a way that would never been possible before.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, I would encourage people to think bigger. If you’re an individual, you can take your site, download a backup and run it through Claude Code and do a file by file audit. It might take a few, Claude doesn’t like to do this, but it might take a few wranglings. No, look every line of code and tell me what you see. Do you see vulnerabilities? Do you see malware? Do you see any harmful things there? And an individual can do this, and they can get a very high level detailed report unique for their site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:55] <strong>Nathan Wrigley:</strong> That’s interesting advice. Maybe in the future, some of the pain that you’ve been through with Claude trying to get it to behave in the way that you expect, maybe that be interesting data to put out? What are the prompts which you’ve seen that work and so on?</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing which dawns on me, and I don’t really have the answer to this, because the wordpress.org repo, for good reason, has been wide open. What I mean by that is, lots of people can submit code. You don’t necessarily have to have a certain type of credential, or be a certain type of business and so on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, if you look out there in the broader tech landscape, things like, I don’t know, the Mac App Store or the iOS App Store or Google’s Play Store. I wonder what their approach is to firstly the onboarding of new plugin developers. But then what the inspection is for updates. When code comes through and it’s purporting to make a minor change to a particular app on your phone, what is being done there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I’m guessing that in the WordPress space, the fact that it’s run often by volunteers means that those kind of things are just going to be different. And perhaps those things need to be looked at. There needs to be potentially some more friction that’s added, or some more steps. And I know that a lot of work has been done by the Plugin Review Team to automate as much of that as possible, and to put some steps in place to make it so that those submissions get inspected in a more timely way. But I don’t have an answer. I’m certainly no expert. But it would be curious to see if there’s any lessons to be learned from the broader tech community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:30] <strong>Austin Ginder:</strong> Obviously the openness of WordPress is its power. App Store versus Android, right, kind of comparison? We’re more open source. You could just do what you want. There’s pros and cons, right? So how do we make what we have more safe? And I think the answer to that is everything needs a hundred percent code audited.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How do we get there as quick as possible? That’s a token question. Like, how many tokens can we spend to audit everything? I have fairly good coverage now for my own customer base. What I do is whatever leftover usage I have, I’m auditing all of my plugins. And I do it in a way that’s efficient, meaning I only audit this one plugin version once. That gets assigned to a hash, a unique hash. Then I know, oh, okay, so all of my sites using that same variant are covered.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a hundred percent code coverage is what we need to do now. And then long term, also in concurrently, we need to start auditing any changes that come over the wire. It’s a lot, right? Like wordpress.org is very popular. There’s a lot of code, but I do think it’s in a realm of realistic. If you are able to shave out a lot of the noise, we don’t have to audit everything. We don’t have to see every CSS file you’re changing, or image you’re changing. But we do have to look over every PHP line, every JavaScript line, that there’s nothing harmful in there. And then eventually we’ll start to catch things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I don’t think it’s necessarily a one off thing. We don’t have to wait around for Automattic to come up with a solution. The data is out there. Anyone with a laptop and a subscription could just create a mirror and see, what changed over the last, day, and then start auditing that. I think people think it’s too impossible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:18] <strong>Nathan Wrigley:</strong> It feels like a large cliff that you’re staring at, at the beginning of this. And certainly in the past before AI, that cliff was, I imagine, more or less impenetrable But now the way that you’ve described, perhaps AI can be co-opted to do a lot of this work for us?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder what you’ve got, if you’ve got any thoughts on the sort of permissions system. So I know that other, let’s say CMSs and certainly devices like Android devices and iOS devices, they come with permissions based systems. So for example, this code, it’s allowed access to the root file structure. Or it’s allowed access to the camera, or whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I know that there’s been debate in the WordPress ecosystem recently about whether something like that would be a good idea. At the moment, plugins, all bets are off. If you put a plugin in, it’s more or less got access to anything on your WordPress website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s an absolute strength of WordPress because it enables anybody to do anything. But I suppose given that it can enable any anybody to do anything, it also prevents a very large threat surface as well. I don’t really have the answer to that. I just think that’s a curious thing to raise and see if you’ve got any thoughts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:29] <strong>Austin Ginder:</strong> I guess my initial thought is I don’t necessarily want my WordPress site to feel like my laptop, where I’m constantly clicking things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:35] <strong>Nathan Wrigley:</strong> Yeah. Grant permission for this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:38] <strong>Austin Ginder:</strong> I don’t know what the solution is either. I think some of those ideas are great when you’re thinking about making something from scratch, but they are not as relevant when you’ve already have an existing ecosystem. Like you can’t, I would think it’d be very hard to bring some of those concepts into WordPress at this point. We’re already past that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:59] <strong>Nathan Wrigley:</strong> That ship has definitely sailed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:00] <strong>Austin Ginder:</strong> I want to be in the Wild West. I want to be able to code and do what I want to do. And especially with AI. If I got an idea, I just want AI to go to town, write me up the plugin to my spec, and not have to deal with some of those extra safeguards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’d be great if we could find some way to make things more secure from an architectural standpoint, but that’s an architecture problem probably best suited for a new project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:22] <strong>Nathan Wrigley:</strong> The truth is that this will never, ever be solved. I mean security problems online. There will be a no point in the future at which everything is always safe, because humans are ingenious, and there are really credible, credible is the wrong word. There are ways to make money, or to make it worthwhile for the bad actors to be doing the bad things. And so long as those incentives exist, there will be people trying to hijack websites, undermine the security of your computer or phone or whatever it may be. But this is certainly an interesting one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it’s such a shame because with the benefit of hindsight, this was so obvious, and yet it hasn’t been a news story. Maybe it has in the past, I’ve certainly not come across it. But this whole supply chain thing is fairly new to me, and fairly alarming in the simplicity of deployment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You literally purchase, or somehow get hold of, a popular plugin, not necessarily even a popular plugin, a plugin. And then instantaneously every one of those websites is up for grabs in whichever way you would like to grab it. Definitely something that the WordPress community’s going to have to wrangle with.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay. I think we’ve hit the sweet spot in terms of time Austin. If it’s all right with you, we will wrap it up there. However, before we go, do you just want to drop a few little bits about where people could contact you? I am more or less certain that somebody listening to this podcast will have thoughts for you about getting in touch, helping out, or what have you. So tell us where you can be found.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:55] <strong>Austin Ginder:</strong> You can find me just by searching for my name, Austin Ginder. There’s not many Ginders. I’m on X, that’s my main feed. And you can also read along on anchor.host. I do blog posts there pretty regularly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:09] <strong>Nathan Wrigley:</strong> Okay. In which case I will just point everybody to the wptavern.com website. If you go and use the search feature, search for Austin Ginder. Austin, spelled in the usual way. Ginder, G-I-N-D-E-R. You’ll find the episode and anything that has been mentioned, any links or what have you, we will link to there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So thank you for chatting to me today about what I wish didn’t exist, but it does exist. Austin, thank you so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:34] <strong>Austin Ginder:</strong> Thank you. This was a pleasure.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://x.com/austinginder\">Austin Ginder</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Austin has been involved in the WordPress ecosystem since 2010, and since 2014 has run Anchor Hosting, a business that manages thousands of WordPress websites. While he’s a developer and automation enthusiast at heart, in recent months Austin has found himself at the forefront of a burgeoning crisis in WordPress security, supply chain attacks targeting plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A chance discovery during a malware cleanup on a client’s site propelled Austin into what would become a wider investigation of plugin vulnerabilities. What he uncovered is both alarming and timely, bad actors aren’t just hacking sites directly, but are instead infiltrating the supply chain, either by purchasing plugin companies and weaponising them, or by hijacking plugins and pushing out malicious updates. These attacks are subtle, often shifting plugin update servers away from WordPress.org to rogue channels where malware can be quietly distributed, leaving end users in the dark and their sites at risk.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We trace Austin’s journey from accidental security investigator to creator of the WP Beacon project, a resource aimed at tracking, documenting, and alerting the WordPress community to known supply chain attacks. He shares how AI tools have radically changed what’s possible in threat detection and forensics, enabling individuals, and hopefully, someday, the larger hosting providers, to identify patterns and root causes behind widespread infections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into case studies of specific plugins compromised in recent months, the challenges of auditing over 60,000 plugins on the WordPress.org repo, and the complexities of stopping these attacks once malicious code is in the wild. Austin also discusses his hopes for greater collaboration with hosts and security researchers, aiming for better automated monitoring and response.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you manage WordPress websites, create plugins, or just care about the future of open source security, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/plugins/\"> wordpress.org plugin repository</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://claude.com/product/claude-code\">Claude Code</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/plugins/handbook/the-team/\">WordPress Plugin Review Team Handbook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://anchor.host\">Anchor Hosting</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbeacon.io\">WP Beacon website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/austinginder\">Austin on X</a></p>\";s: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, 03 Jun 2026 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"Open Channels FM: BackTalk on Decentralized Interoperability, Data Sovereignty, and the Power of Local 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555258\";s:7:\"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:117:\"https://openchannels.fm/backtalk-on-decentralized-interoperability-data-sovereignty-and-the-power-of-local-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"The challenges of decentralized networks, data sovereignty complexities in hosting, and the importance of local connections within the tech community to foster collaboration and growth.\";s: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, 03 Jun 2026 10:13: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Open Channels FM: How to Make Your Case Studies Stand Out: The Power of Storytelling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554372\";s:7:\"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:\"https://openchannels.fm/how-to-make-your-case-studies-stand-out-the-power-of-storytelling/\";s: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:204:\"Effective case studies focus on storytelling, positioning the customer as the hero. They highlight challenges, solutions, and outcomes, blending engaging narratives with measurable results to build 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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jun 2026 12:42: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Bee Champion\";s:7:\"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:23:\"https://ma.tt/?p=152932\";s:7:\"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:35:\"https://ma.tt/2026/06/bee-champion/\";s: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:1141:\"<p class=\"wp-block-paragraph\"><a href=\"https://spellingbee.com/\">Spelling bees</a> have gotten a lot more intense. How many of these do you know?</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">torrone, enthymeme, iguape, Denebola, fais-dodo, cywyddau, pohutukawa, monadnock, émeute, nannofossil, tongkang, Natchitoches, flaith, semele, rusell, sawder, campernelle, Nicol, Zamenis, Tharparkar, tlachtli, madoqua, retiarius, balintawak, tessaraconter, taurokathapsia, rapakivi, uayeb, paroemia, melengket, teraglin, homelyn, chikungunya, bromocriptine (cashaw)</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/watch?v=yFkrOpDja1o\">Check out the first 90 seconds of this video where Shrey Parikh gets 32 out of 34 correct to become the 2026 champion</a>. That speed round is called a “spell-off,” and so many of the kids are getting all the words right that they use it to break ties. Lots of words to press. <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f920.png\" style=\"height: 1em;\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jun 2026 18:44: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Akismet: Introducing the official Akismet Drupal module\";s:7:\"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:28:\"http://akismet.com/?p=284770\";s:7:\"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:\"https://akismet.com/blog/introducing-the-official-akismet-drupal-module/\";s: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:3010:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284775\" height=\"649\" src=\"https://akismet.com/wp-content/uploads/2026/05/screenshot-2026-05-29-at-9.48.36-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.drupal.org/project/akismet_antispam\">The official module is here!</a></p>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><p>For two decades, Akismet has done one thing exceptionally well: keep spam out of WordPress. Now we’re bringing that protection to Drupal. The official module is here, built by the team behind Akismet as a native Drupal module. It guards your site with the same spam-fighting service that keeps comments, contact forms, and signups clean across millions of sites.</p>\n<h2 id=\"protection-where-spammers-actually-go\">Protection where spammers actually go</h2>\n<p>Spam doesn’t stop at comments, so neither does the module. Once it’s set up, Akismet checks the forms spammers target most:</p>\n<ul>\n<li>Comments</li>\n<li>Contact forms</li>\n<li>Webform submissions</li>\n<li>User registrations</li>\n</ul>\n<p>It runs every submission through Akismet in the background and quietly filters the spam out, so you see less of it and your visitors never notice it’s there.</p>\n<h2 id=\"built-for-drupal-the-drupal-way\">Built for Drupal, the Drupal way</h2>\n<p>We wanted this to feel like a first-class part of your site, not a bolt-on. The module follows modern Drupal conventions, and plays nicely with other anti-spam tools like Honeypot and CAPTCHA if you already use them. It also adds invisible bot-detection signals that catch automated junk before it ever reaches the API.</p>\n<h2 id=\"tools-for-moderators\">Tools for moderators</h2>\n<p>For the spam worth a second look, there’s a dedicated review queue and one-click actions on every comment. Each correction goes back to Akismet, so the filter keeps getting smarter about your site. An admin dashboard shows your stats at a glance, and built-in GDPR export and erasure tools make honoring data requests straightforward.</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284779\" height=\"508\" src=\"https://akismet.com/wp-content/uploads/2026/05/screenshot-2026-05-29-at-9.39.09-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><h2 id=\"getting-started\">Getting started</h2>\n<p>You’ll need an Akismet API key. Grab one at <a href=\"https://akismet.com\">akismet.com</a>, then install the module with Composer:</p>\n<pre><code>composer require drupal/akismet_antispam\n</code></pre>\n<p>Enable it, add your key on the settings page, pick which forms to protect, and you’re done. The module needs Drupal 10.3+ and PHP 8.1+, and it’s released under the GPL. You’ll find the docs and issue queue on the <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal.org project page</a>.</p>\n<p>We’re excited to bring Akismet to the Drupal community. Give it a try and tell us what you think.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jun 2026 13: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Derek Springer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matt: Maybe\";s:7:\"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:23:\"https://ma.tt/?p=152910\";s:7:\"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:28:\"https://ma.tt/2026/05/maybe/\";s: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:1540:\"<p class=\"wp-block-paragraph\">I think I heard this parable somewhere in the <a href=\"https://www.audible.com/pd/Out-of-Your-Mind-Audiobook/B0161LXWGK\">14 hours of Alan Watts lectures</a> someone <a href=\"https://ma.tt/2017/12/books-in-2017/\">recommended to me in 2017</a>, but here’s a beautiful 2-minute version I’d love to share for everyone going through something.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n\n\n\n<p class=\"wp-block-paragraph\">I really appreciate the love and support I received after the <a href=\"https://wordpress.org/news/2026/05/wp23/\">WP23 post</a>, and I do want to tell people I’m okay, the post was part catharsis and part giving voice to what I see and hear privately from people who aren’t public figures.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On weekends, I like to look back on the week and find a silver lining or learning from things that were challenging. It helps reframe things. After <a href=\"https://www.therepository.email/wp-engine-and-automattic-trade-accusations-of-withheld-evidence-in-flurry-of-court-filings\">it was reported</a> that I had 21 hours of depositions over 3 days, people were like “wow that must have been terrible,” but actually, while the prep and process were intense, I found it energizing and I learned a ton. Will post more about that later. You never know where things will lead.</p>\";s: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, 31 May 2026 04:49:08 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Greg Ziółkowski: Research: The Workspace Boundary for Agent Memory\";s:7:\"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:26:\"https://gziolo.pl/?p=14864\";s:7:\"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:70:\"https://gziolo.pl/2026/05/30/research-workspace-boundary-agent-memory/\";s: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:365:\"A clear pattern is emerging in how major AI and workspace platforms handle long-term agent memory. The core idea is simple: store memory in the smallest durable workspace that users already recognize, such as a project, repository, document, workspace, namespace, or site. Then, rely on the platform’s existing permission system to decide who can access […]\";s: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, 30 May 2026 13:18: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Greg Ziółkowski\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Open Channels FM: The Human Touch in a 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:34:\"https://openchannels.fm/?p=2555093\";s:7:\"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://openchannels.fm/the-human-touch-in-a-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"In this commentary Bob emphasizes the importance of blending human creativity with AI tools in content creation, advocating for authentic, human-driven commentary in their work.\";s: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, 29 May 2026 09:21:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Solving the Identity Challenge in Decentralized Social Networks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554033\";s:7:\"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:88:\"https://openchannels.fm/solving-the-identity-challenge-in-decentralized-social-networks/\";s: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:206:\"Decentralized social networks face challenges in identity resolution, complicating user interactions across platforms. Ensuring seamless experiences without centralization is the key to mainstream adoption.\";s: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, 29 May 2026 09:07: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress Foundation: Open Horizons in Action: What Our First Cohort Has Been Up To\";s:7:\"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:42:\"https://wordpressfoundation.org/?p=1483843\";s:7:\"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:103:\"https://wordpressfoundation.org/news/2026/open-horizons-in-action-what-our-first-cohort-has-been-up-to/\";s: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:8463:\"<p class=\"has-light-blue-background-color has-background wp-block-paragraph\"><strong>Important note:</strong> Programs like Open Horizons are made possible by the WordPress Foundation. Ongoing legal action by WP Engine threatens the Foundation’s ability to continue supporting scholarships, education programs, and community initiatives like this one.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>A scholarship is supposed to do more than cover a flight. Here’s what the first round of Open Horizons recipients have done since they came home from WordCamp US 2025.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">When we launched the <a href=\"https://docs.google.com/document/d/18Yht__VXmjeM_pJ31RScNIh7wQM-GVcTK1bR9fJP_AU/edit\"><strong>Open Horizons Scholarship</strong></a> in May 2025, the goal was simple: help WordPress contributors get to the events that would otherwise be out of reach..</p>\n\n\n\n<p class=\"wp-block-paragraph\">Six recipients made it to <strong>WordCamp US 2025</strong> in Portland – coming from Malaysia, Guatemala, India, Costa Rica, and across the United States. Several months later, we took a look at what they’ve been contributing to the WordPress project since the conference.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The short version: <strong>a lot.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Here’s the long version.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mainul Kabir Aion <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1f2-1f1fe.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Organizer · </em><a href=\"https://profiles.wordpress.org/aion11/\"><em>@aion11</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Mainul has stayed remarkably busy since WCUS. He’s been <strong>mentoring organizers at WordCamp Barishal</strong> in Bangladesh, <strong>wrote a post for the WordCamp Asia 2026 site</strong>, kept up with users in the <strong>plugin support forums</strong>, and shipped multiple plugin releases through the WordPress SVN repository. (He commits regularly enough that “regularly” probably undersells it.)</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frank Calderon <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1ec-1f1f9.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Volunteer · </em><a href=\"https://profiles.wordpress.org/fgcalderon/\"><em>@fgcalderon</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Frank came back from WCUS and went all-in on the Central American WordPress community. He <strong>organized and spoke at WordCamp Guatemala 2025</strong>, attended <strong>WordCamp San José 2025</strong>, was confirmed as a speaker for <strong>WordPress Developer Day 2026 San José</strong>, and joined the organizing team for <strong>Women WordPress Day Guatemala 2026</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re keeping score: that’s four events Frank has shown up for, in the year since one event helped him show up.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Bigul Malayi <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1ee-1f1f3.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Volunteer · </em><a href=\"https://profiles.wordpress.org/mbigul/\"><em>@mbigul</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Bigul has contributed across just about every WordPress project that takes contributions. He joined the <strong>Photos team at WordCamp Asia 2026 Contributor Day</strong>, has been steady on <strong>translate.wordpress.org</strong> (dozens of strings translated and reviewed in recent weeks), and has uploaded <strong>3,187 photos</strong> to the WordPress Photo Directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, three thousand one hundred and eighty-seven. We checked twice.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Kinjal Dalwadi <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1ee-1f1f3.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Volunteer · </em><a href=\"https://profiles.wordpress.org/kinjaldalwadi/\"><em>@kinjaldalwadi</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Kinjal has kept up consistent translation work on <strong>translate.wordpress.org</strong> in the months since WCUS; suggesting, translating, and reviewing strings on an ongoing basis, with her most recent activity just days before we wrote this post.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s the kind of quiet, steady contribution that makes WordPress usable in dozens of languages, and it’s exactly the long-term commitment we hoped to see.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Kelly Choyce-Dwan <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1fa-1f1f8.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Organizer · </em><a href=\"https://profiles.wordpress.org/ryelle/\"><em>@ryelle</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Kelly’s contributions span <strong>Core</strong>, <strong>Gutenberg</strong>, and <strong>community infrastructure</strong> all at once. Since WCUS, she has authored the <strong>Call for Organizers post</strong> for WordCamp US 2026 in Phoenix, merged pull requests into both Gutenberg and the wporg-repo-tools repo, <strong>contributed to the WordPress 6.9 About page</strong>, and closed related Core Trac tickets along the way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In other words, the kind of contributor whose name you see in a lot of changelogs.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Elineth Morera Campos <img alt=\"??\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f1e8-1f1f7.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Speaker · </em><a href=\"https://profiles.wordpress.org/emorera/\"><em>@emorera</em></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Elineth has been turning her WCUS experience into a pipeline for new WordPress contributors. She completed the <strong>WordPress Credits Mentor’s Course</strong> on learn.wordpress.org, made WordPress contribution a required module in her curriculum at <strong>Fidélitas University</strong>, mentors students through the work, organized <strong>WordPress Campus Connect San José 2025</strong>, and contributed photos to the <strong>WordPress Photo Directory</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">She effectively built a feeder system for the next wave of WordPress contributors.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What this tells us</h2>\n\n\n\n<p class=\"wp-block-paragraph\">A few things stand out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Recipients keep contributing.</strong> Every WCUS 2025 recipient is still actively involved in the WordPress project, not as a thank-you, but because contributing is what they enjoy doing. The scholarship just removed the barrier to one specific event.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Impact compounds.</strong> Almost every recipient has helped <em>other</em> people contribute since WCUS; by mentoring, organizing local events, teaching students, supporting forum users, or making contribution easier through tooling. The dollars don’t stop with one trip.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Geography matters.</strong> Recipients came from countries you don’t always see well-represented at flagships, and the work they’re doing now is grounded in their local communities. That’s the whole point.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The first cohort isn’t the only cohort</h2>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve also funded recipients for <strong>WordCamp Asia 2026</strong> and <strong>WordCamp Europe 2026</strong>, and we’ll share their post-event contributions in future updates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the meantime: if you’re an active WordPress contributor with a confirmed role at an upcoming flagship WordCamp as an organizer or speaker, <strong>we’d love to read your application</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dd.png\" style=\"height: 1em;\" /> Learn more and apply: <a href=\"https://wordpressfoundation.org/open-horizons-scholarship/\">https://wordpressfoundation.org/open-horizons-scholarship/</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s: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 2026 20:12: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Open Channels FM: Navigating Neurodiversity in Tech: Why Sharing Strategies Matters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554067\";s:7:\"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:\"https://openchannels.fm/navigating-neurodiversity-in-tech-why-sharing-strategies-matters/\";s: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:382:\"The tech industry is filled with diverse minds, and more people are discovering that neurodivergent perspectives, such as autism and ADHD are not just common in this field, but bring valuable strengths. Yet, many professionals grew up without a diagnosis or language to describe their differences. This can leave individuals navigating challenges without clear strategies, […]\";s: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 2026 14:18: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Open Channels FM: The Value of Small WordPress Events in a Changing Tech Landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555060\";s:7:\"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:\"https://openchannels.fm/the-value-of-small-wordpress-events-in-a-changing-tech-landscape/\";s: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:246:\"In this epiosde, Adam Weeks interviews Joe Simpson about reviving local WordCamps, emphasizing their unique value in fostering in-person connections, empowering new voices, and adapting to technological changes like AI in the WordPress 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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 May 2026 13:20: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress.org blog: WP23\";s:7:\"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://wordpress.org/news/?p=20747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2026/05/wp23/\";s: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:5639:\"<p class=\"wp-block-paragraph\">WordPress at 23 is simultaneously both the strongest and most precarious it’s ever been.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last week, <a href=\"https://wordpress.org/news/2026/05/armstrong/\">we shipped WordPress 7 to the world</a>. In seven days, <a href=\"https://wordpress.org/about/stats/\">46% of all WordPresses</a>, tens of millions across countless different hosting environments, are already on 7.0, auto-updated with no breakage. From a <a href=\"https://projects.raspberrypi.org/en/projects/lamp-web-server-with-wordpress\">Raspberry Pi</a> to the most secure sites in the world, like <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>. Sit with that for a minute when you think of all the resources and all the projects that have had security problems in the past few weeks. No supply chain attacks, no security problems, just a stable, secure infrastructure doing its job invisibly to power a huge portion of the open internet.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><em>I’m really proud of the capability and security of WordPress, and we should celebrate that. That accomplishment represents the work of thousands and thousands of people coming together to make the web a better place. Also, an iceberg of what is going on behind the scenes. </em> </h2>\n\n\n\n<p class=\"wp-block-paragraph\">However, the release was not what I hoped it would be because so much time from key people was taken away by <a href=\"https://wpengine.com/\">WP Engine’s</a> attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.silverlake.com/\">Silver Lake</a>, in its immense 100B+ power, summoned a <a href=\"https://en.wikipedia.org/wiki/Shoggoth\">shoggoth</a> in <a href=\"https://www.quinnemanuel.com/\">Quinn Emanuel</a> that has been paperclip-maximizing legal torture that is not just going after <a href=\"https://automattic.com/\">Automattic</a> and <a href=\"https://wordpress.org/\">WordPress.org</a> and me personally, but this Golem Jagannath is now trying to dissolve the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> itself, a non-profit with <a href=\"https://projects.propublica.org/nonprofits/organizations/205498932\">no employees or payroll</a> that supports <a href=\"https://central.wordcamp.org/\">WordCamps</a> and <a href=\"https://wordpress.org/education/credits/\">Open Source education around the world</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you know anyone at <a href=\"https://www.linkedin.com/company/silver-lake/\">Silver Lake</a>, <a href=\"https://www.linkedin.com/company/quinn-emanuel/\">Quinn Emanuel</a>, or <a href=\"https://www.linkedin.com/company/wpengine/\">WP Engine</a> in that order, please beg, plead with them to stop the violence. <strong>End this internecine warfare</strong> that is threatening to destroy one of the last stalwarts of the Open Web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s not fun and games anymore, not just business. This is having a real impact on people’s lives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It took every ounce of will in my body, and I am grateful to thousands of hours of meditation, to not explode in rage when asked about pineapple on pizza and debating the <a href=\"https://en.wikipedia.org/wiki/Jean_Baudrillard\">meaning of Jean Baudrillard</a> and “<a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">bastardized simalcra</a>” when miles away, my closest friend is in a hospital bed waiting for a heart transplant.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have colleagues <a href=\"https://eric.blog/2026/05/24/six-months/\">LITERALLY DYING</a> I can’t be with because Silver Lake / Quinn Emanuel / WP Engine shoggoth is trying to make it seem like <a href=\"https://www.therepository.email/wp-engine-and-automattic-trade-accusations-of-withheld-evidence-in-flurry-of-court-filings\">I am hiding or destroying evidence because we rotate logs on wordpress.org or I have disappearing chats on Signal with romantic partners</a>. I don’t curse, but this is so f-ed up I don’t know what to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>If you don’t know anyone at these entities, please pray, meditate, and call on whatever forces or divine interventions you can to bring this to an end.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">I reached out multiple times to resolve this with open arms; I’ve extended every olive branch; and I’ve even said positive things about Silver Lake and WP Engine in the press, trying to bring this to a close. Heather Brunner would not even come into the same room with me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of this from a stupid presentation <a href=\"https://www.youtube.com/watch?v=fnI-QcVSwMU\">I gave at WordCamp US 2024 about how private equity can hollow out high-trust-based Open Source communities that in the past 19 months has only gotten 16k views on YouTube</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Silver Lake, you have already extracted all your pounds of flesh. I missed my Mom’s knee surgery. If you wanted me to suffer for my sins, I have, and probably deeper than you will ever know. WordPress and WordPress.org, and yes, even my flawed leadership, are at the heart of what has made WP Engine successful so far. You have so much money and power, <a href=\"https://pe-insights.com/trump-approves-14bn-tiktok-us-spin-off-with-oracle-silver-lake-and-kkr-as-investors/\">you just got TikTok, the Trump administration loves you</a>, you don’t need to control and take over WordPress, too. If you win, you destroy it, and then what? Please have mercy and stop trying to ruin people’s lives. Let’s move on.</p>\";s: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 May 2026 17:40: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: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:43;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: #218 – Luke Carbis on the Future of WordPress Plugins: AI, Ethics, and New Directory Standards\";s:7:\"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:48:\"https://wptavern.com/?post_type=podcast&p=204450\";s:7:\"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:117:\"https://wptavern.com/podcast/218-luke-carbis-on-the-future-of-wordpress-plugins-ai-ethics-and-new-directory-standards\";s: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:60724:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, the future of WordPress plugins, AI, ethics, and new directory standards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Luke Carbis. Luke has been immersed in the WordPress world for our round 20 years with experience touching upon many strands of the ecosystem. He started his own businesses, worked in agencies as a developer and product lead, contributed to WordPress Core, helped organise WordCamps, and is now a member of the Plugin Review Team. He also co-hosts the Crossword podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Recently Luke delivered a talk at WordCamp Asia titled, beyond the guidelines, it’s time to evolve our standards for a safer plugin ecosystem. And today he’s here to share some of those ideas with us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start by talking about how WordPress.org’s plugin directory is facing a wave of new submissions driven largely by the rise of AI generated plugins. This has made it harder, both for quality plugins to stand out, and for users to find what they need, despite backend improvements and shorter review wait times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Luke discusses how the current discovery and ranking systems can be games, how active installs play a key role, and why there’s room for improvement in surfacing the best plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into Luke’s suggestions for making the plugin ecosystem better, including ways to connect wordpress.org accounts with sites, streamlining discoverability and installation of both custom and premium plugins, and the idea of officially supporting a commercial plugin marketplace with proceeds potentially supporting Core contributors and community events.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A thread throughout this conversation, is how WordPress should respond to AI, not just as a technology, but as an agent of change in the community. We look at the ethical implications, generational divides in attitude towards AI, and the importance of strong leadership as WordPress faces a period of challenge and uncertainty.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the future of the WordPress plugin directory, the role of commercial offerings, and how AI is reshaping open source communities, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Luke Carbis.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Luke Carbis. Hello, Luke.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:38] <strong>Luke Carbis:</strong> Hey Nathan, how are you doing? I heard you had a great time in India.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:41] <strong>Nathan Wrigley:</strong> I had a great time in India. I think you had a great time in India as well. Is that true?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:46] <strong>Luke Carbis:</strong> Yes, I love India. There’s just something really special about it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:50] <strong>Nathan Wrigley:</strong> Yes. I came away with an enormously favourable opinion of my time in India. I kind of wish that that episode had not come to an end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are back from WordCamp Asia, which is where I spent some time with you. You did a talk, presentation, over there, and it was entitled beyond the guidelines, it’s time to evolve our standards for a safer plugin ecosystem. Let’s get into that in a minute.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Before then, can you just give us your little potted bio? I know it’s a bit of a pedestrian question, but can you just tell us a small amount about yourself, probably related to WordPress, I guess?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:25] <strong>Luke Carbis:</strong> So I’ve been using WordPress for 20 years and also, you know, roughly there. And in that time I have done everything really from like starting my own small businesses, to working for agencies in developer roles, in product roles. Worked for hosts. I’ve worked for products and plugins, and I’ve started my own plugin businesses and sold them too. And now, after contributing here and there across a variety of different teams, I’m now part of the plugin team. So I’m spending a lot of time reviewing plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:02] <strong>Nathan Wrigley:</strong> So you are very much aligned with the mission of today’s episode. So I’m going to read the blurb that was included in your presentation, just to give some context to that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:11] <strong>Luke Carbis:</strong> I’ll tell you that I give this blurb to everybody who has to introduce me before a talk, and I get varying degrees of success in terms of their ability to reproduce the words written on the page. I’m eager to hear your rendition, Nathan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:28] <strong>Nathan Wrigley:</strong> Okay. Here we go. I’m going to try it. I’m going to give myself one chance to get it right. It’s time to have a conversation about ethics in plugin and product design. We’ll learn that recognising and rejecting dark patterns isn’t about stricter rules, it’s about building trust through transparent, user centred design. How did I do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:46] <strong>Luke Carbis:</strong> Oh, you did good. That wasn’t the one I was talking about actually. I thought were going to read my bio.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:52] <strong>Nathan Wrigley:</strong> Oh, well I’ll read your bio. Let’s move to there then.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:54] <strong>Luke Carbis:</strong> I put so much effort into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:55] <strong>Nathan Wrigley:</strong> This I’m definitely doing as a first pass. Here we go. Luke Cabris is a self deputised open source emissary and vigilante plenipotentiary for WordPress proletariat affairs. He’s one of the hosts of Crossword, and has been a part of the community as a plugin developer, Core contributor, release lead, WordCamp organiser, and member of the plugin review team. How did I do?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:18] <strong>Luke Carbis:</strong> Amazing actually. And I think like a big part of that, you know, speaking about the silly words I’ve chosen to put in there around proletariat and so forth, that does come from a genuine place and why I got into plugin review in the first place. And maybe we’ll get into some of that in this interview.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:37] <strong>Nathan Wrigley:</strong> Yeah, definitely. Okay, so there’s obviously an identified undercurrent of, dissatisfaction is maybe the wrong word, but you’ve clearly got some kind of estimation that things are not all going well in the plugin space. Because your talk, as I said, was talking about evolving standards for us safer plugin ecosystem. And the word safer there, I presume, implies that things could be improved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I guess I’m just going to ask you to lay out what it is that you believe the plugin landscape has a problem with, what’s going wrong? And then we can get into the remediation steps a bit later.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:10] <strong>Luke Carbis:</strong> Yeah, so when I was laying this out, I was thinking about, a lot about what I would do with the plugin directory if I could, if I could come in and change a bunch of things. And I realised that a lot of my bigger ideas are just not realistic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I would love to see maybe a plugin directory that was commercialised where plugins, you know, premium plugins could sell. But I think Matt’s been pretty clear that he’s not interested in doing anything like that, although maybe more recently had a change of heart on a bunch of things. So who knows?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I tried to stick to the basics and really, the changes that I proposed in this talk, I feel like they can get done. In fact, I can probably do them myself with a little bit of community support. And that’s the purpose of the talk.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And they’re really, mostly about this problem we’ve got with the directory at the moment where we’re just being inundated with loads and loads of new plugins. It’s becoming really hard to be able to stand out from the crowd as a product designer, and as a user, just figure out which plugin that I want to use. And of course, a lot of that is due to AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Nathan, we’ve seen, in the last 12 months, something like four times the amount of plugin submissions than 12 months ago. Isn’t that nuts?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:39] <strong>Nathan Wrigley:</strong> So I guess what I would say from there is, if I was to rewind the clock, I don’t know, let’s say three years, something like that, we had the same problem in that there was a deluge of things which needed to be approved from the plugin review team. A few bits and pieces were put in train, which actually appeared for a while to really get rid of that problem. You know, I think we got down to almost zero things in the queue for the plugin review team. And then coinciding almost perfectly, dovetailing into that came AI. The ubiquity of AI, the capacity of AI to create plugins and what have you. And that then presumably just turned that whole wheel back around.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now we’re at the point where it sounds like the majority of the things which are in the queue are supposed to be AI plugins. You know, the idea that you may be able to rattle off 10 plugins in half an hour. On the face of it, that sounds like a great idea. Look, we’ve democratised plugin development and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But we have processes on wordpress.org which need to be satisfied and fulfilled so that they are measured, so that they are inspected, so that they pass the requisite number of tests and what have you. And we’re facing a problem just of numbers. There’s just numerically too many things happening all at once for the actual humans to take care of it. Does that sort of sum it up, or have I missed bits of that out?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:03] <strong>Luke Carbis:</strong> I would make a slight change to what you said actually, because the humans are actually taking care of it. We have been adding new people to the team, we have been improving our tools, and we’ve been using a bit of AI ourselves to be able to stay on top of the queue. And right now we’ve got about a week wait time before your plugin is reviewed. Now that’s always, like if you look historically, that’s a pretty good number.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Where you could be mistaken is if you look at the number of plugins waiting for review, right? You might see a lot, you might see 800, and that is much higher than it was two years ago, but we are getting through them a lot faster now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think the metric to keep in mind is the wait time before review. Obviously we want to keep that at zero. Our team, we go into a critical mode. We say, oh, things are really bad if it’s two weeks. And so at the moment we’re one week, we’re pretty happy with that, trying to reduce it, of course.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The burden, there is a lot of burden on the Plugin Review team, but to me, that’s not the primary issue. The primary issue is if you create a product, if you create a plugin, then how do you stand out on the plugin directory amongst a thousand other plugins that do exactly the same thing? And if you are a user using WordPress, how do you find the right plugin for you? Or do you just give up on the plugin directory entirely and vibe code your own solution?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:30] <strong>Nathan Wrigley:</strong> Do you believe that is in fact the case? Do you think that possible submissions, the developers of, let’s say, I don’t know, countless plugins out there have just decided to do exactly that? Because they feel that, you know, they get through the week wait, the two week wait, the five day wait, whatever it is, their plugin is finally authorised, it’s on the wordpress.org repo, but then just crickets because of the way that the repo is structured, the way it surfaces things, the way it, I’m doing air quotes here, favours certain things. Is that the gripe really, that really it’s an unfair playing field? It’s sort of stacked in favour of some players as opposed to others.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:05] <strong>Luke Carbis:</strong> That’s been a long running gripe of the WordPress directory. That’s not a new gripe. That’s been around for a while. And in fact, we’ve really made some good progress towards changing up the featured plugins, for example. More the issue is the number of plugins. The number of plugins on the directory is growing just incredibly. And so it’s because of that it’s harder to stand out in the crowd.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:30] <strong>Nathan Wrigley:</strong> Yeah, the UI, I’ve always wondered how Google, for example, obviously billions of dollars spent fine tuning that algorithm. The anticipation, certainly when I’m using things like Google, is that it’s doing a credible job. But the truth is, I have no insight into whether or not it really is doing an incredible job, or whether I’m just missing out on a dozen things that would actually be superior given the search, and given the proclivities of Google to surface things based upon sponsorship or whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What does the wordpress.org, and again, I’m using air quotes, what does the algorithm actually do at present, to present what is on the page in the repository when I first arrive for the first time, or subsequently with search?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:15] <strong>Luke Carbis:</strong> One of the biggest differences between Google and WordPress search is that the, air quotes, algorithm is open source. And you can actually go on to GitHub now and have a look and examine exactly what it is. And it’s a whole range of things. I probably couldn’t do a good job of summarising it, but it takes into account recent reviews. It takes into account the plugin author’s ability to respond to support on the forums. And of course it takes into account keyword matching in the title and description and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a cutoff, if I recall, on the length of the description that is included in the search thing to prevent people keyword stuffing. And that’s something we look carefully at during plugin review. There’s a whole heap of things, of course.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:01] <strong>Nathan Wrigley:</strong> Are you satisfied that those whole heap of things that make up the search, or the display for whatever it is that you’re searching for, or the default when you first arrive at the page, do you believe that there’s room for improvement there or, yeah?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:16] <strong>Luke Carbis:</strong> Oh yeah. Have you ever used the WordPress plugin search?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:18] <strong>Nathan Wrigley:</strong> Yeah, I really have. But curiously, given my background, I’m not the best candidate for doing searches because what I’m usually searching for is the name of the thing that I’m searching for. For me, because I’ve been in the WordPress space for such a long time and frequent all these different groups and learn from other individuals at WordCamps and things, I’m usually looking for the name of a product. Or certainly searching for this very specific, tight set of words around which I know it will surface. And then I find it. And use it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, if I was just, let’s go for example, with one of everybody’s favourites, SEO, if I just type in SEO and hit the button, I do not know what that would give me, and whether or not it would be a credible match for what I want.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And one of the things that I would add into that is Google’s algorithm being closed source. Whilst we, as an open source community, we don’t like the idea of that. There is something slightly ungameable about it. You know, there’s a big barrier between gaming the SEO on Google which WordPress doesn’t have, because once the algorithm is open sourced, it becomes, oh look, this is what we need to do to achieve rankings and so on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:26] <strong>Luke Carbis:</strong> And there is a lot of attempts at gaming the algorithm. But one thing it’s really, really hard to game is active installs. And that is one of the big, big ranking factors. So if you have a plugin, if your plugin has risen to the top, then, yeah, it’s going to rank better. And that kind of makes sense from my perspective.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then again, if you know what you’re looking for and you search specifically for the exact word and it comes up second or third or tenth in the search results, because it doesn’t have very many active installs, that’s a hard problem to solve.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:02] <strong>Nathan Wrigley:</strong> So what would be some of the remediation steps? It’s a bit of blue sky thinking this, and obviously everything that is about to come out of your mouth, caveat emptor, it might not happen, or it might be an idea which, you know, upon further reflection a year from now, you think, no, that wouldn’t have been a good idea anyway. But do you have some intuitions as to what you would like to try on the .org repo? You know, experiments to run for a short period of time to see what works and what doesn’t.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:26] <strong>Luke Carbis:</strong> I do have one experiment in particular I would love to run, but I have to set it up with you, Nathan. There’s a first step and a second step.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the first step is, I want to be able to connect my wordpress.org account with my WordPress in install. So we’ve got this new Connectors API coming in WordPress 7, where we can connect our Open AI or our Anthropic accounts with API keys or whatever it is. I’d love to be able to log in with wordpress.org. I think that would be really cool. Now, have you ever tried going into the plugins, add new, and click favourites? What happens when do that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:04] <strong>Nathan Wrigley:</strong> I have not, no.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:05] <strong>Luke Carbis:</strong> Okay. Well, I’ll tell you. Do you think it comes up with your favourites?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:08] <strong>Nathan Wrigley:</strong> Oh, I see. Yeah, okay. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:11] <strong>Luke Carbis:</strong> You’ve just done it. It asks you to type in your username from wordpress.org. And that’s not a great user experience. And so if we were able to sort of connect up our wordpress.org account to our various installs, then at least we could have our favourites come up in our plugins. So that would be a step one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then a step two is I would love to be able to store a list of GitHub repos, doesn’t have to be GitHub, just Git, Git repos, where I have my own set of custom plugins. Or maybe even authenticated via token, premium plugins. And add that into my wordpress.org profile so that whenever I’m creating a new WordPress site, I can go plugins, add new, click on my, I don’t know, we could call it like untrusted sources, that’s what some other app stores call it. And then see a list from wordpress.org of GitHub repositories or whatever, repositories on various different systems where I can just download the zip into my WordPress site just as though I’d uploaded, you know, I’d gone, upload zip via that menu.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Why not? I think that would be a really cool experiment to run. That would allow people to run their own sort of alternative marketplaces in a sense. If they could get onto that untrusted sources list. And it also wouldn’t take away that control that wordpress.org really wants over the plugin directory, for good reasons. Because if there was an untrusted source that was nefarious or malicious, then we could just remove that from everybody’s profile also.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:50] <strong>Nathan Wrigley:</strong> So there’s a couple of things there. The first one was, it felt like something akin, now I have an Android phone. I don’t have experience with the iOS app store on a phone, but the Google Play Store I have familiarity with. And because it knows things about me from my past and the things that I’ve done in the past, it begins to have some sort of idea of, okay, here’s the kind of things that you like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now I’m not suggesting anything quite like that, but it feels as if there’s a step slightly towards that. In other words, given that your 10 sites that you’ve connected to wordpress.org, they all seem to have an SEO plugin in them, they’ve all got a forms plugin, they’ve all got some sort of caching solution. Those kind of heuristics might then say, okay, we know that you like those kind of things, here’s a bunch of stuff that’s around that. Did I get that right or have I sort of overstated what you were thinking?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:42] <strong>Luke Carbis:</strong> Yeah. No, that’s good. And incidentally, it’s also the first sort of required step if we were to ever go ahead and make the wordpress.org plugin directory commercial, and allow plugins to sell, or sell subscriptions. That login with WordPress would be a necessary step.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:02] <strong>Nathan Wrigley:</strong> Okay. And the next thing that you mentioned then was kind of like this idea of untrusted sources, or at least the capacity for you to say, I trust these things. And obviously, you know, we don’t want it to be that everybody ought to trust these things, so there needs to be a sort of volunteering in, or some sort of connection which you approve or something.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How many people are these days going out to places like GitHub? I’m imagining newbies to WordPress, probably no. But I’m imagining experienced people in WordPress, developers and what have you are certainly doing that. You know, they’re finding plugins over on GitHub and downloading them and doing all of that unnecessary work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That is an interesting idea, isn’t it? Being able to bind it so that essentially it appears in the UI, you click a button, it just does all the things that you need to do. Yeah, that’s really interesting as well. And Git, you know, ubiquitously Git.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:48] <strong>Luke Carbis:</strong> Yes. And it’s not just other people’s plugins that people are trying to access. It’s a lot of your own plugins. And talking to plugin developers, talking to people submitting their plugins to the directory, a lot of the time people would be actually just happy if they could easily install their own plugins on their various websites and on their clients’ websites. That’s a part of them pushing it into wordpress.org, into the plugin repo is just to have it there accessible. They don’t really expect a lot of users. They’re not really going for some big product launch. They just want it there and available for when they build their website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:29] <strong>Nathan Wrigley:</strong> Okay. And then let’s move on to what I think was the third of your points there, which was the more commercial side of things. The idea of putting premium plugins, let’s call them that. Essentially a plugin where there’s a fee in exchange for getting access to that code base.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you think that breaks some kind of promise that the community over 20 years has opted into? I suppose the argument from the more open source side, if you like, let’s call it that, would be that it’s going to, in its train, bring all sorts of unexpected consequences. You know, the pressure to, I don’t know, raise a 3% fee for wordpress.org, which people would say, okay, where’s that going to? You know, on the Apple iOS store and on the Google Play Store. I think it’s around 30%. But, you know, I was just taking Stripe as an example. Something like a 3% fee, but it could be anywhere, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then of course you get into the whole argument of, okay, if there’s a fee attached to that and somebody’s getting paid for that, is there going to be a commercial pressure to promote only the ones where the fee is the highest, or the percentage that’s been agreed for that thing is the highest? You can see how it gets muddy basically fairly quickly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:32] <strong>Luke Carbis:</strong> Yeah. It does get muddy and it does get messy, and I think it’s a necessary evil. Now, let me just start by saying I’m not really proposing this because the first step towards anything like this happening would be that wordpress.org must be transferred to the Foundation. That would have to be the first step.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the second step is, yeah, you’d have to charge developers a fee. I think actually 8% would be the right amount, okay? So we have 3% for payment processing and then Five for the Future. That’s always been the thing, right? So let’s stick with that. So let’s stick with 5% goes to the Foundation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And what happens with that money? Well, we’ve got a problem in WordPress, don’t we? We have this problem that people aren’t contributing enough, and people don’t pay their due. And some of that is big plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So what if we just put that into the foundation and use it to pay for WordCamps. Use it to pay for contributors. Use it to pay for the plugin review team. I’m not complaining. I’m a full-time sponsored contributor. But not all of the plugin review team are. So maybe use it to pay for some of those volunteer hours. I think that could be a really useful and helpful thing, especially if the Foundation has proper governance and proper oversight.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:53] <strong>Nathan Wrigley:</strong> I have literally no idea what the WordPress plugin ecosystem is, and again, I’m doing air quotes, worth. And so what I’m meaning by that is, I don’t know how many dollars move around on planet Earth each year in order to get access to pro plugins. I’m imagining it’s not a tiny amount.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:15] <strong>Luke Carbis:</strong> Not as much as WordPress hosting, but probably a lot more than people think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:20] <strong>Nathan Wrigley:</strong> Right. Because we are in a, an ecosystem now where $97 per annum for this thing, and $47 for this thing, or $399 for this other thing. These are not numbers which kind of shock anybody. And 8% of $399 a thousand times over, a million times over adds up to quite a lot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, again, I have no back of the napkin calculation there, but it does seem that that would be quite a considerable amount of money. The way that you’ve channelled it there, maybe that would be enough to satisfy people who don’t want there to be any commercial pressure inside of wordpress.org. I don’t know if you’ve had conversations with people who have a very different opinion, you know, you’re polls apart on this, and whether or not you’ve managed to persuade them with that argument or not.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:07] <strong>Luke Carbis:</strong> Yeah, look, Matt Mullenweg himself is polls apart from me on this last time I checked, and that’s okay. I get that perspective too. Introducing money into WordPress will have some big effect on the project. Maybe it’s the shock the project needs. But I personally am a fan of an expanding ecosystem. I love the idea that someone can make a living off WordPress. That’s what I’ve done for my whole career.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And if this goes another step towards enabling that for people, especially in the current climate where a lot of plugin authors and product companies and WordPress are experiencing a downward trends in terms of sales and conversions, then I think this could be a good sort of step in the right direction. Most importantly, it would give the confidence back into the market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I’ve been sitting, actually, Nathan, I’ve been sitting on a plugin that I probably would launch commercially as well. I’ve had it ready to go for 12 months or more with a friend of mine. We’ve launched successful plugins before. And we just haven’t launched it because we feel the timing isn’t right. We feel the WordPress plugin, the ecosystem isn’t an exciting place to be. People aren’t really interested in new products in this space, especially if it has nothing to do with AI. It feels like there’s a lack of momentum, a lack of movement in the WordPress product space, especially when it comes to the new launches, right? The last big launch I can think of was Event Koi. Maybe you’re more in touch than I am.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:45] <strong>Nathan Wrigley:</strong> No, that was a big moment for me as well, that did garner a lot of interest, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:50] <strong>Luke Carbis:</strong> And it seems like there’s a general sort of crickets when it comes to product launches in WordPress. Maybe this could be something to generate a bit more excitement again.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:00] <strong>Nathan Wrigley:</strong> I don’t quite know if it’s fatigue or what have you, but there’s definitely been a sort of slowing down of, maybe it’s because of, I don’t know, maybe people just more broadly are not kind of quite so into Facebook groups in the way that they were before, or maybe they’ve been used to unsubscribing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:17] <strong>Luke Carbis:</strong> Could be AI. Could be a ton of different things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:20] <strong>Nathan Wrigley:</strong> Yeah, I think all of those pieces play into it. But I do think you’re right. I think WordPress has got a bit of a fight on its hands in the future, trying to maintain its interest in what, for the younger generation coming up, will probably be a bit of an AI first world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I would imagine for developers, the idea of being able to gain revenue directly at the source, and being able to be discovered directly at the source is quite an appealing thing. You don’t necessarily have to have the most incredible website. You don’t have to have an incredible marketing team to be discovered out in Google if you’ve got fighting chance to be discovered inside the repo, which is serving up the plugins to everybody. I imagine that’s quite an exciting prospect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:05] <strong>Luke Carbis:</strong> Oh yeah. When was the last time, if you had to install an app for your phone, you went to a website? I don’t know what it’s like on Android.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:10] <strong>Nathan Wrigley:</strong> Not ever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:11] <strong>Luke Carbis:</strong> No, you find it on the App Store. And not only that, but also if we did something like this, we’d have built into WordPress ways for developers to update their plugin. Right now, premium plugins have to ship their own updater, even though WordPress comes with one, right? Ways for WordPress to be able to handle a licence, or maybe not a licence key, but validate a purchase, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now, every premium plugin has to do that validation step. Where did you get the plugin from? Do you have a valid purchase? So it makes a world of difference for product teams when they don’t have to distribute, when they don’t have to do quite as much marketing. And discoverability is much easier when they don’t have to worry about how they’re going to handle updates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Even just thinking through something like, am I going to have a premium plugin and a separate, a free plugin, or am I going to have a system where I have the free plugin and then my pro plugin extends that with actions, and so we have to have both active at the same time. Or am I just going to ship premium only and not have any free, and then I’m not discoverable on the directory anymore.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like all of that it’s sort of solved in one step. It just makes launching a product for WordPress so much easier. But I just, I’m sitting here talking about how good it is, but I just don’t actually think it’s a realistic prospect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:38] <strong>Nathan Wrigley:</strong> Yeah, because I suppose what I’m imagining as you’re saying these words, all of it, the wall that you are constructing, all of the bricks that you are laying out kind of makes sense. It all adds up. It seems completely credible. But then in the back of my mind, I’m kind of imagining there’s quite a lot of people shouting at their podcast player at the moment. Luke, no. This is pure, you know, this is the antithesis of what we want in an open source project. Money should never be bound to it. It should be free at the point of use. And you can see how all of that goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And those people, their message is clear. Their message is powerful. They’re very persuasive. They’ve equally got their wall that they’ve constructed, which is probably just as persuasive. I don’t know how you get these two sides to meet, because there’s no middle ground, right? You can’t have half of a paid for plugin ecosystem. Maybe you could, but that seems like destined to fail. It’s a bit of binary, isn’t it? It’s either, yep, we’re going to do it, or no, we’re not. And I can see that bifurcating the community in the way that almost nothing has in the past.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:38] <strong>Luke Carbis:</strong> Nathan, I’ve been reflecting on Matt’s, let’s say, reintroduction back into the project. After WordCamp Asia, he suddenly has become super active, as I’m sure you saw on Slack, and he’s writing all of these like paragraphs and paragraphs of like to do items, and change this and update that. And not always in that careful, accessible language that we’ve cultivated on the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it’s been very clear. This is not good enough, this is what I want to have changed. And at first when I saw this, my reaction was frustration and even a little bit of anger. I don’t agree with your opinion. And after giving it a bit of time, what I’ve begun to realise is WordPress, I think it’s safe to say that WordPress has seen a little peril in the last little while, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve been coasting along, but there’s no guarantee that we are going to remain relevant in the discussion of, what am I going to use to create my new website, a few years from now? In fact, the answer to that question, it very well may not include WordPress, a few years from now. That is a realistic possibility. Something needs to change. And the only thing that can cause us, that can pull us unstuck from where we are right now is a strong leader, who has a strong direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, that leader might take us in the wrong direction. That leader might come in with a strong opinion and we might just go off the deep end and the whole thing might just come crashing around down by our feet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also, if we don’t do anything, I think that’s just as likely to end up in tears. On reflection, I’ve decided mentally to recast Matt in my mind from being this Elon Muskian figure, to being someone more akin to Steve Jobs, or DHH, or these figures that are known to be a little rough around the edges, you could say, but also visionary in terms of their product thinking.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that’s the change in mindset that I’m intentionally taking now into the project, to keep me sort of a bit more motivated and to reframe just like the direction. What do we need as a project? And that’s what I think we need. We need clear, direct, active leadership.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:14] <strong>Nathan Wrigley:</strong> It’s kind of curious because the more recent past has seen an absolutely logarithmic growth in WordPress. I don’t mean in the last year or two, but let’s go over the last 15 years or something like that. And particularly over the last, let’s say eight years or something like that, it’s just grown and grown and grown. And I think it’s fair to say, maybe exactly as you characterised it, we have rested on our laurels.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think we could point the finger largely at AI, not entirely at AI. There’s a whole load of other things, history, politics, what have you, inside the WordPress space, which will have contributed. But there is definitely this inflexion point at the moment where a lot of people, I think, are questioning what is it that I need? What are the tools that I need to build a website? And so, like you said, there is this moment where there’s a precipice and that precipice seems to be getting a little bit closer.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it has been curious watching Matt’s reaction. I’m just reading the same things that you’ve been reading. The appetite that has been displayed there, and the expression of, you kind of need somebody to take the helm, and we need to make decisions. And it was all born out of this frustration at something, which on the face of it really ought never to have happened. You know, this capacity to commit a certain thing, which was not able to be committed because.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:32] <strong>Luke Carbis:</strong> You talking about a Akismet?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:34] <strong>Nathan Wrigley:</strong> Well, yeah, a whole committee needed to decide on whether this, that or the other thing. Again, it’ll be really interesting, in the way that we discussed earlier about the plugin repo becoming commercial. It’ll be interesting to see how the community reacts to that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t know if you’ve got a, obviously you are leaning into that and thinking, okay, better to have a dictator that’s got a direction than just slowly withering away, the community dying over time and the project failing. It’ll be interesting see if everybody has that same reaction, or whether people regard that as something that they can’t tolerate. And whether or not indeed that itself will haemorrhage the community, you know, create another fork in the road if you like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:14] <strong>Luke Carbis:</strong> Let’s talk about that. Like, let’s talk about, is the direction, we agree I think that we need a direction, right? We need clear, strong leadership. What about the direction though? How do you feel about this focus in on AI? I’ll give you a hint. For me, it’s hard to bet against AI, but the core, if you had to boil WordPress’ sort of spirit down to three words, for me, those words would be, code is poetry. And I don’t see that reflected in the AI focus. What do you think?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:51] <strong>Nathan Wrigley:</strong> My supposition is that when I got into any of the open source projects that I was ever into, there was this philanthropic bit of me which definitely got engaged by that. And so I loved that. I loved the kind of community side. I think it’s part of me as a human being. I’ve often, rebelled is too strong a word, but I’ve always managed to find my way away from situations where there was somebody telling me what to do. I’ve always enjoyed that capacity to do things on your own, or at least as a community to decide how things are going to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, the world really doesn’t seem to work in that way. You know, the world that we occupy is led by companies which have a strong direction. Governments which have a strong intuition on what their citizens want, and so on and so forth.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I’m kind of drawn into the argument that you’ve just made. I think it’s worth a punt. I do not know what AI is going to do to our community. It may be that AI is going to upend everything so severely and so dramatically that no retrofitting of a CMS will be capable of stopping the inexorable rise of it, and we’ll all be using AI for everything from now on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it does feel like the framework has been built to allow AI to be an integral part of a CMS, which people are familiar with and willing to use over and over again in the decades to come.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in terms of the leadership thing, I think it’s worth a punt. We know how in open source there can be atrophy. Things can just feel like you’re walking through molasses because the committee hasn’t decided the thing, and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s been okay. The history of WordPress demonstrates that that has actually worked. We’ve been able to get through it in that manner. But I’m not sure that facing a fairly, apocalyptic is the wrong word, let’s go with seismic, a seismic thing like AI, we’re up against a bit of a different animal now. And maybe we need to adapt our strategy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And maybe it’s a temporary thing, you know, maybe that’s a way of dealing with it. I think, I could be wrong, memory could prove me wrong here. I’m pretty sure that in Matt’s Slack commentary that you’ve been referring to, I think it was a, it was a period of time, wasn’t, it? Wasn’t the proposal that I, you know, give me the reigns for a year, or something along those lines. I can’t remember. If I’m misrepresenting that, I’m sorry. But maybe it’s worth a punt. It certainly sounds like it’s convinced you anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:15] <strong>Luke Carbis:</strong> Yeah. And then when we come to like AI strategy, there’s really two different aspects of that, right? We’ve got, how is AI integrated into WordPress? And I’ve been actually really, really happy with the direction that like the AI plugin has been going in. Because it’s all built around this principle of it being an add-on, being optional, I don’t have to use AI in my WordPress if I don’t want.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What worries me more is that there seems to be a real push from Matt and project leadership to be using more AI in our contributions, right? Using AI to create new pages on wordpress.org, using AI to create new plugins, right? Using AI to create pull requests and various other things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so that part I’m a little bit more cautious about. And I’m especially cautious from the perspective of like the generational change that WordPress needs right now. We need more young people involved in the project. And every time I speak to someone from Gen Z, they are not interested in using any kind of AI whatsoever. I don’t know if you’ve noticed the same. But Gen Z seems to have this huge anti AI thing about them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m worried about pushing those people away, and also just anybody else who doesn’t want to use AI. So I do use AI, right? I use AI a lot. But there are real ethical concerns when it comes to AI. And to me, WordPress has always been this really welcoming, open, considerate, accessible community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I can go to a WordCamp and get a kosher meal. That’s pretty special. You can go to a WordCamp and you can get the audio translated into your language on your phone from the talk that you’re going to. All of these like accessibility concerns have always been forefront. And I feel like if I want to opt out of AI, I don’t have that option if I also want to be a WordPress contributor.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:11] <strong>Nathan Wrigley:</strong> Yeah, it’s really interesting. I think the words to some, well, singular word to sum up my relationship with AI is confusion. I’m really conflicted by it because I can see the productivity gains on the one hand, and then on the other hand, I can see how potentially dehumanising it could be. And I slightly worry that we’re going to paint ourselves into a future in which the dehumanising wins out. And that concerns me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I suppose the best analogy, and I’m just coming up with this on the fly, is it feels as if the aliens just landed and they’re now amongst us and there’s millions of them. And they’re just on our high street, and they’re walking around, and they’re in the supermarket, and there they all are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And last year they weren’t there and life was just a bunch of humans and the animals that, you know, evolved on Earth. And suddenly we’re trying to figure out, okay, what do we do with these characters who are now part of our lives? But they’re way quicker than us at a million tasks, and they’re way faster than us, and way more productive than us. But also they are not us. Confusion is what I’ve got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:19] <strong>Luke Carbis:</strong> I don’t think you’re alone. I think that’s a common feeling. The question I keep asking myself, keep coming back to is, are my children going to thank me for my AI contributions? Am I going to be like how I think of the, I don’t know, baby boomers? I look at the baby boomers and think, I’m a millennial, right? So I look at the baby boomers and think, oh, look, you wrecked the world with your corporate greed and pollution. Are our kids going to look at us the same way? Oh, you wrecked the world with your AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:49] <strong>Nathan Wrigley:</strong> That is definitely an outcome which has a non-zero chance of being true. And curiously, I have multiple children, to my knowledge, none of them use AI in any way, shape, or form. Now, that definitely maps to the kind of things that they’re interested in, but I do worry sometimes that the tech bubble that I’m in leads me to have this conception that AI will actually eat everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whereas, AI is not going to get me to the swimming pool. It’s not going to get me to enjoy the view off the mountain nearby anymore than I enjoy already. You know, all these million things that it simply can’t do. But because I’m dwelling in a community which obsesses about it, and seems to portray the future as AI or broke, maybe I think about it too hard and maybe the breaks will come on because the next generation just won’t allow it, as you’ve described.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:42] <strong>Luke Carbis:</strong> I kind of hope so. Is that bad to say that? I don’t know. I enjoy using AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:46] <strong>Nathan Wrigley:</strong> Yeah, you end up where you are. You haven’t gone anywhere new. So it’d be, I suppose it’d be a bit like having an iPhone four forever. Is that bad? No, because everybody’s got an iPhone four forever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:42:59] <strong>Luke Carbis:</strong> We just end up somewhere different though. We wouldn’t end up in the same place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Can I tell you an anecdote which really sort of informs a lot of my thinking around this? I was in a classroom, it was a media arts classroom of 15 year olds. And we were talking about referencing. And I suggested to these 15-year-old students, why don’t you just send ChatGPT all of your sources and get it to output everything in Harvard style so then you don’t have to do anything. Just paste that into your reference list.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And a full half of the class stood up out of their seats and said, no sir, we do not use AI. That is bad for the environment. We’re going to get dumb if we use it. We refuse. I was shocked. And it was such a strong response.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now that’s an anecdote, right? Might not be universal, although the Verge published this article just recently talking about how such a high percentage of Gen Z feel really terrible about the direction that AI is going in. So that’s, I think it’s worth consideration. And I’m not saying let’s not use AI in the project. All I’m saying is I think we need to hedge a little bit more than we are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:14] <strong>Nathan Wrigley:</strong> What an interesting conversation. We started out with plugins and the plugin repository, and then we’ve smuggled in the conversation of our time, AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:44:22] <strong>Luke Carbis:</strong> I can bring it all together for you. Let’s bookend it. One of the suggestions in my talk is I would love to see, and I’d love to get your feedback on, and listener feedback on AI disclosure, an AI disclosure on the plugin repo.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you create a plugin, you can voluntarily opt in without anybody telling you that you’re lying or whatever. Let the market sort out whether people are going to try to game it or not, without any validation. You can just specify in your plugin headers that you used a certain level of AI. And it’s not AI, or no AI, because there’s a whole range, right? Might just use AI just for idea generation or auto complete. Or I might use AI somewhere in between. I might use AI just to vibe code the whole thing and never even look at the code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I’ve defined these five sort of different levels. They align with more like academic literature around AI disclosure. And I’m suggesting that what we do is we provide just a simple plugin header for people to be able to specify their level of AI use in their plugin, and have that surfaced on the plugin directory, alongside user reviews and last time you updated the plugin and things like that, just as a little bit of extra metadata.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It would do a couple of things. One is it would let us gather some data, first of all, about how many plugins use AI and how well they do. Maybe we find that plugins that use AI get frequent updates, and high reviews. And maybe we find the opposite. But we don’t have any way of knowing right now. We have no way of telling whether a plugin is using AI or not. So that’s the proposal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:05] <strong>Nathan Wrigley:</strong> Yeah. No, it’s a really interesting idea because I know that in the podcasting space, which I’m familiar with as well as WordPress, that we have these 2.0 tags and one of them is this sort of declaration of whether or not AI has been used. But it’s not a sliding scale, it’s just sort of binary. I think there’s three choices. Yes, some, and the whole thing, or something along those lines. So it’d be interesting to see.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think that’s a really credible idea. I suppose my only concern is, in much the same way that when I visited the person on the corner of my street who sells eggs on the street and there’s an honesty box, and we go and buy the eggs and we pop the money into the little honesty box. I am well aware that most of those eggs go missing. Nobody puts money into the honesty box. It’ll be interesting to see how that in itself would get gamed. In other words, if the intuition was, okay, people now love the declaration of, there’s no AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let’s imagine a scenario where that turns out to be the popular thing, it would be an honesty box decision, wouldn’t it? Okay, I definitely built my entire plugin entirely with AI, but it’s going to promote much more effectively if I say that there was no AI used with that. You can see how the human in the loop is the weakest link there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, I think we’ll knock it on the head. Luke, what an absolutely fascinating and broad ranging discussion. Just before we go away, do you want to tell us a little bit about what it is that you do with your Crossword podcast just so that we can maybe get some earbuds listening to that as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:31] <strong>Luke Carbis:</strong> Yeah, absolutely. Jonathan Wold and I have been recording Crossword. It’s a WordPress podcast. We’ve been going for years and years, over a hundred episodes. We’re into season 11 now of Crossword, and love it if you would join us there and subscribe in wherever you get your podcasts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:50] <strong>Nathan Wrigley:</strong> What’s the URL for the website?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:51] <strong>Luke Carbis:</strong> You can find us at crossword.fm.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:54] <strong>Nathan Wrigley:</strong> Perfect. Well, Luke, what a fascinating discussion. I really appreciate it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Dear listener, we’ve been battling with the hail in Australia. We must have pressed pause a dozen times, and Luke’s had to repeat sentences over and over again. By the time this goes out, I’ll maybe have edited all of that away, but I appreciate your sticking power in what has proved to be a fairly fraught recording process. Thank you, Luke, for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:17] <strong>Luke Carbis:</strong> Thank you, Nathan. See you later.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://crossword.fm\">Luke Carbis</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Luke has been immersed in the WordPress world for around 20 years, with experience touching upon many strands of the ecosystem. He’s started his own businesses, worked in agencies as a developer and product lead, contributed to WordPress Core, helped organise WordCamps, and is now a member of the plugin review team. He also co-hosts the Crossword podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Recently, Luke delivered a talk at WordCamp Asia titled ‘Beyond the Guidelines: It’s Time to Evolve Our Standards for a Safer Plugin Ecosystem’ and today he’s here to share some of those ideas with us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start by talking about how WordPress.org’s plugin directory is facing a wave of new submissions, driven largely by the rise of AI-generated plugins. This has made it harder both for quality plugins to stand out and for users to find what they need, despite backend improvements and shorter review wait times. Luke discusses how the current discovery and ranking systems can be gamed, how active installs play a key role, and why there’s room for improvement in surfacing the best plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into Luke’s suggestions for making the plugin ecosystem better, including ways to connect WordPress.org accounts with sites, streamlining discoverability and installation of both custom and premium plugins, and the idea of officially supporting a commercial plugin marketplace, with proceeds potentially supporting core contributors and community events.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A thread throughout this conversation is how WordPress should respond to AI, not just as a technology but as an agent of change in the community. We look at the ethical implications, generational divides in attitude towards AI, and the importance of strong leadership as WordPress faces a period of challenge and uncertainty.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the future of the WordPress plugin directory, the role of commercial offerings, and how AI is reshaping open source communities, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://crossword.fm\">Crossword podcast</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/2026/03/18/introducing-the-connectors-api-in-wordpress-7-0/\">Introducing the Connectors API in WordPress 7.0</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://eventkoi.com\">Event Koi plugin</a></p>\";s: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 May 2026 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordCamp Central: Happy Birthday, 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:40:\"https://central.wordcamp.org/?p=14865555\";s:7:\"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://central.wordcamp.org/news/2026/05/happy-birthday-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5554:\"<p class=\"wp-block-paragraph\">Twenty-three years ago, a team of 2 friends released something into the world that they probably couldn’t have fully imagined the consequences of. Not just a publishing tool, though it became that for hundreds of millions of people but a reason to find each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress just turned 23. And if you’re not yet part of this community, I want to tell you what you’re missing. It starts, usually, with a problem you need to solve. A website. A blog. A business that needs a home on the internet. You find WordPress, and it works, and you move on with your life. That’s how most stories begin here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then something else happens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You find a forum thread where someone spent three hours helping a stranger debug a plugin for free. You find a WordCamp in your city and you show up mostly for the tote bag and the discount codes. You end up in a conversation over coffee with someone who has been building on WordPress since 2007, and they treat your questions like they’re worth answering. Because to them, they are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s when the story changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps are where this community becomes visible in a way that’s hard to describe to someone who hasn’t been. The person who wrote the code that quietly runs your website is sitting two seats away from someone who published their very first post this morning. A developer who has contributed thousands of hours to core is sharing a lunch table with a grandmother in Uganda who just launched her first online store.</p>\n\n\n\n<p class=\"wp-block-paragraph\">No hierarchy. No velvet ropes. Just people who showed up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You stay because someone grabs your arm at the end of a session and says, your plugin changed my business, and they mean it in a way that lands somewhere deep. You stay because the late nights and the loud rooms and the occasional quiet moment in a hallway conversation turn into something you didn’t expect: friendship. Partnership. For some of us, something that feels a lot like family.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is what open source looks like when it actually works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Not obligation. Not corporate mandate. Gratitude. People giving back because something was given to them first, freely, without condition, by people they may never meet. The whole thing runs on a kind of trust that shouldn’t work as well as it does, and yet here we are. Twenty-three years in. Still going.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On this birthday, I want to name some of the people and organizations who make this community what it is, who show up, contribute, advocate, and remind the rest of us why we’re here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People wishing WordPress a happy birthday:</p>\n\n\n\n<p class=\"wp-block-paragraph\">@thehopemonger, @stephendumba1, @noelinenandago, @adityakane, @ssebuwufumoses, @kiviiri, @unintended8 among others</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://central.wordcamp.org/files/2026/05/55169349766_4db7231672_k.jpg\"><img alt=\"\" class=\"wp-image-14866488\" height=\"1351\" src=\"https://central.wordcamp.org/files/2026/05/55169349766_4db7231672_k.jpg\" width=\"2048\" /></a></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><a href=\"https://central.wordcamp.org/files/2026/05/55169348566_2aa1ad9af9_k.jpg\"><img alt=\"\" class=\"wp-image-14866490\" height=\"1362\" src=\"https://central.wordcamp.org/files/2026/05/55169348566_2aa1ad9af9_k.jpg\" width=\"2047\" /></a></figure>\n</div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" src=\"https://mukono.wordcamp.org/2026/files/2026/05/IMG_9491-scaled.jpg\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">And the companies whose work brings so many of us to WordPress in the first place:</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://jetpack.com/\" rel=\"noopener\" target=\"_blank\">Jetpack</a>, <a href=\"http://wordpress.com/\">WordPress.com</a>, <a href=\"https://woocommerce.com/\">Woo</a>, <strong><a href=\"https://www.hostinger.com/\">Hostinger</a></strong>, <strong><a href=\"https://www.bluehost.com/\">Bluehost</a></strong>, <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://akismet.com/\">Akismet</a>, <a href=\"https://gravatar.com/\">Gravatar</a>, <a href=\"https://automattic.com/\">Automattic</a>, <a href=\"https://forthfocus.com/\">Forth Focus</a>, <a href=\"https://www.miniorange.com/\">miniOrange</a>, <a href=\"https://elementor.com/\">Elementor</a>, <a href=\"https://www.greengeeks.com/\">Green Geeks</a> among others</p>\n\n\n\n<p class=\"wp-block-paragraph\">This list is not complete. It never could be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The next WordCamp is coming. The late nights and the loud rooms and the quiet hallway moments are all waiting for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Don’t miss it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Happy Birthday, <a href=\"https://WordPress.org\">WordPress</a>. Let’s keep going—together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">#WordPressBirthday #WordPress #WordCamp #OpenSource #Community #Gratitude #Mukono #Kampala</p>\";s: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 May 2026 12:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Moses Cursor Ssebunya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Open Channels FM: Blackwall Sponsors Open Channels FM Founder for WordCamp Europe 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555007\";s:7:\"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:93:\"https://openchannels.fm/blackwall-sponsors-open-channels-fm-founder-for-wordcamp-europe-2026/\";s: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:127:\"We are excited to announce that our founder Bob Dunn will be attending WordCamp Europe 2026 thanks to the support of Blackwall.\";s: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 May 2026 10: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Get Ready for Open Channels FM Live, Our Upcoming Short Form Stream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554984\";s:7:\"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:91:\"https://openchannels.fm/get-ready-for-open-channels-fm-live-our-upcoming-short-form-stream/\";s: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:147:\"Bob Dunn announces the July launch of Open Channels FM Live, a short-form live stream focusing on the intersection of open source and the open 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 May 2026 09:01: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Open Channels FM: BackTalk on Federated Packages, AI’s Uncharted Consequences, and WordPress Troubleshooting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2554952\";s:7:\"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:112:\"https://openchannels.fm/backtalk-on-federated-packages-ais-uncharted-consequences-and-wordpress-troubleshooting/\";s: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:192:\"Conversations on OpenChannels FM highlight a federated approach to package distribution, concerns over AI consequences, and utilizing Site Health tools for effective WordPress troubleshooting.\";s: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 May 2026 08:33: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: RIP Sonny Rollins\";s:7:\"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:23:\"https://ma.tt/?p=152849\";s:7:\"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:\"https://ma.tt/2026/05/rip-sonny/\";s: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:2329:\"<p class=\"wp-block-paragraph\">Sonny Rollins, the <a href=\"https://open.spotify.com/album/2dtjLAwt7Cq763h6AupyPZ?si=1Q3DVca1TBmpsfwi7Ic1DQ\">Saxophone Colossus</a>, <a href=\"https://www.nytimes.com/2026/05/25/arts/music/sonny-rollins-dead.html\">has passed</a>. He is probably my favorite saxophonist, and while the aforementioned album is one of the five I would take to a deserted island, he has so many other good ones like <a href=\"https://open.spotify.com/album/4mFTVAzaQPPpWVvuvj4wAs?si=pgDxwrIBR5CDZ0Zr1nY7BA\">The Cutting Edge</a> which also has bagpipes, or <a href=\"https://open.spotify.com/album/5oNoDsIeu8Gty0kxJ7o0fo?si=IIQMcTJLR2uAggSn4LztxQ\">Sonny Side Up with Sonny Stitt and Dizzy Gillespie</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2024/11/rollins/\">WordPress 6.7</a> in November 2024 was named in honor of Rollins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We rarely choose a living musician for a release so the team actually prepared a gift we sent to him with the names of all the contributors.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-152853\" height=\"791\" src=\"https://i0.wp.com/ma.tt/files/2026/05/rollins6-7.jpg?resize=604%2C791&quality=89&ssl=1\" width=\"604\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Mr. Rollins,<br />Your immense contributions to music are a source of deep inspiration to the thousands of open source contributors to WordPress. We like to say ‘Code is poetry’, and we’re honored to pay tribute to you and your legacy of creativity and innovation by naming the 6.7 release of WordPress to you.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">It was sent to his publicist, so not sure if he got a chance to see it, but I hope it at least gave him a chuckle to have a random Open Source project celebrating him.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He was the last surviving jazzer in the <a href=\"https://en.wikipedia.org/wiki/A_Great_Day_in_Harlem\">Great Day in Harlem photo</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-152860\" height=\"403\" src=\"https://i0.wp.com/ma.tt/files/2026/05/great-day-harlem.jpg?resize=604%2C403&quality=89&ssl=1\" width=\"604\" /></figure>\";s: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 May 2026 01:21:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: Looking Ahead to WordCamp Europe 2026\";s:7:\"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://wordpress.org/news/?p=20721\";s:7:\"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/news/2026/05/wceu-2026-sessions/\";s: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:14153:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20725\" height=\"390\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1024%2C390&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>June 4-6, 2026 | ICE Kraków Congress Centre, Kraków, Poland</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring the WordPress community together in Kraków, Poland, from June 4–6 for Contributor Day, two conference days, and a program shaped by the ideas, tools, and people moving WordPress forward. This year’s schedule includes two official keynotes, hands-on workshops, panels, and sessions across development, accessibility, artificial intelligence, content, search, business, education, security, and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program offers a broad view of how WordPress is used today: as publishing software, a framework for building at scale, a tool for business growth, and a global open source project shaped by contributors around the world. Whether you build with WordPress, write for the web, support clients, teach new learners, or contribute to the project, WordCamp Europe offers a chance to learn from practical examples and connect them to the platform’s future.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-82d461e8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/tickets/\" style=\"background-color: #31416c;\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/schedule/\" style=\"background-color: #31416c;\">WCEU Schedule</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/wordcamp-europe-2026/\" style=\"background-color: #31416c;\">About WCEU 2026</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20724\" height=\"411\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1024%2C411&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Keynotes at WordCamp Europe 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote sessions at WordCamp Europe 2026 will give attendees two ways to look at WordPress today: through a large-scale institutional adoption story and through a broader closing reflection on where the project is headed. These sessions anchor the program while connecting many of the themes that appear throughout the conference, from infrastructure and governance to contribution, innovation, and the future of the web.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20726\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=1024%2C538&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Joachim Valdemar Yde and Francisco Borges Aurindo Barros will share how <a href=\"https://europe.wordcamp.org/2026/session/two-worlds-collide-wordpress-at-cern/\">CERN is adopting WordPress as its future content management system</a>. Their keynote will explore the governance, infrastructure, and migration work behind moving more than 800 websites onto a customized WordPress Service, offering a look at WordPress on an institutional scale.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-20727\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=1024%2C538&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Ma.tt Mullenweg will close WordCamp Europe 2026 with a broader look at <a href=\"https://europe.wordcamp.org/2026/session/closing-keynote/\">WordPress, the open web, and the ideas shaping what comes next</a>. As the event’s final keynote, this session will bring together many of the conversations happening across Contributor Day, sessions, workshops, and community gatherings throughout the week.</p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Program Themes to Watch at WCEU 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The rest of the WCEU themes are organized around topics that reflect the breadth of the WordPress ecosystem. These themes give attendees a way to follow the sessions most relevant to their work, from building better sites and improving content discovery to growing sustainable businesses, strengthening security, expanding access, and supporting the people and communities behind the project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search, Visibility, and Discovery</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Search continues to change, but helping people find the right information remains central to the web. WCEU’s search and SEO sessions look at how AI-generated answers, generative engine optimization, shifting user habits, and new discovery platforms are changing visibility for publishers, businesses, and builders. Sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-the-future-of-seo/\">Panel: The Future of SEO</a>, with Kacper Bartoszak, Pam Aungst Cronin, Alex Moss, David Cuesta, and Jovana Smoljanovic Tucakov, as well as Emma Young’s <a href=\"https://europe.wordcamp.org/2026/session/ai-search-why-your-whole-company-should-care/\">AI Search: Why Your Whole Company Should Care</a>, which looks at why AI-native discovery now affects content, development, partnerships, and business strategy.</p>\n\n\n\n<h3 class=\"wp-block-heading\">AI and the Future of Building</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence has a dedicated presence at WordCamp Europe 2026, with sessions that move beyond general discussion and into practical use cases for marketing, product work, development, and site management. Vito Peleg’s <a href=\"https://europe.wordcamp.org/2026/session/agentic-ai-wordpress-from-prompts-to-tools-systems/\">Agentic AI & WordPress: From Prompts to Tools & Systems</a> will explore how teams can move from simple prompts to AI workflows that execute tasks, while Monika Dimitrova’s <a href=\"https://europe.wordcamp.org/2026/session/ai-wont-save-your-marketing-but-it-might-save-your-time-and-money/\">AI Won’t Save Your Marketing (but it might save your time and money)</a> focuses on how small businesses can use AI without losing the strategy and identity that make their work effective.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Development and Technical Practice</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Development sessions at WCEU will focus on how WordPress sites, tools, and workflows are built for long-term use. The program includes a <a href=\"https://europe.wordcamp.org/2026/session/panel-inside-wordpress-7-0/\">Panel: Inside WordPress 7.0</a>, with contributors discussing the release, its features, and the process behind it, along with sessions such as Anukasha Singh’s <a href=\"https://europe.wordcamp.org/2026/session/smarter-plugin-permissions-with-the-abilities-api/\">Smarter Plugin Permissions with the Abilities API</a>, Ariel Ramos’s <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">Headless WordPress API Security in 10 Minutes</a>, and Dejan Rudić Vranić’s hands-on workshop <a href=\"https://europe.wordcamp.org/2026/session/build-your-developer-portfolio-a-hands-on-guide-to-fse/\">Build Your Developer Portfolio: A Hands-on Guide to FSE</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility and Inclusive Design</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Accessibility is part of building a better web for everyone, and WCEU’s accessibility sessions give attendees practical ways to make digital experiences more usable, inclusive, and sustainable. This theme connects directly to WordPress’s project values, from how content is structured to how themes, plugins, and interfaces are designed. For designers, developers, content creators, and project leads, these sessions offer a chance to make accessibility part of everyday decisions rather than a final step at the end of a project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Content, Writing, and Communication</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Content and writing sessions at WCEU will focus on how clearer communication helps users find what they need, teams share what they know, and communities make information easier to understand. Pooja Sanwal’s <a href=\"https://europe.wordcamp.org/2026/session/why-writing-still-matters-in-a-video-first-internet/\">Why Writing Still Matters in a Video-First Internet</a> looks at the role of written content as video continues to dominate online traffic, Fernando Tellado’s <a href=\"https://europe.wordcamp.org/2026/session/do-you-really-need-an-seo-geo-plugin-for-wordpress/\">Do You Really Need an SEO/GEO Pugin for WordPress</a>? explores what WordPress can already do for visibility, and Birgit Olzem’s <a href=\"https://europe.wordcamp.org/2026/session/documentation-as-a-love-language-for-the-future-you/\">Documentation as a Love Language for the Future You</a> looks at how simple documentation practices can help teams and communities preserve knowledge.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Security and Trust</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Security remains central to maintaining websites people can rely on. WCEU’s security-focused sessions look beyond basic reminders and into the risks, systems, and decisions that shape safer WordPress experiences. The broader program includes talks on <a href=\"https://europe.wordcamp.org/2026/session/fighting-spam-and-bots-on-wordpress-with-ai/\">AI-assisted spam and bot detection</a>, plugin permissions, and <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">secure headless WordPress architectures</a>, giving attendees practical ways to think about resilience, trust, and responsible site management.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Business and Sustainable Growth</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The business sessions at WCEU will explore how WordPress professionals turn ideas, services, and products into sustainable work. Debbie Levitt’s <a href=\"https://europe.wordcamp.org/2026/session/three-levels-of-atomic-product-market-fit/\">Three Levels of Atomic Product-Market Fit</a> looks at how teams can understand product-market fit beyond a single metric, Irfani Silviana’s <a href=\"https://europe.wordcamp.org/2026/session/wordpress-roi-map-engineering-business-value-with-bmc/\">WordPress ROI Map: Engineering Business Value with BMC</a> connects technical decisions to business outcomes, and Liza Bogatyrev’s <a href=\"https://europe.wordcamp.org/2026/session/stop-positioning-into-obscurity-to-unlock-growth/\">Stop Positioning Into Obscurity to Unlock Growth</a> focuses on how clearer positioning can support revenue and adoption.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Education, Contribution, and Community</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress grows when people can learn, participate, and find a place to contribute. WCEU’s education and community sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-rethinking-learning-in-wordpress/\">Panel: Rethinking Learning in WordPress</a>, featuring Mary Hubbard, Rade Jekic, Klaus Harris, Natalia Basiura, and Benjamin Zekavica, along with Daniel Grzonka’s <a href=\"https://europe.wordcamp.org/2026/session/the-new-engineer-psychology-systems-and-open-source/\">The New Engineer: Psychology, Systems, and Open Source</a>, Ivana Ćirković’s <a href=\"https://europe.wordcamp.org/2026/session/what-it-really-means-to-be-a-part-of-the-wp-credits-program/\">What It (Really) Means To Be a Part of the WP Credits Program</a>?, and Jörg Pareigis’s <a href=\"https://europe.wordcamp.org/2026/session/sovereign-university-ai-tutors-powered-by-wordpress/\">Sovereign University AI Tutors Powered by WordPress</a>. Together, these sessions connect contributor onboarding, academic partnerships, open source learning, and the future skills people need to work with WordPress.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" style=\"background-color: #31416c;\">Get Your Tickets Today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Explore the Full Program</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring together many parts of the WordPress ecosystem in one place: software, publishing, business, design, education, and community. The keynotes and theme-based sessions offer a broad look at how WordPress is being used today and how contributors, builders, and users are preparing for what comes next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the full <a href=\"https://europe.wordcamp.org/2026/schedule/\">WordCamp Europe 2026 schedule</a> and choose the sessions that match how you use, build, teach, support, or contribute to WordPress. <a href=\"https://europe.wordcamp.org/2026/tickets/\">Tickets are available now</a> for attendees joining the community in Kraków. All sessions will be live streamed. Keep checking back for updates. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-18817\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Kraków is calling. See you at WordCamp Europe 2026!</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s: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, 26 May 2026 12:52:13 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"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:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 22 Jun 2026 18:45:42 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Mon, 22 Jun 2026 18:30:42 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}s:5:\"build\";i:1772760451;s:21:\"cache_expiration_time\";i:1782197142;s:23:\"__cache_expiration_time\";i:1782197142;}','off');
/*!40000 ALTER TABLE `wp_xwml_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_postmeta`
--
DROP TABLE IF EXISTS `wp_xwml_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=13292 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_postmeta`
--
LOCK TABLES `wp_xwml_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_xwml_postmeta` DISABLE KEYS */;
INSERT INTO `wp_xwml_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,1,'_edit_lock','1408545391:1'),(3,2,'_edit_lock','1452219706:1'),(2543,396,'_wp_attached_file','2014/01/wve-white-flag-260.jpg'),(6,4,'blogger_blog','monicarenata.blogspot.com'),(7,4,'blogger_author','Monica Renata'),(8,4,'blogger_permalink','/2014/08/the-cannots-of-life.html'),(9,4,'blogger_internal','/feeds/64832133018470584/posts/default/5670072780302505041'),(12,5,'blogger_blog','monicarenata.blogspot.com'),(13,5,'blogger_author','Monica Renata'),(14,5,'blogger_permalink','/2014/08/sadness-is-born.html'),(15,5,'blogger_internal','/feeds/64832133018470584/posts/default/3580099226133745425'),(18,6,'blogger_blog','monicarenata.blogspot.com'),(19,6,'blogger_author','Monica Renata'),(20,6,'blogger_permalink','/2014/07/pretty-little-picture.html'),(21,6,'blogger_internal','/feeds/64832133018470584/posts/default/1258168318742469945'),(24,7,'blogger_blog','monicarenata.blogspot.com'),(25,7,'blogger_author','Monica Renata'),(26,7,'blogger_permalink','/2014/07/some-things-will-never-change.html'),(27,7,'blogger_internal','/feeds/64832133018470584/posts/default/7514871330426043224'),(30,8,'blogger_blog','monicarenata.blogspot.com'),(31,8,'blogger_author','Monica Renata'),(32,8,'blogger_permalink','/2014/07/pretty-flowers.html'),(33,8,'blogger_internal','/feeds/64832133018470584/posts/default/167950106431627425'),(36,9,'blogger_blog','monicarenata.blogspot.com'),(37,9,'blogger_author','Monica Renata'),(38,9,'blogger_permalink','/2014/07/confessions-of-heart.html'),(39,9,'blogger_internal','/feeds/64832133018470584/posts/default/9150506916111653736'),(42,10,'blogger_blog','monicarenata.blogspot.com'),(43,10,'blogger_author','Monica Renata'),(44,10,'blogger_permalink','/2014/07/never-ending-time.html'),(45,10,'blogger_internal','/feeds/64832133018470584/posts/default/8676092830523822460'),(2657,407,'_wp_attached_file','2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg'),(48,11,'blogger_blog','monicarenata.blogspot.com'),(49,11,'blogger_author','Monica Renata'),(50,11,'blogger_permalink','/2014/07/mr-care-too-much.html'),(51,11,'blogger_internal','/feeds/64832133018470584/posts/default/6674040449591192614'),(2570,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:278;s:6:\"height\";i:273;s:4:\"file\";s:17:\"2014/01/Ready.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Ready-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(54,12,'blogger_blog','monicarenata.blogspot.com'),(55,12,'blogger_author','Monica Renata'),(56,12,'blogger_permalink','/2014/06/i-have-been-thinking.html'),(57,12,'blogger_internal','/feeds/64832133018470584/posts/default/994884635692717278'),(2139,353,'_wp_attached_file','2014/05/1038.png'),(60,13,'blogger_blog','monicarenata.blogspot.com'),(61,13,'blogger_author','Monica Renata'),(62,13,'blogger_permalink','/2014/06/happytown-train-stop.html'),(63,13,'blogger_internal','/feeds/64832133018470584/posts/default/8648068443214770357'),(2155,355,'_wp_attached_file','2014/05/hear-me-now.jpg'),(2569,397,'_wp_attached_file','2014/01/Ready.jpg'),(66,14,'blogger_blog','monicarenata.blogspot.com'),(67,14,'blogger_author','Monica Renata'),(68,14,'blogger_permalink','/2014/06/the-tears-of-willow.html'),(69,14,'blogger_internal','/feeds/64832133018470584/posts/default/371847622857266163'),(72,15,'blogger_blog','monicarenata.blogspot.com'),(73,15,'blogger_author','Monica Renata'),(74,15,'blogger_permalink','/2014/06/if-i-didnt-care.html'),(75,15,'blogger_internal','/feeds/64832133018470584/posts/default/2938886087495082161'),(2163,356,'_wp_attached_file','2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg'),(78,16,'blogger_blog','monicarenata.blogspot.com'),(79,16,'blogger_author','Monica Renata'),(80,16,'blogger_permalink','/2014/06/im-not-your.html'),(81,16,'blogger_internal','/feeds/64832133018470584/posts/default/8643362615106369648'),(2172,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:51:\"2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Love-Wallpapers-love-33002134-1920-1200-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:\"Love-Wallpapers-love-33002134-1920-1200-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Love-Wallpapers-love-33002134-1920-1200-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Love-Wallpapers-love-33002134-1920-1200-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:52:\"Love-Wallpapers-love-33002134-1920-1200-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(84,17,'blogger_blog','monicarenata.blogspot.com'),(85,17,'blogger_author','Monica Renata'),(86,17,'blogger_permalink','/2014/06/mistakes.html'),(87,17,'blogger_internal','/feeds/64832133018470584/posts/default/857000582139645464'),(2201,360,'_wp_attached_file','2014/04/flipflops__1282149259_0040.jpg'),(2579,398,'_wp_attached_file','2014/01/Nap-20time-20ready-20to-20post.jpg'),(90,18,'blogger_blog','monicarenata.blogspot.com'),(91,18,'blogger_author','Monica Renata'),(92,18,'blogger_permalink','/2014/06/thanks-for-believing-in-me.html'),(93,18,'blogger_internal','/feeds/64832133018470584/posts/default/3929957222110118859'),(96,19,'blogger_blog','monicarenata.blogspot.com'),(97,19,'blogger_author','Monica Renata'),(98,19,'blogger_permalink','/2014/06/to-decode-riddle.html'),(99,19,'blogger_internal','/feeds/64832133018470584/posts/default/1377412161311359865'),(2217,361,'_wp_attached_file','2014/04/When-There-Are-Footprints-On-The-Moon.jpg'),(102,20,'blogger_blog','monicarenata.blogspot.com'),(103,20,'blogger_author','Monica Renata'),(104,20,'blogger_permalink','/2014/06/beautiful-lies.html'),(105,20,'blogger_internal','/feeds/64832133018470584/posts/default/4077799038113714656'),(108,21,'blogger_blog','monicarenata.blogspot.com'),(109,21,'blogger_author','Monica Renata'),(110,21,'blogger_permalink','/2014/06/thanks-for-being-great-friend.html'),(111,21,'blogger_internal','/feeds/64832133018470584/posts/default/7319698686885515792'),(114,22,'blogger_blog','monicarenata.blogspot.com'),(115,22,'blogger_author','Monica Renata'),(116,22,'blogger_permalink','/2014/06/falling-in-love-with-potential.html'),(117,22,'blogger_internal','/feeds/64832133018470584/posts/default/7144557193561317344'),(2587,399,'_wp_attached_file','2013/12/dancers1.jpg'),(120,23,'blogger_blog','monicarenata.blogspot.com'),(121,23,'blogger_author','Monica Renata'),(122,23,'blogger_permalink','/2014/06/the-sun-cant-shine-same.html'),(123,23,'blogger_internal','/feeds/64832133018470584/posts/default/3132949311774506105'),(2224,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:373;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2014/04/e505355f36634704486fae0eebaba121.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"e505355f36634704486fae0eebaba121-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"e505355f36634704486fae0eebaba121-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"e505355f36634704486fae0eebaba121-373x372.jpg\";s:5:\"width\";i:373;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2588,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1275;s:6:\"height\";i:1650;s:4:\"file\";s:20:\"2013/12/dancers1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dancers1-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:\"dancers1-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"dancers1-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"dancers1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"dancers1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(126,24,'blogger_blog','monicarenata.blogspot.com'),(127,24,'blogger_author','Monica Renata'),(128,24,'blogger_permalink','/2014/06/the-bully-does-it-exist-in-adult-world.html'),(129,24,'blogger_internal','/feeds/64832133018470584/posts/default/8448131149061728240'),(2232,363,'_wp_attached_file','2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg'),(132,25,'blogger_blog','monicarenata.blogspot.com'),(133,25,'blogger_author','Monica Renata'),(134,25,'blogger_permalink','/2014/05/i-feel-sorry-for-no-one.html'),(135,25,'blogger_internal','/feeds/64832133018470584/posts/default/3810983994139740298'),(2250,365,'_wp_attached_file','2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg'),(138,26,'blogger_blog','monicarenata.blogspot.com'),(139,26,'blogger_author','Monica Renata'),(140,26,'blogger_permalink','/2014/05/finding-happy.html'),(141,26,'blogger_internal','/feeds/64832133018470584/posts/default/6118544568286977390'),(2270,367,'_wp_attached_file','2014/03/feathers-in-the-wind.jpg'),(2595,400,'_wp_attached_file','2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg'),(144,27,'blogger_blog','monicarenata.blogspot.com'),(145,27,'blogger_author','Monica Renata'),(146,27,'blogger_permalink','/2014/05/the-rock.html'),(147,27,'blogger_internal','/feeds/64832133018470584/posts/default/2917313745467197125'),(2280,368,'_wp_attached_file','2014/03/10838428-256-k757623.jpg'),(150,28,'blogger_blog','monicarenata.blogspot.com'),(151,28,'blogger_author','Monica Renata'),(152,28,'blogger_permalink','/2014/05/waiting-forothers-to-hold-my-hand-by.html'),(153,28,'blogger_internal','/feeds/64832133018470584/posts/default/4171923281127738013'),(2317,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:300;s:4:\"file\";s:14:\"2014/03/35.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2603,401,'_wp_attached_file','2013/12/Can_tSleep.jpg'),(156,29,'blogger_blog','monicarenata.blogspot.com'),(157,29,'blogger_author','Monica Renata'),(158,29,'blogger_permalink','/2014/05/let-freedom-ring.html'),(159,29,'blogger_internal','/feeds/64832133018470584/posts/default/6459975606422319914'),(162,30,'blogger_blog','monicarenata.blogspot.com'),(163,30,'blogger_author','Monica Renata'),(164,30,'blogger_permalink','/2014/05/stormy-day.html'),(165,30,'blogger_internal','/feeds/64832133018470584/posts/default/3236121290571181279'),(2340,374,'_wp_attached_file','2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg'),(168,31,'blogger_blog','monicarenata.blogspot.com'),(169,31,'blogger_author','Monica Renata'),(170,31,'blogger_permalink','/2014/05/endless-echoes.html'),(171,31,'blogger_internal','/feeds/64832133018470584/posts/default/7692654983413279827'),(174,32,'blogger_blog','monicarenata.blogspot.com'),(175,32,'blogger_author','Monica Renata'),(176,32,'blogger_permalink','/2014/05/the-thrill-is-gone.html'),(177,32,'blogger_internal','/feeds/64832133018470584/posts/default/2003243547735153634'),(2370,377,'_wp_attached_file','2014/02/winter-to-spring.jpg'),(2611,402,'_wp_attached_file','2013/12/fog-in-dark-forest.jpg'),(180,33,'blogger_blog','monicarenata.blogspot.com'),(181,33,'blogger_author','Monica Renata'),(182,33,'blogger_permalink','/2014/05/every-ounce-of-me.html'),(183,33,'blogger_internal','/feeds/64832133018470584/posts/default/1390082107196010073'),(2379,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:985;s:6:\"height\";i:627;s:4:\"file\";s:53:\"2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Personal-PAC-10-2-12-No-Exceptions-back-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:53:\"Personal-PAC-10-2-12-No-Exceptions-back-1-300x190.png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:53:\"Personal-PAC-10-2-12-No-Exceptions-back-1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:53:\"Personal-PAC-10-2-12-No-Exceptions-back-1-985x576.png\";s:5:\"width\";i:985;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2612,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:819;s:4:\"file\";s:30:\"2013/12/fog-in-dark-forest.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"fog-in-dark-forest-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:\"fog-in-dark-forest-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"fog-in-dark-forest-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"fog-in-dark-forest-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(186,34,'blogger_blog','monicarenata.blogspot.com'),(187,34,'blogger_author','Monica Renata'),(188,34,'blogger_permalink','/2014/05/i-cant-make-you-by-monica-renata-i-am.html'),(189,34,'blogger_internal','/feeds/64832133018470584/posts/default/4570624971911756148'),(2394,379,'_wp_attached_file','2014/02/You-Are-Beautiful.jpg'),(2621,403,'_wp_attached_file','2013/12/438906496_640.jpg'),(192,35,'blogger_blog','monicarenata.blogspot.com'),(193,35,'blogger_author','Monica Renata'),(194,35,'blogger_permalink','/2014/05/words-vs-actions.html'),(195,35,'blogger_internal','/feeds/64832133018470584/posts/default/6721923242987843186'),(2402,380,'_wp_attached_file','2014/02/hanging-252520cliff.jpg'),(198,36,'blogger_blog','monicarenata.blogspot.com'),(199,36,'blogger_author','Monica Renata'),(200,36,'blogger_permalink','/2014/05/you-cant-let-same-thing-keep-hurting.html'),(201,36,'blogger_internal','/feeds/64832133018470584/posts/default/1029017315175675812'),(204,37,'blogger_blog','monicarenata.blogspot.com'),(205,37,'blogger_author','Monica Renata'),(206,37,'blogger_permalink','/2014/05/sandman.html'),(207,37,'blogger_internal','/feeds/64832133018470584/posts/default/8044974114353159768'),(210,38,'blogger_blog','monicarenata.blogspot.com'),(211,38,'blogger_author','Monica Renata'),(212,38,'blogger_permalink','/2014/04/patience-is-virtue.html'),(213,38,'blogger_internal','/feeds/64832133018470584/posts/default/5340939243980987414'),(216,39,'blogger_blog','monicarenata.blogspot.com'),(217,39,'blogger_author','Monica Renata'),(218,39,'blogger_permalink','/2014/04/summer-days.html'),(219,39,'blogger_internal','/feeds/64832133018470584/posts/default/2553862229286280361'),(2461,387,'blogger_permalink','http://www.infobarrel.com/media/image/78219_max.jpg'),(222,40,'blogger_blog','monicarenata.blogspot.com'),(223,40,'blogger_author','Monica Renata'),(224,40,'blogger_permalink','/2014/04/moon-love-stop-overvaluing-fainting.html'),(225,40,'blogger_internal','/feeds/64832133018470584/posts/default/547415804124586502'),(228,41,'blogger_blog','monicarenata.blogspot.com'),(229,41,'blogger_author','Monica Renata'),(230,41,'blogger_permalink','/2014/04/dreadful-holiday.html'),(231,41,'blogger_internal','/feeds/64832133018470584/posts/default/7352497437189134144'),(234,42,'blogger_blog','monicarenata.blogspot.com'),(235,42,'blogger_author','Monica Renata'),(236,42,'blogger_permalink','/2014/04/overlooked-birth.html'),(237,42,'blogger_internal','/feeds/64832133018470584/posts/default/4479500146184696631'),(240,43,'blogger_blog','monicarenata.blogspot.com'),(241,43,'blogger_author','Monica Renata'),(242,43,'blogger_permalink','/2014/04/life-purpose-love.html'),(243,43,'blogger_internal','/feeds/64832133018470584/posts/default/55587145233944111'),(246,44,'blogger_blog','monicarenata.blogspot.com'),(247,44,'blogger_author','Monica Renata'),(248,44,'blogger_permalink','/2014/04/kissed-midnight-moon.html'),(249,44,'blogger_internal','/feeds/64832133018470584/posts/default/4868281847866291585'),(252,45,'blogger_blog','monicarenata.blogspot.com'),(253,45,'blogger_author','Monica Renata'),(254,45,'blogger_permalink','/2014/04/i-am-too-nice.html'),(255,45,'blogger_internal','/feeds/64832133018470584/posts/default/8296375654201863021'),(258,46,'blogger_blog','monicarenata.blogspot.com'),(259,46,'blogger_author','Monica Renata'),(260,46,'blogger_permalink','/2014/04/appreciate-night-sky.html'),(261,46,'blogger_internal','/feeds/64832133018470584/posts/default/3998241052751173289'),(2639,405,'_wp_attached_file','2013/12/the-giving-tree-jerry-kirk.jpg'),(264,47,'blogger_blog','monicarenata.blogspot.com'),(265,47,'blogger_author','Monica Renata'),(266,47,'blogger_permalink','/2014/04/i-thought.html'),(267,47,'blogger_internal','/feeds/64832133018470584/posts/default/1913524203824089685'),(270,48,'blogger_blog','monicarenata.blogspot.com'),(271,48,'blogger_author','Monica Renata'),(272,48,'blogger_permalink','/2014/04/the-sun-after-story.html'),(273,48,'blogger_internal','/feeds/64832133018470584/posts/default/2531624329653666492'),(276,49,'blogger_blog','monicarenata.blogspot.com'),(277,49,'blogger_author','Monica Renata'),(278,49,'blogger_permalink','/2014/04/standing-up-is-hard-part.html'),(279,49,'blogger_internal','/feeds/64832133018470584/posts/default/2236562586500210462'),(282,50,'blogger_blog','monicarenata.blogspot.com'),(283,50,'blogger_author','Monica Renata'),(284,50,'blogger_permalink','/2014/04/holding-on.html'),(285,50,'blogger_internal','/feeds/64832133018470584/posts/default/3240215487725428624'),(288,51,'blogger_blog','monicarenata.blogspot.com'),(289,51,'blogger_author','Monica Renata'),(290,51,'blogger_permalink','/2014/04/bubble.html'),(291,51,'blogger_internal','/feeds/64832133018470584/posts/default/338140329364129187'),(2631,404,'_wp_attached_file','2013/12/walls.jpg'),(294,52,'blogger_blog','monicarenata.blogspot.com'),(295,52,'blogger_author','Monica Renata'),(296,52,'blogger_permalink','/2014/03/full-circle.html'),(297,52,'blogger_internal','/feeds/64832133018470584/posts/default/8006616915151110514'),(2632,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:17:\"2013/12/walls.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"walls-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:\"walls-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"walls-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"walls-500x576.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(300,53,'blogger_blog','monicarenata.blogspot.com'),(301,53,'blogger_author','Monica Renata'),(302,53,'blogger_permalink','/2014/03/feather.html'),(303,53,'blogger_internal','/feeds/64832133018470584/posts/default/3902511227331950391'),(306,54,'blogger_blog','monicarenata.blogspot.com'),(307,54,'blogger_author','Monica Renata'),(308,54,'blogger_permalink','/2014/03/cadavers-dream.html'),(309,54,'blogger_internal','/feeds/64832133018470584/posts/default/443503486864859458'),(312,55,'blogger_blog','monicarenata.blogspot.com'),(313,55,'blogger_author','Monica Renata'),(314,55,'blogger_permalink','/2014/03/i-dreamed-dream.html'),(315,55,'blogger_internal','/feeds/64832133018470584/posts/default/3923720336610515566'),(318,56,'blogger_blog','monicarenata.blogspot.com'),(319,56,'blogger_author','Monica Renata'),(320,56,'blogger_permalink','/2014/03/promises-are-they-really-made-to-be.html'),(321,56,'blogger_internal','/feeds/64832133018470584/posts/default/1187635822202955246'),(324,57,'blogger_blog','monicarenata.blogspot.com'),(325,57,'blogger_author','Monica Renata'),(326,57,'blogger_permalink','/2014/03/heros-curse.html'),(327,57,'blogger_internal','/feeds/64832133018470584/posts/default/6553206398004673416'),(330,58,'blogger_blog','monicarenata.blogspot.com'),(331,58,'blogger_author','Monica Renata'),(332,58,'blogger_permalink','/2014/03/the-path-to-victory.html'),(333,58,'blogger_internal','/feeds/64832133018470584/posts/default/8466254454051595613'),(336,59,'blogger_blog','monicarenata.blogspot.com'),(337,59,'blogger_author','Monica Renata'),(338,59,'blogger_permalink','/2014/03/the-unnoticed-bloom.html'),(339,59,'blogger_internal','/feeds/64832133018470584/posts/default/5668484533168372784'),(342,60,'blogger_blog','monicarenata.blogspot.com'),(343,60,'blogger_author','Monica Renata'),(344,60,'blogger_permalink','/2014/03/fishermans-treasure.html'),(345,60,'blogger_internal','/feeds/64832133018470584/posts/default/4700630450962166882'),(348,61,'blogger_blog','monicarenata.blogspot.com'),(349,61,'blogger_author','Monica Renata'),(350,61,'blogger_permalink','/2014/03/porcelain-doll.html'),(351,61,'blogger_internal','/feeds/64832133018470584/posts/default/3420136610505136618'),(354,62,'blogger_blog','monicarenata.blogspot.com'),(355,62,'blogger_author','Monica Renata'),(356,62,'blogger_permalink','/2014/03/taste-your-words.html'),(357,62,'blogger_internal','/feeds/64832133018470584/posts/default/8336764831203907068'),(360,63,'blogger_blog','monicarenata.blogspot.com'),(361,63,'blogger_author','Monica Renata'),(362,63,'blogger_permalink','/2014/03/the-letter.html'),(363,63,'blogger_internal','/feeds/64832133018470584/posts/default/2213449099549290322'),(366,64,'blogger_blog','monicarenata.blogspot.com'),(367,64,'blogger_author','Monica Renata'),(368,64,'blogger_permalink','/2014/03/time-how-much-do-you-really-have.html'),(369,64,'blogger_internal','/feeds/64832133018470584/posts/default/8742836480102023224'),(372,65,'blogger_blog','monicarenata.blogspot.com'),(373,65,'blogger_author','Monica Renata'),(374,65,'blogger_permalink','/2014/03/the-search-for-happy.html'),(375,65,'blogger_internal','/feeds/64832133018470584/posts/default/3758993427730599614'),(378,66,'blogger_blog','monicarenata.blogspot.com'),(379,66,'blogger_author','Monica Renata'),(380,66,'blogger_permalink','/2014/03/journey-to-mountain.html'),(381,66,'blogger_internal','/feeds/64832133018470584/posts/default/2115146898645354936'),(2460,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:294;s:4:\"file\";s:21:\"2014/02/78219_max.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"78219_max-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:21:\"78219_max-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(384,67,'blogger_blog','monicarenata.blogspot.com'),(385,67,'blogger_author','Monica Renata'),(386,67,'blogger_permalink','/2014/03/going-it-alone.html'),(387,67,'blogger_internal','/feeds/64832133018470584/posts/default/6103998845375895771'),(390,68,'blogger_blog','monicarenata.blogspot.com'),(391,68,'blogger_author','Monica Renata'),(392,68,'blogger_permalink','/2014/03/the-wait.html'),(393,68,'blogger_internal','/feeds/64832133018470584/posts/default/5569166224167637148'),(2640,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:693;s:4:\"file\";s:38:\"2013/12/the-giving-tree-jerry-kirk.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"the-giving-tree-jerry-kirk-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:\"the-giving-tree-jerry-kirk-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"the-giving-tree-jerry-kirk-600x372.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"the-giving-tree-jerry-kirk-600x576.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(396,69,'blogger_blog','monicarenata.blogspot.com'),(397,69,'blogger_author','Monica Renata'),(398,69,'blogger_permalink','/2014/03/insides.html'),(399,69,'blogger_internal','/feeds/64832133018470584/posts/default/9124561470214986498'),(402,70,'blogger_blog','monicarenata.blogspot.com'),(403,70,'blogger_author','Monica Renata'),(404,70,'blogger_permalink','/2014/02/the-bricks-they-shall-throw.html'),(405,70,'blogger_internal','/feeds/64832133018470584/posts/default/4660721599086177998'),(2644,125,'_thumbnail_id','405'),(408,71,'blogger_blog','monicarenata.blogspot.com'),(409,71,'blogger_author','Monica Renata'),(410,71,'blogger_permalink','/2014/02/they-said-i-wouldnt-make-it.html'),(411,71,'blogger_internal','/feeds/64832133018470584/posts/default/7544096834189640209'),(2456,88,'_thumbnail_id','386'),(414,72,'blogger_blog','monicarenata.blogspot.com'),(415,72,'blogger_author','Monica Renata'),(416,72,'blogger_permalink','/2014/02/fly.html'),(417,72,'blogger_internal','/feeds/64832133018470584/posts/default/1961857548765538164'),(420,73,'blogger_blog','monicarenata.blogspot.com'),(421,73,'blogger_author','Monica Renata'),(422,73,'blogger_permalink','/2014/02/winter-to-spring.html'),(423,73,'blogger_internal','/feeds/64832133018470584/posts/default/2454491900783052807'),(2455,386,'blogger_author','Monica Renata'),(426,74,'blogger_blog','monicarenata.blogspot.com'),(427,74,'blogger_author','Monica Renata'),(428,74,'blogger_permalink','/2014/02/no-exceptions.html'),(429,74,'blogger_internal','/feeds/64832133018470584/posts/default/6982928855892672497'),(432,75,'blogger_blog','monicarenata.blogspot.com'),(433,75,'blogger_author','Monica Renata'),(434,75,'blogger_permalink','/2014/02/just-give-it-your-allor-maybe-not.html'),(435,75,'blogger_internal','/feeds/64832133018470584/posts/default/6696607991320353285'),(438,76,'blogger_blog','monicarenata.blogspot.com'),(439,76,'blogger_author','Monica Renata'),(440,76,'blogger_permalink','/2014/02/dont-get-too-comfortable.html'),(441,76,'blogger_internal','/feeds/64832133018470584/posts/default/8555965556449968942'),(2454,386,'blogger_blog','monicarenata.blogspot.com'),(444,77,'blogger_blog','monicarenata.blogspot.com'),(445,77,'blogger_author','Monica Renata'),(446,77,'blogger_permalink','/2014/02/transform.html'),(447,77,'blogger_internal','/feeds/64832133018470584/posts/default/1352463429534860461'),(450,78,'blogger_blog','monicarenata.blogspot.com'),(451,78,'blogger_author','Monica Renata'),(452,78,'blogger_permalink','/2014/02/its-hard-for-me-to-express-my-feelings.html'),(453,78,'blogger_internal','/feeds/64832133018470584/posts/default/2166660283627062079'),(456,79,'blogger_blog','monicarenata.blogspot.com'),(457,79,'blogger_author','Monica Renata'),(458,79,'blogger_permalink','/2014/02/im-beautiful.html'),(459,79,'blogger_internal','/feeds/64832133018470584/posts/default/1897090982908691467'),(462,80,'blogger_blog','monicarenata.blogspot.com'),(463,80,'blogger_author','Monica Renata'),(464,80,'blogger_permalink','/2014/02/the-trap.html'),(465,80,'blogger_internal','/feeds/64832133018470584/posts/default/1749507679016239962'),(2647,406,'_wp_attached_file','2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg'),(468,81,'blogger_blog','monicarenata.blogspot.com'),(469,81,'blogger_author','Monica Renata'),(470,81,'blogger_permalink','/2014/02/paper-people.html'),(471,81,'blogger_internal','/feeds/64832133018470584/posts/default/2566214325720883235'),(2648,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:237;s:4:\"file\";s:42:\"2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_mlc6c1b6Hl1qf5qxco1_250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(474,82,'blogger_blog','monicarenata.blogspot.com'),(475,82,'blogger_author','Monica Renata'),(476,82,'blogger_permalink','/2014/02/prettier-than-me.html'),(477,82,'blogger_internal','/feeds/64832133018470584/posts/default/712316729856480163'),(2453,386,'blogger_permalink','http://3.bp.blogspot.com/_tTO97eiZUWc/SSQiN2DVrHI/AAAAAAAAAGY/ChKmTiUoEMo/s400/cb_couple_bed_070601_ms.jpg'),(480,83,'blogger_blog','monicarenata.blogspot.com'),(481,83,'blogger_author','Monica Renata'),(482,83,'blogger_permalink','/2014/02/i-understand.html'),(483,83,'blogger_internal','/feeds/64832133018470584/posts/default/4208293111847682339'),(486,84,'blogger_blog','monicarenata.blogspot.com'),(487,84,'blogger_author','Monica Renata'),(488,84,'blogger_permalink','/2014/02/in-corner.html'),(489,84,'blogger_internal','/feeds/64832133018470584/posts/default/2195627682326074961'),(492,85,'blogger_blog','monicarenata.blogspot.com'),(493,85,'blogger_author','Monica Renata'),(494,85,'blogger_permalink','/2014/02/i-missed-bus.html'),(495,85,'blogger_internal','/feeds/64832133018470584/posts/default/5280173062402158821'),(498,86,'blogger_blog','monicarenata.blogspot.com'),(499,86,'blogger_author','Monica Renata'),(500,86,'blogger_permalink','/2014/02/valentines-day-freebie.html'),(501,86,'blogger_internal','/feeds/64832133018470584/posts/default/1714434080750591534'),(2659,407,'blogger_permalink','http://i.istockimg.com/file_thumbview_approve/9544716/2/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg'),(504,87,'blogger_blog','monicarenata.blogspot.com'),(505,87,'blogger_author','Monica Renata'),(506,87,'blogger_permalink','/2014/02/cliche-love-poem.html'),(507,87,'blogger_internal','/feeds/64832133018470584/posts/default/5259049484486247388'),(510,88,'blogger_blog','monicarenata.blogspot.com'),(511,88,'blogger_author','Monica Renata'),(512,88,'blogger_permalink','/2014/02/five.html'),(513,88,'blogger_internal','/feeds/64832133018470584/posts/default/7033902833553950562'),(516,89,'blogger_blog','monicarenata.blogspot.com'),(517,89,'blogger_author','Monica Renata'),(518,89,'blogger_permalink','/2014/02/stone-faced-soldier.html'),(519,89,'blogger_internal','/feeds/64832133018470584/posts/default/2344411352229611707'),(522,90,'blogger_blog','monicarenata.blogspot.com'),(523,90,'blogger_author','Monica Renata'),(524,90,'blogger_permalink','/2014/02/you-i-love-you.html'),(525,90,'blogger_internal','/feeds/64832133018470584/posts/default/546250230094709711'),(528,91,'blogger_blog','monicarenata.blogspot.com'),(529,91,'blogger_author','Monica Renata'),(530,91,'blogger_permalink','/2014/02/best-served-cold.html'),(531,91,'blogger_internal','/feeds/64832133018470584/posts/default/3533923716545586568'),(534,92,'blogger_blog','monicarenata.blogspot.com'),(535,92,'blogger_author','Monica Renata'),(536,92,'blogger_permalink','/2014/02/time-waits.html'),(537,92,'blogger_internal','/feeds/64832133018470584/posts/default/393497253487297840'),(540,93,'blogger_blog','monicarenata.blogspot.com'),(541,93,'blogger_author','Monica Renata'),(542,93,'blogger_permalink','/2014/02/lost-heart.html'),(543,93,'blogger_internal','/feeds/64832133018470584/posts/default/7581870391029095565'),(546,94,'blogger_blog','monicarenata.blogspot.com'),(547,94,'blogger_author','Monica Renata'),(548,94,'blogger_permalink','/2014/02/hope-in-perfection.html'),(549,94,'blogger_internal','/feeds/64832133018470584/posts/default/2436905913640924386'),(552,95,'blogger_blog','monicarenata.blogspot.com'),(553,95,'blogger_author','Monica Renata'),(554,95,'blogger_permalink','/2014/01/sticky-situations.html'),(555,95,'blogger_internal','/feeds/64832133018470584/posts/default/5615358513702729271'),(558,96,'blogger_blog','monicarenata.blogspot.com'),(559,96,'blogger_author','Monica Renata'),(560,96,'blogger_permalink','/2014/01/winter-storm.html'),(561,96,'blogger_internal','/feeds/64832133018470584/posts/default/7826527116376806118'),(564,97,'blogger_blog','monicarenata.blogspot.com'),(565,97,'blogger_author','Monica Renata'),(566,97,'blogger_permalink','/2014/01/are-you-living.html'),(567,97,'blogger_internal','/feeds/64832133018470584/posts/default/9038298663453464043'),(570,98,'blogger_blog','monicarenata.blogspot.com'),(571,98,'blogger_author','Monica Renata'),(572,98,'blogger_permalink','/2014/01/sneaky-sara.html'),(573,98,'blogger_internal','/feeds/64832133018470584/posts/default/3355897532495475330'),(576,99,'blogger_blog','monicarenata.blogspot.com'),(577,99,'blogger_author','Monica Renata'),(578,99,'blogger_permalink','/2014/01/bojo-bandit.html'),(579,99,'blogger_internal','/feeds/64832133018470584/posts/default/693792145387287653'),(582,100,'blogger_blog','monicarenata.blogspot.com'),(583,100,'blogger_author','Monica Renata'),(584,100,'blogger_permalink','/2014/01/joejoes-chocolates.html'),(585,100,'blogger_internal','/feeds/64832133018470584/posts/default/5563941036744941798'),(588,101,'blogger_blog','monicarenata.blogspot.com'),(589,101,'blogger_author','Monica Renata'),(590,101,'blogger_permalink','/2014/01/i-just-want-you-to-know.html'),(591,101,'blogger_internal','/feeds/64832133018470584/posts/default/1802444326201015548'),(594,102,'blogger_blog','monicarenata.blogspot.com'),(595,102,'blogger_author','Monica Renata'),(596,102,'blogger_permalink','/2014/01/my-light-in-sky.html'),(597,102,'blogger_internal','/feeds/64832133018470584/posts/default/4581133174231044851'),(600,103,'blogger_blog','monicarenata.blogspot.com'),(601,103,'blogger_author','Monica Renata'),(602,103,'blogger_permalink','/2014/01/inadequate.html'),(603,103,'blogger_internal','/feeds/64832133018470584/posts/default/6111892827045851319'),(606,104,'blogger_blog','monicarenata.blogspot.com'),(607,104,'blogger_author','Monica Renata'),(608,104,'blogger_permalink','/2014/01/white-flag.html'),(609,104,'blogger_internal','/feeds/64832133018470584/posts/default/842578921778284293'),(612,105,'blogger_blog','monicarenata.blogspot.com'),(613,105,'blogger_author','Monica Renata'),(614,105,'blogger_permalink','/2014/01/cant-make-you-stay.html'),(615,105,'blogger_internal','/feeds/64832133018470584/posts/default/1666017331038216790'),(618,106,'blogger_blog','monicarenata.blogspot.com'),(619,106,'blogger_author','Monica Renata'),(620,106,'blogger_permalink','/2014/01/pinch.html'),(621,106,'blogger_internal','/feeds/64832133018470584/posts/default/6480667796060326406'),(624,107,'blogger_blog','monicarenata.blogspot.com'),(625,107,'blogger_author','Monica Renata'),(626,107,'blogger_permalink','/2014/01/i-came-i-saw-i-conquered.html'),(627,107,'blogger_internal','/feeds/64832133018470584/posts/default/3816934206872685494'),(630,108,'blogger_blog','monicarenata.blogspot.com'),(631,108,'blogger_author','Monica Renata'),(632,108,'blogger_permalink','/2014/01/you-are-you.html'),(633,108,'blogger_internal','/feeds/64832133018470584/posts/default/3808908868664846017'),(636,109,'blogger_blog','monicarenata.blogspot.com'),(637,109,'blogger_author','Monica Renata'),(638,109,'blogger_permalink','/2014/01/man-vs-thief.html'),(639,109,'blogger_internal','/feeds/64832133018470584/posts/default/5555512012024294077'),(642,110,'blogger_blog','monicarenata.blogspot.com'),(643,110,'blogger_author','Monica Renata'),(644,110,'blogger_permalink','/2014/01/they-want-me-to-follow-instructions.html'),(645,110,'blogger_internal','/feeds/64832133018470584/posts/default/281489637113909893'),(648,111,'blogger_blog','monicarenata.blogspot.com'),(649,111,'blogger_author','Monica Renata'),(650,111,'blogger_permalink','/2014/01/i-tried.html'),(651,111,'blogger_internal','/feeds/64832133018470584/posts/default/6087082434371875610'),(2452,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:413;s:6:\"height\";i:310;s:4:\"file\";s:35:\"2014/02/cb_couple_bed_070601_ms.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cb_couple_bed_070601_ms-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:\"cb_couple_bed_070601_ms-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(654,112,'blogger_blog','monicarenata.blogspot.com'),(655,112,'blogger_author','Monica Renata'),(656,112,'blogger_permalink','/2014/01/the-heartbreaker.html'),(657,112,'blogger_internal','/feeds/64832133018470584/posts/default/1572377400837197962'),(660,113,'blogger_blog','monicarenata.blogspot.com'),(661,113,'blogger_author','Monica Renata'),(662,113,'blogger_permalink','/2014/01/who-wants-to-be-normal.html'),(663,113,'blogger_internal','/feeds/64832133018470584/posts/default/3686000605724134324'),(666,114,'blogger_blog','monicarenata.blogspot.com'),(667,114,'blogger_author','Monica Renata'),(668,114,'blogger_permalink','/2014/01/knocking-at-my-door.html'),(669,114,'blogger_internal','/feeds/64832133018470584/posts/default/5614173486455980937'),(2451,386,'_wp_attached_file','2014/02/cb_couple_bed_070601_ms.jpg'),(672,115,'blogger_blog','monicarenata.blogspot.com'),(673,115,'blogger_author','Monica Renata'),(674,115,'blogger_permalink','/2014/01/that-person-never-left-short-story.html'),(675,115,'blogger_internal','/feeds/64832133018470584/posts/default/7392389681184083172'),(678,116,'blogger_blog','monicarenata.blogspot.com'),(679,116,'blogger_author','Monica Renata'),(680,116,'blogger_permalink','/2014/01/pretty-little-picture.html'),(681,116,'blogger_internal','/feeds/64832133018470584/posts/default/7535223588293861053'),(684,117,'blogger_blog','monicarenata.blogspot.com'),(685,117,'blogger_author','Monica Renata'),(686,117,'blogger_permalink','/2013/12/dance.html'),(687,117,'blogger_internal','/feeds/64832133018470584/posts/default/3517811350757026744'),(690,118,'blogger_blog','monicarenata.blogspot.com'),(691,118,'blogger_author','Monica Renata'),(692,118,'blogger_permalink','/2013/12/life-isnt-game.html'),(693,118,'blogger_internal','/feeds/64832133018470584/posts/default/4958035180808602547'),(2658,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:365;s:6:\"height\";i:380;s:4:\"file\";s:72:\"2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"stock-photo-9544716-man-coming-home-from-work-lovers-kissing-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:72:\"stock-photo-9544716-man-coming-home-from-work-lovers-kissing-288x300.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:72:\"stock-photo-9544716-man-coming-home-from-work-lovers-kissing-365x372.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(696,119,'blogger_blog','monicarenata.blogspot.com'),(697,119,'blogger_author','Monica Renata'),(698,119,'blogger_permalink','/2013/12/sleepless-night.html'),(699,119,'blogger_internal','/feeds/64832133018470584/posts/default/7045947179775571377'),(702,120,'blogger_blog','monicarenata.blogspot.com'),(703,120,'blogger_author','Monica Renata'),(704,120,'blogger_permalink','/2013/12/light-in-darkness.html'),(705,120,'blogger_internal','/feeds/64832133018470584/posts/default/1291991257126882971'),(2459,387,'_wp_attached_file','2014/02/78219_max.jpg'),(708,121,'blogger_blog','monicarenata.blogspot.com'),(709,121,'blogger_author','Monica Renata'),(710,121,'blogger_permalink','/2013/12/im-just-not-where-im-supposed-to-be.html'),(711,121,'blogger_internal','/feeds/64832133018470584/posts/default/26419529852909552'),(714,122,'blogger_blog','monicarenata.blogspot.com'),(715,122,'blogger_author','Monica Renata'),(716,122,'blogger_permalink','/2013/12/what-are-we-fighting-for.html'),(717,122,'blogger_internal','/feeds/64832133018470584/posts/default/6703001963703852448'),(2446,385,'blogger_author','Monica Renata'),(720,123,'blogger_blog','monicarenata.blogspot.com'),(721,123,'blogger_author','Monica Renata'),(722,123,'blogger_permalink','/2013/12/happy-holidays.html'),(723,123,'blogger_internal','/feeds/64832133018470584/posts/default/5283243002717976740'),(726,124,'blogger_blog','monicarenata.blogspot.com'),(727,124,'blogger_author','Monica Renata'),(728,124,'blogger_permalink','/2013/12/memory-walls.html'),(729,124,'blogger_internal','/feeds/64832133018470584/posts/default/4443993729437497151'),(732,125,'blogger_blog','monicarenata.blogspot.com'),(733,125,'blogger_author','Monica Renata'),(734,125,'blogger_permalink','/2013/12/the-giving-tree.html'),(735,125,'blogger_internal','/feeds/64832133018470584/posts/default/659449097743186281'),(2445,385,'blogger_blog','monicarenata.blogspot.com'),(738,126,'blogger_blog','monicarenata.blogspot.com'),(739,126,'blogger_author','Monica Renata'),(740,126,'blogger_permalink','/2013/12/bye-love.html'),(741,126,'blogger_internal','/feeds/64832133018470584/posts/default/1252665315362342918'),(744,127,'blogger_blog','monicarenata.blogspot.com'),(745,127,'blogger_author','Monica Renata'),(746,127,'blogger_permalink','/2013/12/gentle-my-darling.html'),(747,127,'blogger_internal','/feeds/64832133018470584/posts/default/4527693254126487214'),(750,128,'blogger_blog','monicarenata.blogspot.com'),(751,128,'blogger_author','Monica Renata'),(752,128,'blogger_permalink','/2013/12/best-part-of-my-day.html'),(753,128,'blogger_internal','/feeds/64832133018470584/posts/default/9109954925694035733'),(756,129,'blogger_blog','monicarenata.blogspot.com'),(757,129,'blogger_author','Monica Renata'),(758,129,'blogger_permalink','/2013/12/the-weight.html'),(759,129,'blogger_internal','/feeds/64832133018470584/posts/default/5016015383028863224'),(762,130,'blogger_blog','monicarenata.blogspot.com'),(763,130,'blogger_author','Monica Renata'),(764,130,'blogger_permalink','/2013/12/tko.html'),(765,130,'blogger_internal','/feeds/64832133018470584/posts/default/579594559750280658'),(768,131,'blogger_blog','monicarenata.blogspot.com'),(769,131,'blogger_author','Monica Renata'),(770,131,'blogger_permalink','/2013/12/education-have-you-been-enlightened.html'),(771,131,'blogger_internal','/feeds/64832133018470584/posts/default/3441621111609685899'),(774,132,'blogger_blog','monicarenata.blogspot.com'),(775,132,'blogger_author','Monica Renata'),(776,132,'blogger_permalink','/2013/12/holding-in-truths.html'),(777,132,'blogger_internal','/feeds/64832133018470584/posts/default/6282896989346217779'),(2444,385,'blogger_permalink','http://ecx.images-amazon.com/images/I/41SlWXN1XVL._SY344_PJlook-inside-v2,TopRight,1,0_SH20_BO1,204,203,200_.jpg'),(780,133,'blogger_blog','monicarenata.blogspot.com'),(781,133,'blogger_author','Monica Renata'),(782,133,'blogger_permalink','/2013/12/things-that-make-me-smile.html'),(783,133,'blogger_internal','/feeds/64832133018470584/posts/default/7591573244932744359'),(786,134,'blogger_blog','monicarenata.blogspot.com'),(787,134,'blogger_author','Monica Renata'),(788,134,'blogger_permalink','/2013/12/candy-coated.html'),(789,134,'blogger_internal','/feeds/64832133018470584/posts/default/717288464977277309'),(792,135,'blogger_blog','monicarenata.blogspot.com'),(793,135,'blogger_author','Monica Renata'),(794,135,'blogger_permalink','/2013/12/keep-hoping.html'),(795,135,'blogger_internal','/feeds/64832133018470584/posts/default/1676180995318352715'),(798,136,'blogger_blog','monicarenata.blogspot.com'),(799,136,'blogger_author','Monica Renata'),(800,136,'blogger_permalink','/2013/12/december-is-so-cold.html'),(801,136,'blogger_internal','/feeds/64832133018470584/posts/default/5121021934619228284'),(804,137,'blogger_blog','monicarenata.blogspot.com'),(805,137,'blogger_author','Monica Renata'),(806,137,'blogger_permalink','/2013/12/speckle.html'),(807,137,'blogger_internal','/feeds/64832133018470584/posts/default/8022487854925982383'),(2668,408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:141;s:4:\"file\";s:20:\"2013/12/k4660629.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"k4660629-150x141.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(810,138,'blogger_blog','monicarenata.blogspot.com'),(811,138,'blogger_author','Monica Renata'),(812,138,'blogger_permalink','/2013/12/extraordinary.html'),(813,138,'blogger_internal','/feeds/64832133018470584/posts/default/7693777967802993943'),(816,139,'blogger_blog','monicarenata.blogspot.com'),(817,139,'blogger_author','Monica Renata'),(818,139,'blogger_permalink','/2013/12/no-more.html'),(819,139,'blogger_internal','/feeds/64832133018470584/posts/default/1130560090236258742'),(820,140,'blogger_blog','monicarenata.blogspot.com'),(821,140,'blogger_author','Monica Renata'),(822,140,'blogger_internal','/feeds/64832133018470584/posts/default/2828716250688806454'),(2667,408,'_wp_attached_file','2013/12/k4660629.jpg'),(825,141,'blogger_blog','monicarenata.blogspot.com'),(826,141,'blogger_author','Monica Renata'),(827,141,'blogger_permalink','/2013/12/my-works.html'),(828,141,'blogger_internal','/feeds/64832133018470584/posts/default/2035511576091786525'),(2687,409,'_wp_attached_file','2013/12/200903-flokot-art7.jpg'),(831,142,'blogger_blog','monicarenata.blogspot.com'),(832,142,'blogger_author','Monica Renata'),(833,142,'blogger_permalink','/2013/12/please-check-out-my-book.html'),(834,142,'blogger_internal','/feeds/64832133018470584/posts/default/6821079513231792426'),(837,143,'blogger_blog','monicarenata.blogspot.com'),(838,143,'blogger_author','Monica Renata'),(839,143,'blogger_permalink','/2013/12/growing-up.html'),(840,143,'blogger_internal','/feeds/64832133018470584/posts/default/9042139580476357473'),(843,144,'blogger_blog','monicarenata.blogspot.com'),(844,144,'blogger_author','Monica Renata'),(845,144,'blogger_permalink','/2013/12/officially-official.html'),(846,144,'blogger_internal','/feeds/64832133018470584/posts/default/7946833464861749272'),(2702,410,'_wp_attached_file','2013/12/Screenshot_2013-11-21-07-18-40.png'),(849,145,'blogger_blog','monicarenata.blogspot.com'),(850,145,'blogger_author','Monica Renata'),(851,145,'blogger_permalink','/2013/12/dancing-teardrops.html'),(852,145,'blogger_internal','/feeds/64832133018470584/posts/default/4625794919426396980'),(855,146,'blogger_blog','monicarenata.blogspot.com'),(856,146,'blogger_author','Monica Renata'),(857,146,'blogger_permalink','/2013/12/the-lions-nose.html'),(858,146,'blogger_internal','/feeds/64832133018470584/posts/default/1635766441988805001'),(861,147,'blogger_blog','monicarenata.blogspot.com'),(862,147,'blogger_author','Monica Renata'),(863,147,'blogger_permalink','/2013/12/what-was-i-supposed-to-do.html'),(864,147,'blogger_internal','/feeds/64832133018470584/posts/default/6582370780854945409'),(867,148,'blogger_blog','monicarenata.blogspot.com'),(868,148,'blogger_author','Monica Renata'),(869,148,'blogger_permalink','/2013/12/dont-cry-for-me.html'),(870,148,'blogger_internal','/feeds/64832133018470584/posts/default/2848432217595829299'),(871,149,'blogger_blog','monicarenata.blogspot.com'),(872,149,'blogger_author','Monica Renata'),(873,149,'blogger_internal','/feeds/64832133018470584/posts/default/7520772686517461294'),(876,150,'blogger_blog','monicarenata.blogspot.com'),(877,150,'blogger_author','Monica Renata'),(878,150,'blogger_permalink','/2013/12/december.html'),(879,150,'blogger_internal','/feeds/64832133018470584/posts/default/764657993290337886'),(882,151,'blogger_blog','monicarenata.blogspot.com'),(883,151,'blogger_author','Monica Renata'),(884,151,'blogger_permalink','/2013/11/be-thankful.html'),(885,151,'blogger_internal','/feeds/64832133018470584/posts/default/9010252525544162716'),(888,152,'blogger_blog','monicarenata.blogspot.com'),(889,152,'blogger_author','Monica Renata'),(890,152,'blogger_permalink','/2013/11/fill-my-cup-with-coffee.html'),(891,152,'blogger_internal','/feeds/64832133018470584/posts/default/6694060635755498763'),(2711,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:26:\"2013/12/when-i-grow-up.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"when-i-grow-up-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:\"when-i-grow-up-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:27:\"when-i-grow-up-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"when-i-grow-up-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"when-i-grow-up-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(894,153,'blogger_blog','monicarenata.blogspot.com'),(895,153,'blogger_author','Monica Renata'),(896,153,'blogger_permalink','/2013/11/breakdown.html'),(897,153,'blogger_internal','/feeds/64832133018470584/posts/default/3567351225131634465'),(900,154,'blogger_blog','monicarenata.blogspot.com'),(901,154,'blogger_author','Monica Renata'),(902,154,'blogger_permalink','/2013/11/decisions-just-thoughts.html'),(903,154,'blogger_internal','/feeds/64832133018470584/posts/default/6386544549559387255'),(906,155,'blogger_blog','monicarenata.blogspot.com'),(907,155,'blogger_author','Monica Renata'),(908,155,'blogger_permalink','/2013/11/get-over-it.html'),(909,155,'blogger_internal','/feeds/64832133018470584/posts/default/3831583235361751948'),(912,156,'blogger_blog','monicarenata.blogspot.com'),(913,156,'blogger_author','Monica Renata'),(914,156,'blogger_permalink','/2013/11/confetti-hearts.html'),(915,156,'blogger_internal','/feeds/64832133018470584/posts/default/5738990460250701479'),(918,157,'blogger_blog','monicarenata.blogspot.com'),(919,157,'blogger_author','Monica Renata'),(920,157,'blogger_permalink','/2013/11/the-winter-march.html'),(921,157,'blogger_internal','/feeds/64832133018470584/posts/default/7809692628130052591'),(924,158,'blogger_blog','monicarenata.blogspot.com'),(925,158,'blogger_author','Monica Renata'),(926,158,'blogger_permalink','/2013/11/maleficient.html'),(927,158,'blogger_internal','/feeds/64832133018470584/posts/default/3590174412345857966'),(930,159,'blogger_blog','monicarenata.blogspot.com'),(931,159,'blogger_author','Monica Renata'),(932,159,'blogger_permalink','/2013/11/brunch.html'),(933,159,'blogger_internal','/feeds/64832133018470584/posts/default/769331185662981420'),(936,160,'blogger_blog','monicarenata.blogspot.com'),(937,160,'blogger_author','Monica Renata'),(938,160,'blogger_permalink','/2013/11/flowers-bloom-in-winter-too.html'),(939,160,'blogger_internal','/feeds/64832133018470584/posts/default/5818783216325635808'),(942,161,'blogger_blog','monicarenata.blogspot.com'),(943,161,'blogger_author','Monica Renata'),(944,161,'blogger_permalink','/2013/11/who-are-you.html'),(945,161,'blogger_internal','/feeds/64832133018470584/posts/default/7454024884333514968'),(948,162,'blogger_blog','monicarenata.blogspot.com'),(949,162,'blogger_author','Monica Renata'),(950,162,'blogger_permalink','/2013/11/you-used-to.html'),(951,162,'blogger_internal','/feeds/64832133018470584/posts/default/3907408082196416530'),(954,163,'blogger_blog','monicarenata.blogspot.com'),(955,163,'blogger_author','Monica Renata'),(956,163,'blogger_permalink','/2013/11/im-trying.html'),(957,163,'blogger_internal','/feeds/64832133018470584/posts/default/3815715214580399594'),(960,164,'blogger_blog','monicarenata.blogspot.com'),(961,164,'blogger_author','Monica Renata'),(962,164,'blogger_permalink','/2013/11/tired.html'),(963,164,'blogger_internal','/feeds/64832133018470584/posts/default/2068249700674635812'),(966,165,'blogger_blog','monicarenata.blogspot.com'),(967,165,'blogger_author','Monica Renata'),(968,165,'blogger_permalink','/2013/11/you-promised.html'),(969,165,'blogger_internal','/feeds/64832133018470584/posts/default/5367068409358652587'),(972,166,'blogger_blog','monicarenata.blogspot.com'),(973,166,'blogger_author','Monica Renata'),(974,166,'blogger_permalink','/2013/11/the-conversation.html'),(975,166,'blogger_internal','/feeds/64832133018470584/posts/default/3838217255582365327'),(978,167,'blogger_blog','monicarenata.blogspot.com'),(979,167,'blogger_author','Monica Renata'),(980,167,'blogger_permalink','/2013/11/writing-prompt-is-love-enough.html'),(981,167,'blogger_internal','/feeds/64832133018470584/posts/default/6377713852648813586'),(984,168,'blogger_blog','monicarenata.blogspot.com'),(985,168,'blogger_author','Monica Renata'),(986,168,'blogger_permalink','/2013/11/peace-be-still.html'),(987,168,'blogger_internal','/feeds/64832133018470584/posts/default/3403209114004757494'),(990,169,'blogger_blog','monicarenata.blogspot.com'),(991,169,'blogger_author','Monica Renata'),(992,169,'blogger_permalink','/2013/11/the-garden.html'),(993,169,'blogger_internal','/feeds/64832133018470584/posts/default/5362115609357606020'),(2443,385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:346;s:4:\"file\";s:82:\"2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-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:82:\"41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-197x300.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(996,170,'blogger_blog','monicarenata.blogspot.com'),(997,170,'blogger_author','Monica Renata'),(998,170,'blogger_permalink','/2013/11/how.html'),(999,170,'blogger_internal','/feeds/64832133018470584/posts/default/1075070408735459009'),(1002,171,'blogger_blog','monicarenata.blogspot.com'),(1003,171,'blogger_author','Monica Renata'),(1004,171,'blogger_permalink','/2013/11/getting-rid-of-burden.html'),(1005,171,'blogger_internal','/feeds/64832133018470584/posts/default/8263713821975661366'),(1008,172,'blogger_blog','monicarenata.blogspot.com'),(1009,172,'blogger_author','Monica Renata'),(1010,172,'blogger_permalink','/2013/11/love-letter.html'),(1011,172,'blogger_internal','/feeds/64832133018470584/posts/default/8442616452712714895'),(1014,173,'blogger_blog','monicarenata.blogspot.com'),(1015,173,'blogger_author','Monica Renata'),(1016,173,'blogger_permalink','/2013/11/krispy-kreme.html'),(1017,173,'blogger_internal','/feeds/64832133018470584/posts/default/3600225330069114518'),(1020,174,'blogger_blog','monicarenata.blogspot.com'),(1021,174,'blogger_author','Monica Renata'),(1022,174,'blogger_permalink','/2013/11/who-knows.html'),(1023,174,'blogger_internal','/feeds/64832133018470584/posts/default/7838277230301314644'),(2442,385,'_wp_attached_file','2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg'),(1026,175,'blogger_blog','monicarenata.blogspot.com'),(1027,175,'blogger_author','Monica Renata'),(1028,175,'blogger_permalink','/2013/11/racing-forward.html'),(1029,175,'blogger_internal','/feeds/64832133018470584/posts/default/1801318700594734370'),(1032,176,'blogger_blog','monicarenata.blogspot.com'),(1033,176,'blogger_author','Monica Renata'),(1034,176,'blogger_permalink','/2013/11/short-sweet.html'),(1035,176,'blogger_internal','/feeds/64832133018470584/posts/default/7471840557254068363'),(2441,384,'blogger_author','Monica Renata'),(1038,177,'blogger_blog','monicarenata.blogspot.com'),(1039,177,'blogger_author','Monica Renata'),(1040,177,'blogger_permalink','/2013/11/tug-of-war.html'),(1041,177,'blogger_internal','/feeds/64832133018470584/posts/default/331283738646240788'),(2718,412,'_wp_attached_file','2013/12/Ex_Business_Businessman-2.jpg'),(1044,178,'blogger_blog','monicarenata.blogspot.com'),(1045,178,'blogger_author','Monica Renata'),(1046,178,'blogger_permalink','/2013/11/follow.html'),(1047,178,'blogger_internal','/feeds/64832133018470584/posts/default/7022217794764378012'),(1050,179,'blogger_blog','monicarenata.blogspot.com'),(1051,179,'blogger_author','Monica Renata'),(1052,179,'blogger_permalink','/2013/11/the-cover-up.html'),(1053,179,'blogger_internal','/feeds/64832133018470584/posts/default/8614898880241346191'),(1056,180,'blogger_blog','monicarenata.blogspot.com'),(1057,180,'blogger_author','Monica Renata'),(1058,180,'blogger_permalink','/2013/11/as-i-lay.html'),(1059,180,'blogger_internal','/feeds/64832133018470584/posts/default/2248791584002204965'),(2440,384,'blogger_blog','monicarenata.blogspot.com'),(1062,181,'blogger_blog','monicarenata.blogspot.com'),(1063,181,'blogger_author','Monica Renata'),(1064,181,'blogger_permalink','/2013/11/again.html'),(1065,181,'blogger_internal','/feeds/64832133018470584/posts/default/5404679612162536410'),(1068,182,'blogger_blog','monicarenata.blogspot.com'),(1069,182,'blogger_author','Monica Renata'),(1070,182,'blogger_permalink','/2013/11/the-housecat.html'),(1071,182,'blogger_internal','/feeds/64832133018470584/posts/default/8122564358314799289'),(1074,183,'blogger_blog','monicarenata.blogspot.com'),(1075,183,'blogger_author','Monica Renata'),(1076,183,'blogger_permalink','/2013/11/the-pouring-rain.html'),(1077,183,'blogger_internal','/feeds/64832133018470584/posts/default/7165672692235014908'),(1080,184,'blogger_blog','monicarenata.blogspot.com'),(1081,184,'blogger_author','Monica Renata'),(1082,184,'blogger_permalink','/2013/11/in-your-absence.html'),(1083,184,'blogger_internal','/feeds/64832133018470584/posts/default/2203812408148858342'),(1086,185,'blogger_blog','monicarenata.blogspot.com'),(1087,185,'blogger_author','Monica Renata'),(1088,185,'blogger_permalink','/2013/11/the-host.html'),(1089,185,'blogger_internal','/feeds/64832133018470584/posts/default/135702370301726943'),(1092,186,'blogger_blog','monicarenata.blogspot.com'),(1093,186,'blogger_author','Monica Renata'),(1094,186,'blogger_permalink','/2013/11/grandmas-house.html'),(1095,186,'blogger_internal','/feeds/64832133018470584/posts/default/7029644993865362470'),(2439,384,'blogger_permalink','http://ecx.images-amazon.com/images/I/51pse380RJL._SY344_PJlook-inside-v2,TopRight,1,0_SH20_BO1,204,203,200_.jpg'),(1098,187,'blogger_blog','monicarenata.blogspot.com'),(1099,187,'blogger_author','Monica Renata'),(1100,187,'blogger_permalink','/2013/11/the-given-gift.html'),(1101,187,'blogger_internal','/feeds/64832133018470584/posts/default/4892844399371546351'),(1104,188,'blogger_blog','monicarenata.blogspot.com'),(1105,188,'blogger_author','Monica Renata'),(1106,188,'blogger_permalink','/2013/11/the-loveliest-of-lovely.html'),(1107,188,'blogger_internal','/feeds/64832133018470584/posts/default/3233768974671774347'),(1110,189,'blogger_blog','monicarenata.blogspot.com'),(1111,189,'blogger_author','Monica Renata'),(1112,189,'blogger_permalink','/2013/11/i-will-not-be-afraid.html'),(1113,189,'blogger_internal','/feeds/64832133018470584/posts/default/6466135293473667901'),(1116,190,'blogger_blog','monicarenata.blogspot.com'),(1117,190,'blogger_author','Monica Renata'),(1118,190,'blogger_permalink','/2013/11/if-you-ever-shall-forget-me.html'),(1119,190,'blogger_internal','/feeds/64832133018470584/posts/default/1877564754003076173'),(1122,191,'blogger_blog','monicarenata.blogspot.com'),(1123,191,'blogger_author','Monica Renata'),(1124,191,'blogger_permalink','/2013/11/the-psychc.html'),(1125,191,'blogger_internal','/feeds/64832133018470584/posts/default/6783184458523372401'),(1128,192,'blogger_blog','monicarenata.blogspot.com'),(1129,192,'blogger_author','Monica Renata'),(1130,192,'blogger_permalink','/2013/11/constructive-criticism.html'),(1131,192,'blogger_internal','/feeds/64832133018470584/posts/default/8510640787851248823'),(2719,412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2388;s:6:\"height\";i:1772;s:4:\"file\";s:37:\"2013/12/Ex_Business_Businessman-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Ex_Business_Businessman-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Ex_Business_Businessman-2-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Ex_Business_Businessman-2-1024x759.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Ex_Business_Businessman-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"Ex_Business_Businessman-2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:59:\"Ambitious male executive sitting in his office in a company\";s:17:\"created_timestamp\";i:946685078;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"73\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:46:\"Ambitious male executive sitting in his office\";}}'),(1134,193,'blogger_blog','monicarenata.blogspot.com'),(1135,193,'blogger_author','Monica Renata'),(1136,193,'blogger_permalink','/2013/11/the-news.html'),(1137,193,'blogger_internal','/feeds/64832133018470584/posts/default/4751691703530612669'),(1140,194,'blogger_blog','monicarenata.blogspot.com'),(1141,194,'blogger_author','Monica Renata'),(1142,194,'blogger_permalink','/2013/11/the-homecoming.html'),(1143,194,'blogger_internal','/feeds/64832133018470584/posts/default/6153928859938012260'),(1146,195,'blogger_blog','monicarenata.blogspot.com'),(1147,195,'blogger_author','Monica Renata'),(1148,195,'blogger_permalink','/2013/11/121314.html'),(1149,195,'blogger_internal','/feeds/64832133018470584/posts/default/1836559421194281052'),(2744,414,'_wp_attached_file','2013/11/6486319-cup-of-coffee.jpg'),(1152,196,'blogger_blog','monicarenata.blogspot.com'),(1153,196,'blogger_author','Monica Renata'),(1154,196,'blogger_permalink','/2013/11/working.html'),(1155,196,'blogger_internal','/feeds/64832133018470584/posts/default/39487827304068761'),(1158,197,'blogger_blog','monicarenata.blogspot.com'),(1159,197,'blogger_author','Monica Renata'),(1160,197,'blogger_permalink','/2013/11/peanut-butter.html'),(1161,197,'blogger_internal','/feeds/64832133018470584/posts/default/2546059934254379345'),(1164,198,'blogger_blog','monicarenata.blogspot.com'),(1165,198,'blogger_author','Monica Renata'),(1166,198,'blogger_permalink','/2013/11/imprisoned.html'),(1167,198,'blogger_internal','/feeds/64832133018470584/posts/default/786239027364629693'),(1170,199,'blogger_blog','monicarenata.blogspot.com'),(1171,199,'blogger_author','Monica Renata'),(1172,199,'blogger_permalink','/2013/11/my-dream-of-me-and-you.html'),(1173,199,'blogger_internal','/feeds/64832133018470584/posts/default/4158537612503261583'),(1176,200,'blogger_blog','monicarenata.blogspot.com'),(1177,200,'blogger_author','Monica Renata'),(1178,200,'blogger_permalink','/2013/11/silence.html'),(1179,200,'blogger_internal','/feeds/64832133018470584/posts/default/4318270307640762262'),(1182,201,'blogger_blog','monicarenata.blogspot.com'),(1183,201,'blogger_author','Monica Renata'),(1184,201,'blogger_permalink','/2013/11/the-morning-hustle.html'),(1185,201,'blogger_internal','/feeds/64832133018470584/posts/default/7267396718637688312'),(2745,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:33:\"2013/11/6486319-cup-of-coffee.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"6486319-cup-of-coffee-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:\"6486319-cup-of-coffee-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"6486319-cup-of-coffee-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"6486319-cup-of-coffee-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"6486319-cup-of-coffee-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1188,202,'blogger_blog','monicarenata.blogspot.com'),(1189,202,'blogger_author','Monica Renata'),(1190,202,'blogger_permalink','/2013/11/the-climb.html'),(1191,202,'blogger_internal','/feeds/64832133018470584/posts/default/7397879983949467309'),(1194,203,'blogger_blog','monicarenata.blogspot.com'),(1195,203,'blogger_author','Monica Renata'),(1196,203,'blogger_permalink','/2013/11/the-last-kiss.html'),(1197,203,'blogger_internal','/feeds/64832133018470584/posts/default/6500176157495427779'),(1200,204,'blogger_blog','monicarenata.blogspot.com'),(1201,204,'blogger_author','Monica Renata'),(1202,204,'blogger_permalink','/2013/11/my-favorite-flowers.html'),(1203,204,'blogger_internal','/feeds/64832133018470584/posts/default/7627787369677929040'),(1206,205,'blogger_blog','monicarenata.blogspot.com'),(1207,205,'blogger_author','Monica Renata'),(1208,205,'blogger_permalink','/2013/11/the-collection.html'),(1209,205,'blogger_internal','/feeds/64832133018470584/posts/default/8954049692146492219'),(1212,206,'blogger_blog','monicarenata.blogspot.com'),(1213,206,'blogger_author','Monica Renata'),(1214,206,'blogger_permalink','/2013/11/pretty-pretty-pretty.html'),(1215,206,'blogger_internal','/feeds/64832133018470584/posts/default/8384278477415586723'),(1218,207,'blogger_blog','monicarenata.blogspot.com'),(1219,207,'blogger_author','Monica Renata'),(1220,207,'blogger_permalink','/2013/11/i-could-say-i-miss-you.html'),(1221,207,'blogger_internal','/feeds/64832133018470584/posts/default/6770607665622890859'),(1224,208,'blogger_blog','monicarenata.blogspot.com'),(1225,208,'blogger_author','Monica Renata'),(1226,208,'blogger_permalink','/2013/11/money-money-money.html'),(1227,208,'blogger_internal','/feeds/64832133018470584/posts/default/402085743903268368'),(1230,209,'blogger_blog','monicarenata.blogspot.com'),(1231,209,'blogger_author','Monica Renata'),(1232,209,'blogger_permalink','/2013/11/grandpa-said.html'),(1233,209,'blogger_internal','/feeds/64832133018470584/posts/default/1013266232469117302'),(1236,210,'blogger_blog','monicarenata.blogspot.com'),(1237,210,'blogger_author','Monica Renata'),(1238,210,'blogger_permalink','/2013/11/the-life.html'),(1239,210,'blogger_internal','/feeds/64832133018470584/posts/default/1478100764047398995'),(1242,211,'blogger_blog','monicarenata.blogspot.com'),(1243,211,'blogger_author','Monica Renata'),(1244,211,'blogger_permalink','/2013/11/hatean-unneccessary-burden.html'),(1245,211,'blogger_internal','/feeds/64832133018470584/posts/default/86190249008119082'),(1248,212,'blogger_blog','monicarenata.blogspot.com'),(1249,212,'blogger_author','Monica Renata'),(1250,212,'blogger_permalink','/2013/11/a-new-truth-just-something-on-my-mind.html'),(1251,212,'blogger_internal','/feeds/64832133018470584/posts/default/7437222756530750429'),(1254,213,'blogger_blog','monicarenata.blogspot.com'),(1255,213,'blogger_author','Monica Renata'),(1256,213,'blogger_permalink','/2013/11/learn-to-listen-listen-to-learn.html'),(1257,213,'blogger_internal','/feeds/64832133018470584/posts/default/5468834556842069542'),(1260,214,'blogger_blog','monicarenata.blogspot.com'),(1261,214,'blogger_author','Monica Renata'),(1262,214,'blogger_permalink','/2013/11/let-your-guard-down.html'),(1263,214,'blogger_internal','/feeds/64832133018470584/posts/default/6743070121002133467'),(2757,415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:347;s:6:\"height\";i:286;s:4:\"file\";s:19:\"2013/11/BuildIt.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"BuildIt-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:\"BuildIt-300x247.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1266,215,'blogger_blog','monicarenata.blogspot.com'),(1267,215,'blogger_author','Monica Renata'),(1268,215,'blogger_permalink','/2013/11/cant-bring-me-down.html'),(1269,215,'blogger_internal','/feeds/64832133018470584/posts/default/2213700106971691859'),(1272,216,'blogger_blog','monicarenata.blogspot.com'),(1273,216,'blogger_author','Monica Renata'),(1274,216,'blogger_permalink','/2013/11/keep.html'),(1275,216,'blogger_internal','/feeds/64832133018470584/posts/default/6939296610215807977'),(2756,415,'_wp_attached_file','2013/11/BuildIt.jpg'),(1278,217,'blogger_blog','monicarenata.blogspot.com'),(1279,217,'blogger_author','Monica Renata'),(1280,217,'blogger_permalink','/2013/11/genuine-kindness.html'),(1281,217,'blogger_internal','/feeds/64832133018470584/posts/default/8912828011527097805'),(2764,416,'_wp_attached_file','2013/11/Heart-shaped-confetti-007.jpg'),(1284,218,'blogger_blog','monicarenata.blogspot.com'),(1285,218,'blogger_author','Monica Renata'),(1286,218,'blogger_permalink','/2013/11/life-is-beautiful.html'),(1287,218,'blogger_internal','/feeds/64832133018470584/posts/default/5351465500670477254'),(1290,219,'blogger_blog','monicarenata.blogspot.com'),(1291,219,'blogger_author','Monica Renata'),(1292,219,'blogger_permalink','/2013/11/winter-comes.html'),(1293,219,'blogger_internal','/feeds/64832133018470584/posts/default/1360525911076619328'),(1296,220,'blogger_blog','monicarenata.blogspot.com'),(1297,220,'blogger_author','Monica Renata'),(1298,220,'blogger_permalink','/2013/10/changing-others.html'),(1299,220,'blogger_internal','/feeds/64832133018470584/posts/default/4910413736787263808'),(1302,221,'blogger_blog','monicarenata.blogspot.com'),(1303,221,'blogger_author','Monica Renata'),(1304,221,'blogger_permalink','/2013/10/the-ship.html'),(1305,221,'blogger_internal','/feeds/64832133018470584/posts/default/2879622808542864227'),(1308,222,'blogger_blog','monicarenata.blogspot.com'),(1309,222,'blogger_author','Monica Renata'),(1310,222,'blogger_permalink','/2013/10/what-wakes-you-up-in-morning.html'),(1311,222,'blogger_internal','/feeds/64832133018470584/posts/default/5067195191904674203'),(1314,223,'blogger_blog','monicarenata.blogspot.com'),(1315,223,'blogger_author','Monica Renata'),(1316,223,'blogger_permalink','/2013/10/never-change-for-others-only-change-for.html'),(1317,223,'blogger_internal','/feeds/64832133018470584/posts/default/1877949619736959937'),(1320,224,'blogger_blog','monicarenata.blogspot.com'),(1321,224,'blogger_author','Monica Renata'),(1322,224,'blogger_permalink','/2013/10/that-moment.html'),(1323,224,'blogger_internal','/feeds/64832133018470584/posts/default/5536600445971325514'),(1326,225,'blogger_blog','monicarenata.blogspot.com'),(1327,225,'blogger_author','Monica Renata'),(1328,225,'blogger_permalink','/2013/10/perfection.html'),(1329,225,'blogger_internal','/feeds/64832133018470584/posts/default/2468490963903182709'),(1332,226,'blogger_blog','monicarenata.blogspot.com'),(1333,226,'blogger_author','Monica Renata'),(1334,226,'blogger_permalink','/2013/10/1st-place.html'),(1335,226,'blogger_internal','/feeds/64832133018470584/posts/default/2263617616571868418'),(1338,227,'blogger_blog','monicarenata.blogspot.com'),(1339,227,'blogger_author','Monica Renata'),(1340,227,'blogger_permalink','/2013/10/the-cut.html'),(1341,227,'blogger_internal','/feeds/64832133018470584/posts/default/4686204123175445676'),(1344,228,'blogger_blog','monicarenata.blogspot.com'),(1345,228,'blogger_author','Monica Renata'),(1346,228,'blogger_permalink','/2013/10/who-is-holding-you-back.html'),(1347,228,'blogger_internal','/feeds/64832133018470584/posts/default/2705286869023226359'),(1350,229,'blogger_blog','monicarenata.blogspot.com'),(1351,229,'blogger_author','Monica Renata'),(1352,229,'blogger_permalink','/2013/10/ms-i-need-you-today.html'),(1353,229,'blogger_internal','/feeds/64832133018470584/posts/default/9193158509189028866'),(1356,230,'blogger_blog','monicarenata.blogspot.com'),(1357,230,'blogger_author','Monica Renata'),(1358,230,'blogger_permalink','/2013/10/running.html'),(1359,230,'blogger_internal','/feeds/64832133018470584/posts/default/6079248492590212061'),(2438,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:346;s:4:\"file\";s:82:\"2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-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:82:\"51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-195x300.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2773,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:358;s:4:\"file\";s:42:\"2013/11/image-20cemetery-20in-20winter.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"image-20cemetery-20in-20winter-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:\"image-20cemetery-20in-20winter-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"LEICA X2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1358084429;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";}}'),(1362,231,'blogger_blog','monicarenata.blogspot.com'),(1363,231,'blogger_author','Monica Renata'),(1364,231,'blogger_permalink','/2013/10/the-man.html'),(1365,231,'blogger_internal','/feeds/64832133018470584/posts/default/1159036740480645697'),(1368,232,'blogger_blog','monicarenata.blogspot.com'),(1369,232,'blogger_author','Monica Renata'),(1370,232,'blogger_permalink','/2013/10/delete.html'),(1371,232,'blogger_internal','/feeds/64832133018470584/posts/default/7842467835517826568'),(1374,233,'blogger_blog','monicarenata.blogspot.com'),(1375,233,'blogger_author','Monica Renata'),(1376,233,'blogger_permalink','/2013/10/the-song-about-you.html'),(1377,233,'blogger_internal','/feeds/64832133018470584/posts/default/9079235974470031836'),(2772,417,'_wp_attached_file','2013/11/image-20cemetery-20in-20winter.jpg'),(1380,234,'blogger_blog','monicarenata.blogspot.com'),(1381,234,'blogger_author','Monica Renata'),(1382,234,'blogger_permalink','/2013/10/the-benefits.html'),(1383,234,'blogger_internal','/feeds/64832133018470584/posts/default/3038949844782814285'),(1386,235,'blogger_blog','monicarenata.blogspot.com'),(1387,235,'blogger_author','Monica Renata'),(1388,235,'blogger_permalink','/2013/10/patience.html'),(1389,235,'blogger_internal','/feeds/64832133018470584/posts/default/7570332776850376125'),(1392,236,'blogger_blog','monicarenata.blogspot.com'),(1393,236,'blogger_author','Monica Renata'),(1394,236,'blogger_permalink','/2013/09/bitch.html'),(1395,236,'blogger_internal','/feeds/64832133018470584/posts/default/1744402316109898154'),(2437,384,'_wp_attached_file','2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg'),(1398,237,'blogger_blog','monicarenata.blogspot.com'),(1399,237,'blogger_author','Monica Renata'),(1400,237,'blogger_permalink','/2013/09/the-house.html'),(1401,237,'blogger_internal','/feeds/64832133018470584/posts/default/5234948168287571357'),(1404,238,'blogger_blog','monicarenata.blogspot.com'),(1405,238,'blogger_author','Monica Renata'),(1406,238,'blogger_permalink','/2013/09/never-leave-you-lonely.html'),(1407,238,'blogger_internal','/feeds/64832133018470584/posts/default/2527679856242303040'),(1410,239,'blogger_blog','monicarenata.blogspot.com'),(1411,239,'blogger_author','Monica Renata'),(1412,239,'blogger_permalink','/2013/09/flowers-never-bloom.html'),(1413,239,'blogger_internal','/feeds/64832133018470584/posts/default/4696475243725571790'),(2436,383,'blogger_author','Monica Renata'),(1416,240,'blogger_blog','monicarenata.blogspot.com'),(1417,240,'blogger_author','Monica Renata'),(1418,240,'blogger_permalink','/2013/09/just-because-they-dont-say-i-love-you.html'),(1419,240,'blogger_internal','/feeds/64832133018470584/posts/default/713788160494279652'),(1422,241,'blogger_blog','monicarenata.blogspot.com'),(1423,241,'blogger_author','Monica Renata'),(1424,241,'blogger_permalink','/2013/09/everyone-else.html'),(1425,241,'blogger_internal','/feeds/64832133018470584/posts/default/8145588464570629624'),(1428,242,'blogger_blog','monicarenata.blogspot.com'),(1429,242,'blogger_author','Monica Renata'),(1430,242,'blogger_permalink','/2013/09/be-change-you-wish-to-see.html'),(1431,242,'blogger_internal','/feeds/64832133018470584/posts/default/4183209637656449166'),(2435,383,'blogger_blog','monicarenata.blogspot.com'),(1434,243,'blogger_blog','monicarenata.blogspot.com'),(1435,243,'blogger_author','Monica Renata'),(1436,243,'blogger_permalink','/2013/09/the-words-to-say.html'),(1437,243,'blogger_internal','/feeds/64832133018470584/posts/default/7825463378859024554'),(1440,244,'blogger_blog','monicarenata.blogspot.com'),(1441,244,'blogger_author','Monica Renata'),(1442,244,'blogger_permalink','/2013/09/somebody.html'),(1443,244,'blogger_internal','/feeds/64832133018470584/posts/default/6650780861010511070'),(2782,418,'_wp_attached_file','2013/11/8059730530_6d699e4c0e_z.jpg'),(1446,245,'blogger_blog','monicarenata.blogspot.com'),(1447,245,'blogger_author','Monica Renata'),(1448,245,'blogger_permalink','/2013/09/crying-in-rain.html'),(1449,245,'blogger_internal','/feeds/64832133018470584/posts/default/8276939087821959247'),(1452,246,'blogger_blog','monicarenata.blogspot.com'),(1453,246,'blogger_author','Monica Renata'),(1454,246,'blogger_permalink','/2013/08/my-night-under-stars.html'),(1455,246,'blogger_internal','/feeds/64832133018470584/posts/default/3951085777426765154'),(2783,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2013/11/8059730530_6d699e4c0e_z.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"8059730530_6d699e4c0e_z-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:\"8059730530_6d699e4c0e_z-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"8059730530_6d699e4c0e_z-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"8059730530_6d699e4c0e_z-640x576.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1458,247,'blogger_blog','monicarenata.blogspot.com'),(1459,247,'blogger_author','Monica Renata'),(1460,247,'blogger_permalink','/2013/08/on-road.html'),(1461,247,'blogger_internal','/feeds/64832133018470584/posts/default/6506798027493798329'),(1464,248,'blogger_blog','monicarenata.blogspot.com'),(1465,248,'blogger_author','Monica Renata'),(1466,248,'blogger_permalink','/2013/08/my-heart-beats.html'),(1467,248,'blogger_internal','/feeds/64832133018470584/posts/default/2492790230478843618'),(1470,249,'blogger_blog','monicarenata.blogspot.com'),(1471,249,'blogger_author','Monica Renata'),(1472,249,'blogger_permalink','/2013/08/the-secret.html'),(1473,249,'blogger_internal','/feeds/64832133018470584/posts/default/6865600424672033469'),(2434,383,'blogger_permalink','http://ecx.images-amazon.com/images/I/41r1vrrKkZL._SY344_PJlook-inside-v2,TopRight,1,0_SH20_BO1,204,203,200_.jpg'),(1476,250,'blogger_blog','monicarenata.blogspot.com'),(1477,250,'blogger_author','Monica Renata'),(1478,250,'blogger_permalink','/2013/08/speak-life-into-me.html'),(1479,250,'blogger_internal','/feeds/64832133018470584/posts/default/6880271080091408375'),(1482,251,'blogger_blog','monicarenata.blogspot.com'),(1483,251,'blogger_author','Monica Renata'),(1484,251,'blogger_permalink','/2013/08/fish.html'),(1485,251,'blogger_internal','/feeds/64832133018470584/posts/default/3746869718634232940'),(1488,252,'blogger_blog','monicarenata.blogspot.com'),(1489,252,'blogger_author','Monica Renata'),(1490,252,'blogger_permalink','/2013/08/mornings-come.html'),(1491,252,'blogger_internal','/feeds/64832133018470584/posts/default/4709959209068316411'),(1494,253,'blogger_blog','monicarenata.blogspot.com'),(1495,253,'blogger_author','Monica Renata'),(1496,253,'blogger_permalink','/2013/08/they-said.html'),(1497,253,'blogger_internal','/feeds/64832133018470584/posts/default/1520536993721841452'),(1500,254,'blogger_blog','monicarenata.blogspot.com'),(1501,254,'blogger_author','Monica Renata'),(1502,254,'blogger_permalink','/2013/08/the-remedy-is-me.html'),(1503,254,'blogger_internal','/feeds/64832133018470584/posts/default/4030293338336351512'),(1506,255,'blogger_blog','monicarenata.blogspot.com'),(1507,255,'blogger_author','Monica Renata'),(1508,255,'blogger_permalink','/2013/08/mirror-mirror.html'),(1509,255,'blogger_internal','/feeds/64832133018470584/posts/default/7962428828883043949'),(1512,256,'blogger_blog','monicarenata.blogspot.com'),(1513,256,'blogger_author','Monica Renata'),(1514,256,'blogger_permalink','/2013/08/the-awkward-butterfly.html'),(1515,256,'blogger_internal','/feeds/64832133018470584/posts/default/5996742695602895747'),(2791,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2013/11/ar129451792772434.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"ar129451792772434-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:29:\"ar129451792772434-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:29:\"ar129451792772434-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"ar129451792772434-800x576.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"BlackBerry 9550\";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\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(1518,257,'blogger_blog','monicarenata.blogspot.com'),(1519,257,'blogger_author','Monica Renata'),(1520,257,'blogger_permalink','/2013/08/statistics.html'),(1521,257,'blogger_internal','/feeds/64832133018470584/posts/default/4274765890877286510'),(1524,258,'blogger_blog','monicarenata.blogspot.com'),(1525,258,'blogger_author','Monica Renata'),(1526,258,'blogger_permalink','/2013/08/rain-rain.html'),(1527,258,'blogger_internal','/feeds/64832133018470584/posts/default/7242077107741856993'),(1530,259,'blogger_blog','monicarenata.blogspot.com'),(1531,259,'blogger_author','Monica Renata'),(1532,259,'blogger_permalink','/2013/08/weekly-challenge-10-accomplish-something.html'),(1533,259,'blogger_internal','/feeds/64832133018470584/posts/default/6507203309576589296'),(2790,419,'_wp_attached_file','2013/11/ar129451792772434.jpg'),(1536,260,'blogger_blog','monicarenata.blogspot.com'),(1537,260,'blogger_author','Monica Renata'),(1538,260,'blogger_permalink','/2013/08/happiness-is-you.html'),(1539,260,'blogger_internal','/feeds/64832133018470584/posts/default/8176762386963796024'),(1542,261,'blogger_blog','monicarenata.blogspot.com'),(1543,261,'blogger_author','Monica Renata'),(1544,261,'blogger_permalink','/2013/07/you-said-you-would-start-tomorrow.html'),(1545,261,'blogger_internal','/feeds/64832133018470584/posts/default/7015424863341688430'),(1548,262,'blogger_blog','monicarenata.blogspot.com'),(1549,262,'blogger_author','Monica Renata'),(1550,262,'blogger_permalink','/2013/07/just-kinda.html'),(1551,262,'blogger_internal','/feeds/64832133018470584/posts/default/261893558107410908'),(1554,263,'blogger_blog','monicarenata.blogspot.com'),(1555,263,'blogger_author','Monica Renata'),(1556,263,'blogger_permalink','/2013/07/eye-for-eye.html'),(1557,263,'blogger_internal','/feeds/64832133018470584/posts/default/7552598732608076713'),(2799,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:423;s:6:\"height\";i:335;s:4:\"file\";s:62:\"2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"african-american-boy-looking-in-mirror-F214-22-605-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:62:\"african-american-boy-looking-in-mirror-F214-22-605-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1560,264,'blogger_blog','monicarenata.blogspot.com'),(1561,264,'blogger_author','Monica Renata'),(1562,264,'blogger_permalink','/2013/07/everyone-is-winner.html'),(1563,264,'blogger_internal','/feeds/64832133018470584/posts/default/298652655730767678'),(1566,265,'blogger_blog','monicarenata.blogspot.com'),(1567,265,'blogger_author','Monica Renata'),(1568,265,'blogger_permalink','/2013/07/an-untouched-memory.html'),(1569,265,'blogger_internal','/feeds/64832133018470584/posts/default/6062146632099211425'),(1572,266,'blogger_blog','monicarenata.blogspot.com'),(1573,266,'blogger_author','Monica Renata'),(1574,266,'blogger_permalink','/2013/07/you-light-up-my-life.html'),(1575,266,'blogger_internal','/feeds/64832133018470584/posts/default/400433937361392660'),(1578,267,'blogger_blog','monicarenata.blogspot.com'),(1579,267,'blogger_author','Monica Renata'),(1580,267,'blogger_permalink','/2013/06/forever-never-lasts.html'),(1581,267,'blogger_internal','/feeds/64832133018470584/posts/default/3169177782906225487'),(2798,420,'_wp_attached_file','2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg'),(1584,268,'blogger_blog','monicarenata.blogspot.com'),(1585,268,'blogger_author','Monica Renata'),(1586,268,'blogger_permalink','/2013/06/in-end.html'),(1587,268,'blogger_internal','/feeds/64832133018470584/posts/default/1581881490440277025'),(2806,421,'_wp_attached_file','2013/11/stranger-704x300.jpg'),(1590,269,'blogger_blog','monicarenata.blogspot.com'),(1591,269,'blogger_author','Monica Renata'),(1592,269,'blogger_permalink','/2013/06/i-cant.html'),(1593,269,'blogger_internal','/feeds/64832133018470584/posts/default/4642718120610403873'),(1596,270,'blogger_blog','monicarenata.blogspot.com'),(1597,270,'blogger_author','Monica Renata'),(1598,270,'blogger_permalink','/2013/06/finger-pointers.html'),(1599,270,'blogger_internal','/feeds/64832133018470584/posts/default/3895739700848240710'),(1602,271,'blogger_blog','monicarenata.blogspot.com'),(1603,271,'blogger_author','Monica Renata'),(1604,271,'blogger_permalink','/2013/06/have-you-ever-had-shadow.html'),(1605,271,'blogger_internal','/feeds/64832133018470584/posts/default/8930048522337248335'),(1608,272,'blogger_blog','monicarenata.blogspot.com'),(1609,272,'blogger_author','Monica Renata'),(1610,272,'blogger_permalink','/2013/06/what-is-point.html'),(1611,272,'blogger_internal','/feeds/64832133018470584/posts/default/1906457247712788794'),(1614,273,'blogger_blog','monicarenata.blogspot.com'),(1615,273,'blogger_author','Monica Renata'),(1616,273,'blogger_permalink','/2013/06/weekly-challenge-9-take-time-to-notice.html'),(1617,273,'blogger_internal','/feeds/64832133018470584/posts/default/3185176606338318099'),(2817,422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:288;s:4:\"file\";s:42:\"2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_lfq206KzzK1qdg8qwo1_500-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:\"tumblr_lfq206KzzK1qdg8qwo1_500-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1620,274,'blogger_blog','monicarenata.blogspot.com'),(1621,274,'blogger_author','Monica Renata'),(1622,274,'blogger_permalink','/2013/06/the-journey-of-heart.html'),(1623,274,'blogger_internal','/feeds/64832133018470584/posts/default/3201291773578691999'),(1626,275,'blogger_blog','monicarenata.blogspot.com'),(1627,275,'blogger_author','Monica Renata'),(1628,275,'blogger_permalink','/2013/06/love-vs-hate.html'),(1629,275,'blogger_internal','/feeds/64832133018470584/posts/default/4865480704604494611'),(1632,276,'blogger_blog','monicarenata.blogspot.com'),(1633,276,'blogger_author','Monica Renata'),(1634,276,'blogger_permalink','/2013/06/horrific-travels.html'),(1635,276,'blogger_internal','/feeds/64832133018470584/posts/default/7723128616380543954'),(2816,422,'_wp_attached_file','2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg'),(1638,277,'blogger_blog','monicarenata.blogspot.com'),(1639,277,'blogger_author','Monica Renata'),(1640,277,'blogger_permalink','/2013/06/tomorrow.html'),(1641,277,'blogger_internal','/feeds/64832133018470584/posts/default/4031310146351905218'),(1644,278,'blogger_blog','monicarenata.blogspot.com'),(1645,278,'blogger_author','Monica Renata'),(1646,278,'blogger_permalink','/2013/06/weekly-challenge-8-know-your-worth.html'),(1647,278,'blogger_internal','/feeds/64832133018470584/posts/default/345504288180766377'),(1650,279,'blogger_blog','monicarenata.blogspot.com'),(1651,279,'blogger_author','Monica Renata'),(1652,279,'blogger_permalink','/2013/05/a-new-beginning.html'),(1653,279,'blogger_internal','/feeds/64832133018470584/posts/default/1775095228561021515'),(2915,432,'_wp_attached_file','2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg'),(1656,280,'blogger_blog','monicarenata.blogspot.com'),(1657,280,'blogger_author','Monica Renata'),(1658,280,'blogger_permalink','/2013/05/river-of-tears.html'),(1659,280,'blogger_internal','/feeds/64832133018470584/posts/default/398572260847969908'),(1662,281,'blogger_blog','monicarenata.blogspot.com'),(1663,281,'blogger_author','Monica Renata'),(1664,281,'blogger_permalink','/2013/05/tick-tock.html'),(1665,281,'blogger_internal','/feeds/64832133018470584/posts/default/7323288324484381408'),(2830,423,'_wp_attached_file','2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg'),(1668,282,'blogger_blog','monicarenata.blogspot.com'),(1669,282,'blogger_author','Monica Renata'),(1670,282,'blogger_permalink','/2013/05/weekly-challenge-7-find-out-what.html'),(1671,282,'blogger_internal','/feeds/64832133018470584/posts/default/7420509102347312628'),(1674,283,'blogger_blog','monicarenata.blogspot.com'),(1675,283,'blogger_author','Monica Renata'),(1676,283,'blogger_permalink','/2013/05/standards.html'),(1677,283,'blogger_internal','/feeds/64832133018470584/posts/default/3701215816071597812'),(2837,424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2013/11/peace-be-still.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"peace-be-still-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:\"peace-be-still-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:26:\"peace-be-still-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"peace-be-still-800x576.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1680,284,'blogger_blog','monicarenata.blogspot.com'),(1681,284,'blogger_author','Monica Renata'),(1682,284,'blogger_permalink','/2013/05/if-i-had-million-wishes.html'),(1683,284,'blogger_internal','/feeds/64832133018470584/posts/default/4821908780325201854'),(1686,285,'blogger_blog','monicarenata.blogspot.com'),(1687,285,'blogger_author','Monica Renata'),(1688,285,'blogger_permalink','/2013/05/because-i-have-sister.html'),(1689,285,'blogger_internal','/feeds/64832133018470584/posts/default/5782051711502430655'),(1692,286,'blogger_blog','monicarenata.blogspot.com'),(1693,286,'blogger_author','Monica Renata'),(1694,286,'blogger_permalink','/2013/05/the-truth-about-my-love-poem.html'),(1695,286,'blogger_internal','/feeds/64832133018470584/posts/default/135655046703665138'),(2836,424,'_wp_attached_file','2013/11/peace-be-still.jpg'),(1698,287,'blogger_blog','monicarenata.blogspot.com'),(1699,287,'blogger_author','Monica Renata'),(1700,287,'blogger_permalink','/2013/05/the-kindest-heart.html'),(1701,287,'blogger_internal','/feeds/64832133018470584/posts/default/5184064192494158200'),(1704,288,'blogger_blog','monicarenata.blogspot.com'),(1705,288,'blogger_author','Monica Renata'),(1706,288,'blogger_permalink','/2013/05/sweet-love.html'),(1707,288,'blogger_internal','/feeds/64832133018470584/posts/default/699171782166869872'),(1710,289,'blogger_blog','monicarenata.blogspot.com'),(1711,289,'blogger_author','Monica Renata'),(1712,289,'blogger_permalink','/2013/05/the-windy-night.html'),(1713,289,'blogger_internal','/feeds/64832133018470584/posts/default/5908964885169157786'),(2433,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:346;s:4:\"file\";s:82:\"2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-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:82:\"41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-197x300.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2843,425,'_wp_attached_file','2013/11/thoughts-are-seeds-640x960.jpg'),(1716,290,'blogger_blog','monicarenata.blogspot.com'),(1717,290,'blogger_author','Monica Renata'),(1718,290,'blogger_permalink','/2013/05/fear.html'),(1719,290,'blogger_internal','/feeds/64832133018470584/posts/default/2628101961519543711'),(1722,291,'blogger_blog','monicarenata.blogspot.com'),(1723,291,'blogger_author','Monica Renata'),(1724,291,'blogger_permalink','/2013/05/weekly-challenge-6-share-childhood.html'),(1725,291,'blogger_internal','/feeds/64832133018470584/posts/default/7761406973533454271'),(1728,292,'blogger_blog','monicarenata.blogspot.com'),(1729,292,'blogger_author','Monica Renata'),(1730,292,'blogger_permalink','/2013/05/quit-give-up-youre-beaten.html'),(1731,292,'blogger_internal','/feeds/64832133018470584/posts/default/8529726378022578147'),(1734,293,'blogger_blog','monicarenata.blogspot.com'),(1735,293,'blogger_author','Monica Renata'),(1736,293,'blogger_permalink','/2013/05/to-you.html'),(1737,293,'blogger_internal','/feeds/64832133018470584/posts/default/5380527000738791788'),(1740,294,'blogger_blog','monicarenata.blogspot.com'),(1741,294,'blogger_author','Monica Renata'),(1742,294,'blogger_permalink','/2013/05/from-head-to-toe.html'),(1743,294,'blogger_internal','/feeds/64832133018470584/posts/default/3652448158837258888'),(1746,295,'blogger_blog','monicarenata.blogspot.com'),(1747,295,'blogger_author','Monica Renata'),(1748,295,'blogger_permalink','/2013/05/im-glad-it-wasnt-me.html'),(1749,295,'blogger_internal','/feeds/64832133018470584/posts/default/26500156470523678'),(2431,86,'_thumbnail_id','382'),(1752,296,'blogger_blog','monicarenata.blogspot.com'),(1753,296,'blogger_author','Monica Renata'),(1754,296,'blogger_permalink','/2013/05/weekly-challenge-5-list-25-truths-about.html'),(1755,296,'blogger_internal','/feeds/64832133018470584/posts/default/9132921107980058930'),(1758,297,'blogger_blog','monicarenata.blogspot.com'),(1759,297,'blogger_author','Monica Renata'),(1760,297,'blogger_permalink','/2013/05/a-choice.html'),(1761,297,'blogger_internal','/feeds/64832133018470584/posts/default/2211583067774518820'),(2430,382,'blogger_author','Monica Renata'),(1764,298,'blogger_blog','monicarenata.blogspot.com'),(1765,298,'blogger_author','Monica Renata'),(1766,298,'blogger_permalink','/2013/05/or-is-it-too-late.html'),(1767,298,'blogger_internal','/feeds/64832133018470584/posts/default/3888753524502356796'),(1770,299,'blogger_blog','monicarenata.blogspot.com'),(1771,299,'blogger_author','Monica Renata'),(1772,299,'blogger_permalink','/2013/05/weekly-challenge-4-determine-how-you.html'),(1773,299,'blogger_internal','/feeds/64832133018470584/posts/default/1088582427131522313'),(1776,300,'blogger_blog','monicarenata.blogspot.com'),(1777,300,'blogger_author','Monica Renata'),(1778,300,'blogger_permalink','/2013/05/without-words.html'),(1779,300,'blogger_internal','/feeds/64832133018470584/posts/default/5193092710507383935'),(1782,301,'blogger_blog','monicarenata.blogspot.com'),(1783,301,'blogger_author','Monica Renata'),(1784,301,'blogger_permalink','/2013/05/speak.html'),(1785,301,'blogger_internal','/feeds/64832133018470584/posts/default/7501597441846868113'),(2429,382,'blogger_blog','monicarenata.blogspot.com'),(2855,426,'_wp_attached_file','2013/11/love-heart-writing-letter.jpg'),(1788,302,'blogger_blog','monicarenata.blogspot.com'),(1789,302,'blogger_author','Monica Renata'),(1790,302,'blogger_permalink','/2013/05/the-world.html'),(1791,302,'blogger_internal','/feeds/64832133018470584/posts/default/6502939004066166273'),(2856,426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:480;s:4:\"file\";s:37:\"2013/11/love-heart-writing-letter.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"love-heart-writing-letter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"love-heart-writing-letter-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"love-heart-writing-letter-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1794,303,'blogger_blog','monicarenata.blogspot.com'),(1795,303,'blogger_author','Monica Renata'),(1796,303,'blogger_permalink','/2013/04/reality-tv.html'),(1797,303,'blogger_internal','/feeds/64832133018470584/posts/default/7169435719625516721'),(1800,304,'blogger_blog','monicarenata.blogspot.com'),(1801,304,'blogger_author','Monica Renata'),(1802,304,'blogger_permalink','/2013/04/weekly-challenge-3-appreciate-what-you.html'),(1803,304,'blogger_internal','/feeds/64832133018470584/posts/default/841091475397033747'),(1806,305,'blogger_blog','monicarenata.blogspot.com'),(1807,305,'blogger_author','Monica Renata'),(1808,305,'blogger_permalink','/2013/04/i-am-just-like-you.html'),(1809,305,'blogger_internal','/feeds/64832133018470584/posts/default/1270736274982519267'),(1812,306,'blogger_blog','monicarenata.blogspot.com'),(1813,306,'blogger_author','Monica Renata'),(1814,306,'blogger_permalink','/2013/04/as-i-walk-in-my-dreams.html'),(1815,306,'blogger_internal','/feeds/64832133018470584/posts/default/4118086327559130881'),(1818,307,'blogger_blog','monicarenata.blogspot.com'),(1819,307,'blogger_author','Monica Renata'),(1820,307,'blogger_permalink','/2013/04/love-run-free.html'),(1821,307,'blogger_internal','/feeds/64832133018470584/posts/default/8066861157840765925'),(1824,308,'blogger_blog','monicarenata.blogspot.com'),(1825,308,'blogger_author','Monica Renata'),(1826,308,'blogger_permalink','/2013/04/brown-blue-green-and-hazel.html'),(1827,308,'blogger_internal','/feeds/64832133018470584/posts/default/7546169687298562769'),(2428,382,'blogger_permalink','http://1.bp.blogspot.com/-YMA4Jtstngk/UvwVKVEWrMI/AAAAAAAAAWk/fY6NAQOJOHY/s1600/Valentine\'s+Freebie.JPG'),(1830,309,'blogger_blog','monicarenata.blogspot.com'),(1831,309,'blogger_author','Monica Renata'),(1832,309,'blogger_permalink','/2013/04/winter.html'),(1833,309,'blogger_internal','/feeds/64832133018470584/posts/default/6156354070551026158'),(1836,310,'blogger_blog','monicarenata.blogspot.com'),(1837,310,'blogger_author','Monica Renata'),(1838,310,'blogger_permalink','/2013/04/why-do-women-say-chilvalry-is-dead.html'),(1839,310,'blogger_internal','/feeds/64832133018470584/posts/default/3005889440024776978'),(1842,311,'blogger_blog','monicarenata.blogspot.com'),(1843,311,'blogger_author','Monica Renata'),(1844,311,'blogger_permalink','/2013/04/we-are-together.html'),(1845,311,'blogger_internal','/feeds/64832133018470584/posts/default/2566671318742311592'),(1848,312,'blogger_blog','monicarenata.blogspot.com'),(1849,312,'blogger_author','Monica Renata'),(1850,312,'blogger_permalink','/2013/04/weekly-challenge-2-know-thyself.html'),(1851,312,'blogger_internal','/feeds/64832133018470584/posts/default/6074654009378844453'),(1854,313,'blogger_blog','monicarenata.blogspot.com'),(1855,313,'blogger_author','Monica Renata'),(1856,313,'blogger_permalink','/2013/04/floating.html'),(1857,313,'blogger_internal','/feeds/64832133018470584/posts/default/6177812003211479261'),(1860,314,'blogger_blog','monicarenata.blogspot.com'),(1861,314,'blogger_author','Monica Renata'),(1862,314,'blogger_permalink','/2013/04/small-but-sweet.html'),(1863,314,'blogger_internal','/feeds/64832133018470584/posts/default/738794088529324083'),(2866,427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2013/11/just-friends-01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"just-friends-01-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:\"just-friends-01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1866,315,'blogger_blog','monicarenata.blogspot.com'),(1867,315,'blogger_author','Monica Renata'),(1868,315,'blogger_permalink','/2013/04/the-truth-shall-set-you-free.html'),(1869,315,'blogger_internal','/feeds/64832133018470584/posts/default/3933558801328176441'),(1872,316,'blogger_blog','monicarenata.blogspot.com'),(1873,316,'blogger_author','Monica Renata'),(1874,316,'blogger_permalink','/2013/04/beneath-willow-tree.html'),(1875,316,'blogger_internal','/feeds/64832133018470584/posts/default/6840434293451841436'),(1878,317,'blogger_blog','monicarenata.blogspot.com'),(1879,317,'blogger_author','Monica Renata'),(1880,317,'blogger_permalink','/2013/04/the-fear-of-being-single.html'),(1881,317,'blogger_internal','/feeds/64832133018470584/posts/default/3864816883882539555'),(2865,427,'_wp_attached_file','2013/11/just-friends-01.jpg'),(1884,318,'blogger_blog','monicarenata.blogspot.com'),(1885,318,'blogger_author','Monica Renata'),(1886,318,'blogger_permalink','/2013/04/pen-and-paper.html'),(1887,318,'blogger_internal','/feeds/64832133018470584/posts/default/4848338647314072744'),(1890,319,'blogger_blog','monicarenata.blogspot.com'),(1891,319,'blogger_author','Monica Renata'),(1892,319,'blogger_permalink','/2013/04/weekly-challenge-1-take-time-to.html'),(1893,319,'blogger_internal','/feeds/64832133018470584/posts/default/8134492836417740703'),(1896,320,'blogger_blog','monicarenata.blogspot.com'),(1897,320,'blogger_author','Monica Renata'),(1898,320,'blogger_permalink','/2013/04/just-random-thought.html'),(1899,320,'blogger_internal','/feeds/64832133018470584/posts/default/6935614809905953443'),(1902,321,'blogger_blog','monicarenata.blogspot.com'),(1903,321,'blogger_author','Monica Renata'),(1904,321,'blogger_permalink','/2013/04/the-battle.html'),(1905,321,'blogger_internal','/feeds/64832133018470584/posts/default/4669874903221380217'),(1906,322,'blogger_blog','monicarenata.blogspot.com'),(1907,322,'blogger_author','Monica Renata'),(1908,322,'blogger_internal','/feeds/64832133018470584/posts/default/3478583627565108226'),(1911,323,'blogger_blog','monicarenata.blogspot.com'),(1912,323,'blogger_author','Monica Renata'),(1913,323,'blogger_permalink','/2013/04/you.html'),(1914,323,'blogger_internal','/feeds/64832133018470584/posts/default/6471011434924178796'),(1917,324,'blogger_blog','monicarenata.blogspot.com'),(1918,324,'blogger_author','Monica Renata'),(1919,324,'blogger_permalink','/2013/04/what-are-you-thankful-for.html'),(1920,324,'blogger_internal','/feeds/64832133018470584/posts/default/5751030828475797466'),(2873,428,'_wp_attached_file','2013/11/your-thoughts-create-your-futre-crop.png'),(1923,325,'blogger_blog','monicarenata.blogspot.com'),(1924,325,'blogger_author','Monica Renata'),(1925,325,'blogger_permalink','/2013/04/the-seed.html'),(1926,325,'blogger_internal','/feeds/64832133018470584/posts/default/7774466046676385601'),(2874,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:538;s:6:\"height\";i:404;s:4:\"file\";s:48:\"2013/11/your-thoughts-create-your-futre-crop.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"your-thoughts-create-your-futre-crop-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:\"your-thoughts-create-your-futre-crop-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"your-thoughts-create-your-futre-crop-538x372.png\";s:5:\"width\";i:538;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1929,326,'blogger_blog','monicarenata.blogspot.com'),(1930,326,'blogger_author','Monica Renata'),(1931,326,'blogger_permalink','/2013/04/the-realization.html'),(1932,326,'blogger_internal','/feeds/64832133018470584/posts/default/3169850024330239506'),(1935,327,'blogger_blog','monicarenata.blogspot.com'),(1936,327,'blogger_author','Monica Renata'),(1937,327,'blogger_permalink','/2013/04/if-love-was-meant-for-me.html'),(1938,327,'blogger_internal','/feeds/64832133018470584/posts/default/2362039100628437132'),(1941,328,'blogger_blog','monicarenata.blogspot.com'),(1942,328,'blogger_author','Monica Renata'),(1943,328,'blogger_permalink','/2013/04/the-drink.html'),(1944,328,'blogger_internal','/feeds/64832133018470584/posts/default/8994130695334448243'),(1947,329,'blogger_blog','monicarenata.blogspot.com'),(1948,329,'blogger_author','Monica Renata'),(1949,329,'blogger_permalink','/2013/04/the-little-girl-who-believed.html'),(1950,329,'blogger_internal','/feeds/64832133018470584/posts/default/7993695533260991718'),(1953,330,'blogger_blog','monicarenata.blogspot.com'),(1954,330,'blogger_author','Monica Renata'),(1955,330,'blogger_permalink','/2013/04/these-feelings.html'),(1956,330,'blogger_internal','/feeds/64832133018470584/posts/default/7205152284906119602'),(1959,331,'blogger_blog','monicarenata.blogspot.com'),(1960,331,'blogger_author','Monica Renata'),(1961,331,'blogger_permalink','/2013/04/are-you-sure.html'),(1962,331,'blogger_internal','/feeds/64832133018470584/posts/default/7382100755306843401'),(1965,332,'blogger_blog','monicarenata.blogspot.com'),(1966,332,'blogger_author','Monica Renata'),(1967,332,'blogger_permalink','/2013/04/the-wall.html'),(1968,332,'blogger_internal','/feeds/64832133018470584/posts/default/2707719404903244770'),(1971,333,'blogger_blog','monicarenata.blogspot.com'),(1972,333,'blogger_author','Monica Renata'),(1973,333,'blogger_permalink','/2013/04/its-not-much-but-its-all-i-have.html'),(1974,333,'blogger_internal','/feeds/64832133018470584/posts/default/7630406821031379282'),(1977,334,'blogger_blog','monicarenata.blogspot.com'),(1978,334,'blogger_author','Monica Renata'),(1979,334,'blogger_permalink','/2013/04/the-reality-of-loss.html'),(1980,334,'blogger_internal','/feeds/64832133018470584/posts/default/4309954208151811125'),(1983,335,'blogger_blog','monicarenata.blogspot.com'),(1984,335,'blogger_author','Monica Renata'),(1985,335,'blogger_permalink','/2013/04/my-heart-in-words.html'),(1986,335,'blogger_internal','/feeds/64832133018470584/posts/default/5355875066214317029'),(2881,429,'_wp_attached_file','2013/11/67370957_swan.jpg'),(1989,336,'blogger_blog','monicarenata.blogspot.com'),(1990,336,'blogger_author','Monica Renata'),(1991,336,'blogger_permalink','/2013/04/why-are-we-afraid-to-fall.html'),(1992,336,'blogger_internal','/feeds/64832133018470584/posts/default/7968360694918584717'),(2882,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:351;s:4:\"file\";s:25:\"2013/11/67370957_swan.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"67370957_swan-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:\"67370957_swan-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1995,337,'blogger_blog','monicarenata.blogspot.com'),(1996,337,'blogger_author','Monica Renata'),(1997,337,'blogger_permalink','/2013/04/true-beauty.html'),(1998,337,'blogger_internal','/feeds/64832133018470584/posts/default/8037716734726774956'),(2884,429,'blogger_blog','monicarenata.blogspot.com'),(2001,338,'blogger_blog','monicarenata.blogspot.com'),(2002,338,'blogger_author','Monica Renata'),(2003,338,'blogger_permalink','/2013/04/gossip.html'),(2004,338,'blogger_internal','/feeds/64832133018470584/posts/default/626948181960114727'),(2007,339,'blogger_blog','monicarenata.blogspot.com'),(2008,339,'blogger_author','Monica Renata'),(2009,339,'blogger_permalink','/2013/04/kindness.html'),(2010,339,'blogger_internal','/feeds/64832133018470584/posts/default/1807377814923641522'),(2013,340,'blogger_blog','monicarenata.blogspot.com'),(2014,340,'blogger_author','Monica Renata'),(2015,340,'blogger_permalink','/2013/04/feeling-alone_2.html'),(2016,340,'blogger_internal','/feeds/64832133018470584/posts/default/6941646193790579241'),(2019,341,'blogger_blog','monicarenata.blogspot.com'),(2020,341,'blogger_author','Monica Renata'),(2021,341,'blogger_permalink','/2013/04/the-endless-circle.html'),(2022,341,'blogger_internal','/feeds/64832133018470584/posts/default/998239175862619319'),(2025,342,'blogger_blog','monicarenata.blogspot.com'),(2026,342,'blogger_author','Monica Renata'),(2027,342,'blogger_permalink','/2013/04/draft-me-portrait.html'),(2028,342,'blogger_internal','/feeds/64832133018470584/posts/default/1793196253665496557'),(2031,343,'blogger_blog','monicarenata.blogspot.com'),(2032,343,'blogger_author','Monica Renata'),(2033,343,'blogger_permalink','/2013/04/the-rain.html'),(2034,343,'blogger_internal','/feeds/64832133018470584/posts/default/1025256244193540107'),(2037,344,'blogger_blog','monicarenata.blogspot.com'),(2038,344,'blogger_author','Monica Renata'),(2039,344,'blogger_permalink','/2013/04/its-only-temporary.html'),(2040,344,'blogger_internal','/feeds/64832133018470584/posts/default/7598591532982127129'),(2427,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:494;s:6:\"height\";i:516;s:4:\"file\";s:31:\"2014/02/Valentine-s-Freebie.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Valentine-s-Freebie-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:\"Valentine-s-Freebie-287x300.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Valentine-s-Freebie-494x372.jpg\";s:5:\"width\";i:494;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2043,345,'blogger_blog','monicarenata.blogspot.com'),(2044,345,'blogger_author','Monica Renata'),(2045,345,'blogger_permalink','/2013/04/no-love-lostno-love-found.html'),(2046,345,'blogger_internal','/feeds/64832133018470584/posts/default/6686933893737046273'),(2049,346,'blogger_blog','monicarenata.blogspot.com'),(2050,346,'blogger_author','Monica Renata'),(2051,346,'blogger_permalink','/2013/04/who-are-you-to-world.html'),(2052,346,'blogger_internal','/feeds/64832133018470584/posts/default/6747603558227675668'),(2055,347,'blogger_blog','monicarenata.blogspot.com'),(2056,347,'blogger_author','Monica Renata'),(2057,347,'blogger_permalink','/2013/04/just-live.html'),(2058,347,'blogger_internal','/feeds/64832133018470584/posts/default/2975089578696577973'),(2426,382,'_wp_attached_file','2014/02/Valentine-s-Freebie.jpg'),(2061,348,'blogger_blog','monicarenata.blogspot.com'),(2062,348,'blogger_author','Monica Renata'),(2063,348,'blogger_permalink','/2013/04/is-this-really-love.html'),(2064,348,'blogger_internal','/feeds/64832133018470584/posts/default/2577616827890461998'),(2889,430,'_wp_attached_file','2013/11/man_woman_tug-of-war.jpg'),(2067,349,'blogger_blog','monicarenata.blogspot.com'),(2068,349,'blogger_author','Monica Renata'),(2069,349,'blogger_permalink','/2013/04/hello.html'),(2070,349,'blogger_internal','/feeds/64832133018470584/posts/default/5399372472483720547'),(2890,430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:849;s:6:\"height\";i:565;s:4:\"file\";s:32:\"2013/11/man_woman_tug-of-war.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"man_woman_tug-of-war-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"man_woman_tug-of-war-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"man_woman_tug-of-war-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:13;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1294402698;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"43\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(2954,189,'_thumbnail_id','436'),(2423,85,'_thumbnail_id','381'),(2422,381,'blogger_author','Monica Renata'),(2091,350,'_wp_attached_file','2014/06/weepingwillow-jpg.jpg'),(2092,350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2014/06/weepingwillow-jpg.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"weepingwillow-jpg-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:29:\"weepingwillow-jpg-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"weepingwillow-jpg-436x372.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"weepingwillow-jpg-436x576.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2093,350,'blogger_permalink','http://c85c7a.medialib.glogster.com/media/f7/f7b0fc9deaba79affa3a2fe81373f1b8888e60aa31f48b61036d77ea517c5b12/weepingwillow-jpg.jpg'),(2094,350,'blogger_blog','monicarenata.blogspot.com'),(2095,350,'blogger_author','Monica Renata'),(2096,14,'_thumbnail_id','350'),(2421,381,'blogger_blog','monicarenata.blogspot.com'),(2420,381,'blogger_permalink','http://www.clipartpal.com/_thumbs/bus_transportation_118386_tns.png'),(2906,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:28:\"2013/11/dexstarr-300x250.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"dexstarr-300x250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2905,431,'_wp_attached_file','2013/11/dexstarr-300x250.jpg'),(2123,351,'_wp_attached_file','2014/05/4261206112_544d39afa2_o.png'),(2124,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1237;s:4:\"file\";s:35:\"2014/05/4261206112_544d39afa2_o.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"4261206112_544d39afa2_o-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:\"4261206112_544d39afa2_o-194x300.png\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"4261206112_544d39afa2_o-662x1024.png\";s:5:\"width\";i:662;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"4261206112_544d39afa2_o-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"4261206112_544d39afa2_o-800x576.png\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2125,351,'blogger_permalink','http://farm5.static.flickr.com/4063/4261206112_544d39afa2_o.png'),(2126,351,'blogger_blog','monicarenata.blogspot.com'),(2127,351,'blogger_author','Monica Renata'),(2128,27,'_thumbnail_id','351'),(2131,352,'_wp_attached_file','2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg'),(2132,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:746;s:4:\"file\";s:42:\"2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_mde3v9UaLP1qf01fko1_500-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:\"tumblr_mde3v9UaLP1qf01fko1_500-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_mde3v9UaLP1qf01fko1_500-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"tumblr_mde3v9UaLP1qf01fko1_500-500x576.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2133,352,'blogger_permalink','http://25.media.tumblr.com/tumblr_mde3v9UaLP1qf01fko1_500.jpg'),(2134,352,'blogger_blog','monicarenata.blogspot.com'),(2135,352,'blogger_author','Monica Renata'),(2136,28,'_thumbnail_id','352'),(2140,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2014/05/1038.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"1038-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:16:\"1038-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2141,353,'blogger_permalink','http://thevinylshack.com/images/T/1038.png'),(2142,353,'blogger_blog','monicarenata.blogspot.com'),(2143,353,'blogger_author','Monica Renata'),(2144,29,'_thumbnail_id','353'),(2147,354,'_wp_attached_file','2014/05/stormy-day-carol-mclagan.jpg'),(2148,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:671;s:4:\"file\";s:36:\"2014/05/stormy-day-carol-mclagan.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"stormy-day-carol-mclagan-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:\"stormy-day-carol-mclagan-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"stormy-day-carol-mclagan-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"stormy-day-carol-mclagan-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2149,354,'blogger_permalink','http://images.fineartamerica.com/images-medium-large/stormy-day-carol-mclagan.jpg'),(2150,354,'blogger_blog','monicarenata.blogspot.com'),(2151,354,'blogger_author','Monica Renata'),(2152,30,'_thumbnail_id','354'),(2156,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:497;s:6:\"height\";i:348;s:4:\"file\";s:23:\"2014/05/hear-me-now.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"hear-me-now-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:\"hear-me-now-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2157,355,'blogger_permalink','http://www.brainlesstales.com/images/2009/Mar/hear-me-now.jpg'),(2158,355,'blogger_blog','monicarenata.blogspot.com'),(2159,355,'blogger_author','Monica Renata'),(2160,31,'_thumbnail_id','355'),(2164,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:467;s:6:\"height\";i:406;s:4:\"file\";s:108:\"2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:108:\"Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net-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:108:\"Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:108:\"Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net-467x372.jpg\";s:5:\"width\";i:467;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2165,356,'blogger_permalink','http://www.fanzwave.net/photos/wp-content/uploads/2011/09/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg'),(2166,356,'blogger_blog','monicarenata.blogspot.com'),(2167,356,'blogger_author','Monica Renata'),(2168,32,'_thumbnail_id','356'),(2171,357,'_wp_attached_file','2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg'),(2173,357,'blogger_permalink','http://images6.fanpop.com/image/photos/33000000/Love-Wallpapers-love-33002134-1920-1200.jpg'),(2174,357,'blogger_blog','monicarenata.blogspot.com'),(2175,357,'blogger_author','Monica Renata'),(2176,33,'_thumbnail_id','357'),(2179,358,'_wp_attached_file','2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg'),(2180,358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:305;s:4:\"file\";s:44:\"2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"03bbe07ed579a83b7865d23ab1768fe4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"03bbe07ed579a83b7865d23ab1768fe4-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2181,358,'blogger_permalink','http://media-cache-ec0.pinimg.com/236x/03/bb/e0/03bbe07ed579a83b7865d23ab1768fe4.jpg'),(2182,358,'blogger_blog','monicarenata.blogspot.com'),(2183,358,'blogger_author','Monica Renata'),(2184,34,'_thumbnail_id','358'),(2419,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:101;s:4:\"file\";s:41:\"2014/02/bus_transportation_118386_tns.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2191,359,'_wp_attached_file','2014/05/sand-2.jpg'),(2192,359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:18:\"2014/05/sand-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"sand-2-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:\"sand-2-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:18:\"sand-2-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2193,359,'blogger_permalink','http://www.thisiscolossal.com/wp-content/uploads/2012/07/sand-2.jpg'),(2194,359,'blogger_blog','monicarenata.blogspot.com'),(2195,359,'blogger_author','Monica Renata'),(2196,37,'_thumbnail_id','359'),(2202,360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:368;s:6:\"height\";i:275;s:4:\"file\";s:38:\"2014/04/flipflops__1282149259_0040.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"flipflops__1282149259_0040-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:\"flipflops__1282149259_0040-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2203,360,'blogger_permalink','http://cache.boston.com/bonzai-fba/Third_Party_Photo/2010/08/18/flipflops__1282149259_0040.jpg'),(2204,360,'blogger_blog','monicarenata.blogspot.com'),(2205,360,'blogger_author','Monica Renata'),(2206,39,'_thumbnail_id','360'),(2580,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1091;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2014/01/Nap-20time-20ready-20to-20post.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Nap-20time-20ready-20to-20post-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:\"Nap-20time-20ready-20to-20post-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Nap-20time-20ready-20to-20post-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"Nap-20time-20ready-20to-20post-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:43:\"Nap-20time-20ready-20to-20post-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2218,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:430;s:4:\"file\";s:49:\"2014/04/When-There-Are-Footprints-On-The-Moon.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"When-There-Are-Footprints-On-The-Moon-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:\"When-There-Are-Footprints-On-The-Moon-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"When-There-Are-Footprints-On-The-Moon-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2219,361,'blogger_permalink','http://static4.quoteswave.com/wp-content/uploads/2012/06/When-There-Are-Footprints-On-The-Moon.jpg'),(2220,361,'blogger_blog','monicarenata.blogspot.com'),(2221,361,'blogger_author','Monica Renata'),(2222,44,'_thumbnail_id','361'),(2223,362,'_wp_attached_file','2014/04/e505355f36634704486fae0eebaba121.jpg'),(2225,362,'blogger_permalink','http://s3.amazonaws.com/static2.postcrossing.com/postcard/medium/e505355f36634704486fae0eebaba121.jpg'),(2226,362,'blogger_blog','monicarenata.blogspot.com'),(2227,362,'blogger_author','Monica Renata'),(2418,381,'_wp_attached_file','2014/02/bus_transportation_118386_tns.png'),(2233,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:75:\"2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:75:\"beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk-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:75:\"beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:76:\"beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:75:\"beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:76:\"beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2234,363,'blogger_permalink','http://picsmix.biz/wp-content/uploads/2013/08/beautiful-night-sky-moonouranos--our-farther-sky--cursed-lukt7irk.jpg'),(2235,363,'blogger_blog','monicarenata.blogspot.com'),(2236,363,'blogger_author','Monica Renata'),(2237,46,'_thumbnail_id','363'),(2432,383,'_wp_attached_file','2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg'),(2473,388,'_wp_attached_file','2014/02/broken-heart.jpg'),(2242,364,'_wp_attached_file','2014/04/after-the-storm.jpg'),(2243,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:332;s:4:\"file\";s:27:\"2014/04/after-the-storm.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"after-the-storm-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:\"after-the-storm-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2244,364,'blogger_permalink','http://1.bp.blogspot.com/-pwpWCEenEdI/Ty_CgVoihpI/AAAAAAAAAIo/E1mRdfPSXvo/s1600/after+the+storm.jpg'),(2245,364,'blogger_blog','monicarenata.blogspot.com'),(2246,364,'blogger_author','Monica Renata'),(2247,48,'_thumbnail_id','364'),(2251,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:534;s:6:\"height\";i:580;s:4:\"file\";s:84:\"2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:84:\"rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you-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:84:\"rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you-276x300.jpg\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:84:\"rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you-534x372.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:84:\"rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you-534x576.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2252,365,'blogger_permalink','http://dailypositivequotes.com/quotes-images/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg'),(2253,365,'blogger_blog','monicarenata.blogspot.com'),(2254,365,'blogger_author','Monica Renata'),(2255,49,'_thumbnail_id','365'),(2258,366,'_wp_attached_file','2014/04/holding-on-letting-go.jpg'),(2259,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:368;s:4:\"file\";s:33:\"2014/04/holding-on-letting-go.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"holding-on-letting-go-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:\"holding-on-letting-go-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:10:{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:60:\"© eyeofgotham - http://www.redbubble.com/people/eyeofgotham\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2260,366,'blogger_permalink','http://androxmedia.files.wordpress.com/2012/10/holding-on-letting-go.jpg'),(2261,366,'blogger_blog','monicarenata.blogspot.com'),(2262,366,'blogger_author','Monica Renata'),(2263,50,'_thumbnail_id','366'),(2483,389,'_wp_attached_file','2014/01/Handeling-sticky-situations-illustrations.jpg'),(2491,390,'_wp_attached_file','2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg'),(2501,391,'_wp_attached_file','2014/01/sneaky.jpg'),(2916,432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3264;s:6:\"height\";i:1840;s:4:\"file\";s:53:\"2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Lujuria_Lust_Pecado_Original_-3969921829--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Lujuria_Lust_Pecado_Original_-3969921829--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:54:\"Lujuria_Lust_Pecado_Original_-3969921829--1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:53:\"Lujuria_Lust_Pecado_Original_-3969921829--672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:54:\"Lujuria_Lust_Pecado_Original_-3969921829--1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DMC-LS80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1254328871;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.5\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(2271,367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2014/03/feathers-in-the-wind.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"feathers-in-the-wind-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"feathers-in-the-wind-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"feathers-in-the-wind-310x372.jpg\";s:5:\"width\";i:310;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2272,367,'blogger_permalink','http://gafuwebuli.files.wordpress.com/2011/02/feathers-in-the-wind.jpg'),(2273,367,'blogger_blog','monicarenata.blogspot.com'),(2274,367,'blogger_author','Monica Renata'),(2275,53,'_thumbnail_id','367'),(2502,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2014/01/sneaky.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"sneaky-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:\"sneaky-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"sneaky-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"sneaky-839x576.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2925,433,'_wp_attached_file','2013/11/Fairhope_Swing-under-the-tree-9x7.jpg'),(2281,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2014/03/10838428-256-k757623.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"10838428-256-k757623-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"10838428-256-k757623-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"10838428-256-k757623-256x372.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2282,368,'blogger_permalink','http://a.wattpad.com/cover/10838428-256-k757623.jpg'),(2283,368,'blogger_blog','monicarenata.blogspot.com'),(2284,368,'blogger_author','Monica Renata'),(2285,55,'_thumbnail_id','368'),(2953,436,'blogger_author','Monica Renata'),(2290,369,'_wp_attached_file','2014/03/lonely-warrior.jpg'),(2291,369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:566;s:4:\"file\";s:26:\"2014/03/lonely-warrior.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"lonely-warrior-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:\"lonely-warrior-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"lonely-warrior-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2292,369,'blogger_permalink','http://2.bp.blogspot.com/-3zqTOpVtT2k/UNMrTFfCb5I/AAAAAAAAAME/dV4xmpynuu8/s1600/lonely-warrior.jpg'),(2293,369,'blogger_blog','monicarenata.blogspot.com'),(2294,369,'blogger_author','Monica Renata'),(2295,57,'_thumbnail_id','369'),(2952,436,'blogger_blog','monicarenata.blogspot.com'),(2298,370,'_wp_attached_file','2014/03/victory-02.jpg'),(2299,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2014/03/victory-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"victory-02-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:\"victory-02-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"victory-02-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2300,370,'blogger_permalink','https://theswagsociety.com/wp-content/uploads/2014/01/victory-02.jpg'),(2301,370,'blogger_blog','monicarenata.blogspot.com'),(2302,370,'blogger_author','Monica Renata'),(2303,58,'_thumbnail_id','370'),(2528,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:328;s:4:\"file\";s:50:\"2014/01/You-20Light-20Up-20My-20Life-20image_1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"You-20Light-20Up-20My-20Life-20image_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:50:\"You-20Light-20Up-20My-20Life-20image_1-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2308,371,'_wp_attached_file','2014/03/6493303807_a057536651_z.jpg'),(2309,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:35:\"2014/03/6493303807_a057536651_z.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"6493303807_a057536651_z-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:\"6493303807_a057536651_z-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"6493303807_a057536651_z-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2310,371,'blogger_permalink','http://farm8.staticflickr.com/7011/6493303807_a057536651_z.jpg'),(2311,371,'blogger_blog','monicarenata.blogspot.com'),(2312,371,'blogger_author','Monica Renata'),(2313,60,'_thumbnail_id','371'),(2316,372,'_wp_attached_file','2014/03/35.jpg'),(2318,372,'blogger_permalink','http://i.ebayimg.com/00/s/MTAyNFg3Njc=/z/~~0AAOxyeR9TGn0C/$_35.JPG'),(2319,372,'blogger_blog','monicarenata.blogspot.com'),(2320,372,'blogger_author','Monica Renata'),(2321,61,'_thumbnail_id','372'),(2326,373,'_wp_attached_file','2014/03/letter.jpg'),(2327,373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:18:\"2014/03/letter.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"letter-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:\"letter-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2328,373,'blogger_permalink','http://2.bp.blogspot.com/-8HXaclc6lqw/UBvgjxDRbGI/AAAAAAAAAMo/CGV-gJZy2Vs/s1600/letter.jpg'),(2329,373,'blogger_blog','monicarenata.blogspot.com'),(2330,373,'blogger_author','Monica Renata'),(2331,63,'_thumbnail_id','373'),(2527,394,'_wp_attached_file','2014/01/You-20Light-20Up-20My-20Life-20image_1.png'),(2933,434,'_wp_attached_file','2013/11/img_0414.jpg'),(2951,436,'blogger_permalink','http://fc03.deviantart.net/fs71/i/2010/217/3/d/walking_on_hell_by_Emersonpriest.jpg'),(2341,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:87:\"2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:87:\"2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie-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:87:\"2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:87:\"2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2342,374,'blogger_permalink','http://www.colourbox.com/preview/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg'),(2343,374,'blogger_blog','monicarenata.blogspot.com'),(2344,374,'blogger_author','Monica Renata'),(2345,67,'_thumbnail_id','374'),(2348,375,'_wp_attached_file','2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png'),(2349,375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:353;s:4:\"file\";s:70:\"2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"quote-about-dont-make-me-wait-just-because-you-know-i-will-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:70:\"quote-about-dont-make-me-wait-just-because-you-know-i-will-300x211.png\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2350,375,'blogger_permalink','http://4.bp.blogspot.com/-rA3KjwHKc64/UxzwqiBXbXI/AAAAAAAAAeI/d9G-OImC0OU/s1600/quote-about-dont-make-me-wait-just-because-you-know-i-will.png'),(2351,375,'blogger_blog','monicarenata.blogspot.com'),(2352,375,'blogger_author','Monica Renata'),(2353,68,'_thumbnail_id','375'),(2356,376,'_wp_attached_file','2014/03/dont-keep-your-feeling.jpg'),(2357,376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:511;s:6:\"height\";i:383;s:4:\"file\";s:34:\"2014/03/dont-keep-your-feeling.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"dont-keep-your-feeling-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:\"dont-keep-your-feeling-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"dont-keep-your-feeling-511x372.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2358,376,'blogger_permalink','http://www.idlehearts.com/wp-content/uploads/2012/05/dont-keep-your-feeling.jpg'),(2359,376,'blogger_blog','monicarenata.blogspot.com'),(2360,376,'blogger_author','Monica Renata'),(2361,69,'_thumbnail_id','376'),(2545,396,'blogger_permalink','http://barbkampbell.com/wp-content/uploads/2010/10/wve-white-flag-260.jpg'),(2371,377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:28:\"2014/02/winter-to-spring.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2372,377,'blogger_permalink','http://www.testimoniesofhope.com/wp-content/uploads/2014/01/winter-to-spring.jpg'),(2373,377,'blogger_blog','monicarenata.blogspot.com'),(2374,377,'blogger_author','Monica Renata'),(2375,73,'_thumbnail_id','377'),(2378,378,'_wp_attached_file','2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png'),(2380,378,'blogger_permalink','http://mchenrycountyblog.com/wordpress/wp-content/uploads/2012/10/Personal-PAC-10-2-12-No-Exceptions-back-1.png'),(2381,378,'blogger_blog','monicarenata.blogspot.com'),(2382,378,'blogger_author','Monica Renata'),(2383,74,'_thumbnail_id','378'),(2395,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:29:\"2014/02/You-Are-Beautiful.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"You-Are-Beautiful-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:29:\"You-Are-Beautiful-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:29:\"You-Are-Beautiful-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2396,379,'blogger_permalink','http://www.thelawofattraction.com/wp-content/uploads/You-Are-Beautiful.jpg'),(2397,379,'blogger_blog','monicarenata.blogspot.com'),(2398,379,'blogger_author','Monica Renata'),(2399,79,'_thumbnail_id','379'),(2403,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:280;s:4:\"file\";s:31:\"2014/02/hanging-252520cliff.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"hanging-252520cliff-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2404,380,'blogger_permalink','http://4.bp.blogspot.com/-LFt4RrkMOrU/TvtNkFwSabI/AAAAAAAAAKY/G_C8k9yCYo4/s320/hanging%252520cliff.jpg'),(2405,380,'blogger_blog','monicarenata.blogspot.com'),(2406,380,'blogger_author','Monica Renata'),(2407,80,'_thumbnail_id','380'),(2462,387,'blogger_blog','monicarenata.blogspot.com'),(2463,387,'blogger_author','Monica Renata'),(2464,89,'_thumbnail_id','387'),(2474,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2014/02/broken-heart.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"broken-heart-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:\"broken-heart-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2475,388,'blogger_permalink','http://bocsupportnetwork.com/wp-content/uploads/2012/10/admin/2082/03/broken-heart.jpg'),(2476,388,'blogger_blog','monicarenata.blogspot.com'),(2477,388,'blogger_author','Monica Renata'),(2478,93,'_thumbnail_id','388'),(2938,187,'_thumbnail_id','434'),(2484,389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:609;s:4:\"file\";s:53:\"2014/01/Handeling-sticky-situations-illustrations.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Handeling-sticky-situations-illustrations-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Handeling-sticky-situations-illustrations-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:53:\"Handeling-sticky-situations-illustrations-520x372.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:53:\"Handeling-sticky-situations-illustrations-520x576.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2485,389,'blogger_permalink','http://www.migy.com/img/Handeling-sticky-situations-illustrations.jpg'),(2486,389,'blogger_blog','monicarenata.blogspot.com'),(2487,389,'blogger_author','Monica Renata'),(2488,95,'_thumbnail_id','389'),(2937,434,'blogger_author','Monica Renata'),(2492,390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:473;s:6:\"height\";i:355;s:4:\"file\";s:79:\"2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:79:\"claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa-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:79:\"claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2493,390,'blogger_permalink','http://imgc.allpostersimages.com/images/P-473-488-90/27/2746/6LDTD00Z/posters/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg'),(2494,390,'blogger_blog','monicarenata.blogspot.com'),(2495,390,'blogger_author','Monica Renata'),(2496,96,'_thumbnail_id','390'),(2936,434,'blogger_blog','monicarenata.blogspot.com'),(2503,391,'blogger_permalink','http://2.bp.blogspot.com/_RUN1Oej6TO8/TObhGvNbvlI/AAAAAAAAFhc/kZGyq79IGks/s1600/sneaky.jpg'),(2504,391,'blogger_blog','monicarenata.blogspot.com'),(2505,391,'blogger_author','Monica Renata'),(2506,98,'_thumbnail_id','391'),(2509,392,'_wp_attached_file','2014/01/Divorce1.jpg'),(2510,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:492;s:6:\"height\";i:327;s:4:\"file\";s:20:\"2014/01/Divorce1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Divorce1-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:\"Divorce1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2511,392,'blogger_permalink','http://www.dawnoneil.com/wp-content/uploads/2010/10/Divorce1.jpg'),(2512,392,'blogger_blog','monicarenata.blogspot.com'),(2513,392,'blogger_author','Monica Renata'),(2514,99,'_thumbnail_id','392'),(2519,393,'_wp_attached_file','2014/01/17.jpg'),(2520,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:232;s:4:\"file\";s:14:\"2014/01/17.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"17-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:14:\"17-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2521,393,'blogger_permalink','http://4.bp.blogspot.com/-oOwh_psHWzU/T5cbEHjI-hI/AAAAAAAAFEI/YZsC0ImCw1w/s1600/17.jpg'),(2522,393,'blogger_blog','monicarenata.blogspot.com'),(2523,393,'blogger_author','Monica Renata'),(2524,101,'_thumbnail_id','393'),(2935,434,'blogger_permalink','http://sarambrink.files.wordpress.com/2012/04/img_0414.jpg'),(2529,394,'blogger_permalink','http://www.collegehills.org/files/Images/Event%20Graphics/You%20Light%20Up%20My%20Life%20image_1.png'),(2530,394,'blogger_blog','monicarenata.blogspot.com'),(2531,394,'blogger_author','Monica Renata'),(2532,102,'_thumbnail_id','394'),(2544,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:358;s:4:\"file\";s:30:\"2014/01/wve-white-flag-260.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"wve-white-flag-260-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:\"wve-white-flag-260-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2535,395,'_wp_attached_file','2014/01/overcoming-inadequacy-21473584.jpg'),(2536,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:378;s:6:\"height\";i:244;s:4:\"file\";s:42:\"2014/01/overcoming-inadequacy-21473584.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"overcoming-inadequacy-21473584-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:\"overcoming-inadequacy-21473584-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2537,395,'blogger_permalink','http://www.lynettelewis.com/wp-content/uploads/2013/05/overcoming-inadequacy-21473584.jpg'),(2538,395,'blogger_blog','monicarenata.blogspot.com'),(2539,395,'blogger_author','Monica Renata'),(2540,103,'_thumbnail_id','395'),(2546,396,'blogger_blog','monicarenata.blogspot.com'),(2547,396,'blogger_author','Monica Renata'),(2548,104,'_thumbnail_id','396'),(2572,397,'blogger_blog','monicarenata.blogspot.com'),(2571,397,'blogger_permalink','http://www.burbahayes.com/wp-content/uploads/2012/10/Ready.jpg'),(2573,397,'blogger_author','Monica Renata'),(2574,114,'_thumbnail_id','397'),(2581,398,'blogger_permalink','http://dominiqueamendola.com/sites/amendola/files/imagecache/overlay/paintings/Nap%20time%20ready%20to%20post.jpg'),(2582,398,'blogger_blog','monicarenata.blogspot.com'),(2583,398,'blogger_author','Monica Renata'),(2584,116,'_thumbnail_id','398'),(2589,399,'blogger_permalink','http://www.irishculture.org/clientuploads/dancers1.jpg'),(2590,399,'blogger_blog','monicarenata.blogspot.com'),(2591,399,'blogger_author','Monica Renata'),(2592,117,'_thumbnail_id','399'),(2672,130,'_thumbnail_id','408'),(2596,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:73:\"2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario-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:73:\"31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:73:\"31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:73:\"31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario-800x576.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2597,400,'blogger_permalink','http://www.hgsitebuilder.com/files/writeable/uploads/hostgator967501/image/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg'),(2598,400,'blogger_blog','monicarenata.blogspot.com'),(2599,400,'blogger_author','Monica Renata'),(2600,118,'_thumbnail_id','400'),(2604,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:241;s:4:\"file\";s:22:\"2013/12/Can_tSleep.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Can_tSleep-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2605,401,'blogger_permalink','http://www.sleepcouncil.org.uk/wp-content/uploads/2013/06/Can_tSleep.jpg'),(2606,401,'blogger_blog','monicarenata.blogspot.com'),(2607,401,'blogger_author','Monica Renata'),(2608,119,'_thumbnail_id','401'),(2671,408,'blogger_author','Monica Renata'),(2613,402,'blogger_permalink','http://www.exampaper.com.sg/blog/wp-content/uploads/2011/07/fog-in-dark-forest.jpg'),(2614,402,'blogger_blog','monicarenata.blogspot.com'),(2615,402,'blogger_author','Monica Renata'),(2616,120,'_thumbnail_id','402'),(2622,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:25:\"2013/12/438906496_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"438906496_640-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:\"438906496_640-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:25:\"438906496_640-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2623,403,'blogger_permalink','http://b.vimeocdn.com/ts/438/906/438906496_640.jpg'),(2624,403,'blogger_blog','monicarenata.blogspot.com'),(2625,403,'blogger_author','Monica Renata'),(2626,122,'_thumbnail_id','403'),(2670,408,'blogger_blog','monicarenata.blogspot.com'),(2633,404,'blogger_permalink','http://lifestyledezine.com/wp-content/uploads/2013/04/walls.jpg'),(2634,404,'blogger_blog','monicarenata.blogspot.com'),(2635,404,'blogger_author','Monica Renata'),(2636,124,'_thumbnail_id','404'),(2641,405,'blogger_permalink','http://fineartamerica.com/images-simple-print/images-medium/the-giving-tree-jerry-kirk.jpg'),(2642,405,'blogger_blog','monicarenata.blogspot.com'),(2643,405,'blogger_author','Monica Renata'),(2649,406,'blogger_permalink','http://s3.amazonaws.com/rapgenius/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg'),(2650,406,'blogger_blog','monicarenata.blogspot.com'),(2651,406,'blogger_author','Monica Renata'),(2652,126,'_thumbnail_id','406'),(2660,407,'blogger_blog','monicarenata.blogspot.com'),(2661,407,'blogger_author','Monica Renata'),(2662,128,'_thumbnail_id','407'),(2669,408,'blogger_permalink','http://sr.photos3.fotosearch.com/bthumb/CSP/CSP466/k4660629.jpg'),(2688,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:466;s:4:\"file\";s:30:\"2013/12/200903-flokot-art7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"200903-flokot-art7-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:\"200903-flokot-art7-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"200903-flokot-art7-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2689,409,'blogger_permalink','http://darthmaulmakesmesmile.files.wordpress.com/2009/07/200903-flokot-art7.jpg'),(2690,409,'blogger_blog','monicarenata.blogspot.com'),(2691,409,'blogger_author','Monica Renata'),(2692,137,'_thumbnail_id','409'),(2950,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:44:\"2013/11/walking_on_hell_by_Emersonpriest.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"walking_on_hell_by_Emersonpriest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"walking_on_hell_by_Emersonpriest-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"walking_on_hell_by_Emersonpriest-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:44:\"walking_on_hell_by_Emersonpriest-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2699,141,'_thumbnail_id','383'),(2703,410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:1024;s:4:\"file\";s:42:\"2013/12/Screenshot_2013-11-21-07-18-40.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Screenshot_2013-11-21-07-18-40-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:42:\"Screenshot_2013-11-21-07-18-40-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"Screenshot_2013-11-21-07-18-40-576x372.png\";s:5:\"width\";i:576;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"Screenshot_2013-11-21-07-18-40-576x576.png\";s:5:\"width\";i:576;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2704,410,'blogger_permalink','http://lh3.ggpht.com/-1D_WdEsN-eI/Up_qoYdumLI/AAAAAAAAAUU/5KL0Tw_BM2A/s640/Screenshot_2013-11-21-07-18-40.png'),(2705,410,'blogger_blog','monicarenata.blogspot.com'),(2706,410,'blogger_author','Monica Renata'),(2707,142,'_thumbnail_id','410'),(2934,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:20:\"2013/11/img_0414.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_0414-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:\"img_0414-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"img_0414-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"img_0414-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"img_0414-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.3999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1335188747;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(2710,411,'_wp_attached_file','2013/12/when-i-grow-up.jpg'),(2712,411,'blogger_permalink','http://polysyllabicprofundities.files.wordpress.com/2012/09/when-i-grow-up.jpg'),(2713,411,'blogger_blog','monicarenata.blogspot.com'),(2714,411,'blogger_author','Monica Renata'),(2715,143,'_thumbnail_id','411'),(2949,436,'_wp_attached_file','2013/11/walking_on_hell_by_Emersonpriest.jpg'),(2720,412,'blogger_permalink','http://f.eed.bz/wp-content/uploads/2013/06/Ex_Business_Businessman-2.jpg'),(2721,412,'blogger_blog','monicarenata.blogspot.com'),(2722,412,'blogger_author','Monica Renata'),(2723,144,'_thumbnail_id','412'),(2946,188,'_thumbnail_id','435'),(2734,413,'_wp_attached_file','2013/12/IMG_756-761828.jpg'),(2735,413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2013/12/IMG_756-761828.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"IMG_756-761828-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:\"IMG_756-761828-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"IMG_756-761828-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"IMG_756-761828-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:24:\"Canon PowerShot SD800 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1198086788;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"12.672\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";}}'),(2736,413,'blogger_permalink','http://sarahlaurence.com/blog/uploaded_images/IMG_756-761828.jpg'),(2737,413,'blogger_blog','monicarenata.blogspot.com'),(2738,413,'blogger_author','Monica Renata'),(2739,150,'_thumbnail_id','413'),(2945,435,'blogger_author','Monica Renata'),(2944,435,'blogger_blog','monicarenata.blogspot.com'),(2746,414,'blogger_permalink','http://us.123rf.com/400wm/400/400/rumko/rumko1002/rumko100200009/6486319-cup-of-coffee.jpg'),(2747,414,'blogger_blog','monicarenata.blogspot.com'),(2748,414,'blogger_author','Monica Renata'),(2749,152,'_thumbnail_id','414'),(2758,415,'blogger_permalink','http://whyisuckatrunning.com/wp-content/uploads/2011/08/BuildIt.jpg'),(2759,415,'blogger_blog','monicarenata.blogspot.com'),(2760,415,'blogger_author','Monica Renata'),(2761,155,'_thumbnail_id','415'),(2943,435,'blogger_permalink','http://i.behappy.me/82343/preview.png'),(2765,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:276;s:4:\"file\";s:37:\"2013/11/Heart-shaped-confetti-007.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Heart-shaped-confetti-007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Heart-shaped-confetti-007-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:21:\"Terry Mathews / Alamy\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:5:\"Alamy\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:21:\"Heart-shaped confetti\";}}'),(2766,416,'blogger_permalink','http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2012/2/13/1329133809082/Heart-shaped-confetti-007.jpg'),(2767,416,'blogger_blog','monicarenata.blogspot.com'),(2768,416,'blogger_author','Monica Renata'),(2769,156,'_thumbnail_id','416'),(2774,417,'blogger_permalink','http://www.genealogyintime.com/Images/image%20cemetery%20in%20winter.jpg'),(2775,417,'blogger_blog','monicarenata.blogspot.com'),(2776,417,'blogger_author','Monica Renata'),(2777,157,'_thumbnail_id','417'),(2784,418,'blogger_permalink','http://farm9.staticflickr.com/8449/8059730530_6d699e4c0e_z.jpg'),(2785,418,'blogger_blog','monicarenata.blogspot.com'),(2786,418,'blogger_author','Monica Renata'),(2787,159,'_thumbnail_id','418'),(2792,419,'blogger_permalink','http://activerain.com/image_store/uploads/4/3/4/2/7/ar129451792772434.jpg'),(2793,419,'blogger_blog','monicarenata.blogspot.com'),(2794,419,'blogger_author','Monica Renata'),(2795,160,'_thumbnail_id','419'),(2800,420,'blogger_permalink','http://www.harrycutting.com/graphics/photos/children/african-american-boy-looking-in-mirror-F214-22-605.jpg'),(2801,420,'blogger_blog','monicarenata.blogspot.com'),(2802,420,'blogger_author','Monica Renata'),(2803,161,'_thumbnail_id','420'),(2807,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2013/11/stranger-704x300.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"stranger-704x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"stranger-704x300-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"stranger-704x300-672x300.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2808,421,'blogger_permalink','http://www.shawuniversitymosque.org/jt/wp-content/uploads/2012/07/stranger-704x300.jpg'),(2809,421,'blogger_blog','monicarenata.blogspot.com'),(2810,421,'blogger_author','Monica Renata'),(2811,162,'_thumbnail_id','421'),(2941,435,'_wp_attached_file','2013/11/preview.png'),(2818,422,'blogger_permalink','http://31.media.tumblr.com/tumblr_lfq206KzzK1qdg8qwo1_500.jpg'),(2819,422,'blogger_blog','monicarenata.blogspot.com'),(2820,422,'blogger_author','Monica Renata'),(2821,164,'_thumbnail_id','422'),(2831,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:295;s:4:\"file\";s:44:\"2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"7c434ee253bebfe9bb22487f8b31ba16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2832,423,'blogger_permalink','http://media-cache-ak0.pinimg.com/236x/7c/43/4e/7c434ee253bebfe9bb22487f8b31ba16.jpg'),(2833,423,'blogger_blog','monicarenata.blogspot.com'),(2834,423,'blogger_author','Monica Renata'),(2835,168,'_thumbnail_id','423'),(2838,424,'blogger_permalink','http://prisonersofhopeoutreach.com/wp-content/uploads/2011/08/peace-be-still.jpg'),(2839,424,'blogger_blog','monicarenata.blogspot.com'),(2840,424,'blogger_author','Monica Renata'),(2844,425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:38:\"2013/11/thoughts-are-seeds-640x960.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"thoughts-are-seeds-640x960-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:\"thoughts-are-seeds-640x960-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"thoughts-are-seeds-640x960-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"thoughts-are-seeds-640x960-640x576.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2845,425,'blogger_permalink','http://degreesearch.org/blog/wp-content/uploads/2013/03/thoughts-are-seeds-640x960.jpg'),(2846,425,'blogger_blog','monicarenata.blogspot.com'),(2847,425,'blogger_author','Monica Renata'),(2848,169,'_thumbnail_id','425'),(2857,426,'blogger_permalink','http://images2.layoutsparks.com/1/187114/love-heart-writing-letter.jpg'),(2858,426,'blogger_blog','monicarenata.blogspot.com'),(2859,426,'blogger_author','Monica Renata'),(2860,172,'_thumbnail_id','426'),(2867,427,'blogger_permalink','http://www.deathbyramen.com/uploads/2009/08/just-friends-01.jpg'),(2868,427,'blogger_blog','monicarenata.blogspot.com'),(2869,427,'blogger_author','Monica Renata'),(2870,174,'_thumbnail_id','427'),(2875,428,'blogger_permalink','http://playitloudmusic.files.wordpress.com/2012/05/your-thoughts-create-your-futre-crop.png'),(2876,428,'blogger_blog','monicarenata.blogspot.com'),(2877,428,'blogger_author','Monica Renata'),(2878,175,'_thumbnail_id','428'),(2883,429,'blogger_permalink','http://news.bbcimg.co.uk/media/images/67370000/jpg/_67370957_swan.jpg'),(2885,429,'blogger_author','Monica Renata'),(2886,176,'_thumbnail_id','429'),(2891,430,'blogger_permalink','http://people-equation.com/wp-content/uploads/2012/10/man_woman_tug-of-war.jpg'),(2892,430,'blogger_blog','monicarenata.blogspot.com'),(2893,430,'blogger_author','Monica Renata'),(2894,177,'_thumbnail_id','430'),(2907,431,'blogger_permalink','http://robot6.comicbookresources.com/wp-content/uploads/2011/07/dexstarr-300x250.jpg'),(2908,431,'blogger_blog','monicarenata.blogspot.com'),(2909,431,'blogger_author','Monica Renata'),(2910,182,'_thumbnail_id','431'),(2917,432,'blogger_permalink','http://upload.wikimedia.org/wikipedia/commons/e/e5/Lujuria_Lust_Pecado_Original_(3969921829).jpg'),(2918,432,'blogger_blog','monicarenata.blogspot.com'),(2919,432,'blogger_author','Monica Renata'),(2920,184,'_thumbnail_id','432'),(2926,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:797;s:4:\"file\";s:45:\"2013/11/Fairhope_Swing-under-the-tree-9x7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Fairhope_Swing-under-the-tree-9x7-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:\"Fairhope_Swing-under-the-tree-9x7-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"Fairhope_Swing-under-the-tree-9x7-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"Fairhope_Swing-under-the-tree-9x7-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2927,433,'blogger_permalink','http://1.bp.blogspot.com/_ZNuD07JIZrc/TLSACBPmb2I/AAAAAAAABFQ/PhVlj3VZSh4/s320/Fairhope_Swing+under+the+tree+9x7.jpg'),(2928,433,'blogger_blog','monicarenata.blogspot.com'),(2929,433,'blogger_author','Monica Renata'),(2930,186,'_thumbnail_id','433'),(2942,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:475;s:6:\"height\";i:636;s:4:\"file\";s:19:\"2013/11/preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"preview-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:\"preview-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"preview-475x372.png\";s:5:\"width\";i:475;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"preview-475x576.png\";s:5:\"width\";i:475;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2958,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:350;s:4:\"file\";s:51:\"2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"tumblr_lrr4b41G5S1qixa13o1_r1_500_large-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:\"tumblr_lrr4b41G5S1qixa13o1_r1_500_large-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1185554003;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";}}'),(2957,437,'_wp_attached_file','2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg'),(2959,437,'blogger_permalink','http://data1.whicdn.com/images/16219523/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg'),(2960,437,'blogger_blog','monicarenata.blogspot.com'),(2961,437,'blogger_author','Monica Renata'),(2962,190,'_thumbnail_id','437'),(3064,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:418;s:4:\"file\";s:24:\"2013/11/miss-you-056.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"miss-you-056-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:\"miss-you-056-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"miss-you-056-520x372.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3063,449,'_wp_attached_file','2013/11/miss-you-056.jpg'),(2969,438,'_wp_attached_file','2013/11/img_endtheviolence_logo.jpg'),(2970,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1007;s:6:\"height\";i:419;s:4:\"file\";s:35:\"2013/11/img_endtheviolence_logo.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"img_endtheviolence_logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"img_endtheviolence_logo-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"img_endtheviolence_logo-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2971,438,'blogger_permalink','http://polyhistor.net/wp-content/uploads/2010/03/img_endtheviolence_logo.jpg'),(2972,438,'blogger_blog','monicarenata.blogspot.com'),(2973,438,'blogger_author','Monica Renata'),(2974,193,'_thumbnail_id','438'),(2977,439,'_wp_attached_file','2013/11/soldier-sunset-570x200.jpg'),(2978,439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2013/11/soldier-sunset-570x200.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"soldier-sunset-570x200-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:\"soldier-sunset-570x200-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2979,439,'blogger_permalink','http://images.spousebuzz.com/wp-content/uploads/2011/01/soldier-sunset-570x200.jpg'),(2980,439,'blogger_blog','monicarenata.blogspot.com'),(2981,439,'blogger_author','Monica Renata'),(2982,194,'_thumbnail_id','439'),(2985,440,'_wp_attached_file','2013/11/wedding-ring-83876.jpg'),(2986,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:30:\"2013/11/wedding-ring-83876.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"wedding-ring-83876-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:\"wedding-ring-83876-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"wedding-ring-83876-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"wedding-ring-83876-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"wedding-ring-83876-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2987,440,'blogger_permalink','http://steelasophical.com/wp-content/uploads/2013/04/wedding-ring-83876.jpg'),(2988,440,'blogger_blog','monicarenata.blogspot.com'),(2989,440,'blogger_author','Monica Renata'),(2990,195,'_thumbnail_id','440'),(2993,441,'_wp_attached_file','2013/11/1204-20121002-WORK-WORK.jpg'),(2994,441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1486;s:4:\"file\";s:35:\"2013/11/1204-20121002-WORK-WORK.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"1204-20121002-WORK-WORK-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:\"1204-20121002-WORK-WORK-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"1204-20121002-WORK-WORK-826x1024.jpg\";s:5:\"width\";i:826;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"1204-20121002-WORK-WORK-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"1204-20121002-WORK-WORK-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2995,441,'blogger_permalink','http://therecoveringpolitician.com/wp-content/uploads/2013/07/1204-20121002-WORK-WORK.jpg'),(2996,441,'blogger_blog','monicarenata.blogspot.com'),(2997,441,'blogger_author','Monica Renata'),(2998,196,'_thumbnail_id','441'),(3001,442,'_wp_attached_file','2013/11/POV_PeanutButter.jpg'),(3002,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:335;s:6:\"height\";i:316;s:4:\"file\";s:28:\"2013/11/POV_PeanutButter.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"POV_PeanutButter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"POV_PeanutButter-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3003,442,'blogger_permalink','http://www.harquin.com/images/intelli/POV_PeanutButter.jpg'),(3004,442,'blogger_blog','monicarenata.blogspot.com'),(3005,442,'blogger_author','Monica Renata'),(3006,197,'_thumbnail_id','442'),(3011,443,'_wp_attached_file','2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg'),(3012,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:46:\"2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Photoshop-Fantasy-Dreaming-art-mrm-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:46:\"Photoshop-Fantasy-Dreaming-art-mrm-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:46:\"Photoshop-Fantasy-Dreaming-art-mrm-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"Photoshop-Fantasy-Dreaming-art-mrm-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3013,443,'blogger_permalink','http://1.bp.blogspot.com/_LRrT5dsjhbM/S7pKwXi3RsI/AAAAAAAAARM/vs4NdhIsTOs/s320/Photoshop-Fantasy-Dreaming-art-mrm.jpg'),(3014,443,'blogger_blog','monicarenata.blogspot.com'),(3015,443,'blogger_author','Monica Renata'),(3016,199,'_thumbnail_id','443'),(3019,444,'_wp_attached_file','2013/11/Silence-Deafens1.jpg'),(3020,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:1095;s:4:\"file\";s:28:\"2013/11/Silence-Deafens1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Silence-Deafens1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Silence-Deafens1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Silence-Deafens1-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Silence-Deafens1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"Silence-Deafens1-730x576.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3021,444,'blogger_permalink','http://lonerwolf.com/wp-content/uploads/2012/08/Silence-Deafens1.jpg'),(3022,444,'blogger_blog','monicarenata.blogspot.com'),(3023,444,'blogger_author','Monica Renata'),(3024,200,'_thumbnail_id','444'),(3027,445,'_wp_attached_file','2013/11/feeling-tired-woozy.jpg'),(3028,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:252;s:6:\"height\";i:364;s:4:\"file\";s:31:\"2013/11/feeling-tired-woozy.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"feeling-tired-woozy-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:\"feeling-tired-woozy-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3029,445,'blogger_permalink','http://www.lose-weight-feel-great.com/wp-content/uploads/2009/06/feeling-tired-woozy.jpg'),(3030,445,'blogger_blog','monicarenata.blogspot.com'),(3031,445,'blogger_author','Monica Renata'),(3032,201,'_thumbnail_id','445'),(3037,446,'_wp_attached_file','2013/11/Kissing-in-the-rain-in-black.jpg'),(3038,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:346;s:6:\"height\";i:305;s:4:\"file\";s:40:\"2013/11/Kissing-in-the-rain-in-black.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kissing-in-the-rain-in-black-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Kissing-in-the-rain-in-black-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3039,446,'blogger_permalink','http://mariapoeana.com/wp-content/uploads/2011/11/Kissing-in-the-rain-in-black.jpg'),(3040,446,'blogger_blog','monicarenata.blogspot.com'),(3041,446,'blogger_author','Monica Renata'),(3042,203,'_thumbnail_id','446'),(3072,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:610;s:6:\"height\";i:350;s:4:\"file\";s:51:\"2013/11/inline-you-are-rich-now-what-lonely-guy.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"inline-you-are-rich-now-what-lonely-guy-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:\"inline-you-are-rich-now-what-lonely-guy-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3047,447,'_wp_attached_file','2013/11/artworks-000005112734-mgtev5-original.jpg'),(3048,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:557;s:4:\"file\";s:49:\"2013/11/artworks-000005112734-mgtev5-original.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"artworks-000005112734-mgtev5-original-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:\"artworks-000005112734-mgtev5-original-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"artworks-000005112734-mgtev5-original-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3049,447,'blogger_permalink','http://i1.sndcdn.com/artworks-000005112734-mgtev5-original.jpg'),(3050,447,'blogger_blog','monicarenata.blogspot.com'),(3051,447,'blogger_author','Monica Renata'),(3052,205,'_thumbnail_id','447'),(3055,448,'_wp_attached_file','2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg'),(3056,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:987;s:6:\"height\";i:1367;s:4:\"file\";s:58:\"2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"the_girl_in_the_mirror__by_pretty_as_a_picture-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:\"the_girl_in_the_mirror__by_pretty_as_a_picture-216x300.jpg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"the_girl_in_the_mirror__by_pretty_as_a_picture-739x1024.jpg\";s:5:\"width\";i:739;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:58:\"the_girl_in_the_mirror__by_pretty_as_a_picture-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:58:\"the_girl_in_the_mirror__by_pretty_as_a_picture-987x576.jpg\";s:5:\"width\";i:987;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:10:\"Picasa 2.7\";s:6:\"camera\";s:22:\"Canon EOS 400D DIGITAL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1201808957;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(3057,448,'blogger_permalink','http://static.tumblr.com/mfslkug/wbelpro22/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg'),(3058,448,'blogger_blog','monicarenata.blogspot.com'),(3059,448,'blogger_author','Monica Renata'),(3060,206,'_thumbnail_id','448'),(3065,449,'blogger_permalink','http://www.picdesi.com/upload/comment/misu/miss-you-056.jpg'),(3066,449,'blogger_blog','monicarenata.blogspot.com'),(3067,449,'blogger_author','Monica Renata'),(3068,207,'_thumbnail_id','449'),(3071,450,'_wp_attached_file','2013/11/inline-you-are-rich-now-what-lonely-guy.jpg'),(3073,450,'blogger_permalink','http://images.fastcompany.com/upload/inline-you-are-rich-now-what-lonely-guy.jpg'),(3074,450,'blogger_blog','monicarenata.blogspot.com'),(3075,450,'blogger_author','Monica Renata'),(3076,208,'_thumbnail_id','450'),(3079,451,'_wp_attached_file','2013/11/angel-blue-Heart-With-Wings.jpg'),(3080,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:819;s:4:\"file\";s:39:\"2013/11/angel-blue-Heart-With-Wings.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"angel-blue-Heart-With-Wings-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:\"angel-blue-Heart-With-Wings-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"angel-blue-Heart-With-Wings-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:40:\"angel-blue-Heart-With-Wings-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3081,451,'blogger_permalink','http://1.bp.blogspot.com/_46Hbr4qMeTM/TSKpuqLOYII/AAAAAAAAJyM/MMFf8kNPiRk/s320/angel+blue+Heart+With+Wings.jpg'),(3082,451,'blogger_blog','monicarenata.blogspot.com'),(3083,451,'blogger_author','Monica Renata'),(3084,209,'_thumbnail_id','451'),(3087,452,'_wp_attached_file','2013/11/il_fullxfull.366659127_c1vj.jpg'),(3088,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1096;s:6:\"height\";i:855;s:4:\"file\";s:39:\"2013/11/il_fullxfull.366659127_c1vj.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"il_fullxfull.366659127_c1vj-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:\"il_fullxfull.366659127_c1vj-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"il_fullxfull.366659127_c1vj-1024x798.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"il_fullxfull.366659127_c1vj-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:40:\"il_fullxfull.366659127_c1vj-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3089,452,'blogger_permalink','http://img1.etsystatic.com/004/0/5677896/il_fullxfull.366659127_c1vj.jpg'),(3090,452,'blogger_blog','monicarenata.blogspot.com'),(3091,452,'blogger_author','Monica Renata'),(3092,210,'_thumbnail_id','452'),(3135,457,'_wp_attached_file','2013/11/Cold-Cold-Heart.jpg'),(3192,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:640;s:4:\"file\";s:32:\"2013/10/Crying_by_zero_rider.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Crying_by_zero_rider-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Crying_by_zero_rider-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Crying_by_zero_rider-558x372.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"Crying_by_zero_rider-558x576.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3099,453,'_wp_attached_file','2013/11/listening.jpg'),(3100,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:253;s:4:\"file\";s:21:\"2013/11/listening.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"listening-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:21:\"listening-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3101,453,'blogger_permalink','http://blogs.qub.ac.uk/compromiseafterconflict/files/2013/11/listening.jpg'),(3102,453,'blogger_blog','monicarenata.blogspot.com'),(3103,453,'blogger_author','Monica Renata'),(3104,213,'_thumbnail_id','453'),(3136,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:576;s:4:\"file\";s:27:\"2013/11/Cold-Cold-Heart.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Cold-Cold-Heart-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:\"Cold-Cold-Heart-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Cold-Cold-Heart-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3191,463,'_wp_attached_file','2013/10/Crying_by_zero_rider.jpg'),(3143,458,'_wp_attached_file','2013/10/holstee.png'),(3111,454,'_wp_attached_file','2013/11/man-walking-away.jpg'),(3112,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:490;s:6:\"height\";i:296;s:4:\"file\";s:28:\"2013/11/man-walking-away.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"man-walking-away-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"man-walking-away-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3113,454,'blogger_permalink','http://www.rudebaguette.com/assets/man-walking-away.jpg'),(3114,454,'blogger_blog','monicarenata.blogspot.com'),(3115,454,'blogger_author','Monica Renata'),(3116,216,'_thumbnail_id','454'),(3119,455,'_wp_attached_file','2013/11/full_1328574703kindness.jpg'),(3120,455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:431;s:6:\"height\";i:245;s:4:\"file\";s:35:\"2013/11/full_1328574703kindness.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"full_1328574703kindness-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:\"full_1328574703kindness-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3121,455,'blogger_permalink','http://s3.amazonaws.com/values-your-billboards/52801/large/full_1328574703kindness.jpg'),(3122,455,'blogger_blog','monicarenata.blogspot.com'),(3123,455,'blogger_author','Monica Renata'),(3124,217,'_thumbnail_id','455'),(3127,456,'_wp_attached_file','2013/11/1394408_545552508859652_2056967876_n.jpg'),(3128,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2013/11/1394408_545552508859652_2056967876_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1394408_545552508859652_2056967876_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"1394408_545552508859652_2056967876_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"1394408_545552508859652_2056967876_n-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3129,456,'blogger_permalink','https://fbcdn-sphotos-g-a.akamaihd.net/hphotos-ak-ash3/p480x480/1394408_545552508859652_2056967876_n.jpg'),(3130,456,'blogger_blog','monicarenata.blogspot.com'),(3131,456,'blogger_author','Monica Renata'),(3132,218,'_thumbnail_id','456'),(3137,457,'blogger_permalink','http://cdn.c.photoshelter.com/img-get/I0000EEjQ0MZTtyM/s/860/860/Cold-Cold-Heart.jpg'),(3138,457,'blogger_blog','monicarenata.blogspot.com'),(3139,457,'blogger_author','Monica Renata'),(3140,219,'_thumbnail_id','457'),(3144,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:896;s:6:\"height\";i:649;s:4:\"file\";s:19:\"2013/10/holstee.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"holstee-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:\"holstee-300x217.png\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"holstee-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"holstee-896x576.png\";s:5:\"width\";i:896;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3145,458,'blogger_permalink','http://gastonsanchez.files.wordpress.com/2013/05/holstee.png'),(3146,458,'blogger_blog','monicarenata.blogspot.com'),(3147,458,'blogger_author','Monica Renata'),(3148,220,'_thumbnail_id','458'),(3199,464,'_wp_attached_file','2013/10/fashion3-ck-0409-lg.jpg'),(3155,459,'_wp_attached_file','2013/10/7951852050_f243c5a318.jpg'),(3156,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2013/10/7951852050_f243c5a318.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7951852050_f243c5a318-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:\"7951852050_f243c5a318-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"7951852050_f243c5a318-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3157,459,'blogger_permalink','http://lh3.ggpht.com/-afU45E--GaA/UnGrTnJP9jI/AAAAAAAAAPA/pxFVb6TeQW8/s640/7951852050_f243c5a318.jpg'),(3158,459,'blogger_blog','monicarenata.blogspot.com'),(3159,459,'blogger_author','Monica Renata'),(3160,223,'_thumbnail_id','459'),(3163,460,'_wp_attached_file','2013/10/Frozen-in-Time-by-StinaBG.jpg'),(3164,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:437;s:4:\"file\";s:37:\"2013/10/Frozen-in-Time-by-StinaBG.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Frozen-in-Time-by-StinaBG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Frozen-in-Time-by-StinaBG-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Frozen-in-Time-by-StinaBG-600x372.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3165,460,'blogger_permalink','http://www.templates.com/blog/wp-content/uploads/2010/02/Frozen-in-Time-by-StinaBG.jpg'),(3166,460,'blogger_blog','monicarenata.blogspot.com'),(3167,460,'blogger_author','Monica Renata'),(3168,224,'_thumbnail_id','460'),(3220,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:54:\"2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"8027223-blank-vintage-red-wove-paper-card1-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:54:\"8027223-blank-vintage-red-wove-paper-card1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"8027223-blank-vintage-red-wove-paper-card1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"8027223-blank-vintage-red-wove-paper-card1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:55:\"8027223-blank-vintage-red-wove-paper-card1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3173,461,'_wp_attached_file','2013/10/3853962_300.jpg'),(3174,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2013/10/3853962_300.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"3853962_300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3175,461,'blogger_permalink','http://b.vimeocdn.com/ps/385/396/3853962_300.jpg'),(3176,461,'blogger_blog','monicarenata.blogspot.com'),(3177,461,'blogger_author','Monica Renata'),(3178,226,'_thumbnail_id','461'),(3183,462,'_wp_attached_file','2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg'),(3184,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:52:\"2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"6a00d83455f11369e20177432f5723970d-320wi-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:52:\"6a00d83455f11369e20177432f5723970d-320wi-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3185,462,'blogger_permalink','http://fitranx.files.wordpress.com/2013/02/6a00d83455f11369e20177432f5723970d-320wi.jpg'),(3186,462,'blogger_blog','monicarenata.blogspot.com'),(3187,462,'blogger_author','Monica Renata'),(3188,228,'_thumbnail_id','462'),(3193,463,'blogger_permalink','http://fc04.deviantart.com/fs14/f/2007/080/4/f/Crying_by_zero_rider.jpg'),(3194,463,'blogger_blog','monicarenata.blogspot.com'),(3195,463,'blogger_author','Monica Renata'),(3196,229,'_thumbnail_id','463'),(3200,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2013/10/fashion3-ck-0409-lg.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"fashion3-ck-0409-lg-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:\"fashion3-ck-0409-lg-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"fashion3-ck-0409-lg-300x372.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3201,464,'blogger_permalink','http://www.esquire.com/cm/esquire/images/If/fashion3-ck-0409-lg.jpg'),(3202,464,'blogger_blog','monicarenata.blogspot.com'),(3203,464,'blogger_author','Monica Renata'),(3204,230,'_thumbnail_id','464'),(3207,465,'_wp_attached_file','2013/10/shadow-man.png'),(3208,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:172;s:6:\"height\";i:198;s:4:\"file\";s:22:\"2013/10/shadow-man.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shadow-man-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3209,465,'blogger_permalink','http://3.bp.blogspot.com/-CuSyLf2TFeA/Tl4Z3C4WXxI/AAAAAAAABLc/PzFBuN1-Ra0/s320/shadow+man.png'),(3210,465,'blogger_blog','monicarenata.blogspot.com'),(3211,465,'blogger_author','Monica Renata'),(3212,231,'_thumbnail_id','465'),(3289,474,'_wp_attached_file','2013/09/woman-20on-20bench-20in-20rain.gif'),(3230,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1183;s:6:\"height\";i:1118;s:4:\"file\";s:16:\"2013/09/DVAM.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"DVAM-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:\"DVAM-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"DVAM-1024x967.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:967;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"DVAM-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"DVAM-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3219,466,'_wp_attached_file','2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg'),(3221,466,'blogger_permalink','http://www.lifelovequotesandsayings.com/wp-content/uploads/2012/05/8027223-blank-vintage-red-wove-paper-card1.jpg'),(3222,466,'blogger_blog','monicarenata.blogspot.com'),(3223,466,'blogger_author','Monica Renata'),(3224,234,'_thumbnail_id','466'),(3229,467,'_wp_attached_file','2013/09/DVAM.jpg'),(3231,467,'blogger_permalink','http://preventconnect.org/wp-content/uploads/2012/10/DVAM.jpg'),(3232,467,'blogger_blog','monicarenata.blogspot.com'),(3233,467,'blogger_author','Monica Renata'),(3234,236,'_thumbnail_id','467'),(3237,468,'_wp_attached_file','2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg'),(3238,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:900;s:4:\"file\";s:86:\"2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:86:\"11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport-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:86:\"11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport-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:87:\"11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:86:\"11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:87:\"11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3239,468,'blogger_permalink','http://us.123rf.com/400wm/400/400/paha_l/paha_l1112/paha_l111201725/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg'),(3240,468,'blogger_blog','monicarenata.blogspot.com'),(3241,468,'blogger_author','Monica Renata'),(3242,237,'_thumbnail_id','468'),(3298,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:29:\"2013/08/moon-13-sky-night.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"moon-13-sky-night-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:29:\"moon-13-sky-night-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:29:\"moon-13-sky-night-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"moon-13-sky-night-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3297,475,'_wp_attached_file','2013/08/moon-13-sky-night.jpg'),(3305,476,'_wp_attached_file','2013/08/1477297469_1b3567a865.jpg'),(3249,469,'_wp_attached_file','2013/09/tumblr_l88fdy9OUW1qargqko1_500.png'),(3250,469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:492;s:6:\"height\";i:347;s:4:\"file\";s:42:\"2013/09/tumblr_l88fdy9OUW1qargqko1_500.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_l88fdy9OUW1qargqko1_500-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:42:\"tumblr_l88fdy9OUW1qargqko1_500-300x211.png\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3251,469,'blogger_permalink','http://4.bp.blogspot.com/_P9VIH8Mn4tU/TIZEWolNudI/AAAAAAAAAf0/tjmuAFdNQMg/s320/tumblr_l88fdy9OUW1qargqko1_500.png'),(3252,469,'blogger_blog','monicarenata.blogspot.com'),(3253,469,'blogger_author','Monica Renata'),(3254,240,'_thumbnail_id','469'),(3257,470,'_wp_attached_file','2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg'),(3258,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:621;s:4:\"file\";s:96:\"2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:96:\"Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing-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:96:\"Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:96:\"Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing-450x372.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:96:\"Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing-450x576.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3259,470,'blogger_permalink','http://iheartinspiration.com/wp-content/uploads/2012/06/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg'),(3260,470,'blogger_blog','monicarenata.blogspot.com'),(3261,470,'blogger_author','Monica Renata'),(3262,241,'_thumbnail_id','470'),(3265,471,'_wp_attached_file','2013/09/THE-AWKWARD-BUTTERFLY.jpeg'),(3266,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:850;s:4:\"file\";s:34:\"2013/09/THE-AWKWARD-BUTTERFLY.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"THE-AWKWARD-BUTTERFLY-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"THE-AWKWARD-BUTTERFLY-194x300.jpeg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"THE-AWKWARD-BUTTERFLY-550x372.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"THE-AWKWARD-BUTTERFLY-550x576.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3267,471,'blogger_permalink','http://4.bp.blogspot.com/-QYwfB_I4TMk/Ujo0rWZ5T6I/AAAAAAAAAOs/eyiDcdaCBaY/s320/THE+AWKWARD+BUTTERFLY.jpeg'),(3268,471,'blogger_blog','monicarenata.blogspot.com'),(3269,471,'blogger_author','Monica Renata'),(3270,242,'_thumbnail_id','471'),(3273,472,'_wp_attached_file','2013/09/two-hearts-tied-together-with-a-ring.jpg'),(3274,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:693;s:6:\"height\";i:873;s:4:\"file\";s:48:\"2013/09/two-hearts-tied-together-with-a-ring.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"two-hearts-tied-together-with-a-ring-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"two-hearts-tied-together-with-a-ring-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"two-hearts-tied-together-with-a-ring-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:48:\"two-hearts-tied-together-with-a-ring-693x576.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3275,472,'blogger_permalink','http://4.bp.blogspot.com/-0oBqqgpMJpg/TVTQersbexI/AAAAAAAAACU/RnIMkkxpUVA/s320/two+hearts+tied+together+with+a+ring.jpg'),(3276,472,'blogger_blog','monicarenata.blogspot.com'),(3277,472,'blogger_author','Monica Renata'),(3278,243,'_thumbnail_id','472'),(3281,473,'_wp_attached_file','2013/09/1708966_300.jpg'),(3282,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2013/09/1708966_300.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"1708966_300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3283,473,'blogger_permalink','http://b.vimeocdn.com/ps/170/896/1708966_300.jpg'),(3284,473,'blogger_blog','monicarenata.blogspot.com'),(3285,473,'blogger_author','Monica Renata'),(3286,244,'_thumbnail_id','473'),(3316,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:670;s:4:\"file\";s:35:\"2013/08/LET-THE-SECRET-GET-OUT4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"LET-THE-SECRET-GET-OUT4-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:\"LET-THE-SECRET-GET-OUT4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"LET-THE-SECRET-GET-OUT4-670x372.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"LET-THE-SECRET-GET-OUT4-670x576.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3290,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:42:\"2013/09/woman-20on-20bench-20in-20rain.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"woman-20on-20bench-20in-20rain-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3291,474,'blogger_permalink','http://aspergerwife.webs.com/woman%20on%20bench%20in%20rain.jpg'),(3292,474,'blogger_blog','monicarenata.blogspot.com'),(3293,474,'blogger_author','Monica Renata'),(3294,245,'_thumbnail_id','474'),(3299,475,'blogger_permalink','http://1.bp.blogspot.com/_ARt07MYDnLE/TOppql8ahyI/AAAAAAAABrQ/7__c9K5hXN4/s320/moon-13-sky-night.jpg'),(3300,475,'blogger_blog','monicarenata.blogspot.com'),(3301,475,'blogger_author','Monica Renata'),(3302,246,'_thumbnail_id','475'),(3306,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:33:\"2013/08/1477297469_1b3567a865.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"1477297469_1b3567a865-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:\"1477297469_1b3567a865-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3307,476,'blogger_permalink','http://farm2.static.flickr.com/1436/1477297469_1b3567a865.jpg'),(3308,476,'blogger_blog','monicarenata.blogspot.com'),(3309,476,'blogger_author','Monica Renata'),(3310,247,'_thumbnail_id','476'),(3315,477,'_wp_attached_file','2013/08/LET-THE-SECRET-GET-OUT4.jpg'),(3317,477,'blogger_permalink','http://payload164.cargocollective.com/1/8/274061/5592886/LET-THE-SECRET-GET-OUT4.jpg'),(3318,477,'blogger_blog','monicarenata.blogspot.com'),(3319,477,'blogger_author','Monica Renata'),(3320,249,'_thumbnail_id','477'),(3439,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:556;s:4:\"file\";s:22:\"2013/06/too-cute-.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"too-cute--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"too-cute--242x300.jpeg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"too-cute--450x372.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3323,478,'_wp_attached_file','2013/08/header.jpg'),(3324,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:280;s:4:\"file\";s:18:\"2013/08/header.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"header-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:\"header-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3325,478,'blogger_permalink','http://www.jfhp.org/enwsletter/2012_03/header.jpg'),(3326,478,'blogger_blog','monicarenata.blogspot.com'),(3327,478,'blogger_author','Monica Renata'),(3328,250,'_thumbnail_id','478'),(3331,479,'_wp_attached_file','2013/08/under_the_sea-11.jpg'),(3332,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:511;s:4:\"file\";s:28:\"2013/08/under_the_sea-11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"under_the_sea-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"under_the_sea-11-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"under_the_sea-11-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"MX-1200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1031146907;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(3333,479,'blogger_permalink','http://americanlegionbabylon.files.wordpress.com/2012/07/under_the_sea-11.jpg'),(3334,479,'blogger_blog','monicarenata.blogspot.com'),(3335,479,'blogger_author','Monica Renata'),(3336,251,'_thumbnail_id','479'),(3438,491,'_wp_attached_file','2013/06/too-cute-.jpeg'),(3341,480,'_wp_attached_file','2013/08/believe-in-yourself.jpg'),(3342,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:949;s:6:\"height\";i:960;s:4:\"file\";s:31:\"2013/08/believe-in-yourself.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"believe-in-yourself-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:\"believe-in-yourself-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"believe-in-yourself-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"believe-in-yourself-949x576.jpg\";s:5:\"width\";i:949;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3343,480,'blogger_permalink','http://www.liveandlovework.com/images.liveandlovework.com/2012/03/believe-in-yourself.jpg'),(3344,480,'blogger_blog','monicarenata.blogspot.com'),(3345,480,'blogger_author','Monica Renata'),(3346,253,'_thumbnail_id','480'),(3447,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:327;s:4:\"file\";s:27:\"2013/06/Kristian-D_crpd.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Kristian-D_crpd-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:\"Kristian-D_crpd-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3351,481,'_wp_attached_file','2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg'),(3352,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1350;s:4:\"file\";s:49:\"2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Mirror_mirror_on_the_wall____by_iKink-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:\"Mirror_mirror_on_the_wall____by_iKink-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Mirror_mirror_on_the_wall____by_iKink-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Mirror_mirror_on_the_wall____by_iKink-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:49:\"Mirror_mirror_on_the_wall____by_iKink-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3353,481,'blogger_permalink','http://fc05.deviantart.net/fs33/i/2008/297/4/6/Mirror_mirror_on_the_wall____by_iKink.jpg'),(3354,481,'blogger_blog','monicarenata.blogspot.com'),(3355,481,'blogger_author','Monica Renata'),(3356,255,'_thumbnail_id','481'),(3359,482,'_wp_attached_file','2013/08/The-Awkward-Butterfly.jpg'),(3360,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:644;s:6:\"height\";i:1024;s:4:\"file\";s:33:\"2013/08/The-Awkward-Butterfly.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"The-Awkward-Butterfly-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:\"The-Awkward-Butterfly-188x300.jpg\";s:5:\"width\";i:188;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"The-Awkward-Butterfly-644x372.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"The-Awkward-Butterfly-644x576.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3361,482,'blogger_permalink','http://2.bp.blogspot.com/-Zbh8uf29VZw/UhbLonMph4I/AAAAAAAAAN8/6y-NpWs1lCM/s1600/The+Awkward+Butterfly.jpg'),(3362,482,'blogger_blog','monicarenata.blogspot.com'),(3363,482,'blogger_author','Monica Renata'),(3364,256,'_thumbnail_id','482'),(3446,492,'_wp_attached_file','2013/06/Kristian-D_crpd.jpg'),(3367,483,'_wp_attached_file','2013/08/stats.jpg'),(3368,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:472;s:6:\"height\";i:332;s:4:\"file\";s:17:\"2013/08/stats.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"stats-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:\"stats-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3369,483,'blogger_permalink','http://www.xda-developers.com/wp-content/uploads/2013/02/stats.jpg'),(3370,483,'blogger_blog','monicarenata.blogspot.com'),(3371,483,'blogger_author','Monica Renata'),(3372,257,'_thumbnail_id','483'),(3377,484,'_wp_attached_file','2013/08/1443.jpg'),(3378,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:644;s:6:\"height\";i:714;s:4:\"file\";s:16:\"2013/08/1443.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"1443-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:\"1443-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"1443-644x372.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"1443-644x576.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3379,484,'blogger_permalink','http://ih.constantcontact.com/fs169/1100580562054/img/1443.jpg'),(3380,484,'blogger_blog','monicarenata.blogspot.com'),(3381,484,'blogger_author','Monica Renata'),(3382,259,'_thumbnail_id','484'),(3385,485,'_wp_attached_file','2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg'),(3386,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:716;s:6:\"height\";i:768;s:4:\"file\";s:60:\"2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"2762d1356802014-happiness-now-photo-buterfly-sun-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:60:\"2762d1356802014-happiness-now-photo-buterfly-sun-279x300.jpg\";s:5:\"width\";i:279;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"2762d1356802014-happiness-now-photo-buterfly-sun-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:60:\"2762d1356802014-happiness-now-photo-buterfly-sun-716x576.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3387,485,'blogger_permalink','http://www.alsforums.com/forum/attachments/stories-hope/2762d1356802014-happiness-now-photo-buterfly-sun.jpg'),(3388,485,'blogger_blog','monicarenata.blogspot.com'),(3389,485,'blogger_author','Monica Renata'),(3390,260,'_thumbnail_id','485'),(3393,486,'_wp_attached_file','2013/07/TP-151_1-young-to-old.jpg'),(3394,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:150;s:4:\"file\";s:33:\"2013/07/TP-151_1-young-to-old.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"TP-151_1-young-to-old-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"TP-151_1-young-to-old-300x97.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3395,486,'blogger_permalink','http://www.tigerphilosophy.com/wp-content/uploads/2012/11/TP-151_1-young-to-old.jpg'),(3396,486,'blogger_blog','monicarenata.blogspot.com'),(3397,486,'blogger_author','Monica Renata'),(3398,261,'_thumbnail_id','486'),(3463,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:371;s:6:\"height\";i:450;s:4:\"file\";s:24:\"2013/06/huge.6.34562.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"huge.6.34562-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:\"huge.6.34562-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"huge.6.34562-371x372.jpg\";s:5:\"width\";i:371;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3401,487,'_wp_attached_file','2013/07/word_cloud.91113326.jpg'),(3402,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:796;s:6:\"height\";i:516;s:4:\"file\";s:31:\"2013/07/word_cloud.91113326.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"word_cloud.91113326-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:\"word_cloud.91113326-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"word_cloud.91113326-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3403,487,'blogger_permalink','http://www.vermontapse.org/yahoo_site_admin/assets/images/word_cloud.91113326.jpg'),(3404,487,'blogger_blog','monicarenata.blogspot.com'),(3405,487,'blogger_author','Monica Renata'),(3406,262,'_thumbnail_id','487'),(3462,494,'_wp_attached_file','2013/06/huge.6.34562.jpg'),(3411,488,'_wp_attached_file','2013/07/everyone-wins.jpg'),(3412,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:183;s:4:\"file\";s:25:\"2013/07/everyone-wins.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"everyone-wins-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3413,488,'blogger_permalink','http://quantachange.com/wp-content/uploads/2012/09/everyone-wins.jpg'),(3414,488,'blogger_blog','monicarenata.blogspot.com'),(3415,488,'blogger_author','Monica Renata'),(3416,264,'_thumbnail_id','488'),(3419,489,'_wp_attached_file','2013/07/Dusty-road.jpg'),(3420,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:772;s:4:\"file\";s:22:\"2013/07/Dusty-road.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Dusty-road-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:\"Dusty-road-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Dusty-road-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"Dusty-road-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3421,489,'blogger_permalink','http://4.bp.blogspot.com/-uH9uAJ1esJ4/T4U3SlEIUHI/AAAAAAAAAC4/FiwM9qn5_Xg/s320/Dusty+road.JPG'),(3422,489,'blogger_blog','monicarenata.blogspot.com'),(3423,489,'blogger_author','Monica Renata'),(3424,265,'_thumbnail_id','489'),(3427,266,'_thumbnail_id','394'),(3430,490,'_wp_attached_file','2013/06/NeverWasteAnOpportunity.jpg'),(3431,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:475;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2013/06/NeverWasteAnOpportunity.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"NeverWasteAnOpportunity-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:\"NeverWasteAnOpportunity-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3432,490,'blogger_permalink','http://www.lorensworld.com/wp-content/uploads/2012/10/NeverWasteAnOpportunity.jpg'),(3433,490,'blogger_blog','monicarenata.blogspot.com'),(3434,490,'blogger_author','Monica Renata'),(3435,267,'_thumbnail_id','490'),(3440,491,'blogger_permalink','http://www.karmaville.com/blog-wp-uploads/2012/08/too-cute-.jpeg'),(3441,491,'blogger_blog','monicarenata.blogspot.com'),(3442,491,'blogger_author','Monica Renata'),(3443,268,'_thumbnail_id','491'),(3448,492,'blogger_permalink','http://blogs.psychcentral.com/bipolar-mom/files/2011/03/Kristian-D_crpd.jpg'),(3449,492,'blogger_blog','monicarenata.blogspot.com'),(3450,492,'blogger_author','Monica Renata'),(3451,269,'_thumbnail_id','492'),(3472,495,'_wp_attached_file','2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg'),(3454,493,'_wp_attached_file','2013/06/the-blame-game.jpg'),(3455,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:226;s:6:\"height\";i:165;s:4:\"file\";s:26:\"2013/06/the-blame-game.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"the-blame-game-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3456,493,'blogger_permalink','http://madubesbrainpot.files.wordpress.com/2011/09/the-blame-game.jpg'),(3457,493,'blogger_blog','monicarenata.blogspot.com'),(3458,493,'blogger_author','Monica Renata'),(3459,270,'_thumbnail_id','493'),(3464,494,'blogger_permalink','http://thumbnails.illustrationsource.com/huge.6.34562.JPG'),(3465,494,'blogger_blog','monicarenata.blogspot.com'),(3466,494,'blogger_author','Monica Renata'),(3467,271,'_thumbnail_id','494'),(3473,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:132:\"2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:132:\"kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel-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:132:\"kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:132:\"kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3474,495,'blogger_permalink','http://www.verybestquotes.com/wp-content/uploads/2013/02/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg'),(3475,495,'blogger_blog','monicarenata.blogspot.com'),(3476,495,'blogger_author','Monica Renata'),(3477,273,'_thumbnail_id','495'),(3760,529,'_wp_attached_file','2013/04/truth.jpg'),(3480,496,'_wp_attached_file','2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg'),(3481,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:337;s:4:\"file\";s:42:\"2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_m8p6573Flv1qmqzv9o1_500-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:\"tumblr_m8p6573Flv1qmqzv9o1_500-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3482,496,'blogger_permalink','http://24.media.tumblr.com/tumblr_m8p6573Flv1qmqzv9o1_500.jpg'),(3483,496,'blogger_blog','monicarenata.blogspot.com'),(3484,496,'blogger_author','Monica Renata'),(3485,274,'_thumbnail_id','496'),(3488,497,'_wp_attached_file','2013/06/124033426424151544895_1.jpg'),(3489,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:386;s:6:\"height\";i:289;s:4:\"file\";s:35:\"2013/06/124033426424151544895_1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"124033426424151544895_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"124033426424151544895_1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot A85\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1161224432;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:7:\"5.40625\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(3490,497,'blogger_permalink','http://www.bbc.co.uk/blast/img/gallery/actual_386/124033426424151544895_1.jpg'),(3491,497,'blogger_blog','monicarenata.blogspot.com'),(3492,497,'blogger_author','Monica Renata'),(3493,275,'_thumbnail_id','497'),(3496,498,'_wp_attached_file','2013/06/l.jpg'),(3497,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1091;s:4:\"file\";s:13:\"2013/06/l.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"l-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:13:\"l-164x300.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"l-563x1024.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"l-600x372.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:13:\"l-600x576.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3498,498,'blogger_permalink','http://a3.ec-images.myspacecdn.com/images02/26/a4f9c5f14c0d4849b34213471b6b0e3e/l.jpg'),(3499,498,'blogger_blog','monicarenata.blogspot.com'),(3500,498,'blogger_author','Monica Renata'),(3501,276,'_thumbnail_id','498'),(3504,499,'_wp_attached_file','2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png'),(3505,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:631;s:6:\"height\";i:344;s:4:\"file\";s:121:\"2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:121:\"Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger-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:121:\"Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3506,499,'blogger_permalink','http://4.bp.blogspot.com/-K-vo52KpMz4/T0_4Fo41jXI/AAAAAAAAFP0/E82vPQvQT_A/s320/Yesterday+Today+Tomorrow+2011+Metro+manila+Film+Festival+drama+entry+regal+films+jun+lana+pinoy+movie+blogger.png'),(3507,499,'blogger_blog','monicarenata.blogspot.com'),(3508,499,'blogger_author','Monica Renata'),(3509,277,'_thumbnail_id','499'),(3567,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:458;s:4:\"file\";s:47:\"2013/05/419080_360032497361934_1044775627_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"419080_360032497361934_1044775627_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"419080_360032497361934_1044775627_n-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"419080_360032497361934_1044775627_n-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3761,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2013/04/truth.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"truth-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:\"truth-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"truth-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"truth-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3514,500,'_wp_attached_file','2013/05/river_of_tears.jpg'),(3515,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:290;s:4:\"file\";s:26:\"2013/05/river_of_tears.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"river_of_tears-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3516,500,'blogger_permalink','http://hangingoutandin.files.wordpress.com/2012/01/river_of_tears.jpg'),(3517,500,'blogger_blog','monicarenata.blogspot.com'),(3518,500,'blogger_author','Monica Renata'),(3519,279,'_thumbnail_id','500'),(3769,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:422;s:6:\"height\";i:550;s:4:\"file\";s:33:\"2013/04/flat-550x550-075-f.u2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"flat-550x550-075-f.u2-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:\"flat-550x550-075-f.u2-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"flat-550x550-075-f.u2-422x372.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:56:\"© Eastsider - http://www.redbubble.com/people/eastsider\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(3522,501,'_wp_attached_file','2013/05/river-tears.gif'),(3523,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:475;s:4:\"file\";s:23:\"2013/05/river-tears.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"river-tears-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"river-tears-300x296.gif\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"river-tears-480x372.gif\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3524,501,'blogger_permalink','http://www.funny-potato.com/blog/wp-content/uploads/2012/06/river-tears.gif'),(3525,501,'blogger_blog','monicarenata.blogspot.com'),(3526,501,'blogger_author','Monica Renata'),(3527,280,'_thumbnail_id','501'),(3530,502,'_wp_attached_file','2013/05/tick-tock.jpg'),(3531,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:494;s:4:\"file\";s:21:\"2013/05/tick-tock.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"tick-tock-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:21:\"tick-tock-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"tick-tock-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3532,502,'blogger_permalink','http://writeami.files.wordpress.com/2012/07/tick-tock.jpg'),(3533,502,'blogger_blog','monicarenata.blogspot.com'),(3534,502,'blogger_author','Monica Renata'),(3535,281,'_thumbnail_id','502'),(3538,503,'_wp_attached_file','2013/05/inspire.jpg'),(3539,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2013/05/inspire.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"inspire-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:\"inspire-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"inspire-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"inspire-640x576.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3540,503,'blogger_permalink','http://blog.roadtripnation.com/wp-content/uploads/inspire.jpg'),(3541,503,'blogger_blog','monicarenata.blogspot.com'),(3542,503,'blogger_author','Monica Renata'),(3543,282,'_thumbnail_id','503'),(3566,506,'_wp_attached_file','2013/05/419080_360032497361934_1044775627_n.jpg'),(3768,530,'_wp_attached_file','2013/04/flat-550x550-075-f.u2.jpg'),(3546,504,'_wp_attached_file','2013/05/high_standards.png'),(3547,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2013/05/high_standards.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"high_standards-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3548,504,'blogger_permalink','http://amystarrallen.com/wp-content/uploads/2012/02/high_standards.png'),(3549,504,'blogger_blog','monicarenata.blogspot.com'),(3550,504,'blogger_author','Monica Renata'),(3551,283,'_thumbnail_id','504'),(3696,521,'_wp_attached_file','2013/04/love2012.jpeg'),(3556,505,'_wp_attached_file','2013/05/il_fullxfull.252045308.jpg'),(3557,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:803;s:4:\"file\";s:34:\"2013/05/il_fullxfull.252045308.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"il_fullxfull.252045308-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:\"il_fullxfull.252045308-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"il_fullxfull.252045308-1024x548.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:548;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"il_fullxfull.252045308-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"il_fullxfull.252045308-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3558,505,'blogger_permalink','http://img0.etsystatic.com/000/1/5441659/il_fullxfull.252045308.jpg'),(3559,505,'blogger_blog','monicarenata.blogspot.com'),(3560,505,'blogger_author','Monica Renata'),(3561,285,'_thumbnail_id','505'),(3800,534,'_wp_attached_file','2013/04/21024_496618720393384_1028522588_n.png'),(3568,506,'blogger_permalink','http://sphotos-a.xx.fbcdn.net/hphotos-frc1/p480x480/419080_360032497361934_1044775627_n.jpg'),(3569,506,'blogger_blog','monicarenata.blogspot.com'),(3570,506,'blogger_author','Monica Renata'),(3571,287,'_thumbnail_id','506'),(3713,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:44:\"2013/04/the_snow_storm_by_anugerah_ilahi.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"the_snow_storm_by_anugerah_ilahi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"the_snow_storm_by_anugerah_ilahi-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:44:\"the_snow_storm_by_anugerah_ilahi-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"the_snow_storm_by_anugerah_ilahi-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3574,507,'_wp_attached_file','2013/05/stock-vector-sweet-love-bird-card-92235451.jpg'),(3575,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:470;s:4:\"file\";s:54:\"2013/05/stock-vector-sweet-love-bird-card-92235451.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"stock-vector-sweet-love-bird-card-92235451-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:54:\"stock-vector-sweet-love-bird-card-92235451-287x300.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"stock-vector-sweet-love-bird-card-92235451-450x372.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3576,507,'blogger_permalink','http://image.shutterstock.com/display_pic_with_logo/363346/363346,1326033541,2/stock-vector-sweet-love-bird-card-92235451.jpg'),(3577,507,'blogger_blog','monicarenata.blogspot.com'),(3578,507,'blogger_author','Monica Renata'),(3579,288,'_thumbnail_id','507'),(3582,508,'_wp_attached_file','2013/05/milton.jpg'),(3583,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:420;s:4:\"file\";s:18:\"2013/05/milton.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"milton-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:\"milton-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"milton-660x372.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3584,508,'blogger_permalink','http://barthendrix.com/images/portfolio/milton.jpg'),(3585,508,'blogger_blog','monicarenata.blogspot.com'),(3586,508,'blogger_author','Monica Renata'),(3587,289,'_thumbnail_id','508'),(3590,509,'_wp_attached_file','2013/05/night_terrors_ii_by_ani_r.jpg'),(3591,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:1000;s:4:\"file\";s:37:\"2013/05/night_terrors_ii_by_ani_r.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"night_terrors_ii_by_ani_r-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"night_terrors_ii_by_ani_r-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"night_terrors_ii_by_ani_r-670x372.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"night_terrors_ii_by_ani_r-670x576.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3592,509,'blogger_permalink','http://www.adriansundeaddiary.com/gfile/75r4!-!HGKMKM!-!zrzor45!-!NRHJNJRI-EGMG-HSND-OGON-SMKEESIIDQSD!-!72y1nq/night_terrors_ii_by_ani_r.jpg'),(3593,509,'blogger_blog','monicarenata.blogspot.com'),(3594,509,'blogger_author','Monica Renata'),(3595,290,'_thumbnail_id','509'),(3712,523,'_wp_attached_file','2013/04/the_snow_storm_by_anugerah_ilahi.jpg'),(3600,510,'_wp_attached_file','2013/05/700263__large.jpg'),(3601,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:288;s:4:\"file\";s:25:\"2013/05/700263__large.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"700263__large-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3602,510,'blogger_permalink','https://propertopper.com/assets/uploads/product-images/1730/700263__large.jpg'),(3603,510,'blogger_blog','monicarenata.blogspot.com'),(3604,510,'blogger_author','Monica Renata'),(3605,292,'_thumbnail_id','510'),(3608,511,'_wp_attached_file','2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg'),(3609,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:63:\"2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"broken-heart-lost-love-paper-Favim.com-262226_large-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:63:\"broken-heart-lost-love-paper-Favim.com-262226_large-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3610,511,'blogger_permalink','http://4.bp.blogspot.com/-LI7lXb_XlII/UYR1aEGSjrI/AAAAAAAABa4/BDkjzCMhXpQ/s320/broken-heart-lost-love-paper-Favim.com-262226_large.jpg'),(3611,511,'blogger_blog','monicarenata.blogspot.com'),(3612,511,'blogger_author','Monica Renata'),(3613,293,'_thumbnail_id','511'),(3801,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:714;s:6:\"height\";i:719;s:4:\"file\";s:46:\"2013/04/21024_496618720393384_1028522588_n.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"21024_496618720393384_1028522588_n-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:46:\"21024_496618720393384_1028522588_n-297x300.png\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"21024_496618720393384_1028522588_n-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"21024_496618720393384_1028522588_n-714x576.png\";s:5:\"width\";i:714;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3616,512,'_wp_attached_file','2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg'),(3617,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:344;s:4:\"file\";s:73:\"2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3-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:73:\"550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3618,512,'blogger_permalink','http://pad3.whstatic.com/images/thumb/a/af/Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg'),(3619,512,'blogger_blog','monicarenata.blogspot.com'),(3620,512,'blogger_author','Monica Renata'),(3621,294,'_thumbnail_id','512'),(3804,534,'blogger_author','Monica Renata'),(3624,513,'_wp_attached_file','2013/05/juice_tray_2.png'),(3625,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2013/05/juice_tray_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"juice_tray_2-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:\"juice_tray_2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"juice_tray_2-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3626,513,'blogger_permalink','http://www.eatdrinkandrun.com/wp-content/uploads/2012/06/juice_tray_2.png'),(3627,513,'blogger_blog','monicarenata.blogspot.com'),(3628,513,'blogger_author','Monica Renata'),(3629,295,'_thumbnail_id','513'),(3634,514,'_wp_attached_file','2013/05/creating_yourself.jpg'),(3635,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:422;s:4:\"file\";s:29:\"2013/05/creating_yourself.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"creating_yourself-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:29:\"creating_yourself-300x253.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"creating_yourself-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3636,514,'blogger_permalink','http://traveledheart.files.wordpress.com/2013/01/creating_yourself.jpg'),(3637,514,'blogger_blog','monicarenata.blogspot.com'),(3638,514,'blogger_author','Monica Renata'),(3639,297,'_thumbnail_id','514'),(3642,515,'_wp_attached_file','2013/05/I_still_think_about_you_by_AnkyShpanky.jpg'),(3643,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:688;s:4:\"file\";s:50:\"2013/05/I_still_think_about_you_by_AnkyShpanky.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"I_still_think_about_you_by_AnkyShpanky-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:\"I_still_think_about_you_by_AnkyShpanky-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"I_still_think_about_you_by_AnkyShpanky-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"I_still_think_about_you_by_AnkyShpanky-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3644,515,'blogger_permalink','http://fc07.deviantart.net/fs34/i/2008/243/c/3/I_still_think_about_you_by_AnkyShpanky.jpg'),(3645,515,'blogger_blog','monicarenata.blogspot.com'),(3646,515,'blogger_author','Monica Renata'),(3647,298,'_thumbnail_id','515'),(3744,527,'_wp_attached_file','2013/04/KingdomOfHeaven.jpg'),(3808,535,'_wp_attached_file','2013/04/5952_487083678013555_248729212_n.png'),(3652,516,'_wp_attached_file','2013/05/Communicating-Without-Words.jpg'),(3653,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:292;s:4:\"file\";s:39:\"2013/05/Communicating-Without-Words.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Communicating-Without-Words-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:\"Communicating-Without-Words-300x101.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"Communicating-Without-Words-672x292.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3654,516,'blogger_permalink','http://www.sundaymag.tv/wp-content/uploads/2012/06/Communicating-Without-Words.jpg'),(3655,516,'blogger_blog','monicarenata.blogspot.com'),(3656,516,'blogger_author','Monica Renata'),(3657,300,'_thumbnail_id','516'),(3660,517,'_wp_attached_file','2013/05/4880337776_95b5896c92_z.jpg'),(3661,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:486;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2013/05/4880337776_95b5896c92_z.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"4880337776_95b5896c92_z-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:\"4880337776_95b5896c92_z-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"4880337776_95b5896c92_z-486x372.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"4880337776_95b5896c92_z-486x576.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:22:\"OLYMPUS DIGITAL CAMERA\";}}'),(3662,517,'blogger_permalink','http://farm5.staticflickr.com/4117/4880337776_95b5896c92_z.jpg'),(3663,517,'blogger_blog','monicarenata.blogspot.com'),(3664,517,'blogger_author','Monica Renata'),(3665,301,'_thumbnail_id','517'),(3745,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:27:\"2013/04/KingdomOfHeaven.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"KingdomOfHeaven-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:\"KingdomOfHeaven-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:27:\"KingdomOfHeaven-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"KingdomOfHeaven-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3809,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2013/04/5952_487083678013555_248729212_n.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"5952_487083678013555_248729212_n-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"5952_487083678013555_248729212_n-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"5952_487083678013555_248729212_n-500x372.png\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3670,518,'_wp_attached_file','2013/04/bigstock-Reality-TV-7107918.jpg'),(3671,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:561;s:4:\"file\";s:39:\"2013/04/bigstock-Reality-TV-7107918.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"bigstock-Reality-TV-7107918-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:\"bigstock-Reality-TV-7107918-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"bigstock-Reality-TV-7107918-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3672,518,'blogger_permalink','http://www.natcom.org/uploadedImages/CommunicationCurrents_Articles/Volume_7/bigstock-Reality-TV-7107918.jpg'),(3673,518,'blogger_blog','monicarenata.blogspot.com'),(3674,518,'blogger_author','Monica Renata'),(3675,303,'_thumbnail_id','518'),(3678,519,'_wp_attached_file','2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg'),(3679,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:548;s:4:\"file\";s:68:\"2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch-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:68:\"stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3680,519,'blogger_permalink','http://4.bp.blogspot.com/-RqUfpMRV63E/UX5uN0R5AdI/AAAAAAAAANI/V5rAXEALkBI/s1600/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg'),(3681,519,'blogger_blog','monicarenata.blogspot.com'),(3682,519,'blogger_author','Monica Renata'),(3683,304,'_thumbnail_id','519'),(3816,536,'_wp_attached_file','2013/04/3061826565_1_3_eiVVN9cA.jpg'),(3688,520,'_wp_attached_file','2013/04/warren_25271_2.jpg'),(3689,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:425;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2013/04/warren_25271_2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"warren_25271_2-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:\"warren_25271_2-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"warren_25271_2-425x372.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3690,520,'blogger_permalink','http://www.artbrokerage.com/art/warren/_images/warren_25271_2.jpg'),(3691,520,'blogger_blog','monicarenata.blogspot.com'),(3692,520,'blogger_author','Monica Renata'),(3693,306,'_thumbnail_id','520'),(3752,528,'_wp_attached_file','2013/04/lilies.jpg'),(3697,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2013/04/love2012.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"love2012-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"love2012-300x225.jpeg\";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:21:\"love2012-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"love2012-800x576.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3698,521,'blogger_permalink','http://4.bp.blogspot.com/-0Y58xQ5WtGE/UXq6muF4TQI/AAAAAAAAAM4/v7h3kz2-hmA/s1600/love2012.jpeg'),(3699,521,'blogger_blog','monicarenata.blogspot.com'),(3700,521,'blogger_author','Monica Renata'),(3701,307,'_thumbnail_id','521'),(3704,522,'_wp_attached_file','2013/04/eyes.jpg'),(3705,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:16:\"2013/04/eyes.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"eyes-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:\"eyes-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"eyes-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3706,522,'blogger_permalink','http://3.bp.blogspot.com/-pTWJ9fpnstw/UXqU8HvPYkI/AAAAAAAAAMo/5SwaSrPVKSM/s1600/eyes.jpg'),(3707,522,'blogger_blog','monicarenata.blogspot.com'),(3708,522,'blogger_author','Monica Renata'),(3709,308,'_thumbnail_id','522'),(3714,523,'blogger_permalink','http://3.bp.blogspot.com/-32d0DAb_Ojs/UXf0LUP3exI/AAAAAAAAAMY/GnFVvUkrLks/s1600/the_snow_storm_by_anugerah_ilahi.jpg'),(3715,523,'blogger_blog','monicarenata.blogspot.com'),(3716,523,'blogger_author','Monica Renata'),(3717,309,'_thumbnail_id','523'),(3720,524,'_wp_attached_file','2013/04/chivalry2.png'),(3721,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:647;s:6:\"height\";i:356;s:4:\"file\";s:21:\"2013/04/chivalry2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"chivalry2-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:\"chivalry2-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3722,524,'blogger_permalink','http://1.bp.blogspot.com/-dhzI57bDlrg/UXfxmhPevPI/AAAAAAAAAMI/gLx4BTF_bcc/s1600/chivalry2.png'),(3723,524,'blogger_blog','monicarenata.blogspot.com'),(3724,524,'blogger_author','Monica Renata'),(3725,310,'_thumbnail_id','524'),(3753,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:370;s:4:\"file\";s:18:\"2013/04/lilies.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"lilies-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:\"lilies-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3728,525,'_wp_attached_file','2013/04/45047192-end-relationship.jpg'),(3729,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:609;s:6:\"height\";i:480;s:4:\"file\";s:37:\"2013/04/45047192-end-relationship.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"45047192-end-relationship-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"45047192-end-relationship-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"45047192-end-relationship-609x372.jpg\";s:5:\"width\";i:609;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3730,525,'blogger_permalink','http://2.bp.blogspot.com/-ugaw6bMUuoE/UXaO7YqwvZI/AAAAAAAAAL4/BVmzzgl6e9k/s1600/45047192-end-relationship.jpg'),(3731,525,'blogger_blog','monicarenata.blogspot.com'),(3732,525,'blogger_author','Monica Renata'),(3733,311,'_thumbnail_id','525'),(3755,528,'blogger_blog','monicarenata.blogspot.com'),(3736,526,'_wp_attached_file','2013/04/know_thyself.jpg'),(3737,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:478;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2013/04/know_thyself.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"know_thyself-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:\"know_thyself-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"know_thyself-478x372.jpg\";s:5:\"width\";i:478;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:32:\"(c) Marekuliasz | Dreamstime.com\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(3738,526,'blogger_permalink','http://4.bp.blogspot.com/-YVKugn5ONaY/UXU4b3tLHMI/AAAAAAAAALo/QEwtgR1qHsA/s1600/know_thyself.jpg'),(3739,526,'blogger_blog','monicarenata.blogspot.com'),(3740,526,'blogger_author','Monica Renata'),(3741,312,'_thumbnail_id','526'),(3746,527,'blogger_permalink','http://4.bp.blogspot.com/-jUHXuHc6l8g/UXU0Ny4movI/AAAAAAAAALg/lnAtt-FlkVw/s1600/KingdomOfHeaven.jpg'),(3747,527,'blogger_blog','monicarenata.blogspot.com'),(3748,527,'blogger_author','Monica Renata'),(3749,313,'_thumbnail_id','527'),(3757,314,'_thumbnail_id','528'),(3754,528,'blogger_permalink','http://4.bp.blogspot.com/-e0Qftix4qiA/UXAge8rdBJI/AAAAAAAAALM/vcI4YRRSkPo/s1600/lilies.jpg'),(3756,528,'blogger_author','Monica Renata'),(3762,529,'blogger_permalink','http://1.bp.blogspot.com/-0X9sHjJAWs8/UXAX88drEAI/AAAAAAAAALE/nE0Y0ttJ55w/s1600/truth.jpg'),(3763,529,'blogger_blog','monicarenata.blogspot.com'),(3764,529,'blogger_author','Monica Renata'),(3765,315,'_thumbnail_id','529'),(3770,530,'blogger_permalink','http://2.bp.blogspot.com/-FQNelz1FRzI/UW6x55IYAlI/AAAAAAAAAK0/ymeTgzA-V20/s1600/flat,550x550,075,f.u2.jpg'),(3771,530,'blogger_blog','monicarenata.blogspot.com'),(3772,530,'blogger_author','Monica Renata'),(3773,316,'_thumbnail_id','530'),(3776,531,'_wp_attached_file','2013/04/Learning-to-Love-Yourself.jpg'),(3777,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:37:\"2013/04/Learning-to-Love-Yourself.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Learning-to-Love-Yourself-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Learning-to-Love-Yourself-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Learning-to-Love-Yourself-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"Learning-to-Love-Yourself-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3778,531,'blogger_permalink','http://1.bp.blogspot.com/-12N6i87jRgc/UW1otqAbbaI/AAAAAAAAAKk/7xzMvRHZem8/s1600/Learning+to++Love+Yourself.jpg'),(3779,531,'blogger_blog','monicarenata.blogspot.com'),(3780,531,'blogger_author','Monica Renata'),(3781,317,'_thumbnail_id','531'),(3784,532,'_wp_attached_file','2013/04/pen-and-paper.jpg'),(3785,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:399;s:4:\"file\";s:25:\"2013/04/pen-and-paper.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"pen-and-paper-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:\"pen-and-paper-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"pen-and-paper-600x372.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3786,532,'blogger_permalink','http://1.bp.blogspot.com/-x9U5ToGSERc/UW1kBbOJNcI/AAAAAAAAAKc/afLru--onio/s1600/pen-and-paper.jpg'),(3787,532,'blogger_blog','monicarenata.blogspot.com'),(3788,532,'blogger_author','Monica Renata'),(3789,318,'_thumbnail_id','532'),(3825,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:383;s:4:\"file\";s:39:\"2013/04/be_grateful_photo_-_Copy_1_.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"be_grateful_photo_-_Copy_1_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"be_grateful_photo_-_Copy_1_-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"be_grateful_photo_-_Copy_1_-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3792,533,'_wp_attached_file','2013/04/Eye-in-the-Sky-1680x1050.jpg'),(3793,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2013/04/Eye-in-the-Sky-1680x1050.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Eye-in-the-Sky-1680x1050-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:\"Eye-in-the-Sky-1680x1050-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Eye-in-the-Sky-1680x1050-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"Eye-in-the-Sky-1680x1050-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3794,533,'blogger_permalink','http://1.bp.blogspot.com/-HXBolRasPIM/UWwpp2EBFMI/AAAAAAAAAKM/pIFTktpBfFE/s1600/Eye-in-the-Sky-1680x1050.jpg'),(3795,533,'blogger_blog','monicarenata.blogspot.com'),(3796,533,'blogger_author','Monica Renata'),(3797,319,'_thumbnail_id','533'),(3802,534,'blogger_permalink','http://3.bp.blogspot.com/-6re_GxH2Aqw/UWhhdHwVUXI/AAAAAAAAAJ0/xs8yZuPOyGU/s1600/21024_496618720393384_1028522588_n.png'),(3803,534,'blogger_blog','monicarenata.blogspot.com'),(3805,320,'_thumbnail_id','534'),(3810,535,'blogger_permalink','http://1.bp.blogspot.com/-uXCEHjaqXDU/UWhSQcdIlcI/AAAAAAAAAJk/VsyOE6KVAD4/s1600/5952_487083678013555_248729212_n.png'),(3811,535,'blogger_blog','monicarenata.blogspot.com'),(3812,535,'blogger_author','Monica Renata'),(3813,321,'_thumbnail_id','535'),(3817,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:333;s:4:\"file\";s:35:\"2013/04/3061826565_1_3_eiVVN9cA.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"3061826565_1_3_eiVVN9cA-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:\"3061826565_1_3_eiVVN9cA-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3818,536,'blogger_permalink','http://2.bp.blogspot.com/-wUxCp3SRHww/UWbQsFMfVXI/AAAAAAAAAJU/zBb7xgIkaaY/s400/3061826565_1_3_eiVVN9cA.jpg'),(3819,536,'blogger_blog','monicarenata.blogspot.com'),(3820,536,'blogger_author','Monica Renata'),(3821,323,'_thumbnail_id','536'),(3824,537,'_wp_attached_file','2013/04/be_grateful_photo_-_Copy_1_.jpg'),(3826,537,'blogger_permalink','http://4.bp.blogspot.com/-LDoBnFOUzpQ/UWazqE3-9kI/AAAAAAAAAJE/2wh8LAgc5is/s400/be_grateful_photo_-_Copy_1_.jpg'),(3827,537,'blogger_blog','monicarenata.blogspot.com'),(3828,537,'blogger_author','Monica Renata'),(3829,324,'_thumbnail_id','537'),(3872,543,'_wp_attached_file','2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg'),(3832,538,'_wp_attached_file','2013/04/602231_558494810842339_1711658822_n.jpg'),(3833,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:559;s:6:\"height\";i:633;s:4:\"file\";s:47:\"2013/04/602231_558494810842339_1711658822_n.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"602231_558494810842339_1711658822_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"602231_558494810842339_1711658822_n-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"602231_558494810842339_1711658822_n-559x372.jpg\";s:5:\"width\";i:559;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"602231_558494810842339_1711658822_n-559x576.jpg\";s:5:\"width\";i:559;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3834,538,'blogger_permalink','http://1.bp.blogspot.com/-o3aksfBlVs4/UWawyXu46II/AAAAAAAAAI0/tySojqcqqvE/s400/602231_558494810842339_1711658822_n.jpg'),(3835,538,'blogger_blog','monicarenata.blogspot.com'),(3836,538,'blogger_author','Monica Renata'),(3837,325,'_thumbnail_id','538'),(3840,539,'_wp_attached_file','2013/04/428867_505088056192781_1051053758_n.jpg'),(3841,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2013/04/428867_505088056192781_1051053758_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"428867_505088056192781_1051053758_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"428867_505088056192781_1051053758_n-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"428867_505088056192781_1051053758_n-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3842,539,'blogger_permalink','http://1.bp.blogspot.com/-H9SyPSzT41s/UWU2czpJAHI/AAAAAAAAAIk/pQ3lQROV4cY/s1600/428867_505088056192781_1051053758_n.jpg'),(3843,539,'blogger_blog','monicarenata.blogspot.com'),(3844,539,'blogger_author','Monica Renata'),(3845,326,'_thumbnail_id','539'),(3904,547,'_wp_attached_file','2013/04/543331_410098002366361_1352242046_n_large.jpg'),(3848,540,'_wp_attached_file','2013/04/543065_392334884174531_1404445749_n.jpg'),(3849,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:47:\"2013/04/543065_392334884174531_1404445749_n.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"543065_392334884174531_1404445749_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"543065_392334884174531_1404445749_n-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3850,540,'blogger_permalink','http://1.bp.blogspot.com/-90Ucl3eCysc/UWMdtjC_3rI/AAAAAAAAAIU/UvzBhhxbVbk/s1600/543065_392334884174531_1404445749_n.jpg'),(3851,540,'blogger_blog','monicarenata.blogspot.com'),(3852,540,'blogger_author','Monica Renata'),(3853,327,'_thumbnail_id','540'),(3873,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:42:\"2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_lmlpfjgfsM1qiufayo1_500-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:\"tumblr_lmlpfjgfsM1qiufayo1_500-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:42:\"tumblr_lmlpfjgfsM1qiufayo1_500-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3856,541,'_wp_attached_file','2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg'),(3857,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:109:\"2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:109:\"peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512-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:109:\"peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:109:\"peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512-512x372.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3858,541,'blogger_permalink','http://3.bp.blogspot.com/-NU_HqsYX0uo/UWGMKZ6Zz4I/AAAAAAAAAIE/Xi6LS8F_FVI/s1600/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg'),(3859,541,'blogger_blog','monicarenata.blogspot.com'),(3860,541,'blogger_author','Monica Renata'),(3861,328,'_thumbnail_id','541'),(3905,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:403;s:6:\"height\";i:375;s:4:\"file\";s:53:\"2013/04/543331_410098002366361_1352242046_n_large.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"543331_410098002366361_1352242046_n_large-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"543331_410098002366361_1352242046_n_large-300x279.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:53:\"543331_410098002366361_1352242046_n_large-403x372.jpg\";s:5:\"width\";i:403;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3864,542,'_wp_attached_file','2013/04/Life.jpg'),(3865,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2013/04/Life.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Life-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:\"Life-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:16:\"Life-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"Life-800x576.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3866,542,'blogger_permalink','http://3.bp.blogspot.com/-lUj9To5t16o/UWGHsxJ_uBI/AAAAAAAAAH0/B1BJa39qCnU/s1600/Life.jpg'),(3867,542,'blogger_blog','monicarenata.blogspot.com'),(3868,542,'blogger_author','Monica Renata'),(3869,329,'_thumbnail_id','542'),(3906,547,'blogger_permalink','http://2.bp.blogspot.com/-q7pcpsRPusY/UV7EhCbj43I/AAAAAAAAAGc/i3ubYM-79uo/s1600/543331_410098002366361_1352242046_n_large.jpg'),(3874,543,'blogger_permalink','http://2.bp.blogspot.com/-YzOeZmNiLWc/UWGBrRj9jJI/AAAAAAAAAHo/rgQlmRnhlWI/s1600/tumblr_lmlpfjgfsM1qiufayo1_500.jpg'),(3875,543,'blogger_blog','monicarenata.blogspot.com'),(3876,543,'blogger_author','Monica Renata'),(3877,330,'_thumbnail_id','543'),(4198,571,'_menu_item_target',''),(3880,544,'_wp_attached_file','2013/04/Are-You-Sure-480x330.jpg'),(3881,544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:330;s:4:\"file\";s:32:\"2013/04/Are-You-Sure-480x330.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Are-You-Sure-480x330-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Are-You-Sure-480x330-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3882,544,'blogger_permalink','http://3.bp.blogspot.com/-cbfmnTRKYJo/UWF_NhBJwSI/AAAAAAAAAHc/_DDNUZSK7no/s1600/Are-You-Sure-480x330.jpg'),(3883,544,'blogger_blog','monicarenata.blogspot.com'),(3884,544,'blogger_author','Monica Renata'),(3885,331,'_thumbnail_id','544'),(3913,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:388;s:4:\"file\";s:47:\"2013/04/484520_483796694965628_2032429780_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"484520_483796694965628_2032429780_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"484520_483796694965628_2032429780_n-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"484520_483796694965628_2032429780_n-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3888,545,'_wp_attached_file','2013/04/WallAroundHeart.jpg'),(3889,545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2013/04/WallAroundHeart.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"WallAroundHeart-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:\"WallAroundHeart-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"WallAroundHeart-512x372.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3890,545,'blogger_permalink','http://2.bp.blogspot.com/-lNH7ZAMlYVg/UWF5AtRv53I/AAAAAAAAAHM/IB64rg4Qc84/s1600/WallAroundHeart.jpg'),(3891,545,'blogger_blog','monicarenata.blogspot.com'),(3892,545,'blogger_author','Monica Renata'),(3893,332,'_thumbnail_id','545'),(3896,546,'_wp_attached_file','2013/04/392901_564629153562238_1402092232_n.jpg'),(3897,546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:471;s:4:\"file\";s:47:\"2013/04/392901_564629153562238_1402092232_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"392901_564629153562238_1402092232_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"392901_564629153562238_1402092232_n-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"392901_564629153562238_1402092232_n-400x372.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3898,546,'blogger_permalink','http://4.bp.blogspot.com/-wZknMkWZeZU/UWAcosRXX1I/AAAAAAAAAG8/YVlT7Z29YCU/s400/392901_564629153562238_1402092232_n.jpg'),(3899,546,'blogger_blog','monicarenata.blogspot.com'),(3900,546,'blogger_author','Monica Renata'),(3901,333,'_thumbnail_id','546'),(4194,571,'_menu_item_type','custom'),(3907,547,'blogger_blog','monicarenata.blogspot.com'),(3908,547,'blogger_author','Monica Renata'),(3909,334,'_thumbnail_id','547'),(3912,548,'_wp_attached_file','2013/04/484520_483796694965628_2032429780_n.jpg'),(3914,548,'blogger_permalink','http://2.bp.blogspot.com/-ptihBe9Nvsg/UV12U6qQx7I/AAAAAAAAAGE/CBVX_AraEYA/s1600/484520_483796694965628_2032429780_n.jpg'),(3915,548,'blogger_blog','monicarenata.blogspot.com'),(3916,548,'blogger_author','Monica Renata'),(3917,335,'_thumbnail_id','548'),(4197,571,'_menu_item_object','custom'),(3920,549,'_wp_attached_file','2013/04/Afraid-of-Falling.001-001.jpg'),(3921,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2013/04/Afraid-of-Falling.001-001.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Afraid-of-Falling.001-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Afraid-of-Falling.001-001-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Afraid-of-Falling.001-001-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"Afraid-of-Falling.001-001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3922,549,'blogger_permalink','http://4.bp.blogspot.com/-5osDbDOH1C0/UVxM0-E7nBI/AAAAAAAAAFw/87jxmQ9sEtQ/s1600/Afraid+of+Falling.001-001.jpg'),(3923,549,'blogger_blog','monicarenata.blogspot.com'),(3924,549,'blogger_author','Monica Renata'),(3925,336,'_thumbnail_id','549'),(4192,570,'_menu_item_url','http://www.facebook.com/TheAwkwardButterfly'),(3928,550,'_wp_attached_file','2013/04/True-Beauty.jpg'),(3929,550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2013/04/True-Beauty.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"True-Beauty-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3930,550,'blogger_permalink','http://1.bp.blogspot.com/-xbAO3aPqRII/UVwmyuLjs6I/AAAAAAAAAFg/MASDiAWH0z8/s1600/True+Beauty.jpg'),(3931,550,'blogger_blog','monicarenata.blogspot.com'),(3932,550,'blogger_author','Monica Renata'),(3933,337,'_thumbnail_id','550'),(4191,570,'_menu_item_xfn',''),(3936,551,'_wp_attached_file','2013/04/Gossip.jpg'),(3937,551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:208;s:6:\"height\";i:243;s:4:\"file\";s:18:\"2013/04/Gossip.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Gossip-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3938,551,'blogger_permalink','http://2.bp.blogspot.com/-sihYBDQ_wns/UVwi9I6kYiI/AAAAAAAAAFQ/2A-6tPkuCZU/s1600/Gossip.jpg'),(3939,551,'blogger_blog','monicarenata.blogspot.com'),(3940,551,'blogger_author','Monica Renata'),(3941,338,'_thumbnail_id','551'),(3944,552,'_wp_attached_file','2013/04/KO028-Art-of-Kindness-front_original.jpg'),(3945,552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:990;s:4:\"file\";s:48:\"2013/04/KO028-Art-of-Kindness-front_original.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"KO028-Art-of-Kindness-front_original-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"KO028-Art-of-Kindness-front_original-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"KO028-Art-of-Kindness-front_original-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:49:\"KO028-Art-of-Kindness-front_original-1000x576.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3946,552,'blogger_permalink','http://4.bp.blogspot.com/-UgXxcb8UpQ0/UVsbdRK9dDI/AAAAAAAAAFA/5V2I2DRvuK4/s400/KO028-Art-of-Kindness-front_original.jpg'),(3947,552,'blogger_blog','monicarenata.blogspot.com'),(3948,552,'blogger_author','Monica Renata'),(3949,339,'_thumbnail_id','552'),(4189,570,'_menu_item_target',''),(3952,553,'_wp_attached_file','2013/04/you_are_never_alone.jpg'),(3953,553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:691;s:4:\"file\";s:31:\"2013/04/you_are_never_alone.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"you_are_never_alone-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:\"you_are_never_alone-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"you_are_never_alone-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"you_are_never_alone-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3954,553,'blogger_permalink','http://3.bp.blogspot.com/-YJVIWpOxN5Q/UVrMTy2ihaI/AAAAAAAAAEM/lu6OzwKPUUY/s640/you_are_never_alone.jpg'),(3955,553,'blogger_blog','monicarenata.blogspot.com'),(3956,553,'blogger_author','Monica Renata'),(3957,340,'_thumbnail_id','553'),(4190,570,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3960,554,'_wp_attached_file','2013/04/561037_10151144389162272_1077131149_n.jpg'),(3961,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:49:\"2013/04/561037_10151144389162272_1077131149_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"561037_10151144389162272_1077131149_n-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:\"561037_10151144389162272_1077131149_n-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"561037_10151144389162272_1077131149_n-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3962,554,'blogger_permalink','http://2.bp.blogspot.com/-SoMLMtBikL4/UVnVm94VIXI/AAAAAAAAAD4/97-y6gYL63s/s320/561037_10151144389162272_1077131149_n.jpg'),(3963,554,'blogger_blog','monicarenata.blogspot.com'),(3964,554,'blogger_author','Monica Renata'),(3965,341,'_thumbnail_id','554'),(4196,571,'_menu_item_object_id','571'),(4188,570,'_menu_item_object','custom'),(3968,555,'_wp_attached_file','2013/04/421080_10151275110125175_123597668_n.jpg'),(3969,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:544;s:4:\"file\";s:48:\"2013/04/421080_10151275110125175_123597668_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"421080_10151275110125175_123597668_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"421080_10151275110125175_123597668_n-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"421080_10151275110125175_123597668_n-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3970,555,'blogger_permalink','http://3.bp.blogspot.com/-JYtQyAQ1oGk/UVnSviQc2MI/AAAAAAAAADw/BLS1TnshBKY/s320/421080_10151275110125175_123597668_n.jpg'),(3971,555,'blogger_blog','monicarenata.blogspot.com'),(3972,555,'blogger_author','Monica Renata'),(3973,342,'_thumbnail_id','555'),(3976,556,'_wp_attached_file','2013/04/Rain_Storm_by_horrormove.jpg'),(3977,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:834;s:4:\"file\";s:36:\"2013/04/Rain_Storm_by_horrormove.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Rain_Storm_by_horrormove-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:\"Rain_Storm_by_horrormove-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Rain_Storm_by_horrormove-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"Rain_Storm_by_horrormove-1000x576.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3978,556,'blogger_permalink','http://1.bp.blogspot.com/-Rgzar_Z6tbA/UVnSG9XkzfI/AAAAAAAAADo/WR7JDk8Vbto/s320/Rain_Storm_by_horrormove.jpg'),(3979,556,'blogger_blog','monicarenata.blogspot.com'),(3980,556,'blogger_author','Monica Renata'),(3981,343,'_thumbnail_id','556'),(4185,570,'_menu_item_type','custom'),(3984,557,'_wp_attached_file','2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg'),(3985,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:381;s:4:\"file\";s:42:\"2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_lxvr63Li3b1qa9u6ko1_500-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:\"tumblr_lxvr63Li3b1qa9u6ko1_500-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_lxvr63Li3b1qa9u6ko1_500-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3986,557,'blogger_permalink','http://4.bp.blogspot.com/--1HKQtuaBR4/UVmuD-8DB5I/AAAAAAAAADI/LZk4TAd4sdk/s320/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg'),(3987,557,'blogger_blog','monicarenata.blogspot.com'),(3988,557,'blogger_author','Monica Renata'),(3989,344,'_thumbnail_id','557'),(4183,568,'_menu_item_url','https://www.createspace.com/4430912'),(3992,558,'_wp_attached_file','2013/04/60523_376512035770051_2081392546_n.jpg'),(3993,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:561;s:4:\"file\";s:46:\"2013/04/60523_376512035770051_2081392546_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"60523_376512035770051_2081392546_n-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:46:\"60523_376512035770051_2081392546_n-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"60523_376512035770051_2081392546_n-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(3994,558,'blogger_permalink','http://2.bp.blogspot.com/-VapHxD1uT5Q/UVmoEwJ1G2I/AAAAAAAAADA/QT_L4KQSm80/s320/60523_376512035770051_2081392546_n.jpg'),(3995,558,'blogger_blog','monicarenata.blogspot.com'),(3996,558,'blogger_author','Monica Renata'),(3997,345,'_thumbnail_id','558'),(4181,568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4000,559,'_wp_attached_file','2013/04/72842_10151383688619366_997576769_n.jpg'),(4001,559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:342;s:4:\"file\";s:47:\"2013/04/72842_10151383688619366_997576769_n.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"72842_10151383688619366_997576769_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"72842_10151383688619366_997576769_n-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4002,559,'blogger_permalink','http://2.bp.blogspot.com/-n08I1qpkImM/UVmkKU-UnWI/AAAAAAAAAC0/t51RNvkfW58/s320/72842_10151383688619366_997576769_n.jpg'),(4003,559,'blogger_blog','monicarenata.blogspot.com'),(4004,559,'blogger_author','Monica Renata'),(4005,346,'_thumbnail_id','559'),(4182,568,'_menu_item_xfn',''),(4180,568,'_menu_item_target',''),(4008,560,'_wp_attached_file','2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg'),(4009,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:47:\"2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"ACQYR-Wallpaper-016_Nijmeh-1024x768-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"ACQYR-Wallpaper-016_Nijmeh-1024x768-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:47:\"ACQYR-Wallpaper-016_Nijmeh-1024x768-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:48:\"ACQYR-Wallpaper-016_Nijmeh-1024x768-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4010,560,'blogger_permalink','http://3.bp.blogspot.com/-z1jrSa7hHbA/UVmhjWC34JI/AAAAAAAAACo/k7p9pLi1qXI/s320/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg'),(4011,560,'blogger_blog','monicarenata.blogspot.com'),(4012,560,'blogger_author','Monica Renata'),(4013,347,'_thumbnail_id','560'),(4195,571,'_menu_item_menu_item_parent','581'),(4016,561,'_wp_attached_file','2013/04/394362_493303287348302_895782065_n.jpg'),(4017,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:727;s:4:\"file\";s:46:\"2013/04/394362_493303287348302_895782065_n.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"394362_493303287348302_895782065_n-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:46:\"394362_493303287348302_895782065_n-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"394362_493303287348302_895782065_n-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"394362_493303287348302_895782065_n-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4018,561,'blogger_permalink','http://2.bp.blogspot.com/-rHT0WQXzpj4/UVmNuzAaKNI/AAAAAAAAACY/xSuW0Gmmf-E/s320/394362_493303287348302_895782065_n.jpg'),(4019,561,'blogger_blog','monicarenata.blogspot.com'),(4020,561,'blogger_author','Monica Renata'),(4021,348,'_thumbnail_id','561'),(4178,568,'_menu_item_object_id','568'),(4024,562,'_wp_attached_file','2013/04/wall-pops-life-is-beautiful-quote-2.jpg'),(4025,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:47:\"2013/04/wall-pops-life-is-beautiful-quote-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"wall-pops-life-is-beautiful-quote-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"wall-pops-life-is-beautiful-quote-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"wall-pops-life-is-beautiful-quote-2-450x372.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4026,562,'blogger_permalink','http://3.bp.blogspot.com/-H-vRvq4hsAQ/UVmH8YmC_qI/AAAAAAAAACI/FuOLwZAmAS4/s320/wall-pops-life-is-beautiful-quote-2.jpg'),(4027,562,'blogger_blog','monicarenata.blogspot.com'),(4028,562,'blogger_author','Monica Renata'),(4029,349,'_thumbnail_id','562'),(4179,568,'_menu_item_object','custom'),(4177,568,'_menu_item_menu_item_parent','581'),(4176,568,'_menu_item_type','custom'),(4186,570,'_menu_item_menu_item_parent','581'),(4269,581,'_menu_item_url',''),(4268,581,'_menu_item_xfn',''),(4267,581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4266,581,'_menu_item_target',''),(4265,581,'_menu_item_object','page'),(4264,581,'_menu_item_object_id','2'),(4263,581,'_menu_item_menu_item_parent','0'),(4262,581,'_menu_item_type','post_type'),(4187,570,'_menu_item_object_id','570'),(4165,566,'_menu_item_url','http://www.monicarenata.com/'),(4164,566,'_menu_item_xfn',''),(4163,566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4162,566,'_menu_item_target',''),(4161,566,'_menu_item_object','custom'),(4160,566,'_menu_item_object_id','566'),(4159,566,'_menu_item_menu_item_parent','0'),(4158,566,'_menu_item_type','custom'),(9430,1267,'dsq_thread_id','4719580869'),(9401,1267,'_publicize_twitter_user','@SavorMyWords'),(9402,1267,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485797110;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1320;}i:1;a:1:{s:2:\"id\";i:1055;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(9398,1267,'_wpas_done_all','1'),(9396,1266,'_publicize_twitter_user','@SavorMyWords'),(9397,1266,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485731731;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:813;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:1206;}}}}'),(9393,1266,'_wpas_done_all','1'),(4251,573,'_wpas_done_all','1'),(4137,315,'supernova_post_views_count','0'),(4136,58,'supernova_post_views_count','0'),(4135,10,'supernova_post_views_count','0'),(4134,11,'supernova_post_views_count','0'),(4199,571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4200,571,'_menu_item_xfn',''),(4201,571,'_menu_item_url','http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_title_0/175-2488248-7969658'),(4203,572,'ml-slider_settings','a:35:{s:4:\"type\";s:4:\"nivo\";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\";s:1:\"7\";s:3:\"sph\";s:1:\"5\";s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";s:2:\"30\";s:7:\"opacity\";s:3:\"0.7\";s:10:\"titleSpeed\";s:3:\"500\";s:6:\"effect\";s:6:\"random\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:4:\"true\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:4:\"dark\";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\";s:2:\"15\";s:6:\"center\";s:4:\"true\";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:4:\"true\";s:10:\"noConflict\";s:5:\"false\";s:12:\"smoothHeight\";s:5:\"false\";}'),(4204,384,'ml-slider_type','image'),(4205,384,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:137:\"/home2/monicare/public_html/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-700x300.jpg\";s:4:\"file\";s:82:\"51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-700x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"resized-225x96\";a:5:{s:4:\"path\";s:136:\"/home2/monicare/public_html/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-225x96.jpg\";s:4:\"file\";s:81:\"51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-225x96.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4206,385,'ml-slider_type','image'),(4207,385,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:137:\"/home2/monicare/public_html/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-700x300.jpg\";s:4:\"file\";s:82:\"41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-700x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"resized-228x97\";a:5:{s:4:\"path\";s:136:\"/home2/monicare/public_html/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-228x97.jpg\";s:4:\"file\";s:81:\"41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_-228x97.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4208,482,'ml-slider_type','image'),(4209,482,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:88:\"/home2/monicare/public_html/wp-content/uploads/2013/08/The-Awkward-Butterfly-700x300.jpg\";s:4:\"file\";s:33:\"The-Awkward-Butterfly-700x300.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-644x276\";a:5:{s:4:\"path\";s:88:\"/home2/monicare/public_html/wp-content/uploads/2013/08/The-Awkward-Butterfly-644x276.jpg\";s:4:\"file\";s:33:\"The-Awkward-Butterfly-644x276.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4210,384,'ml-slider_crop_position','center-center'),(4211,384,'_wp_attachment_image_alt',''),(4212,385,'ml-slider_crop_position','center-center'),(4213,385,'_wp_attachment_image_alt',''),(4214,482,'ml-slider_crop_position','center-center'),(4215,482,'_wp_attachment_image_alt',''),(4216,453,'ml-slider_type','image'),(4217,453,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-350x150\";a:5:{s:4:\"path\";s:76:\"/home2/monicare/public_html/wp-content/uploads/2013/11/listening-350x150.jpg\";s:4:\"file\";s:21:\"listening-350x150.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:76:\"/home2/monicare/public_html/wp-content/uploads/2013/11/listening-700x300.jpg\";s:4:\"file\";s:21:\"listening-700x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4218,562,'ml-slider_type','image'),(4219,562,'_wp_attachment_backup_sizes','a:2:{s:15:\"resized-450x192\";a:5:{s:4:\"path\";s:102:\"/home2/monicare/public_html/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2-450x192.jpg\";s:4:\"file\";s:47:\"wall-pops-life-is-beautiful-quote-2-450x192.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:102:\"/home2/monicare/public_html/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2-700x300.jpg\";s:4:\"file\";s:47:\"wall-pops-life-is-beautiful-quote-2-700x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4220,550,'ml-slider_type','image'),(4221,550,'_wp_attachment_backup_sizes','a:2:{s:14:\"resized-225x96\";a:5:{s:4:\"path\";s:77:\"/home2/monicare/public_html/wp-content/uploads/2013/04/True-Beauty-225x96.jpg\";s:4:\"file\";s:22:\"True-Beauty-225x96.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:78:\"/home2/monicare/public_html/wp-content/uploads/2013/04/True-Beauty-700x300.jpg\";s:4:\"file\";s:23:\"True-Beauty-700x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4222,453,'ml-slider_crop_position','center-center'),(4223,453,'_wp_attachment_image_alt',''),(4224,562,'ml-slider_crop_position','center-center'),(4225,562,'_wp_attachment_image_alt',''),(4226,550,'ml-slider_crop_position','center-center'),(4227,550,'_wp_attachment_image_alt',''),(4228,482,'ml-slider_url','http://amzn.com/1492343781'),(4230,384,'ml-slider_url','http://amzn.com/1492724211'),(4229,482,'ml-slider_new_window','true'),(4231,384,'ml-slider_new_window','true'),(4232,385,'ml-slider_url','http://amzn.com/1492834149'),(4233,385,'ml-slider_new_window','true'),(4234,573,'_edit_last','1'),(4235,573,'_wp_page_template','default'),(4236,573,'_use_impact','yes'),(4237,573,'_impact_template','Template 1'),(4238,573,'_impact_noindex','index'),(4239,573,'_impact_nofollow','follow'),(11158,1488,'sc_member_order','0'),(4241,573,'vantage_metaslider_slider','meta:572'),(4242,573,'vantage_menu_icon',''),(4243,573,'_edit_lock','1486927301:1'),(4244,573,'_impact_title','About Me'),(4245,575,'_wp_attached_file','2014/08/Always-Believe.png'),(4246,575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2810;s:6:\"height\";i:721;s:4:\"file\";s:26:\"2014/08/Always-Believe.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Always-Believe-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:\"Always-Believe-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Always-Believe-1024x262.png\";s:5:\"width\";i:1024;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Always-Believe-720x380.png\";s:5:\"width\";i:720;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"vantage-thumbnail-no-sidebar\";a:4:{s:4:\"file\";s:27:\"Always-Believe-1080x380.png\";s:5:\"width\";i:1080;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"vantage-slide\";a:4:{s:4:\"file\";s:26:\"Always-Believe-960x480.png\";s:5:\"width\";i:960;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"vantage-carousel\";a:4:{s:4:\"file\";s:26:\"Always-Believe-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"vantage-grid-loop\";a:4:{s:4:\"file\";s:26:\"Always-Believe-436x272.png\";s:5:\"width\";i:436;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4247,575,'ml-slider_type','image'),(4248,575,'_wp_attachment_backup_sizes','a:1:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:81:\"/home2/monicare/public_html/wp-content/uploads/2014/08/Always-Believe-700x300.png\";s:4:\"file\";s:26:\"Always-Believe-700x300.png\";s:5:\"width\";i:700;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}'),(4249,575,'ml-slider_crop_position','center-center'),(4250,575,'_wp_attachment_image_alt',''),(4252,580,'_menu_item_type','post_type'),(4253,580,'_menu_item_menu_item_parent','0'),(4254,580,'_menu_item_object_id','573'),(4255,580,'_menu_item_object','page'),(4256,580,'_menu_item_target',''),(4257,580,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4258,580,'_menu_item_xfn',''),(4259,580,'_menu_item_url',''),(4261,580,'_wpas_done_all','1'),(4271,581,'_wpas_done_all','1'),(4274,276,'dsq_thread_id','2943486785'),(4275,134,'dsq_thread_id','2943500801'),(4277,139,'dsq_thread_id','2943504311'),(4278,1,'_edit_last','1'),(4783,52,'_use_impact','no'),(4784,52,'_impact_noindex','index'),(4792,52,'dsq_thread_id','3033280245'),(4781,52,'_edit_lock','1411139095:1'),(4284,1,'panels_data','a:0:{}'),(4297,340,'dsq_thread_id','2943564524'),(4292,1,'dsq_thread_id','2943542376'),(4296,99,'dsq_thread_id','2943559693'),(4300,317,'_edit_lock','1408545424:1'),(4302,317,'dsq_thread_id','2943680781'),(4303,321,'dsq_thread_id','2943680766'),(4304,330,'dsq_thread_id','2943680765'),(4305,315,'dsq_thread_id','2943680776'),(4306,319,'dsq_thread_id','2943680788'),(4307,342,'dsq_thread_id','2943680793'),(4308,343,'dsq_thread_id','2943680804'),(4309,344,'dsq_thread_id','2943680807'),(4310,332,'dsq_thread_id','2943680809'),(4311,336,'dsq_thread_id','2943680832'),(4312,334,'dsq_thread_id','2943680854'),(4313,347,'dsq_thread_id','2943680859'),(4314,346,'dsq_thread_id','2943680858'),(4315,337,'dsq_thread_id','2943680867'),(4316,345,'dsq_thread_id','2943680882'),(4317,348,'dsq_thread_id','2943680897'),(4318,349,'dsq_thread_id','2943680901'),(4319,316,'dsq_thread_id','2943680914'),(4320,320,'dsq_thread_id','2943680930'),(4321,335,'dsq_thread_id','2943680949'),(4322,326,'dsq_thread_id','2943680951'),(4323,323,'dsq_thread_id','2943680956'),(4324,324,'dsq_thread_id','2943680960'),(4325,325,'dsq_thread_id','2943680963'),(4326,328,'dsq_thread_id','2943680972'),(4327,338,'dsq_thread_id','2943680973'),(4328,339,'dsq_thread_id','2943680974'),(4329,327,'dsq_thread_id','2943680985'),(4330,329,'dsq_thread_id','2943680986'),(4331,331,'dsq_thread_id','2943680997'),(4332,333,'dsq_thread_id','2943681024'),(4333,341,'dsq_thread_id','2943681028'),(4344,281,'dsq_thread_id','2943712507'),(4343,193,'dsq_thread_id','2943709329'),(4342,57,'dsq_thread_id','2943708530'),(4341,11,'dsq_thread_id','2943707949'),(4345,169,'dsq_thread_id','2943717952'),(4347,4,'dsq_thread_id','2943641931'),(4349,573,'dsq_thread_id','2943886960'),(4354,585,'_use_impact','no'),(4351,585,'_edit_last','1'),(4352,585,'_edit_lock','1409061425:1'),(4353,585,'panels_data','a:0:{}'),(4355,585,'_impact_noindex','index'),(4356,585,'_impact_nofollow','follow'),(4364,15,'dsq_thread_id','2943649365'),(4358,587,'_wp_attached_file','2014/08/road-and-sky.jpg'),(4359,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:938;s:4:\"file\";s:24:\"2014/08/road-and-sky.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"road-and-sky-150x150.jpg\";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:\"road-and-sky-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"road-and-sky-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"vantage-thumbnail-no-sidebar\";a:4:{s:4:\"file\";s:24:\"road-and-sky-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"vantage-slide\";a:4:{s:4:\"file\";s:24:\"road-and-sky-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"vantage-carousel\";a:4:{s:4:\"file\";s:24:\"road-and-sky-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"vantage-grid-loop\";a:4:{s:4:\"file\";s:24:\"road-and-sky-436x272.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4360,585,'_thumbnail_id','587'),(4361,585,'_wpas_done_all','1'),(4367,585,'dsq_thread_id','2944127520'),(4380,37,'dsq_thread_id','2947032439'),(4379,97,'dsq_thread_id','2947034410'),(4381,224,'dsq_thread_id','2947035140'),(4388,287,'dsq_thread_id','2947230806'),(4403,585,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485731277;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:199;}i:1;a:1:{s:2:\"id\";i:156;}i:2;a:1:{s:2:\"id\";i:102;}}}}'),(4433,326,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482251291;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1029;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:706;}}}}'),(4404,122,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483393014;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:66;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:1278;}}}}'),(4406,122,'dsq_thread_id','2954643797'),(4407,5,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481727499;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:752;}}}}'),(4408,64,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1470462711;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:36;}i:1;a:1:{s:2:\"id\";i:97;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(4409,15,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477235173;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:680;}}}}'),(4410,202,'_edit_lock','1468168889:1'),(4411,202,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482643271;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:17;}i:1;a:1:{s:2:\"id\";i:191;}i:2;a:1:{s:2:\"id\";i:28;}}}}'),(4413,161,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482875956;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:147;}i:2;a:1:{s:2:\"id\";i:212;}}}}'),(4415,202,'dsq_thread_id','2956159877'),(4416,161,'dsq_thread_id','2956161499'),(4417,97,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480968987;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:304;}}}}'),(4418,223,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481238830;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:7;}i:1;a:1:{s:2:\"id\";i:242;}i:2;a:1:{s:2:\"id\";i:698;}}}}'),(4424,43,'dsq_thread_id','2956225582'),(4421,43,'_jetpack_related_posts_cache','a:1:{s:32:\"9502162be51d2c8f8ea0fa41a0c7981a\";a:2:{s:7:\"expires\";i:1481983758;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:97;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:795;}}}}'),(4423,223,'dsq_thread_id','2956224303'),(4425,242,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482587880;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:7;}i:1;a:1:{s:2:\"id\";i:221;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(4427,221,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482825333;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:165;}i:1;a:1:{s:2:\"id\";i:87;}i:2;a:1:{s:2:\"id\";i:37;}}}}'),(4429,242,'dsq_thread_id','2956232085'),(4430,221,'dsq_thread_id','2956234186'),(4436,140,'_edit_lock','1409059519:1'),(4437,596,'_edit_last','1'),(4438,596,'_edit_lock','1409233502:1'),(4439,596,'_use_impact','no'),(4440,596,'_impact_noindex','index'),(4441,596,'_impact_nofollow','follow'),(4442,596,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:87:\"A book about making a difference in the world by starting with yourself. A must read.. \";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:12:{s:5:\"title\";s:13:\"Keyword: Love\";s:4:\"text\";s:41:\"A collection of love poems and thoughts. \";s:4:\"icon\";s:10:\"icon-heart\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:12:{s:5:\"title\";s:24:\"Keyword: Inner Strength \";s:4:\"text\";s:47:\"A collection of motivation poems and thoughts. \";s:4:\"icon\";s:9:\"icon-time\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy the Book\";s:8:\"more_url\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}}}'),(4443,597,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:592:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\n\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";s:2:\"10\";s:7:\"display\";s:4:\"grid\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:24:\"Jetpack_Top_Posts_Widget\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4444,598,'panels_data','a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:592:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\n\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";s:2:\"10\";s:7:\"display\";s:4:\"grid\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:24:\"Jetpack_Top_Posts_Widget\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4445,596,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484989134;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:160;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:59;}}}}'),(4470,606,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:87:\"A book about making a difference in the world by starting with yourself. A must read.. \";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:12:{s:5:\"title\";s:13:\"Keyword: Love\";s:4:\"text\";s:41:\"A collection of love poems and thoughts. \";s:4:\"icon\";s:10:\"icon-heart\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:12:{s:5:\"title\";s:24:\"Keyword: Inner Strength \";s:4:\"text\";s:47:\"A collection of motivation poems and thoughts. \";s:4:\"icon\";s:9:\"icon-time\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy the Book\";s:8:\"more_url\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}}}'),(4447,600,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:12:\"all_linkable\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:1;a:9:{s:5:\"title\";s:14:\"Loads of Icons\";s:4:\"text\";s:144:\"This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.\";s:4:\"icon\";s:14:\"icon-ok-circle\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:3:{s:8:\"headline\";s:16:\"The Rose\'s Thorn\";s:12:\"sub_headline\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:4;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:5;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:3;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4446,599,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:9:{s:5:\"title\";s:18:\"Editable Home Page\";s:4:\"text\";s:167:\"You can edit this home page using our free, drag and drop Page Builder, or simply disable it to fall back to a standard blog. It\'s a powerful page building experience.\";s:4:\"icon\";s:9:\"icon-edit\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:1;a:9:{s:5:\"title\";s:14:\"Loads of Icons\";s:4:\"text\";s:144:\"This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.\";s:4:\"icon\";s:14:\"icon-ok-circle\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:3:{s:8:\"headline\";s:25:\"This Is A Headline Widget\";s:12:\"sub_headline\";s:51:\"You can customize it and put it where ever you want\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:4;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:5;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:3;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4448,601,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:1;a:9:{s:5:\"title\";s:14:\"Loads of Icons\";s:4:\"text\";s:144:\"This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.\";s:4:\"icon\";s:14:\"icon-ok-circle\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:3:{s:8:\"headline\";s:16:\"The Rose\'s Thorn\";s:12:\"sub_headline\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:4;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:5;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:3;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4449,596,'_wpas_done_all','1'),(4460,596,'dsq_thread_id','2960707902'),(4455,602,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:1;a:9:{s:5:\"title\";s:14:\"Loads of Icons\";s:4:\"text\";s:144:\"This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.\";s:4:\"icon\";s:14:\"icon-ok-circle\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:3:{s:8:\"headline\";s:16:\"The Rose\'s Thorn\";s:12:\"sub_headline\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:4;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:5;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"0\";}i:3;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4458,603,'panels_data','a:3:{s:7:\"widgets\";a:7:{i:0;a:3:{s:8:\"headline\";s:16:\"The Rose\'s Thorn\";s:12:\"sub_headline\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:1;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:2;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:9:{s:5:\"title\";s:14:\"Loads of Icons\";s:4:\"text\";s:144:\"This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.\";s:4:\"icon\";s:14:\"icon-ok-circle\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:4;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:5;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4459,596,'_wpas_skip_8363136','1'),(4466,605,'panels_data','a:3:{s:7:\"widgets\";a:4:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:12:{s:5:\"title\";s:13:\"Keyword: Love\";s:4:\"text\";s:9:\"Read More\";s:4:\"icon\";s:10:\"icon-heart\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy The Book\";s:8:\"more_url\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:12:{s:5:\"title\";s:24:\"Keyword: Inner Strength \";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-time\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:12:\"Buy the Book\";s:8:\"more_url\";s:132:\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}}s:5:\"grids\";a:2:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:4:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}}}'),(4471,596,'_thumbnail_id','471'),(4477,330,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485960010;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(4476,596,'_wp_old_slug','596'),(4479,316,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483244491;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:14;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:56;}}}}'),(4482,11,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484506825;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1335;}i:1;a:1:{s:2:\"id\";i:1150;}i:2;a:1:{s:2:\"id\";i:316;}}}}'),(4484,31,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483396355;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:1206;}i:2;a:1:{s:2:\"id\";i:20;}}}}'),(4486,333,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516732;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:126;}}}}'),(4488,238,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485218818;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:688;}i:1;a:1:{s:2:\"id\";i:94;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(4490,31,'dsq_thread_id','2960801715'),(4491,238,'dsq_thread_id','2960803677'),(4492,6,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482773758;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:877;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(4493,236,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483449129;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:312;}i:2;a:1:{s:2:\"id\";i:211;}}}}'),(4496,607,'_edit_last','1'),(4497,607,'_wp_page_template','default'),(4498,607,'_use_impact','yes'),(4499,607,'_impact_template','Template 1'),(4500,607,'_impact_noindex','index'),(4501,607,'_impact_nofollow','follow'),(4502,607,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:3:{s:5:\"title\";s:9:\"Example!!\";s:8:\"taxonomy\";s:8:\"category\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:19:\"WP_Widget_Tag_Cloud\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4503,607,'vantage_metaslider_slider',''),(4504,607,'vantage_menu_icon',''),(4505,608,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:3:{s:5:\"title\";s:9:\"Example!!\";s:8:\"taxonomy\";s:8:\"category\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:19:\"WP_Widget_Tag_Cloud\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4506,607,'_edit_lock','1409078916:1'),(4516,313,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486209864;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:316;}i:1;a:1:{s:2:\"id\";i:14;}i:2;a:1:{s:2:\"id\";i:243;}}}}'),(4519,611,'_edit_last','1'),(4520,611,'_edit_lock','1409233689:1'),(4521,611,'_use_impact','no'),(4522,611,'_impact_noindex','index'),(4523,611,'_impact_nofollow','follow'),(4524,611,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:654:\"\nBubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies\n\nOh how it is to feed you\nA lovely dish of distortion soup \nThat puts your mind at ease and your heart at bay\nThat’s tart and sweet and takes your doubts away\n\nBubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies\n\nPoisoning the soul with every spoon\nYou watch your loved one consume till their belly is full\nKilling them slowly but you won’t speak\nBecause there are lies you wish to keep\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4525,611,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4526,612,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:654:\"\nBubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies\n\nOh how it is to feed you\nA lovely dish of distortion soup \nThat puts your mind at ease and your heart at bay\nThat’s tart and sweet and takes your doubts away\n\nBubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies\n\nPoisoning the soul with every spoon\nYou watch your loved one consume till their belly is full\nKilling them slowly but you won’t speak\nBecause there are lies you wish to keep\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4527,611,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482487559;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:91;}i:2;a:1:{s:2:\"id\";i:20;}}}}'),(4528,611,'_wpas_done_all','1'),(4532,611,'dsq_thread_id','2967340404'),(4534,106,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477430636;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:765;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(4537,148,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481009192;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1073;}i:2;a:1:{s:2:\"id\";i:147;}}}}'),(4539,153,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484349491;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:928;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(4545,309,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485567940;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:292;}i:2;a:1:{s:2:\"id\";i:340;}}}}'),(4544,8,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484877959;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:212;}}}}'),(4546,10,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482918915;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:281;}}}}'),(4547,59,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483986052;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:160;}i:1;a:1:{s:2:\"id\";i:15;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(4551,249,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480869069;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:296;}i:2;a:1:{s:2:\"id\";i:123;}}}}'),(4552,254,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482547619;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:100;}i:2;a:1:{s:2:\"id\";i:1241;}}}}'),(4554,4,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475208240;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:9;}i:1;a:1:{s:2:\"id\";i:1010;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(4557,277,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484782703;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:120;}i:1;a:1:{s:2:\"id\";i:171;}i:2;a:1:{s:2:\"id\";i:76;}}}}'),(4562,1,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483342282;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:349;}i:1;a:1:{s:2:\"id\";i:338;}i:2;a:1:{s:2:\"id\";i:202;}}}}'),(4565,7,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481652984;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:36;}}}}'),(4566,210,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484055286;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:1064;}i:2;a:1:{s:2:\"id\";i:101;}}}}'),(4463,604,'panels_data','a:3:{s:7:\"widgets\";a:6:{i:0;a:4:{s:5:\"title\";s:16:\"The Rose\'s Thorn\";s:4:\"text\";s:591:\"A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms \nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:12:{s:5:\"title\";s:21:\"The Awkward Butterfly\";s:4:\"text\";s:0:\"\";s:4:\"icon\";s:9:\"icon-book\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:13:\"Start Editing\";s:8:\"more_url\";s:77:\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:2;a:12:{s:5:\"title\";s:13:\"Keyword: Love\";s:4:\"text\";s:9:\"Read More\";s:4:\"icon\";s:10:\"icon-heart\";s:21:\"icon_background_color\";s:0:\"\";s:5:\"image\";s:18291:\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4+JS5ESUM8SDc9Pjv/2wBDAQoLCw4NDhwQEBw7KCIoOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozv/wAARCAFaAOEDASIAAhEBAxEB/8QAHAAAAQUBAQEAAAAAAAAAAAAABAACAwUGAQcI/8QAURAAAgEDAgMEBAYMCwcEAwAAAQIDAAQRBSESMUEGE1FhFCJx0RUygZGSoSNCUmJjc5OUsbLB0hYkMzQ1Q1NUVXKCByVEZHSi8CZFg+E2hLP/xAAaAQADAQEBAQAAAAAAAAAAAAAAAQIDBQQG/8QAJhEAAgICAgMAAgMAAwAAAAAAAAECERIhAzETQVEEMiIzYVKBsf/aAAwDAQACEQMRAD8Ar9a1fUk1e7t7e/ulAncALKwAHEdhvQralqkEWW1S9LHxuH99HahEkOrX07jc3EmPP1jVc6CTiuJjwqN1Fea9naXGsU6BZNZ1iJTJJqt8B4ekP76Hh1rW52Mnwvfqg5YuX99RSB9RnxuIlp86gAW8I9tXZg4J79Ecuu643EV1i/G+Bi5f30Qms6ulvxfC+oFhzLXTnP10KjRq8kJhVuEfHPNTTmTFnxHqaLJUF2FjWtYMBb4Wvsj/AJh/fRdtrGrSRLIdUvTw8x37b/XQsMCle6Ix3q5XPjU1lH3MvcMux6kVLZtHjVhsmpanLD3keqXg4eeLhvfQV7eaq1uJ4dY1Jcc+G7kA/TREStbXXdsuY3+KfOpRaL3U8TluErxCllRo+GMl0Va6hrBniddb1Eo2xzdvj9NC3najtDp+qPaxatcvHsw7yVmOMeOafag98sTLn1qqr5luu0Fw6j1UGB8mBWiezyTilHXdl7a9ptfvcxtqM6OVwOCRh+2oF1XXY3PHrGoHB3BuX99DWh7ieOQdDVjfxBJ0l24JKmy1BSjbBb3VNdii7+LWtQMfUelP6v107Sdd1qeZ3k1e+ZIlyQbl9z0605QqOUb1o5Bgihktvg2OWMHId/VPiKd6F40pX6LL4b1coT8KXo3/ALw/voyXVtUVbfGp3nL1vs7b/XVRjMAPiaNucJ3XktS2axiqejkWs6zK0sS6nel+P1f4w/vq3fUtSggES6hdPL1JmY/tqq0iHuvSL1/tmwlTu+IXmY4Zthik27NIQio20dTVtVafA1O84VPWdt/rrlxrGqiQINRvFxz+zt765bIEt3lxnA2qEoXjMmck7UWLxquipv8AXNetr2SL4Z1ADOR/Gn5H5aiXtDrmMnWtQ/On99O7RxCPUUbq0Sk/ooO20+8uxxRRHg+6Y4Fap6PDKFTaSJn7Sa4D/TWofnT++up2h15j/TWofnT++mtpCocS3Sk+CKTXBZSRLx80HXlRaF43e0HQ61rrHJ1nUPzp/fRXw1rCjfV7785f30FCAq1yZwAamzZRSR7rSpUq0Oeef6lZ3F1rVz9gcxLK5zjnuaqLuzvb6Xuo7eVYU2J4T61be4WI3F4ZQ3BHxMQpxnf/AO6rzf2Xd8KwTAePeD3V5nJRezrrkbikZOezubdRFBaS8XktD3VrdWNvkWksk8nIBTtWu9MsY84gnLnqXHurlvaw3bNKlpdSYyc94ozjnjbf5KFOP0zlKXwxFlpd93ErvbTFid8qd6NuNNuRpSkW0pbPLhNamC4sBG69xPgn+0HuqVruxa24DBPgfhB7qHyR+hHJLoyl7pV4bKCSOCXvEAIIU5oqCC5u4U72GSKccsjYmtI95ZGBVME+B+EHuqKeawkhCGCcYPSQe6l5IfTTKSdpFM1tdBTHNZy4x1G2aLiguWt/WgckDBPDzFTS3duhCAXQAHLvV91PF1amLIW6AIwcSjf6qWUPo4800/1Mlf2N9A7dzbyGY524DsOlUdhpl+l3IGs5/WU80NejCSwBz3Nx+UHurgbTlnEgguN9sd4PdWi5YL2eaUZyd0ZNdMvDbBvRZcjpwGrJ7G6utLANvJxqPuTWhiuLBVK9xP8AlB7qkivLFAVEE+Pxg91S+SP01jkvRjRY3j2/82l4h96aZdWF9PYK3o0vHGfuTuK2PpFikh+wT7/hB7qS3NgCVME5B/CD3UeSP0TyroyaWN20EY9FlByM+qaIvLK8aVQLeXwyErSJc2K4HcT7fhB7ql9LsWmVjBPt+EHupeSP0pOVVRRT2VzGkVvHBJgDfC06fT7mQpEIJMD72r/0+yaXi7ifb8IPdXRqFkZOLuJvyg91LOP01zl8M5qFpcpbpCltKQT9yelNFhcraIncSZJGfVNaGa9spZRmCcY/CD3U43tkWA7ibb8IPdRnH6LOV9GS1HS3m1QST20jpFGAF4Tua61nfXK720scS8lC8hWm9IsJLh5mgnOTy7we6pGvLEgDuJ8eHeD3U/JH6RcrboyA0m6c+pbSKo+2KHJp7WV3HbGMW0jEn7mtWbyxUY9Hnyfwg91IXNicA28/5Qe6n5I/QuXwwL2N7GxX0WY/6DQ01lfsP5pN9A1vZ5tPeUnuJx02kHuqIvp/9jcflB7qryw+mElP4eg0qVKtzwGfuhDx6gQAXMbZ+kKzrkBDtWjuVAfUSOZRv0iqKC2kvblLaEZZjuegHia8HN+x1uN1GyKCGSciOJGkY9FGTWhvIIrTQluUMsc6wqiBAQEz8bPTfeg5IjDMbVY2SGECSRSOF5RkZPuFFa7qCejW0lrGbdlf7EMYJTG+R4E4+Y1MdWKduiPQZ7C6nj0+SzhZXiHrlMOXA3yfnoO90i4tnndYWWFXPCGILcPjjw86ZeWd3A0Wr2MJigKrJxKdo2OxHz/poe4167ubxLpyqyovACq4BHmOvOh1VMUbu0RLvFg9DT3QqiM6kBhxAnqOX7KijlTHjV7LA+oWEOnoqCe3hSWPJwWVt2GfLIPz1KjZrKeNFCYuJRK8Z4XJ4T412KMDIUkg9Ktb/hm0mAw4MdtM8S4HMYU5+Ugn5aY6CHRbaa3Yo8kriVlO4IA4R82TQ0SpeyrIwcGuEVZ3RWbSLaWbHf8AeOoY/GZBjGfHckVNwwXNra2dwVicxZgnOwBLH1W8jjn0ooMtXRU4w3trp2O4orUY5YZY4ZlKyRxKCDzFO1I8V2nETjuYs/QWlQ1ICdSfWANcPQ1aas01pqDxQSPHCoHc8DYBXGx88+NCWkRvb/hl2BYvK3LCjdj+mivQZasGP8pT1+P8lH60scrwX8Txssy8L90CFDrzABA6YNVyn1jQ1THGWSsLSwumRXWEsHUuuCCSo5kD5DUC5q9gIVNHdJAs627mJWGFZuN8AnO2TVNHxx3SKwKuJACMYIOabjQozuyFQeLJrucZY0bqrg3twBNI4Ez+qw2XfpvRIa3m06ys7nEXeIzRz4+I3G3xvveXs+ejHYZ0kyoXYb10cuI/JRmoQS24toZhhkiwQT9+37KOitoZdLayWSNrgp6QEweMMN8A4xjg3586Md0GaSTKVVJyxGac3qKWO1H6PNJ8J28QkYIZMlQdj8lVtxNNdSRw8TSMTwrk5yTSrRTlTBSTmuVd6nBbyaavoskUrWLd25jDZ4D1OQPts8s/GFUoptUZRlls9MpUqVdM5Rn7yRUbUFG7tGx+TiFUtnfXFmHFu3Az4y4G4wfGrJlB1C/EzOFkLIGAyR63t8qhaxsohvczZ8oh+9Xj5IybtHU45LH+QPdahc3F16U8hEuMBk2wKP1DRJZHRlkbgJHeXEsgIwcYPiDk8qEezsljMr3M4VdzmIfvUH8KRC1ktVvLsQSHLL3K7/8AdUx45e0Lk5Irou+0l3JplmmkwvG0LxgcvXUDHPfqayVEM9gxy092x8TCv71czp/9rdfkV/epy45t9GceSCVEcT8D56daPaeYyCXvWLcPCGz0xjHzbUJnT/7W6/Ir+9U9rNp3EI3uLhVJ+MYVwP8AuqPFM0jzQ6Y4TSrAYkkIjLcRToT406O4kVHVJCof4y9D8lFyWVpHv385B5ERL+9TPRbJtxPOD+KX96l45mmcQN5Xkb7KScDAz0rryyOqK7FlQcK56DworuLFjgzzg/iV/eppgsgeFp7j8iv71PxzF5IgkkskjgyOzkAAFjnYchTpJnmYNIxY4ABPgNgKINvYk49IuPL7Ev71RlLBW4WnuB590v71HjmLyRRxb24VFj71iifFU7hfZnlUSzyq0hEjZkBDnPxh50QYbHn39x+RX96mtHYD+vuPyK/vUeKYvJAhM0giEIc92W4uHpnxpqHc1PIlgOAd/cEn8Cv71dRLAvjv7ncf2K/vUeKY/LGxjzyyJGjyMVjGEB+1HPauy3MsswmeQtICDxHnUqxWLH+XuPyS/vU4QWLPj0i4/JL+9R45h5IEUlxLOcyuWOeIk9T40xpZJFRWYlU2QH7UUU9tZK3B6ROSRk/Yl/epy2tkSAJ5yT+CX96jxzH5IgjzSScAd2bgXhXJzgeFSrPOswnWRhKDkPneixYWS7m5mJ/FD96nCxtX5XE4HnEP3qXjmUpRAY5XhlEqOVkByCuxFMVjFKJIhwupyG8DVn8HWY53Mv5IfvUvg22I/nEwH4ofvUeOQ8kyqR5Iu8EZ4e8XhcD7YeB+aoZIyicVXPoFmdhcTHHXuh+9Qt9BYw2xdri4ILADEQ3/AO6jxzJcopWbilSpV0TkHnuqXkkGp3YWR89++AG5esaA9ImVDPPdMqruxL7YqTWjBa6pfXNy6ognc5J++NYXWtfl1FjFDmO3H2ud28zWKi2zsT5Y8cFffwl13tNdX1wYre5lW3Q+rhiOI+NVI1G9H/FzfTND4zXQhNbpJaOTKUpythSahescelTfTNG+mTJFvdzcR+/NVaDB3p5Jdwq7knAFIcdB9s2oXbZW6lVAcFi5q1is+FMy3t3Iw54kIqVbZLW2iK5X1cFG2weopJeFOcSt55qG2+j2R4ox/YOg1KS3t+4WedkHIu5Yj5ai9NkByt3MpPQsaGa7jA9dCB442FMZoWGBjfcVNGzaJ5rq7K59Il25EOag+ErrBV7iXb781GpcetGSRnlXHCzJgqqN40zNky6jckFTcy5HL1zUF/d3TIHFzLuMH1zzoXiZG4TsRUjSLJEVY/G6eBp0ZtpqhQatdPF3b3ModOvGdxXWvrsj+dS/TNBKIsF3Bwh9bHhU8lza3lwsVrEU+x4A8WpkrrZOk+pS5uFnk7mMEEmSnwXV3OJJBePGYl4sPIRkULdaJqULBUR2ThDMoNFajoV7LewsgCpKoX42Om4pWilCX/Eda6jdSQhxcS7/AH5py6tcQZYXEjynZV4zj5aGu7U6VcRwyNJHECAzNuMHqKbKlpHcia1dmiwAzMc70D2teyyhvrpR61zKzHc+udzVnb3V0ijMzlzzyx2qlhIEqn4x6DG1WsA4BknMh6+FSzfjQYlxNGMtcSEnpxGpku7p/wCudR/nNBCSONsyNknpXe8eQYA4UI8ahnoVFgb9o2x30jseQBJrvf3Uilp7h40+5Db0LAoVfsYLN44ohLd5TxTnbwFSaJX6F6VPPsszxwLzYsaxGvdobi/vcW9zKtvEOFAHIz4mtHrOnatqSm3t3gt7YDBXiOX9u1Z6TsfqyDIWKTyV961hS2eL8lckljGOj6BpUqVanLPn3tjfXN32n1KOWQmOG7lREHIAOR89UWM16PqyL8N6iFhXhN1JxbczxGhikfN7YE9Dw5qM6PavxnLbZhVUU7lsK3DWdi/rPYJgjmExQc/ZrT7gk20skDYOzDK0ZoH+LJdGRKnFcCtzo/UNPn05ykybdHHI0EGJ26VfZ5pRxdMuILnv4VLsSTs3kal4WQ5U5FVNvIYmOBlTsRVraIc+uSV+1TqfbUtUeiEsg2Ju+ThWFm6bCmy6VIwykZUjzo6DjMQAxH4KKewVhkzNkeJrOz1YJrZTmG8gByrNUPpBxh14d/CriRQR6kmdqEnjyuHXI8aqzNwroqp5RnJ3864rK8TYb/6p11Bw7p6w6jwqvOUkBBOCcEVaPNJtMvoNWsbXRfR2iEkpzxArkE+2ptJ0u3eEXYid5gQyou2R1qOw0q3jlzcXOYyMqmdx51d30iJpReTigjC+q0XMms38R7OOLaufohuNat7UMsRZZWxxRsuSKjj7RWckseIJMtseNtkrM3F20jF+IAdCPjfL1oRmbjHEd+fPnTwRlL8qSejaX1naalZyDvDLlsrKG2FUmqabHpkCQuxbHrIVOx9tTaFcTCNoI3RVYYKncmjdQ0i21S4higuyixoTwnf/AMNJadGkkuSOSWwfTbZhAJnbiZt/ZVgCxG3z1UieSxiMbyrkHCoBuaKhnnnxleAGhjhJLRYIiA77nNGRHbZAPaKDgTYb70WvCg3Jz4CoZ6YBSOCcZx7Kk40xu2aEDKdhGT7alEirziFSbJk2U8KWEP2pqLvUxgEoemRkUPcX7W20rKAfikdaKByS7PU6VKlXqPmzzjVJ0XVr0d2Mid8n/UaGF9Go+KBk450VqVhCdWvHwSWnkzvtuxpq2kaAAbZ8OteZ0fQcaligcXcLDHAN6Xe27MARg+dTvDBGpLYA5nehpZrRMkyKTnGOdIp2uwe7t0u4XjkRZEI+asNd2z2d08LA7HbPUdK30dzbt6qrwsNgRz9tYvWe/XUXS4kMhX4rMACR54rWFng/LUWlIhtI+OTHPAyau7VGClyPW6k9KorW89GuUkBOFOdqvReelr3kZBB32P7KuVmPC41/ocqgkM8oGegOB81P7mLIxvgYFArxE7tge2iUjDDBbesz1J/4OKRBtjgdcDeopHj4CrDcHlmpvR05lxgb86hkt0LbPnNAOyuuoldeJGAJ6VVpIbO9juGTjWNgceNXdxbMB6h4sdRVPed4iGFthnJHnWiPJyqnYbpUrahrElw5CI3JATtvyrTzRQXaZfjzngAU5APnWQTurHTo5ra8JuZPjRjoPfV9pF00unqJmZip5DYHJ8RvUSXs34JKsX7KK+s2hDd66MynIC7ZHtqt4BzGNzyzWwvLKK7dSVUu4B4wDkDPhQ8GkRoWCRwN3i5CtvuDv781SloynwNy0C6JbSRILjhAYMB3gGeEdQat7ovMTarmPcstwBt7Nudc7yG3VZURRDGOHhGPWOOY8arNfvpobaC3UgsDx8SnkD0PnU9s21xwor9MWT4SbvWzgn1361fKUL7NxDwFVOmwCWMzSsxOds1e2qxx4YDPjTkTwLQRbxs2zbeVFpgMRjK9ahDlyOBTTlRyfXfHs51ke1aCOFiMKSPMV0RSNsXNcj4UX429S5jCFmkUAdc4pGoNNBKeWGA8BQNxDLLC6tsqjJzyHnUV/wBoLK2JCXPeN1EQz9fKs9dazPeF0TKRNsQTkkVpGLPHy83GtWfQlKlSrY455fqy6g+s3oiGF9Ikx7OI0OLLUH3aUDPPerfUp3GqXYC7CZxn/UaD45n6kCvM3s78ILFWwb4Idt5rg48BUb6fax4HEXPto0RSOvrsAB1NVl/qum6UTxymeYckj3+c0K2KWEVbJrqS2sLY3TeoqrtjqawNzdPdXLzSE5c5ojVdYuNTf18JEp9SNeQ99V+a3jGuzl/kc+bpdEoC+NSwytFIHicqw6g0LmpoBlhVnnT2XlrqkiDMsSS/Jg/VRUerqwJSw26tx/8A1VfbW/fbZ4VG7Hwq0SETKI4k4I1+usnR7oOf0jOsk5VbAN7XzXDqt7zS2ij8zkmiBFGp4IwD50jbAso5s3JaWjSp/Stmub64HCZSFPMIOEGhzpkrkkoxJ6mtIlukWAFDP1J5Cpe5VGx/Ku3lRlQvDl2zGyafNDh1ABU8jU9jqz2MTIxJznYDmTWhuLRJARIxXc4HjVHc6d3shSFMHzqk0+zGXHKDuIWmtRy2OBFxSDG5G/F5mjG1IxyZvFAlVC8YD8s7dPZWXZ7m2xGvqhGzsOZqa7vZtREZkOZeRwMbUYiXPKt9hgnm1Hv2WdYoId8McZHvoRbueduBBxL98MmmCxkVBnl1FXGnWMAgWTIyTgj7mm6QoqU2CW6m3fJVyOZUVa2ur2UbAOHiyN+IZAotIhEq4x6w29XIO9Sm0hlThaNWONwVGM1DaZ6occo9MjTWbCQYiuCNuQG9NOtWwOAkjHxOwNRS6HbM2VUA8+EfsoeXSZUTiibjA2KnmKVIpy5UdutVu2B9HKRDpgZP11Q3UlzM5M8zu3izE1YZaM8LAj21HMiuM43q1o8vI3LtlUUOalQcIp7LuabVnnqj6SpUqVBkea6vd3C6veJHagjv3AYvjPrHyqovL/WYlJitoseO5q91OORdUuyMtmdyMf5jUKurLg4IzyPMV5rV9HeUW4rZmRLcaqrRXNxIjH7XiwPmqsutIltGMc68SHk1a670uO4BkiAWUdRQ0ZFwpsrxSHGysatS+GE+G/27MHc2z28nA42O6nxFQVpdTsMxPEw9aPJSs4RWydnM5OPB0cHOpoCeMKNyTgVDiiLE4vI28Dn6qbJj2aCGIECFdlTdznmetGxys2IIB6o5sRUNvA7QAYwv2zeJqdgI04V2A5nyrFnSiqHd4lsvDEOJidyRUtqsh+yZ4pJTt96tCwOs9wluAeE7ufLrVtaSIZBhQGk3A+5XpSejWG2daMRqEUcTGmsFhjDH4/h1oxoVyTGx4iOfPlQJXJeQhndRyqDZqgOaQrlnA8lptlGotp5y2DjkTzx0oWaVpZQOHc/a+Ao6TCWwQDBPT/z5Ks86duwCS0SadlHDhhnyoW204KeJh9scGrEtw3ZRccztUkMQMRwuWSQ58xTtmeCbsUdtE0XCUUnzodYpLGcGM5jc4K1YmLhRWXmDmnSqrwnhXiINKzVwsbE2wZSXTO5PQ0YsQKhg2R50GqlYe9h2P2yHrUttKwXvEzw/bL1Hs8qlmsX9CEjWQdA69K53WF4sZIHTenYGRNGdutTEcSiVM+YqTSrKa/sEuELoMHp5HwqgYFWKMMMpwR4VsHTglZDngkGVPgetZvW4hFMky/1gw3tH/grSDPHzwpZIqZhg1ATipJWzUJO9bHgb2fS1KlSoMTAajNEdUu1J4T37jJGN81AUV1GN8dRWjudMiubqZmtFyZGOWA3350waFIg+x2y4+SvM1s7ceeOKM0ZXt/jDiX9FQXsMV3FxxsO8HI5rVNpE2cNYqR7BQ76E/EGSxAPlgUJClzxaoxc2LiNXdcOmzViZ1HpEnDy4jivX9Q0GYbR2KOzAhiMcqqB2OP8AhKfMK2i6OfzzU3o86tLVrm5SIbAnc+AreaVpunW9qRHbjvCOEseZq107sj3cjv8ABiKQuxwKuINBeNhiyUbeVTN2afjuMNsxkkAjY4Jxn4pOailsGkTvLcFyBvEW5+yt5LoJbJ9CXx5Co10GRTlbJQfYKmz0OcDzi3uOLiVU7uSVu6VfL7b9g+Wry2QASuDy2BrTSdlkluVuhp6CReZwN6mj0J1icehKATywKHsmE1HszBkJs+JSwYVCJCpEoPtrVw6C4jZTYrjoNq5HoD8JU2K48MClRp5kYbUbcR3S3Kg8EuPkNdZuN0APUb/LW7bs93ts0TWKHG67Choezr5UnT1HreAqjNzjejDsD8IsSeRNS2jE3ZHCeGU8OAPmNbIdnGM0jfByb+AFGQdnBZQkpYoZG+McChsUZqzJNGyDgwCfbsKmMaRw8TOu4yfGtOugMF4jZIWPkKhk7Pu8mPQV89hU0a+aKMjDIqSugPqnkKGa44QwTZkcYI6bGtkezroVYWC7bchQ8vZ2TDkaauSwxsKqjJ8xRWWpxyAxMoV/ueQb2e6i4ZkRyuco/XPKjh2adsE6aoI8hRMejzjaTTwT90APrpOJUfya7Km4+ICNihzWd7QkCBcDbvTj5q9COjtJbYNkgbljAqs1Hs69yyqNNV1XJzgbk0RVMXNzRcdHlrGoya9Hbsix/wDaV+YU3+CDf4SnzCtrOeep0qVKmZnnepk/Ct5v/Xv+saG7xl5MR8tE6mP963n49/1jQuK5ku2dWPSH+ky8uLPtpGaRh8aoyMUqRVnd+eaRPnXM1ygRPA3CSSTgjnUwfI2O9NAUxhQMYpp2NI0SomJJHM00sQedcD7YNJh8tAxyseLnzFdUnhIz9dRo2GxTx1oASk+NIE8fOuDY0j8agB6kg86jXIYjPI077auAZc+dAHbcHBkJ9lOyXOc0m9UBByFLPCuKBjgck7nao8kknNOJ4UpnJfbQByQkRc+tQ8ROBvRJQFQG5V0AKNhigmrBfWHMGuEnxNF44udQ3EYUgjlRYnHRASfGm5PjXTTaZB3J8TSyfGuUqBHqFKlSrqHKPPdTH+9bv8e/6xobG1E6n/Sl3+Pf9Y0OoVmAZ+AeJGa5j7Z1o/qiM02r++7KzWGlJqUt7AYJApThDEtxDI2x4VXaTpU2sagtnAyoxBPE2eEAeOKHFp0RnFq0wKuUbf2MVjM0IvYbh1OD3QJHz4qx03spNqunvfW97biKMkPxhgVwMnp4UKLbpA5xStlSjbA+IqTnVpadnYrj7HFrVg7bkKrtxH5MU3RdFbWXMVvdwpKBkxyZBI8tt6MGWuSNXZVYxT1P2p5dKJ1KwfTb6S0lOXjOCQDg+zNTaPo0usyyxQzRxmJOMmTIGPbSxd0VkksvRWNlHB86lB39tXFh2Yk1gzJaX1u7QNhs8Qz5jblVTPEbeeSAsGaJyjEDG42ocWlbFGcW6Q3rSPOirfTri6srm8iXMVsAXPt8KEOKVF2mdPMV1OZNWFxoxt9Jh1J7qLupiQi4biJ9mPKoNO0671KXubWLjbmxzgKPEnpTxd0SpxauwcbnNIes2elWh0zToWMVxrMSuDg91E0ij5Rj6qIm7K3YszdWE8N9DzzEfW+Y/op4MXlj7KNjxNinYA5bmkF4CQdmzvnpV1Z9nJLzTmv47yBYEzxlwwK459KSi30VKcY7kU2Oprh86vLbszLexM9jfWt0VG6qxDfMQKo5klilaKRGV0OGUjcGhxa7BTjLSGF98Co5jlautH7PTaysno1xErx44lcEYz8nlTJdDtxMbd9aslkViCG4wMjz4cU8H2Q+SN1ZQU2tDc9jtTitTc25hvIuebd+I/N1rPsCrFWBBHMEcqGmuyVKMujlKlSpDPUKVKlXUOUee6n/AEpd/j3/AFjQ1FakP96Xf49/1jQ2K5ku2daP6o3uq2VxqHYjR7a2jLyuYQAP8h3NZ2+vYdGtX0jS34pn2u7pdi56ov3tam61SbR+x+j3kO5XuQy/dKUORVfrmjW2uWi69o68TkZmiHMnrt4jr416JrWuzxcbp1LqzEhMcxW87HjPZHUQoySz7ePqCsUwBOa3HY9mj7KX7oxVlZyCDuDwCsuL9j0fkL+BiY7a9EgeO3mDL62Qh2xzNdsruWyvIruBsSRtxD3UfH2h1UJIkl7NPHJGyMjtnOQR1qnU8JweVRpdGqt6kbjtLbxa5o0GvWYyyLwzKN8Dz9h+o1V3L/AegLZLgXuoLxz+KR9F+Xf66sf9n9wzS3lk3rQsgfhO4zyPz1nNduJLnXL15DkiZlHkAcAfNWsmqy9swgnl430tlj2Mv/Q9ejRmwlwDGfb0+uo+2Fo1j2jnbGEnxIPPPP6wapYpGikSVDhkYMD5ivQtW05O0qaRqCbQkgzeITGT9YI+WlFZQcRzeHIp/TvZ2O1tLCLRbgfxi7gM8g8jsB7cforDX9lJaalLYnd0k4B5+FFXOvSHtMdUTICS+oo+4GwHzfprXanpsF7rFhrqANaLEZZWG2eEcSk/+dKppTVL0Qm+KVv3/wCmZ7VzLDcW2lxnKWMKofNjuT+iru+h+AuxEUUJKS3ZXvX6nIyR821Ym9upLy9lupfjSuXPymt72jB1LsXbXUA4ggSQ43wMYPzZpR3k0Of8cIvowuctmr3shqUllrEcWT3VyeBl6Z6H56z2c7eNWWhIZtcs0UH+WU/Mayg6kqPTyJODTLftrYR2mqrPGoUXK8TAfdDYn9FWGhHPYbUPbJ+qKG7dXCS6lb26nJhjJbyJPL5hRvZ10i7GXrtGJFVpCUJwG9UbVsq8jo8rb8Eb+op+yAZe0MPCTgqwb2Y9+KH7R3EVxrt1JCQV4sZHIkDB+urvQWsNStLu1tIRYXroQHRyxK+RPTxrK3VrPaXMlvOhSRDhgazlqCRvBp8rfTNP2CObq8/yL+k1mdQTj1G6B5d8/wCsa03YEYu7z8Wv6TWZ1BiNSugP7Z/0mnL+tCh/dL/on7N6xcaNq8acZ9GlcLIhO2Dtn2ij/wDaDpUdrfQ30KBRc5EmPuh1+UH6qzsUTXV4kSbs7hR7Sa1v+0e7XFnZqcsOKRvIch+2nF3xuzPkjXKq9mVv9DvtMtre5uowsdwMp62TyzvVeaIuNQvLyKKK4uZJUhGI1c5C0PWTr0axutnqFKlSrqHLMBqX9KXf45/1jQ6KHcKWVAftmzgfNU+pf0pd/jn/AFjQprmS7Z11+qNhrOq6Rfdl7bTIL5e+txH8aNwrFVwd8VS6Br8+g3hZfstu5xLHnY+Y86qcUjgCqc23ZmuKKi4ml13+D+pMbzT70W07bvFJEwUn5AcGjuzmraTYaJNYXd8BJOzZKRuQARjnisSH3weVP5HNCnTuhPiTjjei/i0zQ0uB3uugxg7hbdskeFU92EmnleNeFWclR5Z2pqvxjfmK75Gobv0axjXbs0HY7U7DR555r67CGRAioqMx59cCqbV+4fUbi4t7hJo5ZWdcAggE53yBQzrxb9ahIZarK1RChjJyHZrSWPaUW/ZC404uVn4ikZH3Dbn9vzisyuXJAFOSJpDjPLrSjJx6HKClVjRjGTk+FaOLX3HYuXS2kxN3gRAOfdnc7+3b5aoUjVUO245E1xpvWG+PGhSa6HKClVjAHL4IOBWh7OdqfghXsLyIzWUhIK9Vzzx4g+FUqzIWXbBPM08qvrDh4upNEZOLtDlxxmqZb3um6JO/e6drEUKNuIrhGBXyzipNPvdM7P8AFPby+n3xBVCEKxx5677ms2oyzZO4Gwp8J+enl7SIwtU3oNnnluZ3mmctI5yzHxrT6XqemWvZufTprtRNMH5IxAJGBvisoK6TjlSjNxdmk+NTVBME0mn3aTW8wLxnKuucH56vtV1HR9es0lkl9DvkGMlCVbyyByrMAE13FJTpV6CXGpNP2jS9lr/T9Ga5e7vELS8IXgRjsM56edV+o2emT3k88GswKsrl8SRuCuTnGwqokkCDxNCs3EcmqztU0R46k5J7ZfWVzouhSelRSvqV4v8AJjgKRofE53NUeoX0+pXkl3cvxSOcnwHgB5CoiMCozScm9CUEnfsuNZ1PTb6wsobKw9GkhXEr4HrbeXPx3qoCZrowBXQSaG7djjFRVHplKlSrpnKPPtSP+9Lv8e/6xoWidS/pW7/Hv+sagArmS7Z1o9I5xUxmpPtTedIZyuhitO4a4RQI6HwQRsaIDhlzQwRjyG1dXjQ0hpsI+sU1hmuqwYZFcNBRATuRnGalhjO5JIqN9jmiIz3gLMTvtjHOgS7I5pOIcJ3Pkdqhz5VLLHwgEDhB6VFjegTHLnI3oteFVJUkGhoge8HTPWilwoBBBPLegqIPPGEw4Oc06Ajh8+tdl4eEgqM5qNFOcKT8tAewtSTTgKiTjxgYp/C55tj2CkUh5YKMk4qJndtk2HjThGud9/bTwijkKAIVQ/bAGkYoz0Knyqfh86aVI86AoGeJlGRuKHYUeV8NqgkhBOeXlTJaBgaeKUkRQ01TTJPTqVKlXUOQee6l/St3+Pf9Y1ADU+pf0pd/j3/WNDZwK5ku2daPSGyU0V1mya4KQDxyqeOID1m3PhUcS538KIUZO3OkUkIqT5UxovlqfgxuTXDk0rKoEMTA5Ga4zPjcUSVOOdRsB1pioGOSd6KdJrVEEsUkYkGRxgjI8qhdRkEAbeNWWvNxrprM3OxTb/U1VWiLp0DbNtzyOoziou4BOeXs3zRmnQrLb3N5MC8drGH4M/GJYKB7N6I0u4j1C7js7qKPgmYIGRArIx5EY8+dFDc1sA7tcZ5qOQrrAkFfDfIozTZrdNQ9Hue7KykxsWXPCTsGHsNcZDYQ3ZlVDIp7hS+/r53I9gH1iljYZoqw/AzcWSehzT4IxnJOSaO0CFZZ7wOkcjJbOyd4oIDDGDvtT7hXEo7xIlbhH8lw4P0dqGtWEXcqIFXHIU7eu4FLFQai9orhHVa7uK4TQBwODSyKa/3QHtrmcj4tOgH5BqKdfUznFcPzUxsnYnNAmzgPGN6HdeFqnXY1FLuaZDPS6VKlXVOOeeal/St3+Pf9Y0MQTVlf2N0+p3TLbSkNM5BCHcZNRjTbz+6zfQNc2Sds6kWqRXlCK5yNWR027x/NZvoGoX068B/ms30DU0xtr6ct4y6DHKiQAgxUENtewk/xWYg/eGiFtLtzn0aX6BoxZanH6cLAedMLE+VEjT73n6LN9A106den/hZvoGlix5ICIPU03hFFtp90PjW82fDgNRmyvScJZze3gNOmLJfQWQYHPfwo66uLS8W07yKZfRoViOGHr4JPyc6aul3gOTazE+JQ0/4MvcfzSb8maatEtRewex1CWxd17tZYJFKSRH7ZT5+PgaUF1DZXRuLVJWkAPB3mMIfHbmR8lTNpl2Fz6JN9A0l0u84R/FZsnn9jNGwai32Vvds5LHmfGjdSum1B4n7vgKIA2+eN8AFvlwKKTTLvl6JN9A1xtMvOLa0mH+g0t9DqPZBpcyWTTmRGcTQtFhTgjON/qqQ93t3fFjG5apE068/uk2f8hpw069G4tZcf5DQ7qqGsU7IcUqm9DugcNbTKfNDTxYXh5W0p/wBBqaZWS+g9cKg0SdPvP7pN9A0w2N4P+Em+gaKY8kBuGXptUdGm2ulPrWs30DQ72l2zEi1lx/kNViyXJfSImomap/Q7z+6zfQNcNheH/hZvoGjFk5L6QA5pFOtEfB95/dJvoGuvY3oUfxWb6Bp0wyX039KlSrpnIPItX7WxW2v6hAY5iYrqRMhttmIp0HbSAj+Tm+kKx/aYkdrNX/66f/8AoaDikI60mi1I9CbtfCRskv0qBn7WRE/yUx/1Vk1mOOdcZ+KlRTdmjbtbEP6qf6VRHthGP6qcf6xWcY1A3OqozNzpPaa51G8W2tVugTux7zZR41pm1M8XcKZ2C82L86quyujrpehrO6k3N4A243Veg/bVo0SW0ecesd8VhKW9HthxVHYx9SSPC93KWO3xqtIZ1jQKVk4iMnJ+qqyztO9uUkcYwcirNIss7kcqlyNY8aJRfxs26vgY60vhIEcZ7wKNhv0qIQgIMc2pssWEEYGT12qbKwR1tRWTPqygDzoxb1CVwHxjnmqySPu4mbG+NsVNCC9pFIRg43FFgoKyyW7USfb8vGm3F8EIOJN9udDH1cHFdul+xg+dK2VhEcl+gm4eGT565BrEZvJbRw4ZTtvzFBqQt0M75oC7PB2gYqcHgU1XZDikaC4eOdCjo5HQ55VUtdGItHiYMvLDc6somE0e/OhL63IjMqLlk5+YpKTHLjj2geXVbg6fLLD3/eQgnh4t2FZGXt08nNbj6dam3mUTDPJ9jmvPdasVtdXuoUHqq5x7DW0HfZ5uWNJNFkvbFGbeOf6dFR9qYnH8lP8ASrGuvA1E20oBwa0aPMjW/wAJY/7Kb6VOj7VRod4piP8ANWfABXI3FJQpPgakujUfwytwNops+2hpu18L5HdzfSrPyQhhQhgYP5UJIG2fRNKlSqzE+dO04/8AVer/APXTfrmq9dhVj2m//LNX/wCum/XNV4pgPWnZriincO1IZExNFaRZnUNYtbTbEkgBz4daHZTVn2XlS27SWcsmyhyPnBofQ49qz02VkSQhNljACr02pW9o11IZJeX6KdFCZ8yA+qTnJqC91QqvolpzOxcdK8tHRtLsJtrmFtWa1jIykfSjSQtucc6zVvmwvUnUFmJw7e2rlbgSZXO+aHEcZ6DowSVJ6CuOmXLHpUlt60RY9ac254RUl2CMFw0smFjQZJNUui69HqF9dWmQFJ4ofZVd2y7SxhTpNg+d8TuvL/LWVsbyS0uFmjYq6nYitVC1s88+apUj1Ti4oSORWppCGsy2x2rO2Wtx3sAlDDj5OnnV5ZAzWTjPPcVm1Rsp30CRyK10p6mqK81u0k7RT27P3bIQqvnYkdKIvdQ+Dlkkb46A4Hiawpt5J5XmfJZ2LE+ZrWMbPPyclaR6dbXoVgGYBv01aNwzw8SEHNea6deXkAEbsZYhyDc19hq8s+0sdpKqzSEJ14udS4P0aR5V7D7mM2pZyMAGsRqUvpWp3Eh+2atX2l7UaV6I1vAxlndcgpyHtrF2zcb8R5nnVwXsx5ZJukCXMeDyoY8SbirK+UCgJF9StTzsUN6yNjNGrdhhk1UAZaiFBAoaEmw/03hqWOUS71VnJoi3cqMUqKyPo2lSpUzM+ee06Y7Vat53s365qtVTV52niz2m1Q/85L+uaro4SelA6I44iam7nblRMMBHSiVgBHKlZSRVNEaYoaKRZF2KnIqzkt8ULLHjpTCjcab2102fS3troejSIAFyfjbb70P8N6Wi5FzGB1OcmsO0ZzTO5NTgjTyyNZf9tIIo2i06DvHP9bIMAewU7sj2jEmo9zqc6qH5SNsPZWREJqRYD4UYqiVySuz230uziTHpEQRBniLjFY3tP22RVks9IfLnIe4HIeS++sRwPjBLEeBNd7qpUEmaS5pNUiLiJYljknck04yYHOuOmKgY4rQwC7e+ltn44nIPUeNarRu3o0+1eG4tzKx+KQawxbBpveYNJxTHGbj0aq61FtWvHlI4VY5C+FG29gGiBxWYsLsLKuTW0tr23W1zxDlUtV0aRd7YM0aW0bM21ZHVbsTXBVeQNWWsawJC0cZ2rPHLNk86pIicr6JEYlhVxZKMZqnRTmrG2kZExTZKCrmLvGAqKezCQ5PhXUuPXyafdz8cWM0iimC+ucVMFNOii422oxbcKuSKZKQH3dTwR5YCnYXixRtrbqX4ywwKGNI96pUqVBB4b2ij4u0mp7f8ZL+uaggtwByqw1tAe0WpH/m5f1zQyngpFoesYzyqTgA5VEHYtRsFuzjIFIYFOoA5UBImTk1a3NvIpORtQDrxNjFNCYKsPEae0AVc4o6CDflREtlmPONqYUUndjGRTwu1ESQ8D46VwxN8YKcUCGd2GXlXBEcVPbrxHhNENCF50DKuWIgZxQcsdXEwUKRVZNjJoEyvkWmYqaTBpqRs7YFMkYpZTlaLW5uWTgDECi7TSnlx6pNXEGhSYB4CPkpNjSZmDbSNuc5qSO0cnlWpOiuB8WoW094jkrRY6Ky308kcqllsyg5VYpIsQwQKGuryPGKQ9FLMxjfnTO/LjFNunDueGnWsPGRTJDLJAelT3TcCVPa24XG1Q6lEVBNBXoqXnPFnNdS8lBwGwKHf4xpKaZNn03SpUqQjxnXPV7Q6iT/e5f1zQjOp617JJoulTSNJLplm7uSzM0CkknmScU34B0b/AAmx/Nk91A7PHEdeLnWk0lY3UZ51v/gHRh/7RY/mye6pE0rTY/5PT7VP8sKj9lA0zFXtjE8R2B2rMXFusUhAHWvYDY2ZGDaQH/4xUTaPpbnLabaMfOBfdSoGzyu2iBAzRMnCkRG1eljSNMHLTrQf/AvupHR9Lb42m2h9sC+6mFnilzMnf4z1rQ6ZZw3VsMgcq9FPZ7RCcnRrAnztk91TR6TpsIxFp9qg+9hUfsoEmeWahpHord5HyqouLjHXcV7Y2m2DjDWVuw84lP7Kgbs/orHLaRYk+dsnuoG2eEXFzzoB5ia+hD2b0I89F08//qp7qb/Bjs//AIFpv5pH7qZJ88k5q40Ox9KmUY617d/Bjs//AIFpv5pH7qli0LR4DmHSrKM+KW6D9AoBGV0rs9Gsa4QVdroaKvxBV2kUcYwkar7Bin1FGiZm5tJRduGqi/01QpwBW5MaNzRT7RUbWls/xreJvagNFBkeNatbtDnFZyVmZ8V9BSaPpcv8ppto/wDmgU/sqH+DmhZz8C6f+ap7qog8Bkh9XK0oHKuAK9//AIO6H/g2n/mqe6uDs5oQ5aLp/wCap7qBHj1jKGAzXdQCSR7HNexjQNGXlpFiPZbJ7qR0HRjz0mx/Nk91A7Pnqa3fjOBtURjZOYr6J/g/ov8Ag9h+bJ7q4ezuhtz0bTz7bVPdTEWNKlSpAf/Z\";s:13:\"icon_position\";s:3:\"top\";s:9:\"icon_size\";s:5:\"small\";s:4:\"more\";s:14:\"Example Button\";s:8:\"more_url\";s:69:\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\";s:12:\"all_linkable\";s:1:\"1\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:3;a:9:{s:5:\"title\";s:14:\"Saves You Time\";s:4:\"text\";s:135:\"Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.\";s:4:\"icon\";s:9:\"icon-time\";s:5:\"image\";s:0:\"\";s:13:\"icon_position\";s:3:\"top\";s:4:\"more\";s:11:\"Test Button\";s:8:\"more_url\";s:1:\"#\";s:3:\"box\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:25:\"Vantage_CircleIcon_Widget\";}}i:4;a:9:{s:5:\"title\";s:12:\"Latest Posts\";s:8:\"template\";s:23:\"loops/loop-carousel.php\";s:9:\"post_type\";s:4:\"post\";s:14:\"posts_per_page\";s:1:\"4\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:6:\"sticky\";s:0:\"\";s:10:\"additional\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:34:\"SiteOrigin_Panels_Widgets_PostLoop\";}}i:5;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:3:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:9:\"wide-grey\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:1;a:2:{s:5:\"cells\";s:1:\"3\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}i:2;a:2:{s:5:\"cells\";s:1:\"2\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:6:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:2;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"1\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.6658461538461539\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:19:\"0.33415384615384613\";s:4:\"grid\";s:1:\"2\";}}}'),(4567,177,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482451943;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:292;}i:1;a:1:{s:2:\"id\";i:1156;}i:2;a:1:{s:2:\"id\";i:295;}}}}'),(4568,95,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483186848;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:739;}}}}'),(4569,231,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482055627;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:115;}i:1;a:1:{s:2:\"id\";i:340;}i:2;a:1:{s:2:\"id\";i:191;}}}}'),(4571,13,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484441944;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:107;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:28;}}}}'),(4572,113,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484699876;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:123;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(4573,12,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484432058;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(4574,75,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481906763;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(4575,248,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480994526;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:163;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:338;}}}}'),(4576,44,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480721001;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1051;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(4577,163,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477925982;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:911;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(4578,206,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485060211;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:859;}i:1;a:1:{s:2:\"id\";i:1127;}i:2;a:1:{s:2:\"id\";i:263;}}}}'),(4581,67,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485308963;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:236;}i:1;a:1:{s:2:\"id\";i:317;}i:2;a:1:{s:2:\"id\";i:212;}}}}'),(4582,61,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481221534;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:60;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:706;}}}}'),(4584,613,'_edit_last','1'),(4585,613,'_edit_lock','1409511354:1'),(4586,614,'_wp_attached_file','2014/08/crying-writer.jpg'),(4587,614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:335;s:4:\"file\";s:25:\"2014/08/crying-writer.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"crying-writer-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:\"crying-writer-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"vantage-carousel\";a:4:{s:4:\"file\";s:25:\"crying-writer-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"vantage-grid-loop\";a:4:{s:4:\"file\";s:25:\"crying-writer-436x272.jpg\";s:5:\"width\";i:436;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:25:\"crying-writer-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:25:\"crying-writer-280x335.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:25:\"crying-writer-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4588,613,'_thumbnail_id','614'),(4589,613,'_use_impact','no'),(4590,613,'_impact_noindex','index'),(4591,613,'_impact_nofollow','follow'),(4592,613,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:677:\"I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue\n\nTears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died\n\nI try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears\n\nThe sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste\n\nI try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4593,613,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4594,615,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:677:\"I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue\n\nTears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died\n\nI try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears\n\nThe sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste\n\nI try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears\n\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4595,613,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482556687;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:296;}i:2;a:1:{s:2:\"id\";i:349;}}}}'),(4596,616,'panels_data','a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:677:\"I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue\n\nTears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died\n\nI try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears\n\nThe sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste\n\nI try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears\n\";s:6:\"filter\";s:1:\"1\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";s:0:\"\";s:9:\"no_margin\";s:0:\"\";}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}'),(4597,613,'_wpas_done_all','1'),(4605,340,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482428046;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:295;}}}}'),(4602,613,'dsq_thread_id','2975895759'),(4608,29,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485631650;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:110;}i:2;a:1:{s:2:\"id\";i:26;}}}}'),(4613,2,'dsq_thread_id','2972110534'),(4632,24,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1472735356;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:26;}}}}'),(4622,9,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482704784;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1055;}i:1;a:1:{s:2:\"id\";i:1095;}i:2;a:1:{s:2:\"id\";i:27;}}}}'),(4628,249,'dsq_thread_id','2981750557'),(4626,9,'dsq_thread_id','2981735125'),(4633,291,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481053003;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:115;}i:1;a:1:{s:2:\"id\";i:41;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(4641,32,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483937982;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1217;}i:1;a:1:{s:2:\"id\";i:37;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(4638,34,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482633401;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:50;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:56;}}}}'),(4640,34,'dsq_thread_id','2984657915'),(4647,47,'dsq_thread_id','2984666323'),(4644,47,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697462;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:688;}i:2;a:1:{s:2:\"id\";i:816;}}}}'),(4646,5,'dsq_thread_id','2984664929'),(4648,57,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485424442;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:11;}i:1;a:1:{s:2:\"id\";i:292;}i:2;a:1:{s:2:\"id\";i:26;}}}}'),(4652,23,'_jetpack_related_posts_cache','a:2:{s:32:\"198aa47cd7a48289fe5aa9a9b386861e\";a:2:{s:7:\"expires\";i:1481985029;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:1158;}i:2;a:1:{s:2:\"id\";i:30;}}}s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481985041;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:1158;}i:2;a:1:{s:2:\"id\";i:30;}}}}'),(10428,145,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10429,146,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(4654,23,'dsq_thread_id','2984792102'),(4659,296,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482466660;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:67;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(4661,344,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486170850;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(4664,296,'dsq_thread_id','2986282688'),(4663,329,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485151061;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:126;}i:1;a:1:{s:2:\"id\";i:94;}i:2;a:1:{s:2:\"id\";i:191;}}}}'),(4677,25,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484627387;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:126;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(4680,25,'dsq_thread_id','2989000114'),(4684,36,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483716812;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(4689,234,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485571642;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1041;}}}}'),(4694,21,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480457622;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(4697,21,'dsq_thread_id','2999165533'),(4698,82,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480361175;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:191;}i:1;a:1:{s:2:\"id\";i:859;}i:2;a:1:{s:2:\"id\";i:1127;}}}}'),(4700,82,'dsq_thread_id','2999190085'),(4702,66,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482946467;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:83;}}}}'),(4703,45,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486311451;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:217;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:1041;}}}}'),(4705,211,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484408694;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:131;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:17;}}}}'),(4707,45,'dsq_thread_id','3000625801'),(4708,211,'dsq_thread_id','3000631810'),(4711,343,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483944874;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1127;}i:1;a:1:{s:2:\"id\";i:953;}i:2;a:1:{s:2:\"id\";i:30;}}}}'),(4712,332,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483868551;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(4713,319,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483337031;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:312;}}}}'),(4721,342,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484208349;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:133;}i:1;a:1:{s:2:\"id\";i:1360;}i:2;a:1:{s:2:\"id\";i:996;}}}}'),(4728,20,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478635457;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:899;}i:2;a:1:{s:2:\"id\";i:692;}}}}'),(4731,20,'dsq_thread_id','3011322443'),(4730,130,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483344461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:292;}i:1;a:1:{s:2:\"id\";i:147;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(4734,130,'dsq_thread_id','3011639572'),(4736,227,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481262290;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:310;}}}}'),(4740,227,'dsq_thread_id','3012700589'),(4738,18,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697565;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:21;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:890;}}}}'),(4739,37,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483404954;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:816;}i:1;a:1:{s:2:\"id\";i:17;}i:2;a:1:{s:2:\"id\";i:32;}}}}'),(4747,104,'dsq_thread_id','3012718008'),(4743,104,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482521711;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:214;}i:2;a:1:{s:2:\"id\";i:276;}}}}'),(4746,18,'dsq_thread_id','3012712920'),(4748,347,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484417666;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:36;}i:1;a:1:{s:2:\"id\";i:879;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(4749,240,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485263545;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:213;}i:1;a:1:{s:2:\"id\";i:310;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(4750,116,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484665479;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:249;}i:1;a:1:{s:2:\"id\";i:118;}i:2;a:1:{s:2:\"id\";i:329;}}}}'),(4751,220,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482883008;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:36;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:1018;}}}}'),(4752,217,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516739;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:996;}i:2;a:1:{s:2:\"id\";i:234;}}}}'),(4753,73,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483426318;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1088;}i:1;a:1:{s:2:\"id\";i:720;}i:2;a:1:{s:2:\"id\";i:1226;}}}}'),(4754,244,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482534178;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:31;}}}}'),(4755,93,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483299985;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:57;}i:1;a:1:{s:2:\"id\";i:1399;}i:2;a:1:{s:2:\"id\";i:1048;}}}}'),(4756,71,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697805;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:56;}i:2;a:1:{s:2:\"id\";i:7;}}}}'),(4757,51,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484577279;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:53;}i:1;a:1:{s:2:\"id\";i:44;}i:2;a:1:{s:2:\"id\";i:13;}}}}'),(4758,262,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481938489;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:173;}i:1;a:1:{s:2:\"id\";i:176;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(4768,85,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482869187;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:115;}i:1;a:1:{s:2:\"id\";i:791;}i:2;a:1:{s:2:\"id\";i:41;}}}}'),(4770,85,'dsq_thread_id','3026398484'),(4780,52,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1459524276;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:211;}i:2;a:1:{s:2:\"id\";i:626;}}}}'),(4785,52,'_impact_nofollow','follow'),(4786,52,'panels_data','a:0:{}'),(4787,52,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4788,52,'_edit_last','1'),(4804,90,'dsq_thread_id','3034018637'),(4791,52,'_wpas_skip_8363136','1'),(4796,103,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486223260;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:126;}i:2;a:1:{s:2:\"id\";i:83;}}}}'),(4803,103,'dsq_thread_id','3034013304'),(4798,90,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697542;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:9;}i:1;a:1:{s:2:\"id\";i:1012;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(4800,89,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485338483;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:30;}i:2;a:1:{s:2:\"id\";i:60;}}}}'),(4802,51,'dsq_thread_id','3034012972'),(4805,89,'dsq_thread_id','3034019233'),(4806,190,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485554536;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1107;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:248;}}}}'),(4808,190,'dsq_thread_id','3034028709'),(4809,144,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483396244;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:87;}i:1;a:1:{s:2:\"id\";i:172;}i:2;a:1:{s:2:\"id\";i:961;}}}}'),(4811,144,'dsq_thread_id','3034159812'),(4813,180,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478226332;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:147;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(4815,83,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484394688;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:31;}i:2;a:1:{s:2:\"id\";i:1055;}}}}'),(4817,180,'dsq_thread_id','3034209156'),(4818,67,'dsq_thread_id','3034226195'),(4823,289,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485271276;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:39;}i:1;a:1:{s:2:\"id\";i:633;}i:2;a:1:{s:2:\"id\";i:1088;}}}}'),(4824,11,'_edit_lock','1411479885:1'),(4831,49,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485777887;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1018;}i:1;a:1:{s:2:\"id\";i:317;}i:2;a:1:{s:2:\"id\";i:879;}}}}'),(4833,49,'dsq_thread_id','3052711097'),(4835,64,'dsq_thread_id','3063675324'),(4838,233,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481985179;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(4841,307,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481270127;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1100;}i:1;a:1:{s:2:\"id\";i:203;}i:2;a:1:{s:2:\"id\";i:1064;}}}}'),(4842,345,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486311035;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1055;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:1320;}}}}'),(4843,334,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485104260;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1051;}i:1;a:1:{s:2:\"id\";i:28;}i:2;a:1:{s:2:\"id\";i:180;}}}}'),(4844,150,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483344549;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(4845,162,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483337012;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:795;}i:1;a:1:{s:2:\"id\";i:688;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(4846,621,'_edit_last','1'),(4847,621,'_edit_lock','1412172231:1'),(5034,226,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483350753;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:328;}}}}'),(5038,636,'_edit_last','1'),(4851,621,'panels_data','a:0:{}'),(4852,621,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4853,621,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482712662;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:630;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:643;}}}}'),(4854,621,'_wpas_done_all','1'),(4865,2,'_impact_noindex','index'),(4864,2,'_use_impact','no'),(4863,621,'dsq_thread_id','3072465093'),(4866,2,'_impact_nofollow','follow'),(4867,2,'panels_data','a:0:{}'),(4868,2,'vantage_metaslider_slider',''),(4869,2,'vantage_menu_icon',''),(4872,143,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483275344;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:212;}i:1;a:1:{s:2:\"id\";i:316;}i:2;a:1:{s:2:\"id\";i:349;}}}}'),(4871,2,'_edit_last','1'),(4880,278,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482121791;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:317;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:236;}}}}'),(4882,317,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483403563;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:630;}i:2;a:1:{s:2:\"id\";i:49;}}}}'),(4884,278,'dsq_thread_id','3073292275'),(4886,626,'_edit_last','1'),(4887,626,'_use_impact','no'),(4888,626,'_impact_noindex','index'),(4889,626,'_impact_nofollow','follow'),(4890,626,'panels_data','a:0:{}'),(4891,626,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4892,626,'_edit_lock','1412271353:1'),(4893,626,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483622817;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:221;}i:1;a:1:{s:2:\"id\";i:45;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(4894,626,'_wpas_done_all','1'),(4898,626,'dsq_thread_id','3077190201'),(4900,335,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484017372;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(4906,628,'_edit_last','1'),(4907,628,'_use_impact','no'),(4908,628,'_impact_noindex','index'),(4909,628,'_impact_nofollow','follow'),(4910,628,'panels_data','a:0:{}'),(4911,628,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4912,628,'_edit_lock','1412345584:1'),(4913,628,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476185156;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:27;}i:1;a:1:{s:2:\"id\";i:1012;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(4914,628,'_wpas_done_all','1'),(4920,628,'dsq_thread_id','3079862236'),(4925,17,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483415136;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:28;}i:1;a:1:{s:2:\"id\";i:22;}i:2;a:1:{s:2:\"id\";i:752;}}}}'),(4936,331,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482587817;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:312;}}}}'),(4939,17,'dsq_thread_id','3086604428'),(4940,216,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481227213;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1018;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:816;}}}}'),(4944,314,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483287044;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:123;}i:1;a:1:{s:2:\"id\";i:752;}i:2;a:1:{s:2:\"id\";i:27;}}}}'),(4946,314,'dsq_thread_id','3088050777'),(4947,630,'_edit_last','1'),(4948,630,'_edit_lock','1412606301:1'),(4949,630,'_use_impact','no'),(4950,630,'_impact_noindex','index'),(4951,630,'_impact_nofollow','follow'),(4952,630,'panels_data','a:0:{}'),(4953,630,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4954,630,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483378878;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:45;}}}}'),(4955,630,'_wpas_done_all','1'),(4964,78,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482659089;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:172;}i:2;a:1:{s:2:\"id\";i:1273;}}}}'),(4962,630,'dsq_thread_id','3088672426'),(4966,78,'dsq_thread_id','3088730252'),(4984,633,'_edit_lock','1412708289:1'),(4983,633,'_edit_last','1'),(4985,633,'_wpas_done_all','1'),(4993,633,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483762142;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:63;}i:1;a:1:{s:2:\"id\";i:172;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(4988,633,'_use_impact','no'),(4989,633,'_impact_noindex','index'),(4990,633,'_impact_nofollow','follow'),(4991,633,'panels_data','a:0:{}'),(4992,633,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(4995,633,'dsq_thread_id','3093110263'),(5023,63,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480785101;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:633;}}}}'),(5025,63,'dsq_thread_id','3096790470'),(5037,226,'dsq_thread_id','3098095167'),(5039,636,'_edit_lock','1412851914:1'),(5040,636,'_use_impact','no'),(5041,636,'_impact_noindex','index'),(5042,636,'_impact_nofollow','follow'),(5043,636,'panels_data','a:0:{}'),(5044,636,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5045,636,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480389226;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(5046,636,'_wpas_done_all','1'),(5050,636,'dsq_thread_id','3099448053'),(5052,125,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483895860;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:123;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(5059,80,'dsq_thread_id','3099576619'),(5054,80,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482519790;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1215;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:31;}}}}'),(5056,209,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482746344;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(5058,125,'dsq_thread_id','3099571470'),(5060,209,'dsq_thread_id','3099583589'),(5061,639,'_edit_last','1'),(5062,639,'_edit_lock','1412865494:1'),(5063,639,'_wpas_done_all','1'),(5071,639,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484694740;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:1012;}i:2;a:1:{s:2:\"id\";i:1150;}}}}'),(5069,639,'panels_data','a:0:{}'),(5070,639,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5076,639,'dsq_thread_id','3099714276'),(5089,643,'_edit_last','1'),(5090,643,'_edit_lock','1412951489:1'),(5091,643,'_use_impact','no'),(5092,643,'_impact_noindex','index'),(5093,643,'_impact_nofollow','follow'),(5094,643,'panels_data','a:0:{}'),(5095,643,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5096,643,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484667107;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:126;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(5097,643,'_wpas_done_all','1'),(5101,643,'dsq_thread_id','3103604071'),(5103,646,'_edit_last','1'),(5104,646,'_edit_lock','1412964272:1'),(5105,646,'_use_impact','no'),(5106,646,'_impact_noindex','index'),(5107,646,'_impact_nofollow','follow'),(5108,646,'panels_data','a:0:{}'),(5109,646,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5110,646,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484493098;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:36;}i:1;a:1:{s:2:\"id\";i:229;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(5111,646,'_wpas_done_all','1'),(5115,646,'dsq_thread_id','3104071916'),(5120,128,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483493494;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:191;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:863;}}}}'),(5149,648,'_wpas_done_all','1'),(5148,648,'_edit_lock','1413206586:1'),(5147,648,'_edit_last','1'),(5157,648,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484575018;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:7;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:340;}}}}'),(5152,648,'_use_impact','no'),(5153,648,'_impact_noindex','index'),(5154,648,'_impact_nofollow','follow'),(5155,648,'panels_data','a:0:{}'),(5156,648,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5159,648,'dsq_thread_id','3112262453'),(5184,250,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516379;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:35;}i:2;a:1:{s:2:\"id\";i:1041;}}}}'),(5183,72,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483345582;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:60;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(5175,195,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485447846;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:191;}i:1;a:1:{s:2:\"id\";i:310;}i:2;a:1:{s:2:\"id\";i:329;}}}}'),(5177,195,'dsq_thread_id','3115491944'),(5185,175,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516263;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:248;}i:1;a:1:{s:2:\"id\";i:30;}i:2;a:1:{s:2:\"id\";i:105;}}}}'),(5190,651,'_edit_lock','1429805850:1'),(5189,651,'_edit_last','1'),(5188,96,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484187376;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:292;}i:2;a:1:{s:2:\"id\";i:340;}}}}'),(5191,652,'_edit_last','1'),(5192,652,'_edit_lock','1413481811:1'),(5193,652,'panels_data','a:0:{}'),(5194,652,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5195,652,'_use_impact','no'),(5196,652,'_impact_noindex','index'),(5197,652,'_impact_nofollow','follow'),(5198,652,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483272318;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:229;}i:2;a:1:{s:2:\"id\";i:1018;}}}}'),(5199,652,'_wpas_done_all','1'),(5203,652,'dsq_thread_id','3120434449'),(5207,652,'_wpas_skip_8363136','1'),(5232,27,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482896845;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:44;}i:2;a:1:{s:2:\"id\";i:43;}}}}'),(5231,26,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477344603;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:66;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:30;}}}}'),(5266,6,'dsq_thread_id','3122842822'),(5265,8,'dsq_thread_id','2968858461'),(5234,28,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483383402;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:643;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(5236,22,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480795128;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:17;}i:1;a:1:{s:2:\"id\";i:44;}i:2;a:1:{s:2:\"id\";i:630;}}}}'),(5264,10,'dsq_thread_id','3122841135'),(5240,19,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484661987;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:37;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(5262,12,'dsq_thread_id','3122839745'),(5261,13,'dsq_thread_id','3122838754'),(5244,16,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1469731785;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:868;}i:1;a:1:{s:2:\"id\";i:788;}i:2;a:1:{s:2:\"id\";i:9;}}}}'),(5245,14,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483304203;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:316;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:202;}}}}'),(5260,14,'dsq_thread_id','3122838286'),(5259,19,'dsq_thread_id','3122835806'),(5258,22,'dsq_thread_id','3122834108'),(5257,28,'dsq_thread_id','3122833390'),(5256,27,'dsq_thread_id','3122832985'),(5273,174,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482882905;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(5275,174,'dsq_thread_id','3130285809'),(5283,55,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483244094;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:16;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:349;}}}}'),(5285,55,'dsq_thread_id','3135242217'),(5286,198,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484503209;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:191;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(5287,668,'_edit_last','1'),(5288,668,'_edit_lock','1413827284:1'),(5289,668,'_use_impact','no'),(5290,668,'_impact_noindex','index'),(5291,668,'_impact_nofollow','follow'),(5292,668,'panels_data','a:0:{}'),(5293,668,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5294,668,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484391635;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:626;}i:1;a:1:{s:2:\"id\";i:1351;}i:2;a:1:{s:2:\"id\";i:1055;}}}}'),(5295,219,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480402141;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:16;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:239;}}}}'),(5296,668,'_wpas_done_all','1'),(5300,668,'dsq_thread_id','3137390785'),(5301,675,'_edit_last','1'),(5302,675,'_edit_lock','1413828609:1'),(5447,688,'_use_impact','no'),(5446,688,'_edit_lock','1414458869:1'),(5445,688,'_edit_last','1'),(5306,675,'panels_data','a:0:{}'),(5307,675,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5308,675,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483704780;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:147;}i:1;a:1:{s:2:\"id\";i:121;}i:2;a:1:{s:2:\"id\";i:67;}}}}'),(5309,675,'_wpas_done_all','1'),(5314,675,'dsq_thread_id','3137646361'),(5328,678,'_edit_lock','1413901973:1'),(5327,678,'_edit_last','1'),(5329,678,'_use_impact','no'),(5330,678,'_impact_noindex','index'),(5331,678,'_impact_nofollow','follow'),(5332,678,'panels_data','a:0:{}'),(5333,678,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5334,678,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484397639;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1259;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:84;}}}}'),(5335,678,'_wpas_done_all','1'),(5339,678,'dsq_thread_id','3140528627'),(5361,32,'dsq_thread_id','3142574851'),(5370,680,'_edit_lock','1413987732:1'),(5369,680,'_edit_last','1'),(5371,680,'_use_impact','no'),(5372,680,'_impact_noindex','index'),(5373,680,'_impact_nofollow','follow'),(5374,680,'panels_data','a:0:{}'),(5375,680,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5376,680,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476236418;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(5377,680,'_wpas_done_all','1'),(5381,341,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484324167;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(5380,341,'_edit_lock','1413988224:1'),(5385,680,'dsq_thread_id','3144344074'),(5393,682,'_edit_last','1'),(5405,682,'dsq_thread_id','3146192057'),(5394,682,'_edit_lock','1414102714:1'),(5395,682,'_use_impact','no'),(5396,682,'_impact_noindex','index'),(5397,682,'_impact_nofollow','follow'),(5398,682,'panels_data','a:0:{}'),(5399,682,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5400,682,'_wpas_done_all','1'),(5403,682,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468438889;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:87;}}}}'),(5431,684,'_impact_nofollow','follow'),(5430,684,'_impact_noindex','index'),(5429,684,'_use_impact','no'),(5428,684,'_edit_lock','1414158563:1'),(5427,684,'_edit_last','1'),(5432,684,'panels_data','a:0:{}'),(5433,684,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5434,684,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485710899;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:621;}i:1;a:1:{s:2:\"id\";i:158;}i:2;a:1:{s:2:\"id\";i:212;}}}}'),(5435,684,'_wpas_done_all','1'),(5440,684,'dsq_thread_id','3151619594'),(5448,688,'_impact_noindex','index'),(5449,688,'_impact_nofollow','follow'),(5450,688,'panels_data','a:0:{}'),(5451,688,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5452,688,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484676384;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:47;}}}}'),(5453,688,'_wpas_done_all','1'),(5457,690,'_edit_lock','1414459306:1'),(5456,690,'_edit_last','1'),(5458,690,'_use_impact','no'),(5459,690,'_impact_noindex','index'),(5460,690,'_impact_nofollow','follow'),(5461,690,'panels_data','a:0:{}'),(5462,690,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5463,690,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484552147;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1051;}i:1;a:1:{s:2:\"id\";i:1211;}i:2;a:1:{s:2:\"id\";i:1064;}}}}'),(5464,690,'_wpas_done_all','1'),(5469,688,'dsq_thread_id','3163672907'),(5471,690,'dsq_thread_id','3163680652'),(5480,692,'_edit_lock','1414520823:1'),(5479,692,'_edit_last','1'),(5481,692,'_wpas_done_all','1'),(5489,692,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485529478;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:17;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:296;}}}}'),(5484,692,'_use_impact','no'),(5485,692,'_impact_noindex','index'),(5486,692,'_impact_nofollow','follow'),(5487,692,'panels_data','a:0:{}'),(5488,692,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5492,692,'dsq_thread_id','3167339223'),(5494,694,'_edit_last','1'),(5495,694,'_edit_lock','1414585764:1'),(5496,694,'_use_impact','no'),(5497,694,'_impact_noindex','index'),(5498,694,'_impact_nofollow','follow'),(5499,694,'panels_data','a:0:{}'),(5500,694,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5501,694,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485486138;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:304;}i:1;a:1:{s:2:\"id\";i:252;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(5502,694,'_wpas_done_all','1'),(5506,694,'dsq_thread_id','3168856737'),(5510,349,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483307292;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:296;}}}}'),(5527,255,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480149165;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:158;}i:1;a:1:{s:2:\"id\";i:326;}i:2;a:1:{s:2:\"id\";i:847;}}}}'),(10564,273,'dsq_thread_id','5193302254'),(10565,1347,'_wpas_done_all','1'),(5531,255,'dsq_thread_id','3169786064'),(5541,290,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482428029;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:884;}i:2;a:1:{s:2:\"id\";i:298;}}}}'),(5543,290,'dsq_thread_id','3170094438'),(5555,696,'_edit_last','1'),(5715,713,'_use_impact','no'),(5714,713,'_edit_lock','1415646528:1'),(5713,713,'_edit_last','1'),(5559,696,'panels_data','a:0:{}'),(5560,696,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5561,696,'_edit_lock','1414632788:1'),(5562,696,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484654568;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:138;}i:1;a:1:{s:2:\"id\";i:646;}i:2;a:1:{s:2:\"id\";i:690;}}}}'),(5563,696,'_wpas_done_all','1'),(5566,199,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484664022;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:102;}i:2;a:1:{s:2:\"id\";i:974;}}}}'),(5575,173,'dsq_thread_id','3171031306'),(5569,321,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483394854;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1278;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(5571,173,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477746800;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:44;}i:1;a:1:{s:2:\"id\";i:20;}i:2;a:1:{s:2:\"id\";i:1281;}}}}'),(5574,199,'dsq_thread_id','3171023712'),(5573,169,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484080326;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:60;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:816;}}}}'),(5582,698,'_edit_lock','1414675490:1'),(5581,698,'_edit_last','1'),(5583,698,'_use_impact','no'),(5584,698,'_impact_noindex','index'),(5585,698,'_impact_nofollow','follow'),(5586,698,'panels_data','a:0:{}'),(5587,698,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5588,698,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484658319;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:267;}i:1;a:1:{s:2:\"id\";i:879;}i:2;a:1:{s:2:\"id\";i:165;}}}}'),(5589,698,'_wpas_done_all','1'),(5602,698,'dsq_thread_id','3174097414'),(5613,696,'dsq_thread_id','3178497326'),(5614,280,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483380472;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:189;}i:1;a:1:{s:2:\"id\";i:221;}i:2;a:1:{s:2:\"id\";i:1282;}}}}'),(5618,56,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475548812;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:165;}i:1;a:1:{s:2:\"id\";i:340;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(5616,165,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483512948;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:298;}i:1;a:1:{s:2:\"id\";i:1211;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(5619,192,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484665111;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:217;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(5620,252,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482001463;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:957;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:180;}}}}'),(5621,288,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485859629;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:1222;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(5622,318,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483385320;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:203;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(5623,686,'_edit_last','1'),(5624,686,'_edit_lock','1414906753:1'),(5625,686,'_wpas_done_all','1'),(5633,686,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1470052785;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(5628,686,'_use_impact','no'),(5629,686,'_impact_noindex','index'),(5630,686,'_impact_nofollow','follow'),(5631,686,'panels_data','a:0:{}'),(5632,686,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5638,686,'dsq_thread_id','3183274520'),(5644,706,'_edit_last','1'),(5645,706,'_edit_lock','1415023527:1'),(5646,706,'_wpas_done_all','1'),(5654,706,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484635468;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:752;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(5649,706,'_use_impact','no'),(5650,706,'_impact_noindex','index'),(5651,706,'_impact_nofollow','follow'),(5652,706,'panels_data','a:0:{}'),(5653,706,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5656,706,'dsq_thread_id','3186844101'),(5666,172,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483381063;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:301;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:1055;}}}}'),(5660,706,'_wpas_skip_8363136','1'),(5667,207,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483304077;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:126;}i:1;a:1:{s:2:\"id\";i:791;}i:2;a:1:{s:2:\"id\";i:890;}}}}'),(5668,710,'_edit_last','1'),(5669,710,'_wpas_done_all','1'),(5678,710,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468681137;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:179;}i:1;a:1:{s:2:\"id\";i:109;}i:2;a:1:{s:2:\"id\";i:138;}}}}'),(5672,710,'_use_impact','no'),(5673,710,'_impact_noindex','index'),(5674,710,'_impact_nofollow','follow'),(5675,710,'panels_data','a:0:{}'),(5676,710,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5677,710,'_edit_lock','1415168248:1'),(5679,710,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468681137;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:179;}i:1;a:1:{s:2:\"id\";i:109;}i:2;a:1:{s:2:\"id\";i:138;}}}}'),(5681,710,'dsq_thread_id','3194480384'),(5682,337,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484184363;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:859;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:1026;}}}}'),(5683,212,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480874834;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:192;}i:1;a:1:{s:2:\"id\";i:296;}i:2;a:1:{s:2:\"id\";i:43;}}}}'),(5684,154,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468882461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:25;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:47;}}}}'),(5685,275,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484065830;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:621;}i:1;a:1:{s:2:\"id\";i:720;}i:2;a:1:{s:2:\"id\";i:320;}}}}'),(5686,279,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516483;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:1088;}i:2;a:1:{s:2:\"id\";i:39;}}}}'),(5687,315,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483203628;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(5688,164,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516535;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:212;}i:1;a:1:{s:2:\"id\";i:863;}i:2;a:1:{s:2:\"id\";i:45;}}}}'),(5689,119,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481543425;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:10;}i:1;a:1:{s:2:\"id\";i:281;}i:2;a:1:{s:2:\"id\";i:863;}}}}'),(5690,184,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482798015;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:163;}i:1;a:1:{s:2:\"id\";i:190;}i:2;a:1:{s:2:\"id\";i:311;}}}}'),(5691,30,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484480514;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:621;}i:1;a:1:{s:2:\"id\";i:58;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(5692,185,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475927615;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:30;}}}}'),(5693,156,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483392058;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:335;}i:1;a:1:{s:2:\"id\";i:1048;}i:2;a:1:{s:2:\"id\";i:330;}}}}'),(5694,121,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484178761;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:147;}i:2;a:1:{s:2:\"id\";i:131;}}}}'),(5695,110,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481845108;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:301;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(5696,304,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481244089;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:97;}i:1;a:1:{s:2:\"id\";i:282;}i:2;a:1:{s:2:\"id\";i:259;}}}}'),(5700,152,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484973027;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:101;}i:1;a:1:{s:2:\"id\";i:16;}i:2;a:1:{s:2:\"id\";i:630;}}}}'),(5701,91,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468511757;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:706;}i:1;a:1:{s:2:\"id\";i:32;}i:2;a:1:{s:2:\"id\";i:611;}}}}'),(5702,215,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481302342;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(5703,348,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484014805;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(5704,266,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486272460;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:102;}i:2;a:1:{s:2:\"id\";i:773;}}}}'),(5705,50,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481150227;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:35;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:71;}}}}'),(5706,338,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485333900;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:316;}i:1;a:1:{s:2:\"id\";i:911;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(5707,285,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483380510;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:231;}}}}'),(5708,230,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479359016;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:292;}i:1;a:1:{s:2:\"id\";i:66;}i:2;a:1:{s:2:\"id\";i:120;}}}}'),(5716,713,'_impact_noindex','index'),(5717,713,'_impact_nofollow','follow'),(5718,713,'panels_data','a:0:{}'),(5719,713,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5720,713,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484630590;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:988;}i:1;a:1:{s:2:\"id\";i:804;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(5721,713,'_wpas_done_all','1'),(5725,716,'_edit_lock','1415649135:1'),(5724,716,'_edit_last','1'),(5852,734,'_wpas_done_all','1'),(5851,734,'_edit_lock','1416338788:1'),(5850,734,'_edit_last','1'),(5729,716,'panels_data','a:0:{}'),(5730,716,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5731,716,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485071724;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:1051;}i:2;a:1:{s:2:\"id\";i:1278;}}}}'),(5732,716,'_wpas_done_all','1'),(5739,716,'dsq_thread_id','3211970217'),(5738,713,'dsq_thread_id','3211959507'),(5748,320,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483383420;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:296;}}}}'),(5756,131,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482740833;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:24;}}}}'),(5757,284,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484442849;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:67;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(5759,720,'_edit_last','1'),(5760,720,'_edit_lock','1415974312:1'),(5761,720,'_use_impact','no'),(5762,720,'_impact_noindex','index'),(5763,720,'_impact_nofollow','follow'),(5764,720,'panels_data','a:0:{}'),(5765,720,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5766,720,'_wpas_mess','Return to Love'),(5767,720,'_wpas_skip_9306599','1'),(5768,720,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485672997;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:316;}}}}'),(5769,720,'_wpas_done_all','1'),(5780,177,'dsq_thread_id','3224058257'),(5774,720,'_wpas_skip_8363136','1'),(5779,720,'dsq_thread_id','3223990941'),(5782,198,'dsq_thread_id','3224069790'),(5786,723,'_edit_last','1'),(5787,723,'_use_impact','no'),(5788,723,'_impact_noindex','index'),(5789,723,'_impact_nofollow','follow'),(5790,723,'panels_data','a:0:{}'),(5791,723,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5792,723,'_publicize_twitter_user','@Monica_Renata'),(5793,723,'_edit_lock','1415983994:1'),(5794,723,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483751724;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:287;}i:1;a:1:{s:2:\"id\";i:1018;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(5795,723,'_wpas_done_all','1'),(5806,725,'_edit_lock','1415992171:1'),(5800,723,'dsq_thread_id','3224543079'),(5805,725,'_edit_last','1'),(5807,725,'_use_impact','no'),(5808,725,'_impact_noindex','index'),(5809,725,'_impact_nofollow','follow'),(5810,725,'panels_data','a:0:{}'),(5811,725,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5812,725,'_publicize_twitter_user','@Monica_Renata'),(5813,725,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484826421;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(5814,725,'_wpas_done_all','1'),(5818,725,'dsq_thread_id','3225024298'),(5819,728,'_edit_last','1'),(5970,750,'_use_impact','no'),(5969,750,'_edit_lock','1417808025:1'),(5968,750,'_edit_last','1'),(5823,728,'panels_data','a:0:{}'),(5824,728,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5825,728,'_publicize_twitter_user','@Monica_Renata'),(5826,728,'_edit_lock','1415994281:1'),(5827,728,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1474170527;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:1064;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(5828,728,'_wpas_done_all','1'),(5833,728,'_wpas_skip_9306599','1'),(5836,728,'dsq_thread_id','3225101776'),(5834,728,'_wpas_skip_8363136','1'),(5840,121,'dsq_thread_id','3232301016'),(5842,324,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483367103;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:135;}i:1;a:1:{s:2:\"id\";i:131;}i:2;a:1:{s:2:\"id\";i:212;}}}}'),(5843,147,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482040534;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:45;}i:2;a:1:{s:2:\"id\";i:115;}}}}'),(5844,239,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468438441;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:160;}i:1;a:1:{s:2:\"id\";i:781;}i:2;a:1:{s:2:\"id\";i:59;}}}}'),(5845,295,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485229040;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:147;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:100;}}}}'),(5846,292,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483782766;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(5861,734,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484516996;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:630;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(5855,734,'_use_impact','no'),(5856,734,'_impact_noindex','index'),(5857,734,'_impact_nofollow','follow'),(5858,734,'panels_data','a:0:{}'),(5859,734,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5860,734,'_publicize_twitter_user','@Monica_Renata'),(5863,734,'dsq_thread_id','3238745750'),(5864,271,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481248957;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:236;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:192;}}}}'),(5866,77,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484989786;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:58;}i:1;a:1:{s:2:\"id\";i:1281;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(5867,736,'_edit_last','1'),(5868,736,'_edit_lock','1416857174:1'),(5869,736,'_use_impact','no'),(5870,736,'_impact_noindex','index'),(5871,736,'_impact_nofollow','follow'),(5872,736,'panels_data','a:0:{}'),(5873,736,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5874,736,'_publicize_twitter_user','@Monica_Renata'),(5875,736,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484695822;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:779;}i:1;a:1:{s:2:\"id\";i:1293;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(5876,736,'_wpas_done_all','1'),(5880,739,'_wpas_done_all','1'),(5879,739,'_edit_last','1'),(5890,739,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482431328;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:175;}i:1;a:1:{s:2:\"id\";i:1399;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(5883,739,'_use_impact','no'),(5884,739,'_impact_noindex','index'),(5885,739,'_impact_nofollow','follow'),(5886,739,'panels_data','a:0:{}'),(5887,739,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5888,739,'_publicize_twitter_user','@Monica_Renata'),(5889,739,'_edit_lock','1416858233:1'),(5891,742,'_edit_last','1'),(5892,742,'_edit_lock','1416859100:1'),(5893,742,'_wpas_done_all','1'),(5902,742,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482425146;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1288;}i:1;a:1:{s:2:\"id\";i:84;}i:2;a:1:{s:2:\"id\";i:639;}}}}'),(6038,287,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484385041;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:723;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:276;}}}}'),(5899,742,'panels_data','a:0:{}'),(5900,742,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5901,742,'_publicize_twitter_user','@Monica_Renata'),(5903,88,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484438085;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1392;}i:1;a:1:{s:2:\"id\";i:1088;}i:2;a:1:{s:2:\"id\";i:24;}}}}'),(5905,205,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481323024;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1226;}i:1;a:1:{s:2:\"id\";i:996;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(5907,88,'dsq_thread_id','3259066557'),(5908,205,'dsq_thread_id','3259072793'),(5914,739,'dsq_thread_id','3259440025'),(5913,736,'dsq_thread_id','3259436366'),(5915,742,'dsq_thread_id','3259066265'),(5923,79,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486092016;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:16;}i:1;a:1:{s:2:\"id\";i:35;}i:2;a:1:{s:2:\"id\";i:160;}}}}'),(5940,4,'panels_data','a:0:{}'),(5929,79,'dsq_thread_id','3261277857'),(5939,4,'_impact_nofollow','follow'),(5938,4,'_impact_noindex','index'),(5937,4,'_use_impact','no'),(5936,4,'_edit_lock','1416921669:1'),(5941,4,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5943,4,'_edit_last','1'),(5948,5,'_edit_lock','1416922691:1'),(5946,4,'_wpas_skip_9306599','1'),(5947,4,'_wpas_skip_8363136','1'),(5949,5,'_use_impact','no'),(5950,5,'_impact_noindex','index'),(5951,5,'_impact_nofollow','follow'),(5952,5,'panels_data','a:0:{}'),(5953,5,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5962,274,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483855787;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1399;}i:1;a:1:{s:2:\"id\";i:287;}i:2;a:1:{s:2:\"id\";i:11;}}}}'),(5955,5,'_edit_last','1'),(5958,5,'_wpas_skip_9306599','1'),(5959,5,'_wpas_skip_8363136','1'),(5963,127,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483711648;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:101;}}}}'),(5964,133,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478706188;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:162;}i:2;a:1:{s:2:\"id\";i:233;}}}}'),(5965,74,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483376602;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:135;}i:1;a:1:{s:2:\"id\";i:7;}i:2;a:1:{s:2:\"id\";i:752;}}}}'),(5967,105,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486095413;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(5971,750,'_impact_noindex','index'),(5972,750,'_impact_nofollow','follow'),(5973,750,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5974,750,'_publicize_twitter_user','@Monica_Renata'),(5975,750,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484917108;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1208;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(5976,750,'_wpas_done_all','1'),(5980,750,'dsq_thread_id','3294921223'),(5985,752,'_edit_last','1'),(5986,752,'_wpas_done_all','1'),(5989,752,'_use_impact','no'),(5990,752,'_impact_noindex','index'),(5991,752,'_impact_nofollow','follow'),(5992,752,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(5993,752,'_publicize_twitter_user','@Monica_Renata'),(5994,752,'_edit_lock','1418221866:1'),(6001,752,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1471060442;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(5997,752,'dsq_thread_id','3309819843'),(5998,752,'_wp_old_slug','752'),(5999,752,'_wpas_skip_9306599','1'),(6000,752,'_wpas_skip_8363136','1'),(6002,756,'_edit_last','1'),(6003,756,'_edit_lock','1418222883:1'),(6004,756,'_wpas_done_all','1'),(6012,756,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484656359;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:682;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(6007,756,'_use_impact','no'),(6008,756,'_impact_noindex','index'),(6009,756,'_impact_nofollow','follow'),(6010,756,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6011,756,'_publicize_twitter_user','@Monica_Renata'),(6018,758,'_edit_last','1'),(6017,756,'dsq_thread_id','3309858743'),(6019,758,'_edit_lock','1418228209:1'),(6020,758,'_wpas_done_all','1'),(6028,758,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476144114;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6023,758,'_use_impact','no'),(6024,758,'_impact_noindex','index'),(6025,758,'_impact_nofollow','follow'),(6026,758,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6027,758,'_publicize_twitter_user','@Monica_Renata'),(6033,758,'dsq_thread_id','3310984252'),(6039,761,'_edit_last','1'),(6040,761,'_edit_lock','1418843002:1'),(6041,761,'_wpas_done_all','1'),(6049,761,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468433271;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:990;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(6169,776,'_wpas_done_all','1'),(6168,776,'_edit_lock','1419266230:1'),(6167,776,'_edit_last','1'),(6047,761,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6048,761,'_publicize_twitter_user','@SavorMyWords'),(6050,761,'supernova_post_views_count','0'),(6051,763,'_edit_last','1'),(6052,763,'_edit_lock','1419551657:1'),(6053,763,'_wpas_done_all','1'),(6062,763,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484578544;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:785;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6056,763,'_use_impact','no'),(6057,763,'_impact_noindex','index'),(6058,763,'_impact_nofollow','follow'),(6059,763,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6060,763,'_wpas_mess','Pebbles in the Sand #Poetry #poems #MonicaRenata #NOLA'),(6061,763,'_publicize_twitter_user','@SavorMyWords'),(6065,761,'dsq_thread_id','3327232721'),(6066,763,'dsq_thread_id','3327235513'),(6067,260,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483346888;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:1296;}i:2;a:1:{s:2:\"id\";i:963;}}}}'),(6068,299,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484697576;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:310;}i:1;a:1:{s:2:\"id\";i:7;}i:2;a:1:{s:2:\"id\";i:1127;}}}}'),(6069,765,'_edit_last','1'),(6070,765,'_edit_lock','1418734519:1'),(6071,765,'_wpas_done_all','1'),(6080,765,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484654677;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:210;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(6074,765,'_use_impact','no'),(6075,765,'_impact_noindex','index'),(6076,765,'_impact_nofollow','follow'),(6077,765,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6078,765,'_wpas_mess','Painting Forever #poetry #poems #MonicaRenata #NOLA'),(6079,765,'_publicize_twitter_user','@SavorMyWords'),(6084,765,'dsq_thread_id','3329828851'),(6090,168,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486164828;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1267;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:334;}}}}'),(6094,761,'_wpas_skip_9306599','1'),(6095,761,'_wpas_skip_9626447','1'),(6096,761,'_wpas_skip_8363136','1'),(6105,204,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482462347;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:160;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:41;}}}}'),(6106,214,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484948446;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:213;}i:1;a:1:{s:2:\"id\";i:36;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6107,306,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483404891;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:50;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:92;}}}}'),(6108,101,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482519795;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:998;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1026;}}}}'),(6109,283,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483857042;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(6110,142,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483404818;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:51;}i:1;a:1:{s:2:\"id\";i:53;}i:2;a:1:{s:2:\"id\";i:29;}}}}'),(6114,770,'_edit_last','1'),(6112,134,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485130736;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:894;}i:1;a:1:{s:2:\"id\";i:761;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6115,770,'_edit_lock','1419005379:1'),(6116,770,'_wpas_done_all','1'),(6124,770,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484666480;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:15;}i:1;a:1:{s:2:\"id\";i:680;}i:2;a:1:{s:2:\"id\";i:17;}}}}'),(6119,770,'_use_impact','no'),(6120,770,'_impact_noindex','index'),(6121,770,'_impact_nofollow','follow'),(6122,770,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6123,770,'_publicize_twitter_user','@SavorMyWords'),(6126,770,'dsq_thread_id','3340427265'),(6127,773,'_edit_last','1'),(6128,773,'_edit_lock','1419014128:1'),(6129,773,'_wpas_done_all','1'),(6140,773,'dsq_thread_id','3340962131'),(6132,773,'_use_impact','no'),(6133,773,'_impact_noindex','index'),(6134,773,'_impact_nofollow','follow'),(6135,773,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6136,773,'_wpas_mess','I Shall Love You #Poetry #POEM #NOLA #poems #MonicaRenata'),(6137,773,'_publicize_twitter_user','@SavorMyWords'),(6138,773,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484679889;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:974;}i:1;a:1:{s:2:\"id\";i:1064;}i:2;a:1:{s:2:\"id\";i:1044;}}}}'),(6153,259,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481248712;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:312;}i:1;a:1:{s:2:\"id\";i:121;}i:2;a:1:{s:2:\"id\";i:75;}}}}'),(6161,123,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485645463;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:214;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(6162,126,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481597816;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:1150;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6163,171,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477606747;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:163;}i:1;a:1:{s:2:\"id\";i:126;}i:2;a:1:{s:2:\"id\";i:288;}}}}'),(6165,168,'dsq_thread_id','3349066943'),(6178,776,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484667534;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:35;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:216;}}}}'),(6258,264,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485075512;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:214;}i:2;a:1:{s:2:\"id\";i:131;}}}}'),(6175,776,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6176,776,'_wpas_mess','The Mind is A Beautiful Thing #Poetry #Poem #MonicaRenata #NOLA #Share'),(6177,776,'_publicize_twitter_user','@SavorMyWords'),(6179,189,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482768897;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:289;}i:1;a:1:{s:2:\"id\";i:33;}i:2;a:1:{s:2:\"id\";i:18;}}}}'),(6181,776,'dsq_thread_id','3350113635'),(6184,102,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483272602;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:120;}i:1;a:1:{s:2:\"id\";i:199;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6185,346,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484914294;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:228;}i:1;a:1:{s:2:\"id\";i:1127;}i:2;a:1:{s:2:\"id\";i:686;}}}}'),(6193,310,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481321633;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1127;}i:1;a:1:{s:2:\"id\";i:295;}i:2;a:1:{s:2:\"id\";i:652;}}}}'),(6194,194,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483334461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:298;}i:1;a:1:{s:2:\"id\";i:316;}i:2;a:1:{s:2:\"id\";i:130;}}}}'),(6195,203,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482780425;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1399;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(6196,157,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483242995;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:752;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(6197,81,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484905310;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:87;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6204,256,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482460009;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:86;}i:1;a:1:{s:2:\"id\";i:141;}i:2;a:1:{s:2:\"id\";i:6;}}}}'),(6201,763,'_wpas_skip_9306599','1'),(6202,763,'_wpas_skip_9626447','1'),(6203,763,'_wpas_skip_8363136','1'),(6205,779,'_edit_last','1'),(6206,779,'_edit_lock','1419799729:1'),(6207,779,'_wpas_done_all','1'),(6216,781,'_edit_lock','1419800360:1'),(6215,781,'_edit_last','1'),(6210,779,'_use_impact','no'),(6211,779,'_impact_noindex','index'),(6212,779,'_impact_nofollow','follow'),(6213,779,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6214,779,'_publicize_twitter_user','@SavorMyWords'),(6217,781,'_wpas_done_all','1'),(6226,783,'_edit_lock','1419800834:1'),(6225,783,'_edit_last','1'),(6220,781,'_use_impact','no'),(6221,781,'_impact_noindex','index'),(6222,781,'_impact_nofollow','follow'),(6223,781,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6224,781,'_publicize_twitter_user','@SavorMyWords'),(6227,783,'_wpas_done_all','1'),(6235,783,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485027272;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6230,783,'_use_impact','no'),(6231,783,'_impact_noindex','index'),(6232,783,'_impact_nofollow','follow'),(6233,783,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6234,783,'_publicize_twitter_user','@SavorMyWords'),(6236,785,'_edit_last','1'),(6237,785,'_edit_lock','1419990477:1'),(6238,785,'_wpas_done_all','1'),(6246,785,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484587253;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1146;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:130;}}}}'),(6241,785,'_use_impact','no'),(6242,785,'_impact_noindex','index'),(6243,785,'_impact_nofollow','follow'),(6244,785,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6245,785,'_publicize_twitter_user','@SavorMyWords'),(6247,779,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485458017;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:990;}i:1;a:1:{s:2:\"id\";i:214;}i:2;a:1:{s:2:\"id\";i:282;}}}}'),(6248,781,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484657256;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:160;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:239;}}}}'),(6250,783,'dsq_thread_id','3368301263'),(6252,785,'dsq_thread_id','3368637970'),(6256,151,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486075755;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:208;}i:1;a:1:{s:2:\"id\";i:36;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(6257,76,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482637484;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:35;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(6259,245,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483374790;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:785;}i:1;a:1:{s:2:\"id\";i:713;}i:2;a:1:{s:2:\"id\";i:202;}}}}'),(6260,788,'_edit_last','1'),(6261,788,'_edit_lock','1419989610:1'),(6262,788,'_wpas_done_all','1'),(6270,788,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484358300;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:100;}}}}'),(6265,788,'_use_impact','no'),(6266,788,'_impact_noindex','index'),(6267,788,'_impact_nofollow','follow'),(6268,788,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6269,788,'_publicize_twitter_user','@SavorMyWords'),(6272,788,'dsq_thread_id','3375386486'),(6281,39,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483243894;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:46;}}}}'),(6276,785,'_wpas_skip_9306599','1'),(6277,785,'_wpas_skip_9626447','1'),(6278,785,'_wpas_skip_8363136','1'),(6282,791,'_edit_last','1'),(6283,791,'_edit_lock','1419992368:1'),(6284,791,'_wpas_done_all','1'),(6292,791,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483681853;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6287,791,'_use_impact','no'),(6288,791,'_impact_noindex','index'),(6289,791,'_impact_nofollow','follow'),(6290,791,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6291,791,'_publicize_twitter_user','@SavorMyWords'),(6294,791,'dsq_thread_id','3375523496'),(6299,124,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482660783;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:688;}i:1;a:1:{s:2:\"id\";i:1286;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(6305,269,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485750122;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:83;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:220;}}}}'),(6306,267,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482897477;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:688;}i:1;a:1:{s:2:\"id\";i:816;}i:2;a:1:{s:2:\"id\";i:795;}}}}'),(6307,69,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485503589;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:31;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(6311,119,'dsq_thread_id','3383191182'),(6312,793,'_edit_last','1'),(6313,793,'_edit_lock','1420220945:1'),(6314,793,'_wpas_done_all','1'),(6323,795,'_edit_lock','1481940671:1'),(6322,795,'_edit_last','1'),(6425,253,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478544908;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:225;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:45;}}}}'),(6320,793,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6321,793,'_publicize_twitter_user','@SavorMyWords'),(6324,795,'_wpas_done_all','1'),(6332,793,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484346103;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6327,795,'_use_impact','no'),(6328,795,'_impact_noindex','index'),(6329,795,'_impact_nofollow','follow'),(6330,795,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6331,795,'_publicize_twitter_user','@SavorMyWords'),(6335,277,'dsq_thread_id','3384644521'),(6336,795,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485989819;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(6339,106,'dsq_thread_id','3384673602'),(6338,107,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482363103;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:94;}i:1;a:1:{s:2:\"id\";i:13;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(6340,229,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483404956;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:328;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:890;}}}}'),(6341,112,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476580134;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:203;}i:1;a:1:{s:2:\"id\";i:89;}i:2;a:1:{s:2:\"id\";i:263;}}}}'),(6343,795,'dsq_thread_id','3386941710'),(6345,793,'dsq_thread_id','3387179751'),(6347,228,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482515589;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(6352,201,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485893131;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:97;}i:2;a:1:{s:2:\"id\";i:1233;}}}}'),(6353,327,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485075599;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:96;}i:1;a:1:{s:2:\"id\";i:309;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6354,58,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485450328;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:15;}}}}'),(6357,131,'dsq_thread_id','3392289577'),(6358,798,'_edit_last','1'),(6359,798,'_edit_lock','1421155362:1'),(6360,798,'_use_impact','no'),(6361,798,'_impact_noindex','index'),(6362,798,'_impact_nofollow','follow'),(6363,798,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6364,798,'_publicize_twitter_user','@SavorMyWords'),(6365,798,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485156556;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:229;}i:1;a:1:{s:2:\"id\";i:646;}i:2;a:1:{s:2:\"id\";i:36;}}}}'),(6366,798,'_wpas_done_all','1'),(6369,798,'_wpas_mess','Just a Thought #NewPoem #NOLA #MonicaRenata #poetry #poem #blackauthors'),(6370,801,'_edit_last','1'),(6371,801,'_edit_lock','1420488198:1'),(6372,801,'_wpas_done_all','1'),(6383,801,'_wpas_skip_9306599','1'),(6375,801,'_use_impact','no'),(6376,801,'_impact_noindex','index'),(6377,801,'_impact_nofollow','follow'),(6378,801,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6379,801,'_wpas_mess','Case of the Don\'t Wants #NewPoem #NOLA #MonicaRenata #poetry #poem #blackauthors'),(6380,801,'_publicize_twitter_user','@SavorMyWords'),(6384,801,'_wpas_skip_9626447','1'),(6385,801,'_wpas_skip_8363136','1'),(6386,801,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483966101;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:97;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(6388,801,'dsq_thread_id','3393410882'),(6389,159,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485600968;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:113;}i:2;a:1:{s:2:\"id\";i:197;}}}}'),(6390,804,'_edit_last','1'),(6391,804,'_edit_lock','1420551518:1'),(6392,804,'_wpas_done_all','1'),(6401,804,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475207831;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:646;}i:1;a:1:{s:2:\"id\";i:42;}i:2;a:1:{s:2:\"id\";i:221;}}}}'),(6527,821,'_wpas_done_all','1'),(6526,821,'_edit_lock','1421726950:1'),(6525,821,'_edit_last','1'),(6398,804,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6399,804,'_wpas_mess','Better Days Are Coming #poem #NOLA #MonicaRenata #poetry #inspiration'),(6400,804,'_publicize_twitter_user','@SavorMyWords'),(6410,798,'dsq_thread_id','3395399804'),(6404,804,'_wpas_skip_9306599','1'),(6405,804,'_wpas_skip_9626447','1'),(6406,804,'_wpas_skip_8363136','1'),(6409,804,'dsq_thread_id','3395393153'),(6414,146,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481153340;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1022;}i:1;a:1:{s:2:\"id\";i:66;}i:2;a:1:{s:2:\"id\";i:17;}}}}'),(6415,328,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482517285;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1281;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(6417,96,'dsq_thread_id','3396951743'),(6418,225,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482393493;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:135;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(6419,41,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481249128;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:28;}i:1;a:1:{s:2:\"id\";i:16;}i:2;a:1:{s:2:\"id\";i:71;}}}}'),(6420,286,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484444392;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:296;}i:1;a:1:{s:2:\"id\";i:199;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6426,808,'_edit_last','1'),(6427,808,'_edit_lock','1421155463:1'),(6428,808,'_wpas_done_all','1'),(6437,808,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483793407;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:41;}i:2;a:1:{s:2:\"id\";i:791;}}}}'),(6431,808,'_use_impact','no'),(6432,808,'_impact_noindex','index'),(6433,808,'_impact_nofollow','follow'),(6434,808,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6435,808,'_wpas_mess','I Miss You So #MonicaRenata #poem #poetry #NolaPoets #Love'),(6436,808,'_publicize_twitter_user','@SavorMyWords'),(6439,808,'dsq_thread_id','3406340753'),(6441,339,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481150135;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:652;}i:1;a:1:{s:2:\"id\";i:1041;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6442,193,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482897495;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:18;}}}}'),(6443,136,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484430459;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:37;}}}}'),(6444,305,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482459353;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(6445,243,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479372181;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:87;}}}}'),(6446,213,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483317825;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1029;}i:1;a:1:{s:2:\"id\";i:236;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(6447,187,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482897392;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:123;}i:1;a:1:{s:2:\"id\";i:308;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6448,137,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482897434;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:310;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:299;}}}}'),(6450,62,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482708703;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:44;}i:1;a:1:{s:2:\"id\";i:173;}i:2;a:1:{s:2:\"id\";i:1317;}}}}'),(6462,813,'_edit_lock','1421155798:1'),(6453,798,'_wpas_skip_9306599','1'),(6454,798,'_wpas_skip_9626447','1'),(6455,798,'_wpas_skip_8363136','1'),(6461,813,'_edit_last','1'),(6463,813,'_wpas_done_all','1'),(6471,813,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482461224;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1266;}i:1;a:1:{s:2:\"id\";i:131;}i:2;a:1:{s:2:\"id\";i:311;}}}}'),(6466,813,'_use_impact','no'),(6467,813,'_impact_noindex','index'),(6468,813,'_impact_nofollow','follow'),(6469,813,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6470,813,'_publicize_twitter_user','@SavorMyWords'),(6478,813,'dsq_thread_id','3416757040'),(6474,813,'_wpas_skip_9306599','1'),(6475,813,'_wpas_skip_9626447','1'),(6476,813,'_wpas_skip_8363136','1'),(6486,166,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485395453;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(6489,107,'dsq_thread_id','3420803898'),(6488,281,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482897406;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:191;}i:1;a:1:{s:2:\"id\";i:10;}i:2;a:1:{s:2:\"id\";i:119;}}}}'),(6491,114,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483353903;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:66;}i:1;a:1:{s:2:\"id\";i:258;}i:2;a:1:{s:2:\"id\";i:237;}}}}'),(6493,816,'_edit_last','1'),(6494,816,'_edit_lock','1421354493:1'),(6495,816,'_wpas_done_all','1'),(6504,816,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1464501857;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6498,816,'_use_impact','no'),(6499,816,'_impact_noindex','index'),(6500,816,'_impact_nofollow','follow'),(6501,816,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6502,816,'_wpas_mess','Is This Love?... Was in the writing mood #poetry #poem #situationships'),(6503,816,'_publicize_twitter_user','@SavorMyWords'),(6506,816,'dsq_thread_id','3423704034'),(6508,818,'_edit_last','1'),(6509,818,'_edit_lock','1421355244:1'),(6510,818,'_wpas_done_all','1'),(6519,818,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1474272925;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1026;}i:1;a:1:{s:2:\"id\";i:859;}i:2;a:1:{s:2:\"id\";i:81;}}}}'),(6513,818,'_use_impact','no'),(6514,818,'_impact_noindex','index'),(6515,818,'_impact_nofollow','follow'),(6516,818,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6517,818,'_wpas_mess','Flesh .... I feel like writing today :) #MonicaRenata #Love #Flesh'),(6518,818,'_publicize_twitter_user','@SavorMyWords'),(6522,818,'dsq_thread_id','3424815651'),(6537,823,'_edit_lock','1421559975:1'),(6536,823,'_edit_last','1'),(6530,821,'_use_impact','no'),(6531,821,'_impact_noindex','index'),(6532,821,'_impact_nofollow','follow'),(6533,821,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6534,821,'_wpas_mess','Just BE #MonicaRenata #poetry #poems #NOLA'),(6535,821,'_publicize_twitter_user','@SavorMyWords'),(6538,823,'_wpas_done_all','1'),(6548,825,'_edit_lock','1421479192:1'),(6547,825,'_edit_last','1'),(6541,823,'_use_impact','no'),(6542,823,'_impact_noindex','index'),(6543,823,'_impact_nofollow','follow'),(6544,823,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6545,823,'_wpas_mess','Baby Count Your Blessings #MonicaRenata #Poetry #Share #NOLA #GoodReads'),(6546,823,'_publicize_twitter_user','@SavorMyWords'),(6549,825,'_wpas_done_all','1'),(6559,827,'_edit_lock','1421478979:1'),(6558,827,'_edit_last','1'),(6552,825,'_use_impact','no'),(6553,825,'_impact_noindex','index'),(6554,825,'_impact_nofollow','follow'),(6555,825,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6556,825,'_wpas_mess','Hello #MonicaRenata #poetry #Happy #Hello'),(6557,825,'_publicize_twitter_user','@SavorMyWords'),(6560,827,'_wpas_done_all','1'),(6569,823,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480367461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:720;}i:1;a:1:{s:2:\"id\";i:872;}i:2;a:1:{s:2:\"id\";i:1024;}}}}'),(6563,827,'_use_impact','no'),(6564,827,'_impact_noindex','index'),(6565,827,'_impact_nofollow','follow'),(6566,827,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6567,827,'_wpas_mess','White Picket Fence Family #MonicaRenata #NOLA #Poetry #Family'),(6568,827,'_publicize_twitter_user','@SavorMyWords'),(6570,827,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483547662;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:180;}i:2;a:1:{s:2:\"id\";i:268;}}}}'),(6571,825,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483353859;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:349;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:312;}}}}'),(6574,827,'dsq_thread_id','3426983764'),(6580,825,'dsq_thread_id','3427055887'),(6576,821,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482678157;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:238;}i:2;a:1:{s:2:\"id\";i:879;}}}}'),(6579,823,'dsq_thread_id','3427054288'),(6584,825,'_wpas_skip_9306599','1'),(6585,825,'_wpas_skip_9626447','1'),(6586,825,'_wpas_skip_8363136','1'),(6587,261,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482751963;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:798;}}}}'),(6601,832,'_edit_last','1'),(6592,821,'dsq_thread_id','3427051261'),(6600,273,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483189494;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:123;}i:1;a:1:{s:2:\"id\";i:222;}i:2;a:1:{s:2:\"id\";i:283;}}}}'),(6596,823,'_wpas_skip_9306599','1'),(6597,823,'_wpas_skip_9626447','1'),(6598,823,'_wpas_skip_8363136','1'),(6602,832,'_edit_lock','1421764441:1'),(6603,832,'_wpas_done_all','1'),(6611,99,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483888925;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(6606,832,'_use_impact','no'),(6607,832,'_impact_noindex','index'),(6608,832,'_impact_nofollow','follow'),(6609,832,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6610,832,'_publicize_twitter_user','@SavorMyWords'),(6612,832,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1470345137;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:904;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(6614,832,'dsq_thread_id','3431653923'),(6617,178,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483641409;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:199;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:115;}}}}'),(6618,38,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481670077;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:28;}i:1;a:1:{s:2:\"id\";i:1039;}i:2;a:1:{s:2:\"id\";i:1015;}}}}'),(6620,222,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481239142;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:192;}}}}'),(6627,835,'_edit_lock','1421764303:1'),(6626,835,'_edit_last','1'),(6623,821,'_wpas_skip_9306599','1'),(6624,821,'_wpas_skip_9626447','1'),(6625,821,'_wpas_skip_8363136','1'),(6628,835,'_wpas_done_all','1'),(6636,835,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485104368;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:20;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(6631,835,'_use_impact','no'),(6632,835,'_impact_noindex','index'),(6633,835,'_impact_nofollow','follow'),(6634,835,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6635,835,'_publicize_twitter_user','@SavorMyWords'),(6643,839,'_edit_lock','1421765303:1'),(6642,839,'_edit_last','1'),(6639,832,'_wpas_skip_9306599','1'),(6640,832,'_wpas_skip_9626447','1'),(6641,832,'_wpas_skip_8363136','1'),(6644,839,'_wpas_done_all','1'),(6652,839,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485457731;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:298;}i:1;a:1:{s:2:\"id\";i:863;}i:2;a:1:{s:2:\"id\";i:47;}}}}'),(6647,839,'_use_impact','no'),(6648,839,'_impact_noindex','index'),(6649,839,'_impact_nofollow','follow'),(6650,839,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6651,839,'_publicize_twitter_user','@SavorMyWords'),(6654,839,'dsq_thread_id','3438329753'),(6656,841,'_edit_last','1'),(6657,841,'_edit_lock','1421782264:1'),(6658,841,'_wpas_done_all','1'),(6667,843,'_edit_lock','1421782494:1'),(6666,843,'_edit_last','1'),(6743,348,'_edit_lock','1422240127:1'),(6664,841,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6665,841,'_publicize_twitter_user','@SavorMyWords'),(6668,843,'_wpas_done_all','1'),(6677,845,'_edit_lock','1421783045:1'),(6676,845,'_edit_last','1'),(6671,843,'_use_impact','no'),(6672,843,'_impact_noindex','index'),(6673,843,'_impact_nofollow','follow'),(6674,843,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6675,843,'_publicize_twitter_user','@SavorMyWords'),(6678,845,'_wpas_done_all','1'),(6687,847,'_edit_lock','1421784182:1'),(6686,847,'_edit_last','1'),(6681,845,'_use_impact','no'),(6682,845,'_impact_noindex','index'),(6683,845,'_impact_nofollow','follow'),(6684,845,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6685,845,'_publicize_twitter_user','@SavorMyWords'),(6697,847,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484913044;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1018;}i:1;a:1:{s:2:\"id\";i:1012;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(6689,847,'_wpas_done_all','1'),(6692,847,'_use_impact','no'),(6693,847,'_impact_noindex','index'),(6694,847,'_impact_nofollow','follow'),(6695,847,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6696,847,'_publicize_twitter_user','@SavorMyWords'),(6699,847,'dsq_thread_id','3439371711'),(6700,845,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484729731;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:795;}i:1;a:1:{s:2:\"id\";i:785;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6701,115,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481772227;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:131;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:67;}}}}'),(6703,845,'dsq_thread_id','3439563441'),(6705,843,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484652164;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:145;}i:1;a:1:{s:2:\"id\";i:643;}i:2;a:1:{s:2:\"id\";i:88;}}}}'),(6718,60,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484998248;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:57;}i:1;a:1:{s:2:\"id\";i:292;}i:2;a:1:{s:2:\"id\";i:1406;}}}}'),(6708,135,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484504496;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:131;}i:2;a:1:{s:2:\"id\";i:195;}}}}'),(6709,132,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475915759;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:131;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(6711,208,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484428464;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1010;}i:1;a:1:{s:2:\"id\";i:121;}i:2;a:1:{s:2:\"id\";i:801;}}}}'),(6716,208,'dsq_thread_id','3440371215'),(6715,132,'dsq_thread_id','3440370513'),(6719,850,'_edit_last','1'),(6720,850,'_edit_lock','1421868251:1'),(6721,850,'_wpas_done_all','1'),(6729,850,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485481455;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:728;}i:2;a:1:{s:2:\"id\";i:686;}}}}'),(6724,850,'_use_impact','no'),(6725,850,'_impact_noindex','index'),(6726,850,'_impact_nofollow','follow'),(6727,850,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6728,850,'_publicize_twitter_user','@SavorMyWords'),(6732,850,'_wpas_skip_9306599','1'),(6733,850,'_wpas_skip_9626447','1'),(6734,850,'_wpas_skip_8363136','1'),(6739,841,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485422170;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:143;}i:1;a:1:{s:2:\"id\";i:945;}i:2;a:1:{s:2:\"id\";i:229;}}}}'),(6741,86,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485973587;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:141;}i:1;a:1:{s:2:\"id\";i:51;}i:2;a:1:{s:2:\"id\";i:29;}}}}'),(6742,294,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482391658;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(6761,857,'_wpas_done_all','1'),(6760,857,'_edit_lock','1422290806:1'),(6759,857,'_edit_last','1'),(6748,344,'_edit_lock','1422241871:1'),(6749,344,'_edit_last','1'),(6752,344,'_use_impact','no'),(6753,344,'_impact_noindex','index'),(6754,344,'_impact_nofollow','follow'),(6755,344,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6756,344,'_wpas_skip_9306599','1'),(6757,344,'_wpas_skip_9626447','1'),(6758,344,'_wpas_skip_8363136','1'),(6770,857,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484650450;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:985;}i:1;a:1:{s:2:\"id\";i:998;}i:2;a:1:{s:2:\"id\";i:328;}}}}'),(6880,872,'_wpas_done_all','1'),(6879,872,'_edit_lock','1422967261:1'),(6878,872,'_edit_last','1'),(6767,857,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6768,857,'_wpas_mess','Irresistible By @Monica_Renata #MonicaRenata #Love #poetry #poem #NOLA #Share'),(6769,857,'_publicize_twitter_user','@SavorMyWords'),(6771,859,'_edit_last','1'),(6772,859,'_edit_lock','1422293046:1'),(6773,859,'_wpas_done_all','1'),(6781,859,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484654121;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1127;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:329;}}}}'),(6776,859,'_use_impact','no'),(6777,859,'_impact_noindex','index'),(6778,859,'_impact_nofollow','follow'),(6779,859,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6780,859,'_publicize_twitter_user','@SavorMyWords'),(6783,859,'dsq_thread_id','3457201918'),(6784,861,'_edit_last','1'),(6785,861,'_edit_lock','1422293579:1'),(6786,861,'_wpas_done_all','1'),(6794,861,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481541521;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:201;}}}}'),(6789,861,'_use_impact','no'),(6790,861,'_impact_noindex','index'),(6791,861,'_impact_nofollow','follow'),(6792,861,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6793,861,'_publicize_twitter_user','@SavorMyWords'),(6797,861,'dsq_thread_id','3458065943'),(6798,857,'dsq_thread_id','3457162507'),(6802,336,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481248770;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:17;}i:1;a:1:{s:2:\"id\";i:193;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(6803,863,'_edit_last','1'),(6804,863,'_edit_lock','1422472926:1'),(6805,863,'_wpas_done_all','1'),(6808,863,'_use_impact','no'),(6809,863,'_impact_noindex','index'),(6810,863,'_impact_nofollow','follow'),(6811,863,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6812,863,'_publicize_twitter_user','@SavorMyWords'),(6818,257,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483372856;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:320;}}}}'),(6815,863,'_wpas_skip_9306599','1'),(6816,863,'_wpas_skip_9626447','1'),(6817,863,'_wpas_skip_8363136','1'),(6819,863,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484672846;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:164;}i:1;a:1:{s:2:\"id\";i:839;}i:2;a:1:{s:2:\"id\";i:1048;}}}}'),(6821,863,'dsq_thread_id','3464958393'),(6822,129,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481312189;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:49;}i:1;a:1:{s:2:\"id\";i:121;}i:2;a:1:{s:2:\"id\";i:259;}}}}'),(6826,179,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484666222;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:214;}i:1;a:1:{s:2:\"id\";i:706;}i:2;a:1:{s:2:\"id\";i:983;}}}}'),(6827,100,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483737089;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:894;}}}}'),(6828,181,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482728496;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:788;}i:1;a:1:{s:2:\"id\";i:28;}i:2;a:1:{s:2:\"id\";i:74;}}}}'),(6829,176,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481270116;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:172;}i:2;a:1:{s:2:\"id\";i:243;}}}}'),(6830,160,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482456028;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:239;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(6831,117,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480235290;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1271;}i:1;a:1:{s:2:\"id\";i:83;}i:2;a:1:{s:2:\"id\";i:248;}}}}'),(6832,247,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485281964;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:214;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6833,138,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482459443;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:11;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(6834,200,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484950099;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:816;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(6835,191,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483082171;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:195;}i:2;a:1:{s:2:\"id\";i:231;}}}}'),(6836,196,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484173606;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:130;}}}}'),(6837,120,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479539671;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:102;}i:1;a:1:{s:2:\"id\";i:9;}i:2;a:1:{s:2:\"id\";i:1293;}}}}'),(6838,46,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484355576;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:773;}}}}'),(6839,42,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480836841;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:26;}i:1;a:1:{s:2:\"id\";i:212;}i:2;a:1:{s:2:\"id\";i:30;}}}}'),(6840,282,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480963209;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:67;}i:1;a:1:{s:2:\"id\";i:296;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(6841,197,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483354151;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:147;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(6842,167,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480646548;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:192;}}}}'),(6843,40,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484097798;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:706;}i:1;a:1:{s:2:\"id\";i:317;}i:2;a:1:{s:2:\"id\";i:46;}}}}'),(6844,108,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484383415;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:36;}i:2;a:1:{s:2:\"id\";i:783;}}}}'),(6845,48,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482460059;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:27;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:31;}}}}'),(6846,276,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483398898;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:225;}i:1;a:1:{s:2:\"id\";i:1048;}i:2;a:1:{s:2:\"id\";i:283;}}}}'),(6847,297,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485462138;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(6848,111,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484590826;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:213;}i:2;a:1:{s:2:\"id\";i:1238;}}}}'),(6849,109,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478713065;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:208;}i:1;a:1:{s:2:\"id\";i:1037;}i:2;a:1:{s:2:\"id\";i:310;}}}}'),(6850,186,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483878446;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:785;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:255;}}}}'),(6851,246,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482771977;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:199;}i:1;a:1:{s:2:\"id\";i:630;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6852,301,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480777087;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1055;}i:1;a:1:{s:2:\"id\";i:172;}i:2;a:1:{s:2:\"id\";i:105;}}}}'),(10569,1347,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10568,1347,'_publicize_twitter_user','@SavorMyWords'),(6853,87,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476101135;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:50;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(6854,308,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482515338;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(6855,35,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482633671;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:236;}i:1;a:1:{s:2:\"id\";i:211;}i:2;a:1:{s:2:\"id\";i:213;}}}}'),(6856,224,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516688;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:247;}i:2;a:1:{s:2:\"id\";i:32;}}}}'),(6857,265,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484387630;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1243;}i:1;a:1:{s:2:\"id\";i:788;}i:2;a:1:{s:2:\"id\";i:158;}}}}'),(6858,272,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484980088;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:25;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:67;}}}}'),(6859,263,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482608220;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:630;}}}}'),(6860,94,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484427707;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:225;}i:1;a:1:{s:2:\"id\";i:22;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(10729,1388,'_wpas_done_all','1'),(6861,300,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482453878;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:126;}i:1;a:1:{s:2:\"id\";i:87;}i:2;a:1:{s:2:\"id\";i:45;}}}}'),(6862,218,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483447754;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1226;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(6863,311,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480402084;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1288;}i:2;a:1:{s:2:\"id\";i:1055;}}}}'),(6864,868,'_edit_last','1'),(6865,868,'_edit_lock','1422886724:1'),(6866,868,'_wpas_done_all','1'),(6874,868,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484485649;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:1273;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(6869,868,'_use_impact','no'),(6870,868,'_impact_noindex','index'),(6871,868,'_impact_nofollow','follow'),(6872,868,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6873,868,'_publicize_twitter_user','@SavorMyWords'),(6876,868,'dsq_thread_id','3478693680'),(6888,872,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484379856;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:49;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(6883,872,'_use_impact','no'),(6884,872,'_impact_noindex','index'),(6885,872,'_impact_nofollow','follow'),(6886,872,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6887,872,'_publicize_twitter_user','@SavorMyWords'),(6889,875,'_edit_last','1'),(6890,875,'_edit_lock','1422968115:1'),(6901,872,'dsq_thread_id','3481249711'),(6892,875,'_wpas_done_all','1'),(6900,875,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483391669;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:208;}i:1;a:1:{s:2:\"id\";i:1010;}i:2;a:1:{s:2:\"id\";i:801;}}}}'),(6895,875,'_use_impact','no'),(6896,875,'_impact_noindex','index'),(6897,875,'_impact_nofollow','follow'),(6898,875,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6899,875,'_publicize_twitter_user','@SavorMyWords'),(6903,875,'dsq_thread_id','3481433548'),(6913,877,'_edit_lock','1422993468:1'),(6912,877,'_edit_last','1'),(6914,877,'_wpas_done_all','1'),(6922,877,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484415234;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:82;}i:1;a:1:{s:2:\"id\";i:6;}i:2;a:1:{s:2:\"id\";i:859;}}}}'),(6917,877,'_use_impact','no'),(6918,877,'_impact_noindex','index'),(6919,877,'_impact_nofollow','follow'),(6920,877,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6921,877,'_publicize_twitter_user','@SavorMyWords'),(6924,877,'dsq_thread_id','3483288998'),(6927,84,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480967450;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:139;}i:1;a:1:{s:2:\"id\";i:1150;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(6930,879,'_edit_last','1'),(6931,879,'_edit_lock','1423076288:1'),(6932,879,'_wpas_done_all','1'),(6941,881,'_edit_lock','1423078441:1'),(6940,881,'_edit_last','1'),(6935,879,'_use_impact','no'),(6936,879,'_impact_noindex','index'),(6937,879,'_impact_nofollow','follow'),(6938,879,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6939,879,'_publicize_twitter_user','@SavorMyWords'),(6942,881,'_wpas_done_all','1'),(6956,881,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484680456;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:334;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(6945,881,'_use_impact','no'),(6946,881,'_impact_noindex','index'),(6947,881,'_impact_nofollow','follow'),(6948,881,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6949,881,'_publicize_twitter_user','@SavorMyWords'),(6952,881,'_wpas_skip_9306599','1'),(6953,881,'_wpas_skip_9626447','1'),(6954,881,'_wpas_skip_8363136','1'),(6960,881,'dsq_thread_id','3486028820'),(6958,879,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484482711;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1278;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(6964,879,'dsq_thread_id','3488038958'),(6968,884,'_edit_last','1'),(6969,884,'_edit_lock','1423149380:1'),(6970,884,'_wpas_done_all','1'),(6978,884,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484530723;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:911;}i:1;a:1:{s:2:\"id\";i:1320;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(6973,884,'_use_impact','no'),(6974,884,'_impact_noindex','index'),(6975,884,'_impact_nofollow','follow'),(6976,884,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6977,884,'_publicize_twitter_user','@SavorMyWords'),(6980,884,'dsq_thread_id','3489152201'),(6981,886,'_edit_last','1'),(6982,886,'_edit_lock','1423438712:1'),(6983,886,'_wpas_done_all','1'),(6991,270,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486301039;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:7;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:308;}}}}'),(6986,886,'_use_impact','no'),(6987,886,'_impact_noindex','index'),(6988,886,'_impact_nofollow','follow'),(6989,886,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(6990,886,'_publicize_twitter_user','@SavorMyWords'),(6992,888,'_edit_last','1'),(6993,888,'_edit_lock','1423442282:1'),(6994,888,'_wpas_done_all','1'),(7002,888,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485353252;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:183;}i:1;a:1:{s:2:\"id\";i:1324;}i:2;a:1:{s:2:\"id\";i:237;}}}}'),(6997,888,'_use_impact','no'),(6998,888,'_impact_noindex','index'),(6999,888,'_impact_nofollow','follow'),(7000,888,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7001,888,'_publicize_twitter_user','@SavorMyWords'),(7003,890,'_edit_last','1'),(7004,890,'_edit_lock','1423450996:1'),(7005,890,'_wpas_done_all','1'),(7013,155,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481047870;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:189;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:96;}}}}'),(7008,890,'_use_impact','no'),(7009,890,'_impact_noindex','index'),(7010,890,'_impact_nofollow','follow'),(7011,890,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7012,890,'_publicize_twitter_user','@SavorMyWords'),(7014,886,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482003827;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:67;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(7017,886,'dsq_thread_id','3498106531'),(7018,888,'dsq_thread_id','3498113344'),(7019,890,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483392882;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:261;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:694;}}}}'),(7021,890,'dsq_thread_id','3498122784'),(7028,894,'_oembed_9325a31aa27fbd77689bcb2a4fd4cd93','{{unknown}}'),(7024,890,'_wpas_skip_9306599','1'),(7025,890,'_wpas_skip_9626447','1'),(7026,890,'_wpas_skip_8363136','1'),(7029,894,'_edit_last','1'),(7030,894,'_wpas_done_all','1'),(7039,894,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483400944;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1320;}i:1;a:1:{s:2:\"id\";i:752;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(7033,894,'_use_impact','no'),(7034,894,'_impact_noindex','index'),(7035,894,'_impact_nofollow','follow'),(7036,894,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7037,894,'_publicize_twitter_user','@SavorMyWords'),(7038,894,'_edit_lock','1423486963:1'),(7041,894,'dsq_thread_id','3499327122'),(7042,897,'_edit_last','1'),(7043,897,'_edit_lock','1423497656:1'),(7044,897,'_wpas_done_all','1'),(7052,897,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483698655;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1029;}i:1;a:1:{s:2:\"id\";i:317;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(7127,909,'_wpas_done_all','1'),(7126,909,'_edit_lock','1423672514:1'),(7125,909,'_edit_last','1'),(7050,897,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7051,897,'_publicize_twitter_user','@SavorMyWords'),(7053,899,'_edit_last','1'),(7054,899,'_edit_lock','1423498108:1'),(7055,899,'_wpas_done_all','1'),(7063,899,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485010449;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:845;}i:1;a:1:{s:2:\"id\";i:330;}i:2;a:1:{s:2:\"id\";i:66;}}}}'),(7058,899,'_use_impact','no'),(7059,899,'_impact_noindex','index'),(7060,899,'_impact_nofollow','follow'),(7061,899,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7062,899,'_publicize_twitter_user','@SavorMyWords'),(7064,902,'_edit_last','1'),(7065,902,'_edit_lock','1423504328:1'),(7066,902,'_wpas_done_all','1'),(7074,902,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484677791;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(7069,902,'_use_impact','no'),(7070,902,'_impact_noindex','index'),(7071,902,'_impact_nofollow','follow'),(7072,902,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7073,902,'_publicize_twitter_user','@SavorMyWords'),(7075,904,'_edit_last','1'),(7076,904,'_edit_lock','1423508934:1'),(7077,904,'_wpas_done_all','1'),(7085,904,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484659450;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:1281;}}}}'),(7080,904,'_use_impact','no'),(7081,904,'_impact_noindex','index'),(7082,904,'_impact_nofollow','follow'),(7083,904,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7084,904,'_publicize_twitter_user','@SavorMyWords'),(7087,902,'dsq_thread_id','3500647898'),(7097,897,'dsq_thread_id','3501380953'),(7096,899,'dsq_thread_id','3501377768'),(7095,904,'dsq_thread_id','3500500468'),(7105,906,'_edit_lock','1423577206:1'),(7104,906,'_edit_last','1'),(7106,906,'_wpas_done_all','1'),(7114,906,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485351995;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1399;}}}}'),(7109,906,'_use_impact','no'),(7110,906,'_impact_noindex','index'),(7111,906,'_impact_nofollow','follow'),(7112,906,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7113,906,'_publicize_twitter_user','@SavorMyWords'),(7116,906,'dsq_thread_id','3503058627'),(7122,53,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485218892;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:51;}i:1;a:1:{s:2:\"id\";i:44;}i:2;a:1:{s:2:\"id\";i:47;}}}}'),(7135,909,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484717866;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:145;}i:1;a:1:{s:2:\"id\";i:725;}i:2;a:1:{s:2:\"id\";i:785;}}}}'),(7130,909,'_use_impact','no'),(7131,909,'_impact_noindex','index'),(7132,909,'_impact_nofollow','follow'),(7133,909,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7134,909,'_publicize_twitter_user','@SavorMyWords'),(7136,911,'_edit_last','1'),(7137,911,'_edit_lock','1423681686:1'),(7138,911,'_wpas_done_all','1'),(7152,911,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484610347;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:55;}i:1;a:1:{s:2:\"id\";i:1320;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(7141,911,'_use_impact','no'),(7142,911,'_impact_noindex','index'),(7143,911,'_impact_nofollow','follow'),(7144,911,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7145,911,'_publicize_twitter_user','@SavorMyWords'),(7148,911,'_wpas_skip_9306599','1'),(7149,911,'_wpas_skip_9626447','1'),(7150,911,'_wpas_skip_8363136','1'),(7154,911,'dsq_thread_id','3507111642'),(7156,909,'dsq_thread_id','3507369636'),(7188,914,'_publicize_twitter_user','@SavorMyWords'),(7187,914,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7186,914,'_impact_nofollow','follow'),(7185,914,'_impact_noindex','index'),(7184,914,'_use_impact','no'),(7189,914,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484678738;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:327;}i:1;a:1:{s:2:\"id\";i:1141;}i:2;a:1:{s:2:\"id\";i:255;}}}}'),(7181,914,'_wpas_done_all','1'),(7180,914,'_edit_lock','1423803553:1'),(7179,914,'_edit_last','1'),(7190,916,'_edit_last','1'),(7191,916,'_edit_lock','1423803993:1'),(7192,916,'_wpas_done_all','1'),(7200,145,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1444463884;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:643;}i:1;a:1:{s:2:\"id\";i:157;}i:2;a:1:{s:2:\"id\";i:63;}}}}'),(7195,916,'_use_impact','no'),(7196,916,'_impact_noindex','index'),(7197,916,'_impact_nofollow','follow'),(7198,916,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7199,916,'_publicize_twitter_user','@SavorMyWords'),(7202,33,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483856367;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:189;}i:1;a:1:{s:2:\"id\";i:680;}i:2;a:1:{s:2:\"id\";i:29;}}}}'),(7204,243,'dsq_thread_id','3511529017'),(7207,313,'dsq_thread_id','3511571030'),(7208,916,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485489407;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:107;}i:1;a:1:{s:2:\"id\";i:22;}i:2;a:1:{s:2:\"id\";i:230;}}}}'),(7211,916,'dsq_thread_id','3512331059'),(7212,914,'dsq_thread_id','3512333297'),(7213,918,'_edit_last','1'),(7214,918,'_edit_lock','1423834789:1'),(7215,918,'_wpas_done_all','1'),(7223,918,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484681653;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:192;}}}}'),(7218,918,'_use_impact','no'),(7219,918,'_impact_noindex','index'),(7220,918,'_impact_nofollow','follow'),(7221,918,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7222,918,'_publicize_twitter_user','@SavorMyWords'),(7226,918,'dsq_thread_id','3512555829'),(7227,920,'_edit_last','1'),(7228,920,'_edit_lock','1423839850:1'),(7229,920,'_wpas_done_all','1'),(7237,920,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484592530;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1039;}i:1;a:1:{s:2:\"id\";i:55;}i:2;a:1:{s:2:\"id\";i:210;}}}}'),(7232,920,'_use_impact','no'),(7233,920,'_impact_noindex','index'),(7234,920,'_impact_nofollow','follow'),(7235,920,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7236,920,'_publicize_twitter_user','@SavorMyWords'),(7239,920,'dsq_thread_id','3512626147'),(7240,923,'_edit_last','1'),(7241,923,'_edit_lock','1423841822:1'),(7242,923,'_wpas_done_all','1'),(7253,925,'_edit_last','1'),(7245,923,'_use_impact','no'),(7246,923,'_impact_noindex','index'),(7247,923,'_impact_nofollow','follow'),(7248,923,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7249,923,'_publicize_twitter_user','@SavorMyWords'),(7251,923,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484543760;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:212;}i:1;a:1:{s:2:\"id\";i:225;}i:2;a:1:{s:2:\"id\";i:1317;}}}}'),(7254,925,'_edit_lock','1423842962:1'),(7255,925,'_wpas_done_all','1'),(7277,925,'dsq_thread_id','3512896538'),(7258,925,'_use_impact','no'),(7259,925,'_impact_noindex','index'),(7260,925,'_impact_nofollow','follow'),(7261,925,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7262,925,'_publicize_twitter_user','@SavorMyWords'),(7264,925,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485218890;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:261;}}}}'),(7266,928,'_edit_last','1'),(7267,928,'_edit_lock','1423843964:1'),(7268,928,'_wpas_done_all','1'),(7278,928,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485413355;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1281;}i:1;a:1:{s:2:\"id\";i:43;}i:2;a:1:{s:2:\"id\";i:1015;}}}}'),(7271,928,'_use_impact','no'),(7272,928,'_impact_noindex','index'),(7273,928,'_impact_nofollow','follow'),(7274,928,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7275,928,'_publicize_twitter_user','@SavorMyWords'),(7280,342,'_edit_lock','1423845260:1'),(7281,342,'_edit_last','1'),(7299,931,'_wpas_done_all','1'),(7284,342,'_use_impact','no'),(7285,342,'_impact_noindex','index'),(7286,342,'_impact_nofollow','follow'),(7287,342,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7288,342,'_wpas_skip_9306599','1'),(7289,342,'_wpas_skip_9626447','1'),(7290,342,'_wpas_skip_8363136','1'),(7298,931,'_edit_lock','1423846479:1'),(7297,931,'_edit_last','1'),(7307,931,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484627038;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:75;}i:1;a:1:{s:2:\"id\";i:911;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(7302,931,'_use_impact','no'),(7303,931,'_impact_noindex','index'),(7304,931,'_impact_nofollow','follow'),(7305,931,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7306,931,'_publicize_twitter_user','@SavorMyWords'),(7309,933,'_edit_last','1'),(7310,933,'_edit_lock','1423849688:1'),(7311,933,'_wpas_done_all','1'),(7319,933,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485763558;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1039;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:788;}}}}'),(7491,949,'_wpas_done_all','1'),(7490,949,'_edit_lock','1424351300:1'),(7489,949,'_edit_last','1'),(7317,933,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7318,933,'_publicize_twitter_user','@SavorMyWords'),(7321,935,'_edit_last','1'),(7322,935,'_edit_lock','1423849824:1'),(7323,935,'_wpas_done_all','1'),(7331,935,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484655741;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:62;}i:1;a:1:{s:2:\"id\";i:173;}i:2;a:1:{s:2:\"id\";i:857;}}}}'),(7326,935,'_use_impact','no'),(7327,935,'_impact_noindex','index'),(7328,935,'_impact_nofollow','follow'),(7329,935,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7330,935,'_publicize_twitter_user','@SavorMyWords'),(7334,935,'_wpas_skip_9306599','1'),(7335,935,'_wpas_skip_9626447','1'),(7336,935,'_wpas_skip_8363136','1'),(7361,325,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516406;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(7376,312,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483290475;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:192;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(7364,323,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484694270;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:1340;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(7399,305,'dsq_thread_id','3516336638'),(7398,306,'dsq_thread_id','3516336301'),(7371,318,'dsq_thread_id','3516326497'),(7397,307,'dsq_thread_id','3516336048'),(7396,308,'dsq_thread_id','3516335837'),(7395,309,'dsq_thread_id','3516335265'),(7394,310,'dsq_thread_id','3516334231'),(7393,311,'dsq_thread_id','3516333834'),(7386,303,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483358194;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:911;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(7388,302,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480778351;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:64;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:312;}}}}'),(7392,312,'dsq_thread_id','3516333366'),(7411,297,'dsq_thread_id','3516341145'),(7400,304,'dsq_thread_id','3516336856'),(7401,303,'dsq_thread_id','3516337452'),(7402,302,'dsq_thread_id','3516337758'),(7403,301,'dsq_thread_id','3516338161'),(7404,298,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485116348;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:301;}}}}'),(7410,298,'dsq_thread_id','3516340764'),(7409,300,'dsq_thread_id','3516340486'),(7412,295,'dsq_thread_id','3516342303'),(7415,931,'dsq_thread_id','3516395453'),(7420,941,'_edit_last','1'),(7421,941,'_edit_lock','1424209946:1'),(7422,941,'_wpas_done_all','1'),(7434,943,'_edit_last','1'),(7425,941,'_use_impact','no'),(7426,941,'_impact_noindex','index'),(7427,941,'_impact_nofollow','follow'),(7428,941,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7429,941,'_publicize_twitter_user','@SavorMyWords'),(7431,941,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484674309;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:879;}i:1;a:1:{s:2:\"id\";i:105;}i:2;a:1:{s:2:\"id\";i:931;}}}}'),(7433,941,'dsq_thread_id','3524949595'),(7435,943,'_edit_lock','1424268073:1'),(7436,943,'_wpas_done_all','1'),(7444,943,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484678024;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:204;}i:1;a:1:{s:2:\"id\";i:184;}i:2;a:1:{s:2:\"id\";i:621;}}}}'),(7439,943,'_use_impact','no'),(7440,943,'_impact_noindex','index'),(7441,943,'_impact_nofollow','follow'),(7442,943,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7443,943,'_publicize_twitter_user','@SavorMyWords'),(7446,943,'dsq_thread_id','3526580952'),(7447,945,'_edit_last','1'),(7448,945,'_edit_lock','1424283164:1'),(7449,945,'_wpas_done_all','1'),(7464,923,'dsq_thread_id','3526769782'),(7452,945,'_use_impact','no'),(7453,945,'_impact_noindex','index'),(7454,945,'_impact_nofollow','follow'),(7455,945,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7456,945,'_publicize_twitter_user','@SavorMyWords'),(7463,933,'dsq_thread_id','3526755120'),(7462,935,'dsq_thread_id','3526754091'),(7476,945,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485254484;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1012;}i:1;a:1:{s:2:\"id\";i:221;}i:2;a:1:{s:2:\"id\";i:1334;}}}}'),(7479,945,'dsq_thread_id','3527162434'),(7482,945,'_wpas_skip_9306599','1'),(7483,945,'_wpas_skip_9626447','1'),(7484,945,'_wpas_skip_8363136','1'),(7499,949,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484387501;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:961;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:301;}}}}'),(7494,949,'_use_impact','no'),(7495,949,'_impact_noindex','index'),(7496,949,'_impact_nofollow','follow'),(7497,949,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7498,949,'_publicize_twitter_user','@SavorMyWords'),(7501,949,'dsq_thread_id','3529599217'),(7502,951,'_edit_last','1'),(7503,951,'_edit_lock','1424357727:1'),(7504,951,'_wpas_done_all','1'),(7513,953,'_edit_lock','1424364271:1'),(7512,953,'_edit_last','1'),(7507,951,'_use_impact','no'),(7508,951,'_impact_noindex','index'),(7509,951,'_impact_nofollow','follow'),(7510,951,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7511,951,'_publicize_twitter_user','@SavorMyWords'),(7514,953,'_wpas_done_all','1'),(7522,951,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697554;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:953;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:320;}}}}'),(7610,241,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483312080;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:212;}i:1;a:1:{s:2:\"id\";i:217;}i:2;a:1:{s:2:\"id\";i:75;}}}}'),(7520,953,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7521,953,'_publicize_twitter_user','@SavorMyWords'),(7525,951,'dsq_thread_id','3529963851'),(7524,953,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475996501;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:195;}i:1;a:1:{s:2:\"id\";i:310;}i:2;a:1:{s:2:\"id\";i:320;}}}}'),(7527,948,'_edit_last','1'),(7528,948,'_publicize_twitter_user','@SavorMyWords'),(7529,948,'_edit_lock','1424364428:1'),(7532,953,'dsq_thread_id','3530253089'),(7533,957,'_edit_last','1'),(7534,957,'_edit_lock','1424439995:1'),(7535,957,'_wpas_done_all','1'),(7543,957,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485026029;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:26;}i:1;a:1:{s:2:\"id\";i:193;}i:2;a:1:{s:2:\"id\";i:336;}}}}'),(7538,957,'_use_impact','no'),(7539,957,'_impact_noindex','index'),(7540,957,'_impact_nofollow','follow'),(7541,957,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7542,957,'_publicize_twitter_user','@SavorMyWords'),(7545,957,'dsq_thread_id','3533292395'),(7546,182,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481326863;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:196;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:147;}}}}'),(7547,141,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482539610;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:86;}i:1;a:1:{s:2:\"id\";i:51;}i:2;a:1:{s:2:\"id\";i:29;}}}}'),(7548,959,'_edit_last','1'),(7549,959,'_edit_lock','1424586810:1'),(7550,959,'_wpas_done_all','1'),(7558,959,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484398644;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:317;}i:1;a:1:{s:2:\"id\";i:923;}i:2;a:1:{s:2:\"id\";i:19;}}}}'),(7553,959,'_use_impact','no'),(7554,959,'_impact_noindex','index'),(7555,959,'_impact_nofollow','follow'),(7556,959,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7557,959,'_publicize_twitter_user','@SavorMyWords'),(7559,170,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468435361;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(7561,959,'dsq_thread_id','3538265840'),(7562,251,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482516723;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:911;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(7563,961,'_edit_last','1'),(7564,961,'_edit_lock','1424699241:1'),(7565,961,'_wpas_done_all','1'),(7573,961,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483697556;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:301;}}}}'),(7690,977,'_wpas_done_all','1'),(7689,977,'_edit_lock','1426254634:1'),(7688,977,'_edit_last','1'),(7571,961,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7572,961,'_publicize_twitter_user','@SavorMyWords'),(7575,961,'dsq_thread_id','3540702360'),(7578,92,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1468511628;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:34;}i:1;a:1:{s:2:\"id\";i:816;}i:2;a:1:{s:2:\"id\";i:1015;}}}}'),(7580,68,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485871491;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:115;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(7581,293,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485008490;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:56;}i:1;a:1:{s:2:\"id\";i:135;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(7583,235,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481985204;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:38;}i:1;a:1:{s:2:\"id\";i:131;}i:2;a:1:{s:2:\"id\";i:241;}}}}'),(7584,963,'_edit_last','1'),(7585,963,'_edit_lock','1425439110:1'),(7586,963,'_wpas_done_all','1'),(7594,963,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484386547;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:720;}i:1;a:1:{s:2:\"id\";i:1296;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(7589,963,'_use_impact','no'),(7590,963,'_impact_noindex','index'),(7591,963,'_impact_nofollow','follow'),(7592,963,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7593,963,'_publicize_twitter_user','@SavorMyWords'),(7596,963,'dsq_thread_id','3550496041'),(7600,258,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477391037;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:688;}i:2;a:1:{s:2:\"id\";i:1064;}}}}'),(7603,268,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485768215;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:67;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(7605,98,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486153636;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:296;}i:2;a:1:{s:2:\"id\";i:310;}}}}'),(7606,188,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482875928;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:73;}i:1;a:1:{s:2:\"id\";i:90;}i:2;a:1:{s:2:\"id\";i:195;}}}}'),(7607,70,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482427218;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:60;}i:1;a:1:{s:2:\"id\";i:27;}i:2;a:1:{s:2:\"id\";i:214;}}}}'),(7608,232,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482099909;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:35;}i:1;a:1:{s:2:\"id\";i:1267;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(7611,65,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481799489;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1335;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:225;}}}}'),(7612,237,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483404871;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:295;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:894;}}}}'),(7624,968,'_use_impact','no'),(7623,968,'_edit_lock','1430158892:1'),(7622,968,'_edit_last','1'),(7625,968,'_impact_noindex','index'),(7626,968,'_impact_nofollow','follow'),(7627,968,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7628,968,'_publicize_twitter_user','@SavorMyWords'),(7629,970,'_edit_last','1'),(7630,970,'_wpas_done_all','1'),(7639,970,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484482061;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:36;}i:1;a:1:{s:2:\"id\";i:225;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(7633,970,'_use_impact','no'),(7634,970,'_impact_noindex','index'),(7635,970,'_impact_nofollow','follow'),(7636,970,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7637,970,'_publicize_twitter_user','@SavorMyWords'),(7638,970,'_edit_lock','1425992157:1'),(7651,972,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478623941;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:320;}i:1;a:1:{s:2:\"id\";i:312;}i:2;a:1:{s:2:\"id\";i:299;}}}}'),(7641,972,'_edit_last','1'),(7642,972,'_wpas_done_all','1'),(7645,972,'_use_impact','no'),(7646,972,'_impact_noindex','index'),(7647,972,'_impact_nofollow','follow'),(7648,972,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7649,972,'_publicize_twitter_user','@SavorMyWords'),(7650,972,'_edit_lock','1426001179:1'),(7653,972,'dsq_thread_id','3583817307'),(7657,974,'_edit_last','1'),(7658,974,'_edit_lock','1426011998:1'),(7659,974,'_wpas_done_all','1'),(7662,974,'_use_impact','no'),(7663,974,'_impact_noindex','index'),(7664,974,'_impact_nofollow','follow'),(7665,974,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7666,974,'_publicize_twitter_user','@SavorMyWords'),(7669,974,'_wpas_skip_9306599','1'),(7670,974,'_wpas_skip_9626447','1'),(7671,974,'_wpas_skip_8363136','1'),(7674,974,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484623619;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:773;}i:1;a:1:{s:2:\"id\";i:1064;}i:2;a:1:{s:2:\"id\";i:260;}}}}'),(7676,974,'dsq_thread_id','3584134948'),(7677,158,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483703379;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:255;}i:1;a:1:{s:2:\"id\";i:130;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(7683,118,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483290463;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:121;}i:1;a:1:{s:2:\"id\";i:80;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(7685,970,'dsq_thread_id','3588827715'),(7699,979,'_edit_lock','1426254962:1'),(7698,979,'_edit_last','1'),(7776,990,'_publicize_twitter_user','@SavorMyWords'),(7775,990,'_edit_last','1'),(7696,977,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7697,977,'_publicize_twitter_user','@SavorMyWords'),(7700,979,'_wpas_done_all','1'),(7708,979,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478022066;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:131;}i:1;a:1:{s:2:\"id\";i:121;}i:2;a:1:{s:2:\"id\";i:1281;}}}}'),(7703,979,'_use_impact','no'),(7704,979,'_impact_noindex','index'),(7705,979,'_impact_nofollow','follow'),(7706,979,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7707,979,'_publicize_twitter_user','@SavorMyWords'),(7717,979,'dsq_thread_id','3592157276'),(7719,983,'_edit_last','1'),(7712,979,'_wpas_skip_9306599','1'),(7713,979,'_wpas_skip_9626447','1'),(7714,979,'_wpas_skip_8363136','1'),(7720,983,'_edit_lock','1426258476:1'),(7721,983,'_wpas_done_all','1'),(7729,983,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482459804;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1160;}i:1;a:1:{s:2:\"id\";i:918;}i:2;a:1:{s:2:\"id\";i:996;}}}}'),(7724,983,'_use_impact','no'),(7725,983,'_impact_noindex','index'),(7726,983,'_impact_nofollow','follow'),(7727,983,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7728,983,'_publicize_twitter_user','@SavorMyWords'),(7731,983,'dsq_thread_id','3592300294'),(7732,977,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484894365;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:25;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:1015;}}}}'),(7734,977,'dsq_thread_id','3592880559'),(7742,985,'_edit_lock','1426618487:1'),(7741,985,'_edit_last','1'),(7743,985,'_wpas_done_all','1'),(7751,985,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483671832;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:808;}i:2;a:1:{s:2:\"id\";i:791;}}}}'),(7746,985,'_use_impact','no'),(7747,985,'_impact_noindex','index'),(7748,985,'_impact_nofollow','follow'),(7749,985,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7750,985,'_publicize_twitter_user','@SavorMyWords'),(7758,985,'dsq_thread_id','3603819409'),(7754,985,'_wpas_skip_9306599','1'),(7755,985,'_wpas_skip_9626447','1'),(7756,985,'_wpas_skip_8363136','1'),(7762,988,'_edit_last','1'),(7763,988,'_edit_lock','1428406203:1'),(7764,988,'_wpas_done_all','1'),(7772,988,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478632354;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:1012;}i:2;a:1:{s:2:\"id\";i:47;}}}}'),(7767,988,'_use_impact','no'),(7768,988,'_impact_noindex','index'),(7769,988,'_impact_nofollow','follow'),(7770,988,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7771,988,'_publicize_twitter_user','@SavorMyWords'),(7774,988,'dsq_thread_id','3606988616'),(7777,990,'_edit_lock','1428380914:1'),(7778,990,'_wpas_done_all','1'),(7786,990,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475211901;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:779;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:1048;}}}}'),(7781,990,'_use_impact','no'),(7782,990,'_impact_noindex','index'),(7783,990,'_impact_nofollow','follow'),(7784,990,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7785,990,'_wpas_mess','I Understand the Lyrics http://wp.me/p4V6mP-fY NEW POEM #Poetry #Poems #MonicaRenata #NOLA #Love #LovePoem #Songs'),(7793,990,'dsq_thread_id','3660791973'),(7789,990,'_wpas_skip_9306599','1'),(7790,990,'_wpas_skip_9626447','1'),(7791,990,'_wpas_skip_8363136','1'),(7794,996,'_edit_last','1'),(7795,996,'_edit_lock','1428412951:1'),(7796,996,'_wpas_done_all','1'),(7805,996,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483859879;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:1029;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(7799,996,'_use_impact','no'),(7800,996,'_impact_noindex','index'),(7801,996,'_impact_nofollow','follow'),(7802,996,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7803,996,'_wpas_mess','You Are #MonicaRenata #Poetry #Poems #NOLA #LifeIsBeautiful'),(7804,996,'_publicize_twitter_user','@SavorMyWords'),(7806,998,'_edit_last','1'),(7807,998,'_edit_lock','1428413124:1'),(7808,998,'_wpas_done_all','1'),(7817,998,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485746512;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1273;}i:1;a:1:{s:2:\"id\";i:101;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(7811,998,'_use_impact','no'),(7812,998,'_impact_noindex','index'),(7813,998,'_impact_nofollow','follow'),(7814,998,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7815,998,'_wpas_mess','If You Want Me #MonicaRenata #Poetry #Love #Infatuation #JustWriting'),(7816,998,'_publicize_twitter_user','@SavorMyWords'),(7819,998,'dsq_thread_id','3661949379'),(7824,996,'dsq_thread_id','3663036497'),(7828,1001,'_edit_last','1'),(7829,1001,'_edit_lock','1428584958:1'),(7830,1001,'_wpas_done_all','1'),(7838,1001,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483875349;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:25;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:816;}}}}'),(7833,1001,'_use_impact','no'),(7834,1001,'_impact_noindex','index'),(7835,1001,'_impact_nofollow','follow'),(7836,1001,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7837,1001,'_publicize_twitter_user','@SavorMyWords'),(7839,1003,'_edit_last','1'),(7840,1003,'_edit_lock','1428592385:1'),(7841,1003,'_wpas_done_all','1'),(7849,1003,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478468562;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:126;}i:2;a:1:{s:2:\"id\";i:1075;}}}}'),(7918,1015,'_wpas_done_all','1'),(7917,1015,'_edit_last','1'),(7847,1003,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7848,1003,'_publicize_twitter_user','@SavorMyWords'),(7850,1005,'_edit_last','1'),(7851,1005,'_edit_lock','1428600159:1'),(7852,1005,'_wpas_done_all','1'),(7860,1005,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485754985;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:1176;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(7933,1018,'_wpas_done_all','1'),(7932,1018,'_edit_lock','1429838505:1'),(7931,1018,'_edit_last','1'),(7858,1005,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7859,1005,'_publicize_twitter_user','@SavorMyWords'),(7862,1003,'dsq_thread_id','3668932159'),(7864,1001,'dsq_thread_id','3668979132'),(7869,1005,'dsq_thread_id','3672057882'),(7872,1007,'_edit_last','1'),(7873,1007,'_wpas_done_all','1'),(7882,1007,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482458631;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:286;}i:1;a:1:{s:2:\"id\";i:310;}i:2;a:1:{s:2:\"id\";i:11;}}}}'),(7876,1007,'_use_impact','no'),(7877,1007,'_impact_noindex','index'),(7878,1007,'_impact_nofollow','follow'),(7879,1007,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7880,1007,'_publicize_twitter_user','@SavorMyWords'),(7881,1007,'_edit_lock','1428813300:1'),(7889,1010,'_edit_lock','1428814623:1'),(7888,1010,'_edit_last','1'),(7885,1007,'_wpas_skip_9306599','1'),(7886,1007,'_wpas_skip_9626447','1'),(7887,1007,'_wpas_skip_8363136','1'),(7890,1010,'_wpas_done_all','1'),(7898,1010,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481326784;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:97;}i:2;a:1:{s:2:\"id\";i:890;}}}}'),(7893,1010,'_use_impact','no'),(7894,1010,'_impact_noindex','index'),(7895,1010,'_impact_nofollow','follow'),(7896,1010,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7897,1010,'_publicize_twitter_user','@SavorMyWords'),(7900,1007,'dsq_thread_id','3675293248'),(7902,1010,'dsq_thread_id','3675319156'),(7903,1012,'_edit_last','1'),(7904,1012,'_edit_lock','1428927949:1'),(7905,1012,'_wpas_done_all','1'),(7913,1012,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486174623;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:988;}i:1;a:1:{s:2:\"id\";i:36;}i:2;a:1:{s:2:\"id\";i:64;}}}}'),(7908,1012,'_use_impact','no'),(7909,1012,'_impact_noindex','index'),(7910,1012,'_impact_nofollow','follow'),(7911,1012,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7912,1012,'_publicize_twitter_user','@SavorMyWords'),(7915,1012,'dsq_thread_id','3677847718'),(7927,1015,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484769543;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:977;}i:1;a:1:{s:2:\"id\";i:25;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(7921,1015,'_use_impact','no'),(7922,1015,'_impact_noindex','index'),(7923,1015,'_impact_nofollow','follow'),(7924,1015,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7925,1015,'_publicize_twitter_user','@SavorMyWords'),(7926,1015,'_edit_lock','1429018669:1'),(7929,1015,'dsq_thread_id','3681033777'),(7941,1018,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483650935;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:18;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(8010,1029,'_wpas_done_all','1'),(8009,1029,'_edit_last','1'),(7939,1018,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7940,1018,'_publicize_twitter_user','@SavorMyWords'),(7943,1018,'dsq_thread_id','3707497808'),(7945,183,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477296177;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:258;}i:2;a:1:{s:2:\"id\";i:1100;}}}}'),(7947,1020,'_edit_last','1'),(7948,1020,'_wpas_done_all','1'),(7957,1020,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478397233;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1335;}i:1;a:1:{s:2:\"id\";i:98;}i:2;a:1:{s:2:\"id\";i:329;}}}}'),(7951,1020,'_use_impact','no'),(7952,1020,'_impact_noindex','index'),(7953,1020,'_impact_nofollow','follow'),(7954,1020,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7955,1020,'_publicize_twitter_user','@SavorMyWords'),(7956,1020,'_edit_lock','1430158705:1'),(7959,1020,'dsq_thread_id','3717405270'),(7960,1022,'_edit_last','1'),(7961,1022,'_edit_lock','1430158834:1'),(7962,1022,'_wpas_done_all','1'),(7970,1022,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485071993;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:30;}i:2;a:1:{s:2:\"id\";i:66;}}}}'),(8041,1034,'_wpas_done_all','1'),(8040,1034,'_edit_lock','1431715350:1'),(8039,1034,'_edit_last','1'),(7968,1022,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7969,1022,'_publicize_twitter_user','@SavorMyWords'),(7971,1024,'_edit_last','1'),(7972,1024,'_edit_lock','1430160604:1'),(7973,1024,'_wpas_done_all','1'),(7981,1024,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479457217;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:64;}i:2;a:1:{s:2:\"id\";i:97;}}}}'),(8058,1037,'_wpas_done_all','1'),(8057,1037,'_edit_lock','1432653289:1'),(8056,1037,'_edit_last','1'),(7979,1024,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7980,1024,'_publicize_twitter_user','@SavorMyWords'),(7984,1022,'dsq_thread_id','3717715297'),(7989,203,'dsq_thread_id','3723239721'),(7990,1026,'_edit_last','1'),(7991,1026,'_wpas_done_all','1'),(8000,1026,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483740012;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:998;}i:1;a:1:{s:2:\"id\";i:859;}i:2;a:1:{s:2:\"id\";i:1273;}}}}'),(7994,1026,'_use_impact','no'),(7995,1026,'_impact_noindex','index'),(7996,1026,'_impact_nofollow','follow'),(7997,1026,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(7998,1026,'_publicize_twitter_user','@SavorMyWords'),(7999,1026,'_edit_lock','1430409217:1'),(8007,1026,'dsq_thread_id','3726260996'),(8003,1026,'_wpas_skip_9306599','1'),(8004,1026,'_wpas_skip_9626447','1'),(8005,1026,'_wpas_skip_8363136','1'),(8019,1029,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486174342;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:214;}i:1;a:1:{s:2:\"id\";i:211;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(8013,1029,'_use_impact','no'),(8014,1029,'_impact_noindex','index'),(8015,1029,'_impact_nofollow','follow'),(8016,1029,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8017,1029,'_publicize_twitter_user','@SavorMyWords'),(8018,1029,'_edit_lock','1430501739:1'),(8021,1029,'dsq_thread_id','3728807444'),(8025,1031,'_edit_last','1'),(8026,1031,'_edit_lock','1430967999:1'),(8027,1031,'_wpas_done_all','1'),(8035,1031,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480460613;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:127;}i:1;a:1:{s:2:\"id\";i:222;}i:2;a:1:{s:2:\"id\";i:67;}}}}'),(8104,1044,'_wpas_done_all','1'),(8103,1044,'_edit_lock','1434984432:1'),(8102,1044,'_edit_last','1'),(8033,1031,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8034,1031,'_publicize_twitter_user','@SavorMyWords'),(8037,1031,'dsq_thread_id','3745376030'),(8049,1034,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482740288;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:92;}i:1;a:1:{s:2:\"id\";i:22;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(8044,1034,'_use_impact','no'),(8045,1034,'_impact_noindex','index'),(8046,1034,'_impact_nofollow','follow'),(8047,1034,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8048,1034,'_publicize_twitter_user','@SavorMyWords'),(8051,1034,'dsq_thread_id','3767277633'),(8052,139,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482517437;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:237;}i:1;a:1:{s:2:\"id\";i:147;}i:2;a:1:{s:2:\"id\";i:124;}}}}'),(8066,1037,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481555453;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1080;}i:1;a:1:{s:2:\"id\";i:46;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(8061,1037,'_use_impact','no'),(8062,1037,'_impact_noindex','index'),(8063,1037,'_impact_nofollow','follow'),(8064,1037,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8065,1037,'_publicize_twitter_user','@SavorMyWords'),(8068,1037,'dsq_thread_id','3796242965'),(8071,1039,'_edit_last','1'),(8072,1039,'_edit_lock','1433169410:1'),(8073,1039,'_wpas_done_all','1'),(8081,1039,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480548762;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:38;}i:1;a:1:{s:2:\"id\";i:816;}i:2;a:1:{s:2:\"id\";i:788;}}}}'),(8144,1051,'_wpas_done_all','1'),(8143,1051,'_edit_lock','1438281891:1'),(8142,1051,'_edit_last','1'),(8079,1039,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8080,1039,'_publicize_twitter_user','@SavorMyWords'),(8083,1039,'dsq_thread_id','3812731532'),(8086,1041,'_edit_last','1'),(8087,1041,'_edit_lock','1433266811:1'),(8088,1041,'_wpas_done_all','1'),(8096,1041,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484231305;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:132;}i:1;a:1:{s:2:\"id\";i:211;}i:2;a:1:{s:2:\"id\";i:94;}}}}'),(8091,1041,'_use_impact','no'),(8092,1041,'_impact_noindex','index'),(8093,1041,'_impact_nofollow','follow'),(8094,1041,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8095,1041,'_publicize_twitter_user','@SavorMyWords'),(8100,1041,'dsq_thread_id','3816304681'),(8112,1044,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482754516;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1107;}i:1;a:1:{s:2:\"id\";i:20;}i:2;a:1:{s:2:\"id\";i:203;}}}}'),(8187,1057,'_publicize_twitter_user','@SavorMyWords'),(8186,1057,'_edit_last','1'),(8110,1044,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8111,1044,'_publicize_twitter_user','@SavorMyWords'),(8113,1046,'_edit_last','1'),(8114,1046,'_edit_lock','1433864017:1'),(8115,1046,'_wpas_done_all','1'),(8123,1046,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482896370;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:1280;}}}}'),(8118,1046,'_use_impact','no'),(8119,1046,'_impact_noindex','index'),(8120,1046,'_impact_nofollow','follow'),(8121,1046,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8122,1046,'_publicize_twitter_user','@SavorMyWords'),(8125,1046,'dsq_thread_id','3834911712'),(8128,1048,'_edit_last','1'),(8129,1048,'_edit_lock','1434046099:1'),(8130,1048,'_wpas_done_all','1'),(8138,1048,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480459368;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:126;}i:1;a:1:{s:2:\"id\";i:40;}i:2;a:1:{s:2:\"id\";i:115;}}}}'),(8133,1048,'_use_impact','no'),(8134,1048,'_impact_noindex','index'),(8135,1048,'_impact_nofollow','follow'),(8136,1048,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8137,1048,'_publicize_twitter_user','@SavorMyWords'),(8140,1048,'dsq_thread_id','3841743837'),(8152,1051,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483185380;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:752;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:621;}}}}'),(8258,1066,'_publicize_twitter_user','@SavorMyWords'),(8257,1066,'_edit_last','1'),(8150,1051,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8151,1051,'_publicize_twitter_user','@SavorMyWords'),(8164,1051,'dsq_thread_id','3869352209'),(8178,1055,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484423410;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:172;}}}}'),(8156,1044,'_wpas_skip_9306599','1'),(8157,1044,'_wpas_skip_9626447','1'),(8158,1044,'_wpas_skip_8363136','1'),(8168,1055,'_edit_last','1'),(8161,1051,'_wpas_skip_9306599','1'),(8162,1051,'_wpas_skip_9626447','1'),(8163,1051,'_wpas_skip_8363136','1'),(8169,1055,'_edit_lock','1435255233:1'),(8170,1055,'_wpas_done_all','1'),(8173,1055,'_use_impact','no'),(8174,1055,'_impact_noindex','index'),(8175,1055,'_impact_nofollow','follow'),(8176,1055,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8177,1055,'_publicize_twitter_user','@SavorMyWords'),(8180,1055,'dsq_thread_id','3880460468'),(8183,60,'dsq_thread_id','3890806623'),(8188,1057,'_edit_lock','1435687576:1'),(8194,188,'dsq_thread_id','3916854499'),(8197,1060,'_edit_last','1'),(8198,1060,'_edit_lock','1437503907:1'),(8199,1060,'_wpas_done_all','1'),(8207,1060,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480685029;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:626;}i:1;a:1:{s:2:\"id\";i:328;}i:2;a:1:{s:2:\"id\";i:49;}}}}'),(8202,1060,'_use_impact','no'),(8203,1060,'_impact_noindex','index'),(8204,1060,'_impact_nofollow','follow'),(8205,1060,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8206,1060,'_publicize_twitter_user','@SavorMyWords'),(8211,1060,'dsq_thread_id','3960135018'),(8212,1062,'_edit_last','1'),(8213,1062,'_edit_lock','1438281886:1'),(8214,1062,'_wpas_done_all','1'),(8222,1062,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485991568;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:303;}i:1;a:1:{s:2:\"id\";i:160;}i:2;a:1:{s:2:\"id\";i:998;}}}}'),(8340,1080,'_wpas_done_all','1'),(8339,1080,'_edit_lock','1440089020:1'),(8338,1080,'_edit_last','1'),(8220,1062,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8221,1062,'_publicize_twitter_user','@SavorMyWords'),(8223,1064,'_edit_last','1'),(8224,1064,'_edit_lock','1438098027:1'),(8225,1064,'_wpas_done_all','1'),(8233,1064,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483382642;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:728;}i:1;a:1:{s:2:\"id\";i:773;}i:2;a:1:{s:2:\"id\";i:963;}}}}'),(8228,1064,'_use_impact','no'),(8229,1064,'_impact_noindex','index'),(8230,1064,'_impact_nofollow','follow'),(8231,1064,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8232,1064,'_publicize_twitter_user','@SavorMyWords'),(8235,1064,'dsq_thread_id','3979938271'),(8238,1062,'dsq_thread_id','3979978554'),(8259,1066,'_edit_lock','1440992278:1'),(8276,83,'dsq_thread_id','3998884764'),(8261,83,'_edit_lock','1438608049:1'),(8262,83,'_edit_last','1'),(8287,1073,'_edit_lock','1438972822:1'),(8265,83,'_use_impact','no'),(8266,83,'_impact_noindex','index'),(8267,83,'_impact_nofollow','follow'),(8268,83,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8269,83,'_wpas_skip_9306599','1'),(8270,83,'_wpas_skip_9626447','1'),(8271,83,'_wpas_skip_8363136','1'),(8286,1073,'_edit_last','1'),(8280,120,'dsq_thread_id','4008534863'),(8288,1073,'_wpas_done_all','1'),(8296,1073,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482618324;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:266;}}}}'),(8373,1066,'_impact_nofollow','follow'),(8372,1066,'_impact_noindex','index'),(8371,1066,'_use_impact','no'),(8294,1073,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8295,1073,'_publicize_twitter_user','@SavorMyWords'),(8299,1073,'dsq_thread_id','4012542355'),(8300,1075,'_edit_last','1'),(8301,1075,'_edit_lock','1439394086:1'),(8302,1075,'_wpas_done_all','1'),(8310,1075,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483052859;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:30;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(8305,1075,'_use_impact','no'),(8306,1075,'_impact_noindex','index'),(8307,1075,'_impact_nofollow','follow'),(8308,1075,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8309,1075,'_publicize_twitter_user','@SavorMyWords'),(8312,1075,'dsq_thread_id','4026769449'),(8314,1077,'_edit_last','1'),(8315,1077,'_edit_lock','1439558248:1'),(8316,1077,'_wpas_done_all','1'),(8319,1077,'_use_impact','no'),(8320,1077,'_impact_noindex','index'),(8321,1077,'_impact_nofollow','follow'),(8322,1077,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8323,1077,'_publicize_twitter_user','@SavorMyWords'),(8329,1077,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482724653;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:752;}i:1;a:1:{s:2:\"id\";i:1051;}i:2;a:1:{s:2:\"id\";i:1296;}}}}'),(8326,1077,'_wpas_skip_9306599','1'),(8327,1077,'_wpas_skip_9626447','1'),(8328,1077,'_wpas_skip_8363136','1'),(8331,1077,'dsq_thread_id','4033523170'),(8354,1083,'_edit_lock','1440089140:1'),(8343,1080,'_use_impact','no'),(8344,1080,'_impact_noindex','index'),(8345,1080,'_impact_nofollow','follow'),(8346,1080,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8347,1080,'_publicize_twitter_user','@SavorMyWords'),(8353,1083,'_edit_last','1'),(8350,1080,'_wpas_skip_9306599','1'),(8351,1080,'_wpas_skip_9626447','1'),(8352,1080,'_wpas_skip_8363136','1'),(8355,1080,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481963157;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1024;}i:1;a:1:{s:2:\"id\";i:293;}i:2;a:1:{s:2:\"id\";i:652;}}}}'),(8356,1083,'_wpas_done_all','1'),(8370,1083,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482727954;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1109;}i:1;a:1:{s:2:\"id\";i:1311;}i:2;a:1:{s:2:\"id\";i:1265;}}}}'),(8359,1083,'_use_impact','no'),(8360,1083,'_impact_noindex','index'),(8361,1083,'_impact_nofollow','follow'),(8362,1083,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8363,1083,'_publicize_twitter_user','@SavorMyWords'),(8366,1083,'_wpas_skip_9306599','1'),(8367,1083,'_wpas_skip_9626447','1'),(8368,1083,'_wpas_skip_8363136','1'),(8374,1066,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8375,1066,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481561982;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:153;}i:1;a:1:{s:2:\"id\";i:1311;}i:2;a:1:{s:2:\"id\";i:31;}}}}'),(8376,1066,'_wpas_done_all','1'),(8380,1088,'_edit_lock','1440994078:1'),(8379,1088,'_edit_last','1'),(8381,1088,'_wpas_done_all','1'),(8389,1088,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1474543967;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:47;}i:1;a:1:{s:2:\"id\";i:808;}i:2;a:1:{s:2:\"id\";i:1139;}}}}'),(8510,1107,'_wpas_done_all','1'),(8509,1107,'_edit_lock','1441738642:1'),(8508,1107,'_edit_last','1'),(8387,1088,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8388,1088,'_publicize_twitter_user','@SavorMyWords'),(8390,1088,'_oembed_323d3c5f1f75c8e4e186f06d8b9f0a34','{{unknown}}'),(8397,1088,'dsq_thread_id','4082586506'),(8398,1055,'supernova_post_views_count','0'),(8394,1088,'_wpas_skip_9306599','1'),(8395,1088,'_wpas_skip_9626447','1'),(8396,1088,'_wpas_skip_8363136','1'),(8402,1092,'_edit_lock','1441026638:1'),(8401,1092,'_edit_last','1'),(8403,1092,'_wpas_done_all','1'),(8411,1092,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482413543;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:621;}i:1;a:1:{s:2:\"id\";i:158;}i:2;a:1:{s:2:\"id\";i:1152;}}}}'),(8406,1092,'_use_impact','no'),(8407,1092,'_impact_noindex','index'),(8408,1092,'_impact_nofollow','follow'),(8409,1092,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8410,1092,'_publicize_twitter_user','@SavorMyWords'),(8418,1095,'_edit_lock','1441370367:1'),(8417,1095,'_edit_last','1'),(8414,1092,'_wpas_skip_9306599','1'),(8415,1092,'_wpas_skip_9626447','1'),(8416,1092,'_wpas_skip_8363136','1'),(8419,1095,'_wpas_done_all','1'),(8534,1112,'_wpas_done_all','1'),(8533,1112,'_edit_last','1'),(8425,1095,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8426,1095,'_publicize_twitter_user','@SavorMyWords'),(8432,1095,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483185371;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:1114;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(8429,1095,'_wpas_skip_9306599','1'),(8430,1095,'_wpas_skip_9626447','1'),(8431,1095,'_wpas_skip_8363136','1'),(8434,1095,'dsq_thread_id','4085780448'),(8437,1092,'dsq_thread_id','4086904187'),(8442,1098,'_edit_lock','1441370369:1'),(8441,1098,'_edit_last','1'),(8443,1098,'_wpas_done_all','1'),(8458,1098,'dsq_thread_id','4090897501'),(8446,1098,'_use_impact','no'),(8447,1098,'_impact_noindex','index'),(8448,1098,'_impact_nofollow','follow'),(8449,1098,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8450,1098,'_publicize_twitter_user','@SavorMyWords'),(8451,1098,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483062030;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:808;}i:1;a:1:{s:2:\"id\";i:791;}i:2;a:1:{s:2:\"id\";i:904;}}}}'),(8454,1098,'_wpas_skip_9306599','1'),(8455,1098,'_wpas_skip_9626447','1'),(8456,1098,'_wpas_skip_8363136','1'),(8465,1066,'dsq_thread_id','4093936494'),(8472,1100,'_edit_last','1'),(8473,1100,'_edit_lock','1441370347:1'),(8474,1100,'_wpas_done_all','1'),(8482,1100,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484598989;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1064;}i:1;a:1:{s:2:\"id\";i:725;}i:2;a:1:{s:2:\"id\";i:178;}}}}'),(8477,1100,'_use_impact','no'),(8478,1100,'_impact_noindex','index'),(8479,1100,'_impact_nofollow','follow'),(8480,1100,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8481,1100,'_publicize_twitter_user','@SavorMyWords'),(8486,112,'_edit_lock','1441374948:1'),(8499,112,'dsq_thread_id','4097132287'),(8487,112,'_edit_last','1'),(8503,1100,'dsq_thread_id','4097550512'),(8490,112,'_use_impact','no'),(8491,112,'_impact_noindex','index'),(8492,112,'_impact_nofollow','follow'),(8493,112,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8494,112,'_wpas_skip_9306599','1'),(8495,112,'_wpas_skip_9626447','1'),(8496,112,'_wpas_skip_8363136','1'),(8518,1107,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483308781;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:55;}i:1;a:1:{s:2:\"id\";i:20;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(8513,1107,'_use_impact','no'),(8514,1107,'_impact_noindex','index'),(8515,1107,'_impact_nofollow','follow'),(8516,1107,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8517,1107,'_publicize_twitter_user','@SavorMyWords'),(8520,1107,'dsq_thread_id','4110911125'),(8521,1109,'_edit_last','1'),(8522,1109,'_edit_lock','1441824881:1'),(8523,1109,'_wpas_done_all','1'),(8531,1109,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1469078874;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:43;}i:1;a:1:{s:2:\"id\";i:1150;}i:2;a:1:{s:2:\"id\";i:788;}}}}'),(8526,1109,'_use_impact','no'),(8527,1109,'_impact_noindex','index'),(8528,1109,'_impact_nofollow','follow'),(8529,1109,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8530,1109,'_publicize_twitter_user','@SavorMyWords'),(8543,1112,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482446361;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1130;}i:1;a:1:{s:2:\"id\";i:299;}i:2;a:1:{s:2:\"id\";i:310;}}}}'),(8540,1112,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8541,1112,'_publicize_twitter_user','@SavorMyWords'),(8542,1112,'_edit_lock','1443445094:1'),(8544,1114,'_edit_last','1'),(8545,1114,'_edit_lock','1443450311:1'),(8546,1114,'_wpas_done_all','1'),(8555,1114,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482832076;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1150;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:18;}}}}'),(8549,1114,'_use_impact','no'),(8550,1114,'_impact_noindex','index'),(8551,1114,'_impact_nofollow','follow'),(8552,1114,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8553,1114,'_wpas_mess','The Letter: You\'re Going To Love Me When It\'s Too Late #Poetry #NOLA #LOVE #LIFE #RETWEET #MonicaRenata'),(8554,1114,'_publicize_twitter_user','@SavorMyWords'),(8562,1114,'dsq_thread_id','4173666591'),(8565,1112,'dsq_thread_id','4174861119'),(8559,1114,'_wpas_skip_9306599','1'),(8560,1114,'_wpas_skip_9626447','1'),(8561,1114,'_wpas_skip_8363136','1'),(8567,1118,'_edit_last','1'),(8571,1118,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8572,1118,'_publicize_twitter_user','@SavorMyWords'),(8573,1118,'_edit_lock','1443713981:1'),(8574,1118,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477972328;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:131;}i:1;a:1:{s:2:\"id\";i:67;}i:2;a:1:{s:2:\"id\";i:27;}}}}'),(8575,1118,'_wpas_done_all','1'),(8577,1123,'_edit_last','1'),(8578,1123,'_edit_lock','1444053228:1'),(8579,1123,'_wpas_done_all','1'),(8587,1123,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478562870;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:113;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:723;}}}}'),(8582,1123,'_use_impact','no'),(8583,1123,'_impact_noindex','index'),(8584,1123,'_impact_nofollow','follow'),(8585,1123,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8586,1123,'_publicize_twitter_user','@SavorMyWords'),(8594,1127,'_wpas_done_all','1'),(8593,1127,'_edit_last','1'),(8590,1123,'_wpas_skip_9306599','1'),(8591,1123,'_wpas_skip_9626447','1'),(8592,1123,'_wpas_skip_8363136','1'),(8603,1127,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478119336;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:859;}i:1;a:1:{s:2:\"id\";i:1335;}i:2;a:1:{s:2:\"id\";i:195;}}}}'),(8597,1127,'_use_impact','no'),(8598,1127,'_impact_noindex','index'),(8599,1127,'_impact_nofollow','follow'),(8600,1127,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8601,1127,'_publicize_twitter_user','@SavorMyWords'),(8602,1127,'_edit_lock','1444053289:1'),(8605,1127,'dsq_thread_id','4197368606'),(8606,1130,'_edit_last','1'),(8607,1130,'_edit_lock','1444328211:1'),(8608,1130,'_wpas_done_all','1'),(8616,1130,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482737179;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:310;}i:1;a:1:{s:2:\"id\";i:195;}i:2;a:1:{s:2:\"id\";i:121;}}}}'),(8614,1130,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8615,1130,'_publicize_twitter_user','@SavorMyWords'),(8618,1130,'dsq_thread_id','4210314714'),(8620,1123,'dsq_thread_id','4213114551'),(8621,1132,'_edit_last','1'),(8622,1132,'_edit_lock','1444841255:1'),(8623,1132,'_wpas_done_all','1'),(8631,1132,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482427269;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:112;}}}}'),(8626,1132,'_use_impact','no'),(8627,1132,'_impact_noindex','index'),(8628,1132,'_impact_nofollow','follow'),(8629,1132,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8630,1132,'_publicize_twitter_user','@SavorMyWords'),(8634,1132,'dsq_thread_id','4226121777'),(8648,1135,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486170873;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:328;}i:1;a:1:{s:2:\"id\";i:909;}i:2;a:1:{s:2:\"id\";i:918;}}}}'),(8637,1135,'_edit_last','1'),(8638,1135,'_edit_lock','1445518790:1'),(8639,1135,'_wpas_done_all','1'),(8650,1139,'_edit_lock','1445520112:1'),(8649,1139,'_edit_last','1'),(8642,1135,'_use_impact','no'),(8643,1135,'_impact_noindex','index'),(8644,1135,'_impact_nofollow','follow'),(8645,1135,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8646,1135,'_wpas_mess','The Night Knows Me Well #NewPoem #Poetry #NOLA #BlackPoetry #Love'),(8647,1135,'_publicize_twitter_user','@SavorMyWords'),(8651,1139,'_wpas_done_all','1'),(8662,1139,'dsq_thread_id','4248796539'),(8654,1139,'_use_impact','no'),(8655,1139,'_impact_noindex','index'),(8656,1139,'_impact_nofollow','follow'),(8657,1139,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8658,1139,'_wpas_mess','Petals on the Flower #MonicaRenata #poetry #NOLA #NewPoem #Love #BlackAuthors'),(8659,1139,'_publicize_twitter_user','@SavorMyWords'),(8660,1139,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485539061;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:204;}i:1;a:1:{s:2:\"id\";i:239;}i:2;a:1:{s:2:\"id\";i:1088;}}}}'),(8665,1135,'dsq_thread_id','4248838469'),(8667,1141,'_edit_last','1'),(8668,1141,'_edit_lock','1445539331:1'),(8669,1141,'_wpas_done_all','1'),(8672,1141,'_use_impact','no'),(8673,1141,'_impact_noindex','index'),(8674,1141,'_impact_nofollow','follow'),(8675,1141,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8676,1141,'_publicize_twitter_user','@SavorMyWords'),(8677,1141,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482121268;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1271;}i:1;a:1:{s:2:\"id\";i:1146;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(8680,1141,'dsq_thread_id','4249561107'),(8683,1141,'_wpas_skip_9306599','1'),(8684,1141,'_wpas_skip_9626447','1'),(8685,1141,'_wpas_skip_8363136','1'),(8687,1146,'_edit_last','1'),(8688,1146,'_wpas_done_all','1'),(8697,1146,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484629625;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:225;}i:1;a:1:{s:2:\"id\";i:283;}i:2;a:1:{s:2:\"id\";i:296;}}}}'),(8691,1146,'_use_impact','no'),(8692,1146,'_impact_noindex','index'),(8693,1146,'_impact_nofollow','follow'),(8694,1146,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8695,1146,'_publicize_twitter_user','@SavorMyWords'),(8696,1146,'_edit_lock','1477506171:1'),(8702,1148,'_edit_lock','1446079516:1'),(8701,1148,'_edit_last','1'),(8703,1148,'_wpas_done_all','1'),(8711,1148,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482600918;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:119;}i:1;a:1:{s:2:\"id\";i:313;}i:2;a:1:{s:2:\"id\";i:1311;}}}}'),(8706,1148,'_use_impact','no'),(8707,1148,'_impact_noindex','index'),(8708,1148,'_impact_nofollow','follow'),(8709,1148,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8710,1148,'_publicize_twitter_user','@SavorMyWords'),(8712,1150,'_edit_last','1'),(8713,1150,'_wpas_done_all','1'),(8723,1152,'_edit_lock','1446079869:1'),(8722,1152,'_edit_last','1'),(8716,1150,'_use_impact','no'),(8717,1150,'_impact_noindex','index'),(8718,1150,'_impact_nofollow','follow'),(8719,1150,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8720,1150,'_publicize_twitter_user','@SavorMyWords'),(8721,1150,'_edit_lock','1446079765:1'),(8724,1152,'_wpas_done_all','1'),(8733,1154,'_edit_lock','1446080009:1'),(8732,1154,'_edit_last','1'),(8727,1152,'_use_impact','no'),(8728,1152,'_impact_noindex','index'),(8729,1152,'_impact_nofollow','follow'),(8730,1152,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8731,1152,'_publicize_twitter_user','@SavorMyWords'),(8734,1154,'_wpas_done_all','1'),(8742,1150,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484401365;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:316;}i:2;a:1:{s:2:\"id\";i:243;}}}}'),(8737,1154,'_use_impact','no'),(8738,1154,'_impact_noindex','index'),(8739,1154,'_impact_nofollow','follow'),(8740,1154,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8741,1154,'_publicize_twitter_user','@SavorMyWords'),(8743,1152,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482411928;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:145;}i:1;a:1:{s:2:\"id\";i:44;}i:2;a:1:{s:2:\"id\";i:773;}}}}'),(8744,1154,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484512408;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:217;}i:1;a:1:{s:2:\"id\";i:45;}i:2;a:1:{s:2:\"id\";i:996;}}}}'),(8746,1152,'dsq_thread_id','4269424657'),(8748,1156,'_edit_last','1'),(8749,1156,'_edit_lock','1446084590:1'),(8750,1156,'_wpas_done_all','1'),(8758,1156,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484713098;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1241;}i:1;a:1:{s:2:\"id\";i:1252;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(8753,1156,'_use_impact','no'),(8754,1156,'_impact_noindex','index'),(8755,1156,'_impact_nofollow','follow'),(8756,1156,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8757,1156,'_publicize_twitter_user','@SavorMyWords'),(8759,1158,'_edit_last','1'),(8760,1158,'_edit_lock','1446085525:1'),(8761,1158,'_wpas_done_all','1'),(8769,1158,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483095213;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:335;}i:1;a:1:{s:2:\"id\";i:1261;}i:2;a:1:{s:2:\"id\";i:23;}}}}'),(8764,1158,'_use_impact','no'),(8765,1158,'_impact_noindex','index'),(8766,1158,'_impact_nofollow','follow'),(8767,1158,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8768,1158,'_publicize_twitter_user','@SavorMyWords'),(8770,1160,'_edit_last','1'),(8771,1160,'_edit_lock','1446087293:1'),(8772,1160,'_wpas_done_all','1'),(8780,1160,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476301508;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:165;}i:2;a:1:{s:2:\"id\";i:115;}}}}'),(8775,1160,'_use_impact','no'),(8776,1160,'_impact_noindex','index'),(8777,1160,'_impact_nofollow','follow'),(8778,1160,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8779,1160,'_publicize_twitter_user','@SavorMyWords'),(8783,1160,'dsq_thread_id','4269622613'),(8789,1162,'_edit_lock','1446093793:1'),(8788,1162,'_edit_last','1'),(8790,1162,'_wpas_done_all','1'),(8800,1164,'_edit_lock','1446095070:1'),(8799,1164,'_edit_last','1'),(8875,1176,'_wpas_done_all','1'),(8874,1176,'_edit_lock','1446842157:1'),(8873,1176,'_edit_last','1'),(8796,1162,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8797,1162,'_wpas_mess','Bittersweet #MonicaRenata #Poetry #Poem #Tumblr #NOLA #Writing #SpreadHappy #Smile'),(8798,1162,'_publicize_twitter_user','@SavorMyWords'),(8801,1162,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484540460;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:23;}i:1;a:1:{s:2:\"id\";i:42;}i:2;a:1:{s:2:\"id\";i:251;}}}}'),(8802,1164,'_wpas_done_all','1'),(8811,1164,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1471314966;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1281;}i:1;a:1:{s:2:\"id\";i:47;}i:2;a:1:{s:2:\"id\";i:57;}}}}'),(8936,315,'_edit_last','1'),(8935,315,'_edit_lock','1450841270:1'),(8808,1164,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8809,1164,'_wpas_mess','Clown #MonicaRenata #poetry #poem #Clown #NOLA'),(8810,1164,'_publicize_twitter_user','@SavorMyWords'),(8812,1166,'_edit_last','1'),(8813,1166,'_edit_lock','1446095539:1'),(8814,1166,'_wpas_done_all','1'),(8823,1166,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484662749;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1114;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:752;}}}}'),(9006,1206,'_wpas_done_all','1'),(9005,1206,'_edit_last','1'),(8820,1166,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8821,1166,'_wpas_mess','One Day You\'ll Love Me #MonicaRenata #poetry #poem'),(8822,1166,'_publicize_twitter_user','@SavorMyWords'),(8824,1168,'_edit_last','1'),(8825,1168,'_edit_lock','1446176070:1'),(8826,1168,'_jetpack_related_posts_cache','a:0:{}'),(8827,1168,'_use_impact','no'),(8828,1168,'_impact_noindex','index'),(8829,1168,'_impact_nofollow','follow'),(8830,1168,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8831,1168,'_publicize_twitter_user','@SavorMyWords'),(8832,1171,'_edit_last','1'),(8833,1171,'_edit_lock','1446176146:1'),(8834,1171,'_wpas_done_all','1'),(8843,1173,'_edit_lock','1446176380:1'),(8842,1173,'_edit_last','1'),(8837,1171,'_use_impact','no'),(8838,1171,'_impact_noindex','index'),(8839,1171,'_impact_nofollow','follow'),(8840,1171,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8841,1171,'_publicize_twitter_user','@SavorMyWords'),(8844,1173,'_wpas_done_all','1'),(8852,1173,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485485218;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:330;}i:1;a:1:{s:2:\"id\";i:254;}i:2;a:1:{s:2:\"id\";i:52;}}}}'),(8847,1173,'_use_impact','no'),(8848,1173,'_impact_noindex','index'),(8849,1173,'_impact_nofollow','follow'),(8850,1173,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8851,1173,'_publicize_twitter_user','@SavorMyWords'),(8853,1171,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475688714;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:328;}i:1;a:1:{s:2:\"id\";i:67;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(8855,280,'dsq_thread_id','4273033343'),(8861,62,'dsq_thread_id','4273105378'),(8860,1171,'dsq_thread_id','4273097757'),(8866,44,'dsq_thread_id','4273108684'),(8883,1176,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485184610;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:56;}i:2;a:1:{s:2:\"id\";i:1055;}}}}'),(8878,1176,'_use_impact','no'),(8879,1176,'_impact_noindex','index'),(8880,1176,'_impact_nofollow','follow'),(8881,1176,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8882,1176,'_publicize_twitter_user','@SavorMyWords'),(8886,1158,'dsq_thread_id','4298718375'),(8896,1044,'dsq_thread_id','4301884628'),(8895,216,'dsq_thread_id','4301881809'),(8897,183,'dsq_thread_id','4301887851'),(8907,190,'_edit_lock','1447035151:1'),(8906,189,'dsq_thread_id','4301904749'),(8915,1176,'dsq_thread_id','4301921200'),(8914,1146,'dsq_thread_id','4301918067'),(8913,245,'dsq_thread_id','4301915228'),(8919,1173,'dsq_thread_id','4321001933'),(8920,1166,'dsq_thread_id','4321005687'),(8922,54,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481981793;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:23;}i:2;a:1:{s:2:\"id\";i:1311;}}}}'),(8927,1164,'dsq_thread_id','4399414374'),(8926,1150,'dsq_thread_id','4399413091'),(8931,1148,'dsq_thread_id','4269359098'),(8948,1181,'_publicize_twitter_user','@SavorMyWords'),(8939,315,'_use_impact','no'),(8940,315,'_impact_noindex','index'),(8941,315,'_impact_nofollow','follow'),(8942,315,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8943,315,'accesspress_ray_sidebar_layout','right-sidebar'),(8944,315,'_wpas_skip_9306599','1'),(8945,315,'_wpas_skip_9626447','1'),(8946,315,'_wpas_skip_12748247','1'),(8947,315,'_wpas_skip_8363136','1'),(8949,1191,'_wp_attached_file','2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg'),(8950,1191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:168;s:4:\"file\";s:117:\"2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:117:\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"accesspress-ray-event-thumbnail\";a:4:{s:4:\"file\";s:117:\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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;s:8:\"keywords\";a:0:{}}}'),(8951,1181,'_wpas_done_all','1'),(8954,1181,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483299941;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:998;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:857;}}}}'),(8975,1181,'dsq_thread_id','4426976427'),(8963,1181,'_edit_last','1'),(8962,1181,'_edit_lock','1450847972:1'),(10647,1360,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10646,1360,'_edit_last','1'),(8969,1181,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(8970,1181,'accesspress_ray_sidebar_layout','right-sidebar'),(8971,1181,'_wpas_skip_9306599','1'),(8972,1181,'_wpas_skip_9626447','1'),(8973,1181,'_wpas_skip_12748247','1'),(8974,1181,'_wpas_skip_8363136','1'),(9009,1206,'_use_impact','no'),(9016,1206,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479939221;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:192;}i:1;a:1:{s:2:\"id\";i:338;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(9010,1206,'_impact_noindex','index'),(9011,1206,'_impact_nofollow','follow'),(9012,1206,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9013,1206,'accesspress_ray_sidebar_layout','right-sidebar'),(9014,1206,'_publicize_twitter_user','@SavorMyWords'),(9015,1206,'_edit_lock','1451608531:1'),(9019,1206,'dsq_thread_id','4450518591'),(9020,1208,'_edit_last','1'),(9021,1208,'_use_impact','no'),(9022,1208,'_impact_noindex','index'),(9023,1208,'_impact_nofollow','follow'),(9024,1208,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9025,1208,'accesspress_ray_sidebar_layout','right-sidebar'),(9026,1208,'_publicize_twitter_user','@SavorMyWords'),(9027,1208,'_edit_lock','1451666281:1'),(9028,1208,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1479444199;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1281;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:309;}}}}'),(9029,1208,'_wpas_done_all','1'),(9034,1208,'dsq_thread_id','4450997397'),(9038,1211,'_edit_lock','1451791401:1'),(9037,1211,'_edit_last','1'),(9039,1211,'_oembed_026c84eaf6eba82f0a548c5acf026e1a','{{unknown}}'),(9040,1211,'_oembed_a00401c167ae60eb38e1b818e86e073c','{{unknown}}'),(9041,1211,'_use_impact','no'),(9042,1211,'_impact_noindex','index'),(9043,1211,'_impact_nofollow','follow'),(9044,1211,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9045,1211,'accesspress_ray_sidebar_layout','right-sidebar'),(9046,1211,'_publicize_twitter_user','@SavorMyWords'),(9047,1211,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482421785;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1064;}i:1;a:1:{s:2:\"id\";i:165;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(9048,1211,'_wpas_done_all','1'),(9051,1213,'_edit_last','1'),(9052,1213,'_edit_lock','1451844222:1'),(9053,1213,'_oembed_61f490b9820300401354a3cfc010e41c','{{unknown}}'),(9054,1213,'_wpas_done_all','1'),(9063,1213,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483360451;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:985;}i:1;a:1:{s:2:\"id\";i:808;}i:2;a:1:{s:2:\"id\";i:788;}}}}'),(9057,1213,'_use_impact','no'),(9058,1213,'_impact_noindex','index'),(9059,1213,'_impact_nofollow','follow'),(9060,1213,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9061,1213,'accesspress_ray_sidebar_layout','right-sidebar'),(9062,1213,'_publicize_twitter_user','@SavorMyWords'),(9064,1215,'_edit_last','1'),(9065,1215,'_edit_lock','1451881948:1'),(9066,1215,'_oembed_483041b20c616c0be49e0b692ca7120f','{{unknown}}'),(9165,1231,'_oembed_5c577cdc4e3b2f1553c4080569fb6ec4','{{unknown}}'),(9164,1231,'_edit_lock','1452891937:1'),(9163,1231,'_edit_last','1'),(9070,1215,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9071,1215,'accesspress_ray_sidebar_layout','right-sidebar'),(9072,1215,'_publicize_twitter_user','@SavorMyWords'),(9073,1215,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481541988;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1150;}i:1;a:1:{s:2:\"id\";i:248;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(9074,1215,'_wpas_done_all','1'),(9077,1217,'_edit_last','1'),(9078,1217,'_edit_lock','1451959456:1'),(9079,1217,'_oembed_fc46fc20b8c06fffe6cd25518ead766a','{{unknown}}'),(9080,1217,'_wpas_done_all','1'),(9089,1217,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481271171;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:330;}i:1;a:1:{s:2:\"id\";i:176;}i:2;a:1:{s:2:\"id\";i:785;}}}}'),(9083,1217,'_use_impact','no'),(9084,1217,'_impact_noindex','index'),(9085,1217,'_impact_nofollow','follow'),(9086,1217,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9087,1217,'accesspress_ray_sidebar_layout','right-sidebar'),(9088,1217,'_publicize_twitter_user','@SavorMyWords'),(9103,1217,'dsq_thread_id','4459273109'),(9117,1222,'_edit_last','1'),(9093,1215,'_wpas_skip_9306599','1'),(9094,1215,'_wpas_skip_9626447','1'),(9095,1215,'_wpas_skip_12748247','1'),(9096,1215,'_wpas_skip_8363136','1'),(9118,1222,'_edit_lock','1451955958:1'),(9099,1217,'_wpas_skip_9306599','1'),(9100,1217,'_wpas_skip_9626447','1'),(9101,1217,'_wpas_skip_12748247','1'),(9102,1217,'_wpas_skip_8363136','1'),(9111,1211,'dsq_thread_id','4459328097'),(9119,1222,'_use_impact','no'),(9120,1222,'_impact_noindex','index'),(9121,1222,'_impact_nofollow','follow'),(9122,1222,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9123,1222,'accesspress_ray_sidebar_layout','right-sidebar'),(9124,1222,'_publicize_twitter_user','@SavorMyWords'),(9125,1222,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486219733;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:288;}i:1;a:1:{s:2:\"id\";i:1055;}i:2;a:1:{s:2:\"id\";i:963;}}}}'),(9126,1222,'_wpas_done_all','1'),(9129,1226,'_edit_last','1'),(9130,1226,'_edit_lock','1457930579:1'),(9131,1226,'_oembed_b189a8c6f40c5cc78525ef0228e42f1a','{{unknown}}'),(9212,1238,'_oembed_ffdc9a9cd5e328889da1c5f037299550','{{unknown}}'),(9211,1238,'_edit_lock','1454379553:1'),(9210,1238,'_edit_last','1'),(9135,1226,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9136,1226,'accesspress_ray_sidebar_layout','right-sidebar'),(9137,1226,'_publicize_twitter_user','@SavorMyWords'),(9138,1226,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484353515;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1273;}i:1;a:1:{s:2:\"id\";i:795;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(9139,1226,'_wpas_done_all','1'),(9143,1228,'_edit_lock','1451959454:1'),(9142,1228,'_edit_last','1'),(9144,1228,'_oembed_1e4e7b0fca2b09cd01a633ce050813a5','{{unknown}}'),(9232,1241,'_oembed_6e34ff371ff0511633a2404d69b8c3f2','{{unknown}}'),(9231,1241,'_edit_lock','1457929299:1'),(9230,1241,'_edit_last','1'),(9148,1228,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9149,1228,'accesspress_ray_sidebar_layout','right-sidebar'),(9150,1228,'_publicize_twitter_user','@SavorMyWords'),(9151,1228,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481839509;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:328;}i:1;a:1:{s:2:\"id\";i:105;}i:2;a:1:{s:2:\"id\";i:132;}}}}'),(9152,1228,'_wpas_done_all','1'),(9159,1228,'dsq_thread_id','4462448198'),(9162,1215,'dsq_thread_id','4489698006'),(9166,1231,'_oembed_3c07ff97a91c69ebf9fa993a2735d9bf','{{unknown}}'),(9167,1231,'_oembed_d41ac122e3fe2224548dd489aba046d8','{{unknown}}'),(9168,1231,'_wpas_done_all','1'),(9177,1231,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486049358;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:1055;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(9171,1231,'_use_impact','no'),(9172,1231,'_impact_noindex','index'),(9173,1231,'_impact_nofollow','follow'),(9174,1231,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9175,1231,'accesspress_ray_sidebar_layout','right-sidebar'),(9176,1231,'_publicize_twitter_user','@SavorMyWords'),(9192,1231,'dsq_thread_id','4494823502'),(9179,1233,'_edit_last','1'),(9180,1233,'_edit_lock','1452892836:1'),(9181,1233,'_oembed_0e48f6acc147210ab45ea02022e0244f','{{unknown}}'),(9275,1226,'_use_impact','no'),(9289,1252,'_use_impact','no'),(9288,1252,'_edit_last','1'),(9185,1233,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9186,1233,'accesspress_ray_sidebar_layout','right-sidebar'),(9187,1233,'_publicize_twitter_user','@SavorMyWords'),(9188,1233,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483743503;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:199;}i:1;a:1:{s:2:\"id\";i:765;}i:2;a:1:{s:2:\"id\";i:890;}}}}'),(9189,1233,'_wpas_done_all','1'),(9193,1235,'_edit_last','1'),(9194,1235,'_edit_lock','1453416565:1'),(9195,1235,'_oembed_7c85d2866c9631f6bf0de124120a0b8a','{{unknown}}'),(9196,1235,'_wpas_done_all','1'),(9205,1235,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482626285;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:734;}}}}'),(9319,1259,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482512102;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:29;}i:1;a:1:{s:2:\"id\";i:1267;}i:2;a:1:{s:2:\"id\";i:678;}}}}'),(9315,1259,'_wpas_done_all','1'),(9202,1235,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9203,1235,'accesspress_ray_sidebar_layout','right-sidebar'),(9204,1235,'_publicize_twitter_user','@SavorMyWords'),(9209,1235,'dsq_thread_id','4503086839'),(9213,1238,'_use_impact','no'),(9214,1238,'_impact_noindex','index'),(9215,1238,'_impact_nofollow','follow'),(9216,1238,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9217,1238,'accesspress_ray_sidebar_layout','right-sidebar'),(9218,1238,'_publicize_twitter_user','@SavorMyWords'),(9219,1238,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478506940;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1029;}i:1;a:1:{s:2:\"id\";i:115;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(9220,1238,'_wpas_done_all','1'),(9224,1238,'dsq_thread_id','4570599584'),(9233,1241,'_use_impact','no'),(9234,1241,'_impact_noindex','index'),(9235,1241,'_impact_nofollow','follow'),(9236,1241,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9237,1241,'accesspress_ray_sidebar_layout','right-sidebar'),(9238,1241,'_publicize_twitter_user','@SavorMyWords'),(9239,1241,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483306461;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:31;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:199;}}}}'),(9240,1241,'_wpas_done_all','1'),(9244,1241,'dsq_thread_id','4582109315'),(9245,1243,'_edit_last','1'),(9246,1243,'_edit_lock','1456273045:1'),(9247,1243,'_oembed_916e9817493ac451869b857fc48b7d71','{{unknown}}'),(9248,1243,'_use_impact','no'),(9249,1243,'_impact_noindex','index'),(9250,1243,'_impact_nofollow','follow'),(9251,1243,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9252,1243,'accesspress_ray_sidebar_layout','right-sidebar'),(9253,1243,'_publicize_twitter_user','@SavorMyWords'),(9254,1243,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484910366;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:54;}i:1;a:1:{s:2:\"id\";i:63;}i:2;a:1:{s:2:\"id\";i:12;}}}}'),(9255,1243,'_wpas_done_all','1'),(9259,1243,'dsq_thread_id','4599474472'),(9262,1243,'_wpas_skip_9306599','1'),(9263,1243,'_wpas_skip_9626447','1'),(9264,1243,'_wpas_skip_12748247','1'),(9265,1243,'_wpas_skip_8363136','1'),(9272,1226,'dsq_thread_id','4660295041'),(9276,1226,'_impact_noindex','index'),(9277,1226,'_impact_nofollow','follow'),(9278,1226,'_wpas_skip_9306599','1'),(9279,1226,'_wpas_skip_9626447','1'),(9280,1226,'_wpas_skip_12748247','1'),(9281,1226,'_wpas_skip_8363136','1'),(9284,1241,'_wpas_skip_9306599','1'),(9285,1241,'_wpas_skip_9626447','1'),(9286,1241,'_wpas_skip_12748247','1'),(9287,1241,'_wpas_skip_8363136','1'),(9290,1252,'_impact_noindex','index'),(9291,1252,'_impact_nofollow','follow'),(9292,1252,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9293,1252,'accesspress_ray_sidebar_layout','right-sidebar'),(9294,1252,'_publicize_twitter_user','@SavorMyWords'),(9295,1252,'_edit_lock','1477504772:1'),(9296,1252,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1478462842;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1048;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:210;}}}}'),(9297,1252,'_wpas_done_all','1'),(9301,1226,'_oembed_1451bfc4c1248ca97965d67822b052d6','{{unknown}}'),(9309,1252,'dsq_thread_id','4664955209'),(9318,1259,'_publicize_twitter_user','@SavorMyWords'),(9321,1259,'_edit_lock','1470846158:1'),(9322,1259,'_edit_last','1'),(9335,1261,'_wpas_done_all','1'),(9325,1259,'apss_content_flag','0'),(9326,1259,'_use_impact','no'),(9327,1259,'_impact_noindex','index'),(9328,1259,'_impact_nofollow','follow'),(9329,1259,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9330,1259,'accesspress_ray_sidebar_layout','right-sidebar'),(9331,1259,'_wpas_skip_9306599','1'),(9332,1259,'_wpas_skip_9626447','1'),(9333,1259,'_wpas_skip_12748247','1'),(9334,1259,'_wpas_skip_8363136','1'),(9338,1261,'_publicize_twitter_user','@SavorMyWords'),(9339,1261,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1476420647;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1158;}i:1;a:1:{s:2:\"id\";i:48;}i:2;a:1:{s:2:\"id\";i:147;}}}}'),(9355,1259,'dsq_thread_id','4708324832'),(9341,1261,'_edit_lock','1459426417:1'),(9342,1261,'_edit_last','1'),(9357,1263,'_wpas_done_all','1'),(9356,1261,'dsq_thread_id','4708335773'),(9345,1261,'apss_content_flag','0'),(9346,1261,'_use_impact','no'),(9347,1261,'_impact_noindex','index'),(9348,1261,'_impact_nofollow','follow'),(9349,1261,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9350,1261,'accesspress_ray_sidebar_layout','right-sidebar'),(9351,1261,'_wpas_skip_9306599','1'),(9352,1261,'_wpas_skip_9626447','1'),(9353,1261,'_wpas_skip_12748247','1'),(9354,1261,'_wpas_skip_8363136','1'),(9361,1263,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483856652;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:135;}i:1;a:1:{s:2:\"id\";i:34;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(9360,1263,'_publicize_twitter_user','@SavorMyWords'),(9362,1263,'_edit_lock','1459428087:1'),(9363,1263,'_edit_last','1'),(9377,1263,'dsq_thread_id','4708404987'),(9366,1263,'apss_content_flag','0'),(9367,1263,'_use_impact','no'),(9368,1263,'_impact_noindex','index'),(9369,1263,'_impact_nofollow','follow'),(9370,1263,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9371,1263,'accesspress_ray_sidebar_layout','right-sidebar'),(9372,1263,'_wpas_skip_9306599','1'),(9373,1263,'_wpas_skip_9626447','1'),(9374,1263,'_wpas_skip_12748247','1'),(9375,1263,'_wpas_skip_8363136','1'),(9378,1265,'_wpas_done_all','1'),(9382,1265,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475809028;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:1267;}}}}'),(9381,1265,'_publicize_twitter_user','@SavorMyWords'),(9387,275,'dsq_thread_id','4708669880'),(9386,1265,'dsq_thread_id','4708668795'),(9404,1267,'_edit_lock','1459787892:1'),(9405,1267,'apss_content_flag','0'),(9406,1267,'_use_impact','no'),(9407,1267,'_impact_noindex','index'),(9408,1267,'_impact_nofollow','follow'),(9409,1267,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9410,1267,'_edit_last','1'),(9417,1266,'_edit_lock','1459787992:1'),(9413,1267,'_wpas_skip_9306599','1'),(9414,1267,'_wpas_skip_9626447','1'),(9415,1267,'_wpas_skip_12748247','1'),(9416,1267,'_wpas_skip_8363136','1'),(9418,1266,'_edit_last','1'),(9432,1271,'_edit_lock','1459885801:1'),(9431,1271,'_edit_last','1'),(9421,1266,'apss_content_flag','0'),(9485,1275,'dsq_thread_id','4727740780'),(9472,1275,'_edit_last','1'),(9471,1275,'_edit_lock','1460035121:1'),(9425,1266,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9426,1266,'_wpas_skip_9306599','1'),(9427,1266,'_wpas_skip_9626447','1'),(9428,1266,'_wpas_skip_12748247','1'),(9429,1266,'_wpas_skip_8363136','1'),(9433,1271,'_wpas_done_all','1'),(9443,1273,'_edit_lock','1459886412:1'),(9442,1273,'_edit_last','1'),(9436,1271,'apss_content_flag','0'),(9437,1271,'_use_impact','no'),(9438,1271,'_impact_noindex','index'),(9439,1271,'_impact_nofollow','follow'),(9440,1271,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9441,1271,'_publicize_twitter_user','@SavorMyWords'),(9444,1271,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484494849;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1141;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:1029;}}}}'),(9445,1273,'_wpas_done_all','1'),(9454,1273,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1477797928;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:998;}i:1;a:1:{s:2:\"id\";i:105;}i:2;a:1:{s:2:\"id\";i:1114;}}}}'),(9448,1273,'apss_content_flag','0'),(9449,1273,'_use_impact','no'),(9450,1273,'_impact_noindex','index'),(9451,1273,'_impact_nofollow','follow'),(9452,1273,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9453,1273,'_publicize_twitter_user','@SavorMyWords'),(9456,1273,'dsq_thread_id','4722969527'),(9459,1266,'dsq_thread_id','4725012633'),(9466,1275,'_wpas_done_all','1'),(9465,1271,'dsq_thread_id','4726988326'),(9470,1275,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483855600;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:71;}i:1;a:1:{s:2:\"id\";i:293;}i:2;a:1:{s:2:\"id\";i:87;}}}}'),(9469,1275,'_publicize_twitter_user','@SavorMyWords'),(9475,1275,'apss_content_flag','0'),(9538,1282,'_use_impact','no'),(9537,1282,'apss_content_flag','0'),(9536,1282,'_edit_lock','1464704336:1'),(9479,1275,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9480,1275,'_wpas_skip_9306599','1'),(9481,1275,'_wpas_skip_9626447','1'),(9482,1275,'_wpas_skip_12748247','1'),(9483,1275,'_wpas_skip_8363136','1'),(9492,1278,'_wpas_done_all','1'),(9496,1278,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480703207;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:66;}i:1;a:1:{s:2:\"id\";i:213;}i:2;a:1:{s:2:\"id\";i:835;}}}}'),(9495,1278,'_publicize_twitter_user','@SavorMyWords'),(9497,1278,'_edit_lock','1460467910:1'),(9498,1278,'_edit_last','1'),(9511,1278,'dsq_thread_id','4740994751'),(9501,1278,'apss_content_flag','0'),(9502,1278,'_use_impact','no'),(9503,1278,'_impact_noindex','index'),(9504,1278,'_impact_nofollow','follow'),(9505,1278,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9506,1278,'_wpas_skip_9306599','1'),(9507,1278,'_wpas_skip_9626447','1'),(9508,1278,'_wpas_skip_12748247','1'),(9509,1278,'_wpas_skip_8363136','1'),(9513,1280,'_wpas_done_all','1'),(9517,1280,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483231550;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:172;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:67;}}}}'),(9516,1280,'_publicize_twitter_user','@SavorMyWords'),(9519,1280,'dsq_thread_id','4747163962'),(9520,1281,'_wpas_done_all','1'),(9524,1281,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483241869;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:22;}i:1;a:1:{s:2:\"id\";i:1208;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(9523,1281,'_publicize_twitter_user','@SavorMyWords'),(9526,1281,'dsq_thread_id','4781978908'),(9531,1282,'_wpas_done_all','1'),(9535,1282,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483843760;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:765;}i:1;a:1:{s:2:\"id\";i:17;}i:2;a:1:{s:2:\"id\";i:633;}}}}'),(9534,1282,'_publicize_twitter_user','@SavorMyWords'),(9539,1282,'_impact_noindex','index'),(9540,1282,'_impact_nofollow','follow'),(9541,1282,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9542,1282,'_edit_last','1'),(9550,1282,'dsq_thread_id','4872147754'),(9545,1282,'_wpas_skip_9306599','1'),(9546,1282,'_wpas_skip_9626447','1'),(9547,1282,'_wpas_skip_12748247','1'),(9548,1282,'_wpas_skip_8363136','1'),(9555,1286,'_edit_lock','1465280797:1'),(9554,1286,'_edit_last','1'),(9556,1286,'apss_content_flag','0'),(9557,1286,'_use_impact','no'),(9558,1286,'_impact_noindex','index'),(9559,1286,'_impact_nofollow','follow'),(9560,1286,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9561,1286,'_publicize_twitter_user','@SavorMyWords'),(9562,1286,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1475996890;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:124;}i:1;a:1:{s:2:\"id\";i:1005;}i:2;a:1:{s:2:\"id\";i:734;}}}}'),(9563,1286,'_wpas_done_all','1'),(9568,1288,'_wpas_done_all','1'),(9572,1288,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483543479;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:170;}i:2;a:1:{s:2:\"id\";i:911;}}}}'),(9571,1288,'_publicize_twitter_user','@SavorMyWords'),(9573,1288,'_edit_lock','1465477666:1'),(9574,1288,'_edit_last','1'),(9586,1291,'_wpas_done_all','1'),(9577,1288,'apss_content_flag','0'),(9578,1288,'_use_impact','no'),(9579,1288,'_impact_noindex','index'),(9580,1288,'_impact_nofollow','follow'),(9581,1288,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(9582,1288,'_wpas_skip_9306599','1'),(9583,1288,'_wpas_skip_9626447','1'),(9584,1288,'_wpas_skip_12748247','1'),(9585,1288,'_wpas_skip_8363136','1'),(9590,1291,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485864059;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1005;}i:1;a:1:{s:2:\"id\";i:1055;}i:2;a:1:{s:2:\"id\";i:189;}}}}'),(9589,1291,'_publicize_twitter_user','@SavorMyWords'),(9591,1292,'_wpas_done_all','1'),(9595,1292,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484439362;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:56;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(9594,1292,'_publicize_twitter_user','@SavorMyWords'),(9596,1293,'_wpas_done_all','1'),(9600,1293,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486144217;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:87;}i:1;a:1:{s:2:\"id\";i:161;}i:2;a:1:{s:2:\"id\";i:126;}}}}'),(9599,1293,'_publicize_twitter_user','@SavorMyWords'),(9603,1286,'dsq_thread_id','4901170295'),(9605,1294,'_wpas_done_all','1'),(9609,1294,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484111120;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1156;}i:1;a:1:{s:2:\"id\";i:197;}i:2;a:1:{s:2:\"id\";i:44;}}}}'),(9608,1294,'_publicize_twitter_user','@SavorMyWords'),(9612,1294,'dsq_thread_id','4922550803'),(9613,1295,'_wpas_done_all','1'),(9617,1295,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484009314;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:32;}i:1;a:1:{s:2:\"id\";i:18;}i:2;a:1:{s:2:\"id\";i:180;}}}}'),(9616,1295,'_publicize_twitter_user','@SavorMyWords'),(9618,1296,'_wpas_done_all','1'),(9624,1297,'_wpas_done_all','1'),(9621,1296,'_publicize_twitter_user','@SavorMyWords'),(9622,1296,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483354108;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:795;}i:1;a:1:{s:2:\"id\";i:304;}i:2;a:1:{s:2:\"id\";i:135;}}}}'),(9628,1297,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483313903;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:688;}i:1;a:1:{s:2:\"id\";i:62;}i:2;a:1:{s:2:\"id\";i:287;}}}}'),(9627,1297,'_publicize_twitter_user','@SavorMyWords'),(9630,1297,'dsq_thread_id','4937059109'),(9632,1296,'dsq_thread_id','4949954448'),(9633,1297,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9634,1296,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9635,1295,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9636,1294,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9637,1293,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9638,1292,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9639,1291,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9640,1288,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9641,1286,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9642,1282,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9643,1281,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9644,1280,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9645,1278,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9646,575,'_edit_lock','1468165268:1'),(9647,575,'slider_check_key','1'),(9648,575,'_edit_last','1'),(9649,575,'slide_title_key','Always Believe'),(9650,575,'slide_text_key',''),(9651,575,'slide_color_key',''),(9652,575,'slide_button_key',''),(9653,575,'slide_link_key',''),(9654,575,'slide_custom_link_key',''),(9655,575,'slide_link_target_key',''),(9656,575,'slide_link_whole_slide_key',''),(9657,482,'_edit_lock','1468166129:1'),(9658,482,'slider_check_key','1'),(9659,482,'post_slider_key','monica-renata-main-page'),(9660,482,'slide_title_key','The-Awkward-Butterfly'),(9661,482,'slide_text_key','The Awkward Butterfly'),(9662,482,'slide_color_key',''),(9663,482,'slide_button_key',''),(9664,482,'slide_link_key',''),(9665,482,'slide_custom_link_key','https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr='),(9666,482,'slide_link_target_key','1'),(9667,482,'slide_link_whole_slide_key','0'),(9668,482,'_edit_last','1'),(9669,405,'_edit_lock','1468165439:1'),(9670,405,'slider_check_key','1'),(9671,405,'post_slider_key','monica-renata-main-page'),(9672,405,'slide_title_key',''),(9673,405,'slide_text_key',''),(9674,405,'slide_color_key',''),(9675,405,'slide_button_key',''),(9676,405,'slide_link_key',''),(9677,405,'slide_custom_link_key',''),(9678,405,'slide_link_target_key','0'),(9679,405,'slide_link_whole_slide_key','0'),(9680,405,'_edit_last','1'),(9681,384,'_edit_lock','1468166035:1'),(9682,384,'slider_check_key','1'),(9683,384,'post_slider_key','monica-renata-main-page'),(9684,384,'slide_title_key','51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_'),(9685,384,'slide_text_key','Keyword: Love'),(9686,384,'slide_color_key',''),(9687,384,'slide_button_key',''),(9688,384,'slide_link_key',''),(9689,384,'slide_custom_link_key','http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1'),(9690,384,'slide_link_target_key','1'),(9691,384,'slide_link_whole_slide_key','0'),(9692,384,'_edit_last','1'),(9693,1181,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1191;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9694,613,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"614\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9695,596,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"471\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9696,585,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"587\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9697,14,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"350\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9698,27,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"351\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9699,28,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"352\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9700,29,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"353\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9701,30,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"354\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9702,31,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"355\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(10507,1342,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10506,1342,'_publicize_twitter_user','@SavorMyWords'),(9706,256,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"482\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(10508,1342,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483857111;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1324;}i:1;a:1:{s:2:\"id\";i:233;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(10503,1342,'_wpas_done_all','1'),(9710,1301,'_edit_last','1'),(9711,1301,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9712,1301,'_edit_lock','1468166329:1'),(9713,1301,'_wp_page_template','default'),(9714,1302,'_wpas_done_all','1'),(9715,1302,'apss_content_flag','0'),(9716,1301,'_use_impact','no'),(9717,1301,'_impact_noindex','index'),(9718,1301,'_impact_nofollow','follow'),(9719,1302,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9720,1301,'layout_key',''),(9721,1301,'post_slider_check_key','0'),(9722,1302,'_menu_item_type','post_type'),(9723,1302,'_menu_item_menu_item_parent','0'),(9724,1302,'_menu_item_object_id','1301'),(9725,1302,'_menu_item_object','page'),(9726,1302,'_menu_item_target',''),(9727,1302,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9728,1302,'_menu_item_xfn',''),(9729,1302,'_menu_item_url',''),(9730,1301,'_wpas_done_all','1'),(9731,1301,'apss_content_flag','0'),(9732,1301,'_links_to','http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1'),(9733,1301,'_links_to_target','_blank'),(9734,1304,'_edit_last','1'),(9735,1304,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"410\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9736,1304,'_edit_lock','1468167521:1'),(9737,1304,'_wp_page_template','default'),(9738,1304,'_wpas_done_all','1'),(9739,1304,'apss_content_flag','0'),(9740,1304,'_use_impact','no'),(9741,1304,'_impact_noindex','index'),(9742,1304,'_impact_nofollow','follow'),(9743,1304,'layout_key',''),(9744,1304,'post_slider_check_key','0'),(9745,1304,'_links_to','https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr='),(9746,1304,'_links_to_target','_blank'),(9747,1306,'_edit_last','1'),(9748,1306,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"385\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9749,1306,'_edit_lock','1468167565:1'),(9750,1306,'_wp_page_template','default'),(9751,1306,'_wpas_done_all','1'),(9752,1306,'apss_content_flag','0'),(9753,1306,'_use_impact','no'),(9754,1306,'_impact_noindex','index'),(9755,1306,'_impact_nofollow','follow'),(9756,1306,'layout_key',''),(9757,1306,'post_slider_check_key','0'),(9758,1306,'_links_to','https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_4&s=books&sr=1-4'),(9759,1308,'_edit_last','1'),(9760,1308,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"384\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9761,1308,'_edit_lock','1468168708:1'),(9762,1308,'_wp_page_template','default'),(9763,1308,'_wpas_done_all','1'),(9764,1308,'apss_content_flag','0'),(9765,1308,'_use_impact','no'),(9766,1308,'_impact_noindex','index'),(9767,1308,'_impact_nofollow','follow'),(9768,1308,'layout_key',''),(9769,1308,'post_slider_check_key','0'),(9770,1308,'_links_to','https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_5&s=books&sr=1-5'),(9771,1308,'_links_to_target','_blank'),(9772,1275,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9773,1273,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9774,1271,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9775,1267,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9776,1266,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9777,1304,'_thumbnail_id','410'),(9779,1306,'_thumbnail_id','385'),(9780,1308,'_thumbnail_id','384'),(9781,32,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"356\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9782,33,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"357\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9783,34,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"358\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9784,37,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"359\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9785,39,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"360\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9786,44,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"361\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9787,46,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"363\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9788,48,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"364\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9789,49,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"365\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9790,50,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"366\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9791,53,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"367\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9792,55,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"368\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9793,57,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"369\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9794,58,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"370\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9795,60,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"371\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9796,61,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"372\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9797,63,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"373\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9798,67,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"374\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9799,68,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"375\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9800,69,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"376\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9801,73,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"377\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9802,74,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"378\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9803,79,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"379\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9804,80,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"380\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9805,85,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"381\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9806,86,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"382\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9807,88,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"386\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9808,89,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"387\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9809,93,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"388\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9810,95,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"389\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9811,96,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"390\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9812,98,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"391\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9813,99,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"392\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9814,101,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"393\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9815,102,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"394\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9816,103,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"395\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9817,104,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"396\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9818,114,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"397\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9819,116,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"398\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9820,117,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"399\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9821,118,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"400\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9822,119,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"401\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9823,120,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"402\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9824,122,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"403\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9825,124,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"404\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9826,125,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"405\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9827,126,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"406\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9828,128,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"407\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9829,130,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"408\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9830,137,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"409\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9831,141,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"383\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9832,142,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"410\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9833,143,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"411\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9834,144,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"412\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9835,150,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"413\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9836,152,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"414\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9837,155,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"415\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9838,156,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"416\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9839,157,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"417\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9840,159,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"418\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9841,160,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"419\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9842,161,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"420\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9843,162,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"421\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9844,164,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"422\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9845,168,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"423\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9846,169,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"425\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9847,172,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"426\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9848,174,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"427\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9849,175,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"428\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9850,176,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"429\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9851,177,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"430\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9852,182,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"431\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9853,184,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"432\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9854,186,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"433\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9855,187,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"434\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9856,188,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"435\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9857,189,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"436\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9858,190,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"437\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9859,193,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"438\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9860,194,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"439\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9861,195,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"440\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9862,196,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"441\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9863,197,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"442\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9864,199,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"443\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9865,200,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"444\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9866,201,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"445\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9867,203,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"446\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9868,205,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"447\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9869,206,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"448\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9870,207,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"449\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9871,208,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"450\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9872,209,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"451\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9873,210,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"452\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9874,213,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"453\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9875,216,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"454\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9876,217,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"455\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9877,218,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"456\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9878,219,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"457\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9879,220,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"458\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9880,223,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"459\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9881,224,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"460\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9882,226,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"461\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9883,228,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"462\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9884,229,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"463\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9885,230,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"464\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9886,231,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"465\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9887,234,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"466\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9888,236,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"467\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9889,237,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"468\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9890,240,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"469\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9891,241,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"470\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9892,242,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"471\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9893,243,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"472\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9894,244,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"473\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9895,245,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"474\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9896,246,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"475\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9897,247,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"476\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9898,249,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"477\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9899,250,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"478\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9900,251,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"479\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9901,253,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"480\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9902,255,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"481\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9903,257,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"483\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9904,259,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"484\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9905,260,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"485\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9906,261,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"486\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9907,262,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"487\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9908,264,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"488\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9909,265,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"489\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9910,266,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"394\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9911,267,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"490\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9912,268,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"491\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9913,269,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"492\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9914,270,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"493\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9915,271,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"494\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9916,273,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"495\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9917,274,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"496\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9918,275,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"497\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9919,276,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"498\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9920,277,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"499\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9921,279,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"500\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9922,280,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"501\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9923,281,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"502\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9924,282,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"503\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9925,283,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"504\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9926,285,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"505\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9927,287,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"506\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9928,288,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"507\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9929,289,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"508\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9930,290,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"509\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9931,292,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"510\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9932,293,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"511\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9933,294,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"512\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9934,295,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"513\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9935,297,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"514\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9936,298,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"515\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9937,300,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"516\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9938,301,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"517\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9939,303,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"518\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9940,304,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"519\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9941,306,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"520\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9942,307,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"521\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9943,308,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"522\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9944,309,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"523\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9945,310,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"524\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9946,311,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"525\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9947,312,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"526\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9948,313,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"527\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9949,314,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"528\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9950,315,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"529\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9951,316,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"530\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9952,317,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"531\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9953,318,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"532\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9954,319,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"533\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9955,320,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"534\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9956,321,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"535\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9957,323,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"536\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9958,324,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"537\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9959,325,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"538\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9960,326,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"539\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9961,327,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"540\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9962,328,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"541\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9963,329,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"542\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9964,330,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"543\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9965,331,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"544\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9966,332,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"545\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9967,333,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"546\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9968,334,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"547\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9969,335,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"548\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9970,336,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"549\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9971,337,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"550\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9972,338,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"551\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9973,339,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"552\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9974,340,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"553\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9975,341,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"554\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9976,342,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"555\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9977,343,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"556\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9978,344,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"557\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9979,345,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"558\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9980,346,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"559\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9981,347,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"560\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9982,348,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"561\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9983,349,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:3:\"562\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9985,1265,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9986,1263,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9987,1261,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9988,1259,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1343\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(9989,1252,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9990,1243,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9991,1241,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9992,1238,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9993,1235,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9994,1233,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9995,1231,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9996,1228,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9997,1226,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9998,1222,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(9999,1217,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10000,1215,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10001,1213,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10002,1211,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10003,1208,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10004,1206,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10005,1176,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10006,1173,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10007,1171,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10008,1166,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10009,1164,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10010,1162,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10011,1160,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10012,1158,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10013,1156,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10014,1154,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10015,1152,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10016,1150,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10017,1148,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10018,1146,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10019,1141,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10020,1139,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10021,1135,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10022,1132,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10023,1130,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10024,1127,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10025,1123,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10026,1118,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10027,1114,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10028,1112,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10029,1109,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10030,1107,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10031,1100,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10032,1098,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10033,1095,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10034,1092,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10035,1088,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10036,1066,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10037,1083,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10038,1080,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10039,1077,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10040,1075,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10041,1073,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10042,1064,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10043,1062,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10044,1060,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10045,1055,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10046,1051,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10047,1048,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10048,1046,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10049,1044,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10050,1041,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10051,1039,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10052,1037,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10053,1034,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10054,1031,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10055,1029,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10060,1288,'dsq_thread_id','4974919207'),(10063,1293,'dsq_thread_id','4974946244'),(10066,890,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10067,888,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10068,886,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10069,963,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10070,961,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10071,959,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10072,957,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10073,953,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10074,951,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10075,949,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10076,945,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10077,943,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10078,941,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10079,935,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10080,933,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10081,931,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10082,928,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10083,925,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10084,923,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10085,920,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10086,918,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10087,911,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10088,909,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10089,302,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10090,785,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10091,783,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10092,781,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10093,779,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10094,305,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10095,121,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10096,123,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10097,127,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10098,129,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10099,131,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10100,132,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10101,133,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10102,134,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10103,135,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10104,698,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10105,296,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10106,299,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10107,611,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10108,1310,'_wpas_done_all','1'),(10112,1310,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10111,1310,'_publicize_twitter_user','@SavorMyWords'),(10113,1310,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483364481;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:15;}i:1;a:1:{s:2:\"id\";i:785;}i:2;a:1:{s:2:\"id\";i:1073;}}}}'),(10114,983,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10115,979,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10116,977,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10117,906,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10118,904,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10119,902,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10120,899,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10121,897,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10122,894,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10123,916,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10124,914,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10125,974,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10126,972,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10127,970,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10128,38,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10129,40,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10130,41,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10131,42,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10132,43,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10133,45,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10134,47,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10135,51,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10136,1026,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10137,1024,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10138,1022,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10139,1020,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10140,1018,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10141,1015,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10142,1012,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10143,1010,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10144,1007,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10145,1005,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10146,1003,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10147,1001,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10148,998,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10149,996,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10150,990,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10151,988,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10152,985,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10155,678,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10156,11,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10157,633,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10158,94,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10159,97,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10160,100,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10161,105,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10162,106,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10163,107,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10164,108,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10165,109,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10166,110,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10167,111,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10168,791,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10169,788,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10170,776,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10171,773,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10172,770,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10173,765,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10174,763,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10175,761,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10176,758,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10177,756,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10178,752,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10179,750,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10180,742,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10181,739,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10182,52,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10183,54,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10184,56,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10185,59,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10186,62,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10187,64,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10188,65,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10189,66,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10190,163,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10191,165,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10192,166,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10193,167,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10194,170,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10195,238,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10196,239,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10197,630,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10198,696,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10199,694,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10200,692,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10201,690,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10202,688,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10203,684,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10204,682,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10205,680,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10206,675,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10207,668,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10208,652,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10209,648,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10210,646,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10211,643,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10212,639,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10213,636,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10214,83,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10215,84,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10216,70,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10217,71,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10218,72,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10219,75,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10220,76,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10221,77,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10222,78,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10223,81,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10224,82,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10225,87,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10226,1311,'_wpas_done_all','1'),(10230,1311,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1481845715;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1146;}i:1;a:1:{s:2:\"id\";i:338;}i:2;a:1:{s:2:\"id\";i:148;}}}}'),(10229,1311,'_publicize_twitter_user','@SavorMyWords'),(10231,1311,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10233,1311,'dsq_thread_id','4982600484'),(10234,736,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10235,90,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10236,91,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10237,92,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10238,286,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10239,221,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10240,222,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10241,151,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10242,153,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10243,154,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10244,158,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10245,148,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10246,734,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10247,728,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10248,725,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10249,723,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10250,720,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10251,716,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10252,713,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10253,710,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10254,706,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10255,686,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10256,827,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10257,825,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10258,823,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10259,821,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10260,171,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10261,173,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10262,178,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10263,179,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10264,180,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10265,181,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10266,183,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10267,1312,'_wpas_done_all','1'),(10271,1312,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482295348;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:327;}i:1;a:1:{s:2:\"id\";i:690;}i:2;a:1:{s:2:\"id\";i:307;}}}}'),(10270,1312,'_publicize_twitter_user','@SavorMyWords'),(10272,1312,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10274,884,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10275,881,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10276,879,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10277,877,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10278,875,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10279,872,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10280,868,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10281,863,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10282,861,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10283,859,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10284,857,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10285,850,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10286,847,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10287,845,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10288,843,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10289,235,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10290,12,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10291,4,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10292,6,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10293,7,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10294,8,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10295,9,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10296,10,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10297,801,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10298,798,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10299,185,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10300,191,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10301,192,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10302,198,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10303,272,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10304,278,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10305,5,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10306,284,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10307,291,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10308,248,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10309,252,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10310,254,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10311,258,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10312,112,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10313,211,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10314,212,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10315,263,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10316,25,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10317,26,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10318,35,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10319,36,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10320,136,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10321,138,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10322,1,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10323,225,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10324,227,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10325,232,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10326,233,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10327,214,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10328,215,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10329,202,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10330,204,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10331,113,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10332,115,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10333,15,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10334,16,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10335,13,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10336,17,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10337,18,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10338,19,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10339,20,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10340,21,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10341,22,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10342,23,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10343,24,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10344,1312,'_edit_lock','1481294398:1'),(10345,1312,'_edit_last','1'),(10360,1312,'dsq_thread_id','4993888742'),(10348,1312,'apss_content_flag','0'),(10349,1312,'_use_impact','no'),(10350,1312,'_impact_noindex','index'),(10351,1312,'_impact_nofollow','follow'),(10352,1312,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10353,1312,'layout_key',''),(10354,1312,'post_slider_check_key','0'),(10355,1312,'_wpas_skip_9306599','1'),(10356,1312,'_wpas_skip_9626447','1'),(10357,1312,'_wpas_skip_12748247','1'),(10358,1312,'_wpas_skip_8363136','1'),(10361,1316,'_wpas_done_all','1'),(10365,1316,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10364,1316,'_publicize_twitter_user','@SavorMyWords'),(10366,1316,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483380500;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1293;}i:1;a:1:{s:2:\"id\";i:126;}i:2;a:1:{s:2:\"id\";i:34;}}}}'),(10367,841,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10368,839,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10369,835,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10370,832,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10371,818,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10372,816,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10373,813,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10374,808,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10375,804,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10376,795,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10377,793,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10378,1317,'_wpas_done_all','1'),(10382,1317,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10381,1317,'_publicize_twitter_user','@SavorMyWords'),(10383,1317,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483344314;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:192;}i:1;a:1:{s:2:\"id\";i:1311;}i:2;a:1:{s:2:\"id\";i:1158;}}}}'),(10384,1317,'_edit_lock','1469147972:1'),(10385,1317,'apss_content_flag','0'),(10386,1317,'_use_impact','no'),(10387,1317,'_impact_noindex','index'),(10388,1317,'_impact_nofollow','follow'),(10389,1317,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10390,1317,'layout_key',''),(10391,1317,'post_slider_check_key','0'),(10400,1317,'dsq_thread_id','5004437039'),(10393,1317,'_edit_last','1'),(10396,1317,'_wpas_skip_9306599','1'),(10397,1317,'_wpas_skip_9626447','1'),(10398,1317,'_wpas_skip_12748247','1'),(10399,1317,'_wpas_skip_8363136','1'),(10401,628,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10402,1320,'_wpas_done_all','1'),(10406,1320,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10405,1320,'_publicize_twitter_user','@SavorMyWords'),(10407,1320,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485048350;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1055;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:22;}}}}'),(10408,1321,'_wpas_done_all','1'),(10412,1321,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10411,1321,'_publicize_twitter_user','@SavorMyWords'),(10413,1321,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486170812;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:945;}i:1;a:1:{s:2:\"id\";i:325;}i:2;a:1:{s:2:\"id\";i:1024;}}}}'),(10416,1321,'dsq_thread_id','5013979337'),(10417,1320,'dsq_thread_id','5013980430'),(10420,1322,'_wpas_done_all','1'),(10424,1322,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10423,1322,'_publicize_twitter_user','@SavorMyWords'),(10425,1322,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484856638;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:761;}i:1;a:1:{s:2:\"id\";i:682;}i:2;a:1:{s:2:\"id\";i:678;}}}}'),(10427,139,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10430,147,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10432,1310,'dsq_thread_id','5025442463'),(10433,1322,'_edit_lock','1469905269:1'),(10435,1322,'dsq_thread_id','5027204944'),(10436,1324,'_edit_last','1'),(10437,1324,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10438,1324,'_edit_lock','1469924170:1'),(10439,1324,'apss_content_flag','0'),(10440,1324,'_use_impact','no'),(10441,1324,'_impact_noindex','index'),(10442,1324,'_impact_nofollow','follow'),(10443,1324,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10444,1324,'layout_key',''),(10445,1324,'post_slider_check_key','0'),(10446,1324,'_publicize_twitter_user','@SavorMyWords'),(10447,1324,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485856228;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:890;}i:1;a:1:{s:2:\"id\";i:341;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(10448,1324,'_wpas_done_all','1'),(10455,1334,'_wpas_done_all','1'),(10459,1334,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10458,1334,'_publicize_twitter_user','@SavorMyWords'),(10460,1334,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1480092124;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:626;}i:1;a:1:{s:2:\"id\";i:945;}i:2;a:1:{s:2:\"id\";i:1012;}}}}'),(10462,1334,'dsq_thread_id','5043283259'),(10463,1335,'_wpas_done_all','1'),(10467,1335,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10466,1335,'_publicize_twitter_user','@SavorMyWords'),(10468,1335,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484055363;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:1127;}i:1;a:1:{s:2:\"id\";i:835;}i:2;a:1:{s:2:\"id\";i:270;}}}}'),(10469,1335,'_edit_lock','1470692105:1'),(10470,1335,'_edit_last','1'),(10473,1335,'apss_content_flag','0'),(10573,1347,'_use_impact','no'),(10572,1347,'apss_content_flag','0'),(10571,1347,'_edit_lock','1475675899:1'),(10477,1335,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10478,1335,'layout_key',''),(10479,1335,'post_slider_check_key','0'),(10480,1335,'_wpas_skip_9306599','1'),(10481,1335,'_wpas_skip_9626447','1'),(10482,1335,'_wpas_skip_12748247','1'),(10483,1335,'_wpas_skip_8363136','1'),(10486,1340,'_wpas_done_all','1'),(10490,1340,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1482705260;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:203;}i:1;a:1:{s:2:\"id\";i:998;}i:2;a:1:{s:2:\"id\";i:1399;}}}}'),(10489,1340,'_publicize_twitter_user','@SavorMyWords'),(10491,1340,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10494,1335,'dsq_thread_id','5050531331'),(10495,1340,'dsq_thread_id','5050533607'),(10500,626,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10501,621,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10511,1342,'dsq_thread_id','5055414087'),(10513,1343,'_wp_attached_file','2016/03/Screenshot_20160810-111425.jpg'),(10514,1343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1438;s:6:\"height\";i:1402;s:4:\"file\";s:38:\"2016/03/Screenshot_20160810-111425.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-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:\"Screenshot_20160810-111425-300x292.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-768x749.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:749;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Screenshot_20160810-111425-1024x998.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:39:\"Screenshot_20160810-111425-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:39:\"Screenshot_20160810-111425-1438x500.jpg\";s:5:\"width\";i:1438;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:39:\"Screenshot_20160810-111425-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:38:\"Screenshot_20160810-111425-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10515,1259,'_thumbnail_id','1343'),(10518,1259,'layout_key',''),(10519,1259,'post_slider_check_key','0'),(10523,1324,'dsq_thread_id','5068915469'),(10526,1295,'dsq_thread_id','5072698693'),(10530,1316,'dsq_thread_id','5073995562'),(10531,1344,'_wpas_done_all','1'),(10535,1344,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10534,1344,'_publicize_twitter_user','@SavorMyWords'),(10536,1344,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483380511;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:74;}i:1;a:1:{s:2:\"id\";i:7;}i:2;a:1:{s:2:\"id\";i:40;}}}}'),(10538,1344,'dsq_thread_id','5091319261'),(10545,1344,'_edit_lock','1473194245:1'),(10546,1344,'_edit_last','1'),(10549,1344,'apss_content_flag','0'),(10550,1344,'_use_impact','no'),(10551,1344,'_impact_noindex','index'),(10552,1344,'_impact_nofollow','follow'),(10553,1344,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10554,1344,'layout_key',''),(10555,1344,'post_slider_check_key','0'),(10556,1344,'_wpas_skip_9306599','1'),(10557,1344,'_wpas_skip_9626447','1'),(10558,1344,'_wpas_skip_12748247','1'),(10559,1344,'_wpas_skip_8363136','1'),(10562,30,'dsq_thread_id','5157575758'),(10570,1347,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483398507;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:45;}i:1;a:1:{s:2:\"id\";i:209;}i:2;a:1:{s:2:\"id\";i:217;}}}}'),(10574,1347,'_impact_noindex','index'),(10575,1347,'_impact_nofollow','follow'),(10576,1347,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10577,1347,'layout_key',''),(10578,1347,'post_slider_check_key','0'),(10587,1347,'dsq_thread_id','5198724820'),(10580,1347,'_edit_last','1'),(10583,1347,'_wpas_skip_9306599','1'),(10584,1347,'_wpas_skip_9626447','1'),(10585,1347,'_wpas_skip_12748247','1'),(10586,1347,'_wpas_skip_8363136','1'),(10590,33,'dsq_thread_id','3511530718'),(10595,86,'dsq_thread_id','5212753558'),(10596,1351,'_wpas_done_all','1'),(10600,1351,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10599,1351,'_publicize_twitter_user','@SavorMyWords'),(10601,1351,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485282227;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:626;}i:1;a:1:{s:2:\"id\";i:1399;}i:2;a:1:{s:2:\"id\";i:25;}}}}'),(10602,1351,'_edit_lock','1476811433:1'),(10603,1351,'apss_content_flag','0'),(10735,1388,'_edit_last','1'),(10734,1388,'_edit_lock','1481290757:1'),(10607,1351,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10608,1351,'layout_key',''),(10609,1351,'post_slider_check_key','0'),(10610,1351,'_edit_last','1'),(10618,1351,'dsq_thread_id','5234358752'),(10613,1351,'_wpas_skip_9306599','1'),(10614,1351,'_wpas_skip_9626447','1'),(10615,1351,'_wpas_skip_12748247','1'),(10616,1351,'_wpas_skip_8363136','1'),(10626,1252,'apss_content_flag','0'),(10627,1252,'layout_key',''),(10628,1252,'post_slider_check_key','0'),(10629,1252,'_wpas_skip_9306599','1'),(10630,1252,'_wpas_skip_9626447','1'),(10631,1252,'_wpas_skip_12748247','1'),(10632,1252,'_wpas_skip_8363136','1'),(10635,1146,'apss_content_flag','0'),(10636,1146,'layout_key',''),(10637,1146,'post_slider_check_key','0'),(10638,1146,'_wpas_skip_9306599','1'),(10639,1146,'_wpas_skip_9626447','1'),(10640,1146,'_wpas_skip_12748247','1'),(10641,1146,'_wpas_skip_8363136','1'),(10648,1360,'_edit_lock','1480479116:1'),(10649,1360,'apss_content_flag','0'),(10650,1360,'_use_impact','no'),(10651,1360,'_impact_noindex','index'),(10652,1360,'_impact_nofollow','follow'),(10653,1360,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10654,1360,'post_slider_check_key','0'),(10655,1360,'_publicize_twitter_user','@SavorMyWords'),(10656,1360,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483418287;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:40;}i:1;a:1:{s:2:\"id\";i:330;}i:2;a:1:{s:2:\"id\";i:688;}}}}'),(10657,1360,'_wpas_done_all','1'),(10661,1360,'dsq_thread_id','5342648989'),(10667,240,'dsq_thread_id','5348216425'),(10675,214,'dsq_thread_id','5348407235'),(10674,213,'dsq_thread_id','5348406342'),(10678,1368,'_edit_last','1'),(10679,1368,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1370;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10680,1368,'_edit_lock','1480804224:1'),(10681,1369,'_wp_attached_file','2016/12/fall.jpg'),(10682,1369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:16:\"2016/12/fall.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fall-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:\"fall-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"fall-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:17:\"fall-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:16:\"fall-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:16:\"fall-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:17:\"fall-1024x500.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:17:\"fall-1024x500.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:16:\"fall-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:16:\"fall-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:16:\"fall-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:16:\"fall-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10683,1370,'_wp_attached_file','2016/12/fall.png'),(10684,1370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:525;s:4:\"file\";s:16:\"2016/12/fall.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fall-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:16:\"fall-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:16:\"fall-626x350.png\";s:5:\"width\";i:626;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:16:\"fall-570x350.png\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:16:\"fall-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:16:\"fall-626x500.png\";s:5:\"width\";i:626;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:16:\"fall-626x500.png\";s:5:\"width\";i:626;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:16:\"fall-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:16:\"fall-280x525.png\";s:5:\"width\";i:280;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:16:\"fall-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:16:\"fall-560x525.png\";s:5:\"width\";i:560;s:6:\"height\";i:525;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10685,1368,'apss_content_flag','0'),(10686,1368,'_use_impact','no'),(10687,1368,'_impact_noindex','index'),(10688,1368,'_impact_nofollow','follow'),(10689,1368,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10690,1368,'post_slider_check_key','0'),(10691,1368,'_publicize_twitter_user','@SavorMyWords'),(10692,1368,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484753334;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:341;}i:1;a:1:{s:2:\"id\";i:845;}i:2;a:1:{s:2:\"id\";i:884;}}}}'),(10693,1368,'_wpas_done_all','1'),(10698,1368,'_wpas_skip_9306599','1'),(10699,1368,'_wpas_skip_9626447','1'),(10700,1368,'_wpas_skip_12748247','1'),(10701,1368,'_wpas_skip_8363136','1'),(10703,1368,'dsq_thread_id','5352392009'),(10704,1378,'_edit_last','1'),(10705,1378,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10706,1378,'_edit_lock','1480805275:1'),(10707,1378,'apss_content_flag','0'),(10850,795,'_jetpack_dont_email_post_to_subs','1'),(10711,1378,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10712,1378,'post_slider_check_key','0'),(10713,1378,'_publicize_twitter_user','@SavorMyWords'),(10714,1378,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1483447751;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:170;}i:1;a:1:{s:2:\"id\";i:303;}i:2;a:1:{s:2:\"id\";i:341;}}}}'),(10715,1378,'_wpas_done_all','1'),(10725,1378,'dsq_thread_id','5352816846'),(10721,1378,'_wpas_skip_9306599','1'),(10722,1378,'_wpas_skip_9626447','1'),(10723,1378,'_wpas_skip_12748247','1'),(10724,1378,'_wpas_skip_8363136','1'),(10733,1388,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10732,1388,'_publicize_twitter_user','@SavorMyWords'),(10748,1388,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484736490;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:132;}i:2;a:1:{s:2:\"id\";i:228;}}}}'),(10738,1388,'apss_content_flag','0'),(10868,1413,'_jetpack_dont_email_post_to_subs','1'),(10867,1413,'_edit_last','1'),(10866,1413,'_edit_lock','1482891225:1'),(10742,1388,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10743,1388,'post_slider_check_key','0'),(10744,1388,'_wpas_skip_9306599','1'),(10745,1388,'_wpas_skip_9626447','1'),(10746,1388,'_wpas_skip_12748247','1'),(10747,1388,'_wpas_skip_8363136','1'),(10752,1388,'dsq_thread_id','5367565816'),(10757,1392,'_wpas_done_all','1'),(10758,1392,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10756,1392,'_publicize_twitter_user','@SavorMyWords'),(10759,1392,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1484158258;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:309;}i:1;a:1:{s:2:\"id\";i:890;}i:2;a:1:{s:2:\"id\";i:1293;}}}}'),(10760,1392,'_edit_lock','1481298896:1'),(10761,1392,'_edit_last','1'),(10762,1392,'_jetpack_dont_email_post_to_subs','1'),(10780,1392,'dsq_thread_id','5367706425'),(10765,1392,'apss_content_flag','0'),(10766,1392,'_use_impact','no'),(10767,1392,'_impact_noindex','index'),(10768,1392,'_impact_nofollow','follow'),(10769,1392,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10770,1392,'post_slider_check_key','0'),(10771,1392,'_wpas_skip_9306599','1'),(10772,1392,'_wpas_skip_9626447','1'),(10773,1392,'_wpas_skip_12748247','1'),(10774,1392,'_wpas_skip_8363136','1'),(10788,1399,'_wpas_done_all','1'),(10789,1399,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10787,1399,'_publicize_twitter_user','@SavorMyWords'),(10790,1399,'_edit_lock','1481900511:1'),(10791,1399,'_edit_last','1'),(10792,1399,'_jetpack_dont_email_post_to_subs','1'),(10795,1399,'apss_content_flag','0'),(10796,1399,'_use_impact','no'),(10797,1399,'_impact_noindex','index'),(10798,1399,'_impact_nofollow','follow'),(10799,1399,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10800,1399,'post_slider_check_key','0'),(10801,1399,'_wpas_skip_9306599','1'),(10802,1399,'_wpas_skip_9626447','1'),(10803,1399,'_wpas_skip_12748247','1'),(10804,1399,'_wpas_skip_8363136','1'),(10807,1399,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485025097;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:835;}i:1;a:1:{s:2:\"id\";i:202;}i:2;a:1:{s:2:\"id\";i:795;}}}}'),(10813,1399,'dsq_thread_id','5375420202'),(10823,1406,'_wpas_done_all','1'),(10824,1406,'_edit_lock','1481819917:1'),(10822,1406,'_publicize_twitter_user','@SavorMyWords'),(10825,1406,'_edit_last','1'),(10826,1406,'_jetpack_dont_email_post_to_subs','1'),(10840,1406,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485954694;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:340;}i:1;a:1:{s:2:\"id\";i:209;}i:2;a:1:{s:2:\"id\";i:115;}}}}'),(10829,1406,'apss_content_flag','0'),(11124,573,'_jetpack_dont_email_post_to_subs','1'),(11162,1488,'_edit_lock','1487186202:1'),(11194,1491,'_impact_noindex','index'),(10833,1406,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10834,1406,'post_slider_check_key','0'),(10835,1406,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10836,1406,'_wpas_skip_9306599','1'),(10837,1406,'_wpas_skip_9626447','1'),(10838,1406,'_wpas_skip_12748247','1'),(10839,1406,'_wpas_skip_8363136','1'),(10844,1406,'dsq_thread_id','5382750771'),(10853,795,'apss_content_flag','0'),(10854,795,'post_slider_check_key','0'),(10855,795,'_wpas_skip_9306599','1'),(10856,795,'_wpas_skip_9626447','1'),(10857,795,'_wpas_skip_12748247','1'),(10858,795,'_wpas_skip_8363136','1'),(10863,1413,'_wpas_done_all','1'),(10864,1413,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(10862,1413,'_publicize_twitter_user','@SavorMyWords'),(10865,1413,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486281180;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:315;}i:1;a:1:{s:2:\"id\";i:189;}i:2;a:1:{s:2:\"id\";i:1399;}}}}'),(10871,1413,'apss_content_flag','0'),(10872,1413,'_use_impact','no'),(10873,1413,'_impact_noindex','index'),(10874,1413,'_impact_nofollow','follow'),(10875,1413,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(10876,1413,'post_slider_check_key','0'),(10877,1413,'_wpas_skip_9306599','1'),(10878,1413,'_wpas_skip_9626447','1'),(10879,1413,'_wpas_skip_12748247','1'),(10880,1413,'_wpas_skip_8363136','1'),(10882,1413,'dsq_thread_id','5451319298'),(10894,1427,'_wp_attached_file','2017/01/winter-to-spring.jpg'),(10895,1427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:28:\"2017/01/winter-to-spring.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1920x500.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"winter-to-spring-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:28:\"winter-to-spring-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11159,1488,'_publicize_twitter_user','@SavorMyWords'),(10906,1432,'_wp_attached_file','2017/01/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg'),(10907,1432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2400;s:4:\"file\";s:60:\"2017/01/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-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:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10908,1433,'_wp_attached_file','2017/01/The-key-of-your-soul-and-the-vintage-paper_5120x3200.jpg'),(10909,1433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5120;s:6:\"height\";i:3200;s:4:\"file\";s:64:\"2017/01/The-key-of-your-soul-and-the-vintage-paper_5120x3200.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-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:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:64:\"The-key-of-your-soul-and-the-vintage-paper_5120x3200-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11037,1471,'_edit_lock','1486657976:1'),(11038,1471,'_edit_last','1'),(11035,1471,'_publicize_twitter_user','@SavorMyWords'),(11066,1470,'dsq_thread_id','5536800944'),(11034,1471,'sc_member_order','0'),(11029,1470,'_publicize_twitter_user','@SavorMyWords'),(11053,1470,'_edit_last','1'),(11036,1471,'_wpas_done_all','1'),(11028,1470,'sc_member_order','0'),(11030,1470,'_wpas_done_all','1'),(11178,1488,'_wpas_skip_8363136','1'),(11122,573,'apss_content_flag','0'),(10948,1447,'_wp_attached_file','2017/02/mother-nature-desktop-wallpaper-background-1.jpg'),(10949,1447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:800;s:4:\"file\";s:56:\"2017/02/mother-nature-desktop-wallpaper-background-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"mother-nature-desktop-wallpaper-background-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:56:\"mother-nature-desktop-wallpaper-background-1-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10950,1448,'_wp_attached_file','2017/02/556-mother-nature-woman-fairy.jpg'),(10951,1448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:41:\"2017/02/556-mother-nature-woman-fairy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-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:41:\"556-mother-nature-woman-fairy-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"556-mother-nature-woman-fairy-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-711x400.jpg\";s:5:\"width\";i:711;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:41:\"556-mother-nature-woman-fairy-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10952,1449,'_wp_attached_file','2017/02/Butterfly-woman-576x343.jpg'),(10953,1449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:343;s:4:\"file\";s:35:\"2017/02/Butterfly-woman-576x343.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-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:\"Butterfly-woman-576x343-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-280x343.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-560x343.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:35:\"Butterfly-woman-576x343-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11177,1488,'_wpas_skip_12748247','1'),(11176,1488,'_wpas_skip_9626447','1'),(11175,1488,'_wpas_skip_9306599','1'),(10958,1451,'_wp_attached_file','2017/02/banner_poetry.gif'),(10959,1451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:80;s:4:\"file\";s:25:\"2017/02/banner_poetry.gif\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"banner_poetry-150x80.gif\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"banner_poetry-300x80.gif\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:24:\"banner_poetry-280x80.gif\";s:5:\"width\";i:280;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:24:\"banner_poetry-280x80.gif\";s:5:\"width\";i:280;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"banner_poetry-272x80.gif\";s:5:\"width\";i:272;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11174,1488,'_wpas_skip_16665421','1'),(11173,1488,'_yoast_wpseo_primary_category',''),(11172,1488,'_yoast_wpseo_content_score','60'),(11171,1488,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11167,1488,'apss_content_flag','0'),(11299,1509,'apss_content_flag','0'),(11298,1509,'_edit_lock','1488476696:1'),(11181,1488,'dsq_thread_id','5554617541'),(11132,1483,'apss_content_flag','0'),(10972,1454,'_wp_attached_file','2017/02/peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023.jpg'),(10973,1454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:363;s:4:\"file\";s:83:\"2017/02/peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-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:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-280x363.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-560x363.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:83:\"peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11164,1488,'_jetpack_dont_email_post_to_subs','1'),(10975,1456,'_wp_attached_file','2017/02/sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768.jpg'),(10976,1456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:768;s:4:\"file\";s:191:\"2017/02/sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-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:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:192:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-711x400.jpg\";s:5:\"width\";i:711;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:191:\"sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:170:\"Summer Butterfly Twilight Fog Eerie Night Bridge Evening Leaves Bird Rope Autumn Amber Sky Light Papillon Glow Lights Mist Trees Butterflies Fall Dragonfly Wallpaper Pics\";s:17:\"created_timestamp\";s:10:\"1473204767\";s:9:\"copyright\";s:24:\"Copyright: unknown, 2016\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11163,1488,'_edit_last','1'),(11160,1488,'_wpas_done_all','1'),(11193,1491,'_use_impact','no'),(11192,1491,'apss_content_flag','0'),(11144,1483,'dsq_thread_id','5549293761'),(11141,1483,'_wpas_done_all','1'),(11191,1491,'_edit_lock','1487779345:1'),(11130,1483,'_edit_last','1'),(11129,1483,'sc_member_order','0'),(10990,1461,'_wp_attached_file','2017/02/image110-1.jpg'),(10991,1461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:259;s:6:\"height\";i:195;s:4:\"file\";s:22:\"2017/02/image110-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"image110-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"image110-1-259x182.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10992,1462,'_wp_attached_file','2017/02/1403796822.jpg'),(10993,1462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:329;s:4:\"file\";s:22:\"2017/02/1403796822.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"1403796822-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:\"1403796822-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:22:\"1403796822-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:22:\"1403796822-280x329.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:22:\"1403796822-504x280.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"1403796822-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10994,1463,'_wp_attached_file','2017/02/2affae185da0025b2514a060995e1a29-e1486273279621.jpg'),(10995,1463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:392;s:4:\"file\";s:59:\"2017/02/2affae185da0025b2514a060995e1a29-e1486273279621.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-268x300.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-357x400.jpg\";s:5:\"width\";i:357;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:44:\"2affae185da0025b2514a060995e1a29-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10996,1464,'_wp_attached_file','2017/02/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg'),(10997,1464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2400;s:4:\"file\";s:60:\"2017/02/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-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:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:60:\"vintage_paper_cameo_key_pen_book_76277_3840x2400-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10998,1463,'_edit_lock','1486276454:1'),(10999,1463,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:625;s:6:\"height\";i:700;s:4:\"file\";s:36:\"2affae185da0025b2514a060995e1a29.jpg\";}s:18:\"full-1486273254719\";a:3:{s:5:\"width\";i:625;s:6:\"height\";i:700;s:4:\"file\";s:51:\"2affae185da0025b2514a060995e1a29-e1486273112168.jpg\";}s:18:\"full-1486273279621\";a:3:{s:5:\"width\";i:425;s:6:\"height\";i:476;s:4:\"file\";s:51:\"2affae185da0025b2514a060995e1a29-e1486273254719.jpg\";}}'),(11000,1463,'_edit_last','1'),(11136,1483,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11002,1466,'_wp_attached_file','2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg'),(11003,1466,'_wp_attachment_context','site-icon'),(11004,1466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-280x512.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-512x280.jpeg\";s:5:\"width\";i:512;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-272x182.jpeg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-270x270.jpeg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-192x192.jpeg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:42:\"cropped-THE-AWKWARD-BUTTERFLY-180x180.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:40:\"cropped-THE-AWKWARD-BUTTERFLY-32x32.jpeg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11005,1447,'_wp_attachment_custom_header_last_used_bellini','1486276454'),(11006,1447,'_wp_attachment_is_custom_header','bellini'),(11007,1467,'_wp_attached_file','2017/01/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg'),(11008,1467,'_wp_attachment_context','custom-header'),(11009,1467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:300;s:4:\"file\";s:68:\"2017/01/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-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:67:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-300x47.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-768x120.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-1024x160.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bellini-thumb\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-820x128.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-560x300.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11010,1467,'_wp_attachment_custom_header_last_used_bellini','1486276508'),(11011,1467,'_wp_attachment_is_custom_header','bellini'),(11137,1483,'_publicize_twitter_user','@SavorMyWords'),(11135,1483,'_impact_nofollow','follow'),(11052,1470,'_edit_lock','1486658116:1'),(11039,1471,'_jetpack_dont_email_post_to_subs','1'),(11134,1483,'_impact_noindex','index'),(11133,1483,'_use_impact','no'),(11131,1483,'_edit_lock','1487047333:1'),(11042,1471,'apss_content_flag','0'),(11043,1471,'_use_impact','no'),(11044,1471,'_impact_noindex','index'),(11045,1471,'_impact_nofollow','follow'),(11046,1471,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11047,1471,'_wpas_skip_9306599','1'),(11048,1471,'_wpas_skip_9626447','1'),(11049,1471,'_wpas_skip_12748247','1'),(11050,1471,'_wpas_skip_8363136','1'),(11054,1470,'_jetpack_dont_email_post_to_subs','1'),(11070,1471,'dsq_thread_id','5536800333'),(11057,1470,'apss_content_flag','0'),(11190,1491,'_edit_last','1'),(11189,1491,'sc_member_order','0'),(11301,1509,'_impact_noindex','index'),(11061,1470,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11062,1470,'_wpas_skip_9306599','1'),(11063,1470,'_wpas_skip_9626447','1'),(11064,1470,'_wpas_skip_12748247','1'),(11065,1470,'_wpas_skip_8363136','1'),(11094,1479,'sc_member_order','0'),(11098,1479,'dsq_thread_id','5540109364'),(11101,1479,'_edit_lock','1486762643:1'),(11096,1479,'_wpas_done_all','1'),(11095,1479,'_publicize_twitter_user','@SavorMyWords'),(11102,1479,'_edit_last','1'),(11103,1479,'_jetpack_dont_email_post_to_subs','1'),(11106,1479,'apss_content_flag','0'),(11107,1479,'_use_impact','no'),(11108,1479,'_impact_noindex','index'),(11109,1479,'_impact_nofollow','follow'),(11110,1479,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11111,1479,'_wpas_skip_9306599','1'),(11112,1479,'_wpas_skip_9626447','1'),(11113,1479,'_wpas_skip_12748247','1'),(11114,1479,'_wpas_skip_8363136','1'),(11195,1491,'_impact_nofollow','follow'),(11196,1491,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11197,1491,'_yoast_wpseo_content_score','60'),(11198,1491,'_yoast_wpseo_primary_category','1'),(11199,1491,'_publicize_twitter_user','@SavorMyWords'),(11203,1491,'_wpas_done_all','1'),(11205,1491,'dsq_thread_id','5573528134'),(11208,1491,'_jetpack_dont_email_post_to_subs','1'),(11211,1491,'_wpas_skip_16665421','1'),(11212,1491,'_wpas_skip_9306599','1'),(11213,1491,'_wpas_skip_9626447','1'),(11214,1491,'_wpas_skip_12748247','1'),(11215,1491,'_wpas_skip_8363136','1'),(11224,1502,'_wpas_done_all','1'),(11254,1505,'_wpas_done_all','1'),(11222,1502,'sc_member_order','0'),(11223,1502,'_publicize_twitter_user','@SavorMyWords'),(11225,1502,'_edit_lock','1487943423:1'),(11226,1502,'apss_content_flag','0'),(11466,1540,'_use_impact','no'),(11465,1540,'_edit_lock','1489688165:1'),(11230,1502,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11231,1502,'_yoast_wpseo_content_score','60'),(11233,1502,'dsq_thread_id','5580661586'),(11256,1505,'_edit_lock','1487959135:1'),(11236,1502,'_edit_last','1'),(11237,1502,'_jetpack_dont_email_post_to_subs','1'),(11263,1505,'dsq_thread_id','5581297418'),(11240,1502,'_yoast_wpseo_primary_category',''),(11241,1502,'_wpas_skip_16665421','1'),(11242,1502,'_wpas_skip_9306599','1'),(11243,1502,'_wpas_skip_9626447','1'),(11244,1502,'_wpas_skip_12748247','1'),(11245,1502,'_wpas_skip_8363136','1'),(11252,1505,'sc_member_order','0'),(11253,1505,'_publicize_twitter_user','@SavorMyWords'),(11257,1505,'apss_content_flag','0'),(11513,1568,'_wp_attached_file','2017/03/h.jpg'),(11512,1567,'sc_member_order','0'),(11595,1581,'sc_member_order','0'),(11261,1505,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11262,1505,'_yoast_wpseo_content_score','60'),(11267,1505,'_edit_last','1'),(11268,1505,'_jetpack_dont_email_post_to_subs','1'),(11271,1505,'_yoast_wpseo_primary_category',''),(11272,1505,'_wpas_skip_16665421','1'),(11273,1505,'_wpas_skip_9306599','1'),(11274,1505,'_wpas_skip_9626447','1'),(11275,1505,'_wpas_skip_12748247','1'),(11276,1505,'_wpas_skip_8363136','1'),(11300,1509,'_use_impact','no'),(11296,1509,'_wpas_done_all','1'),(11294,1509,'sc_member_order','0'),(11295,1509,'_publicize_twitter_user','@SavorMyWords'),(11302,1509,'_impact_nofollow','follow'),(11303,1509,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11304,1509,'_yoast_wpseo_content_score','90'),(11316,1509,'dsq_thread_id','5597701121'),(11306,1509,'_edit_last','1'),(11307,1509,'_jetpack_dont_email_post_to_subs','1'),(11310,1509,'_yoast_wpseo_primary_category',''),(11311,1509,'_wpas_skip_16665421','1'),(11312,1509,'_wpas_skip_9306599','1'),(11313,1509,'_wpas_skip_9626447','1'),(11314,1509,'_wpas_skip_12748247','1'),(11315,1509,'_wpas_skip_8363136','1'),(11318,1509,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11319,1505,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11320,1502,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11321,1491,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11322,1488,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11323,1483,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11324,1479,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11325,1471,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11326,1470,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11329,1515,'_publicize_pending','1'),(11330,1515,'sc_member_order','0'),(11331,1515,'_menu_item_type','taxonomy'),(11332,1515,'_menu_item_menu_item_parent','0'),(11333,1515,'_menu_item_object_id','1'),(11334,1515,'_menu_item_object','category'),(11335,1515,'_menu_item_target',''),(11336,1515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11337,1515,'_menu_item_xfn',''),(11338,1515,'_menu_item_url',''),(11347,1517,'_wp_attached_file','2017/02/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg'),(11348,1517,'_wp_attachment_context','tc-theme-options[tc-post-list-default-thumb]'),(11349,1517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2358;s:4:\"file\";s:68:\"2017/02/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-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:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:69:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:69:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-3840x500.jpg\";s:5:\"width\";i:3840;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:69:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:68:\"cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11452,1540,'_publicize_twitter_user','@SavorMyWords'),(11368,1522,'sc_member_order','0'),(11370,1523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:736;s:6:\"height\";i:1093;s:4:\"file\";s:29:\"2017/03/Little-Black-Girl.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-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:29:\"Little-Black-Girl-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Little-Black-Girl-690x1024.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x350.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11451,1540,'sc_member_order','0'),(11369,1523,'_wp_attached_file','2017/03/Little-Black-Girl.jpg'),(11371,1522,'_edit_last','1'),(11372,1522,'_use_impact','no'),(11373,1522,'_impact_noindex','index'),(11374,1522,'_impact_nofollow','follow'),(11375,1522,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11376,1522,'post_slider_check_key','0'),(11377,1522,'_yoast_wpseo_content_score','60'),(11378,1522,'_yoast_wpseo_primary_category',''),(11379,1522,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1523\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11380,1522,'_publicize_twitter_user','@SavorMyWords'),(11381,1522,'_edit_lock','1488761780:1'),(11385,1522,'_wpas_done_all','1'),(11386,1522,'_thumbnail_id','1523'),(11387,1522,'_jetpack_dont_email_post_to_subs','1'),(11396,1522,'dsq_thread_id','5606172865'),(11390,1522,'_wpas_skip_16665421','1'),(11391,1522,'_wpas_skip_9306599','1'),(11392,1522,'_wpas_skip_9626447','1'),(11393,1522,'_wpas_skip_12748247','1'),(11394,1522,'_wpas_skip_8363136','1'),(11453,1551,'_wp_attached_file','2017/03/insecurity-beautiful-beauty-Quotes.jpg'),(11454,1551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:612;s:4:\"file\";s:46:\"2017/03/insecurity-beautiful-beauty-Quotes.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-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:46:\"insecurity-beautiful-beauty-Quotes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-612x350.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-612x500.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-612x500.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:46:\"insecurity-beautiful-beauty-Quotes-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11412,1536,'sc_member_order','0'),(11413,1536,'_edit_last','1'),(11414,1536,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1537\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11415,1536,'_edit_lock','1492028485:1'),(11416,1537,'_wp_attached_file','2017/03/creative-analytical-brain4828-620x354.jpg'),(11417,1537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:354;s:4:\"file\";s:49:\"2017/03/creative-analytical-brain4828-620x354.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-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:\"creative-analytical-brain4828-620x354-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-620x350.jpg\";s:5:\"width\";i:620;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-280x354.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-560x354.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:49:\"creative-analytical-brain4828-620x354-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11418,1536,'_thumbnail_id','1537'),(11419,1536,'_wp_page_template','default'),(11421,1536,'_use_impact','no'),(11422,1536,'_impact_noindex','index'),(11423,1536,'_impact_nofollow','follow'),(12811,1873,'_wp_attached_file','2020/12/Sad-Woman.jpg'),(12709,1834,'_edit_last','1'),(11425,1536,'post_slider_check_key','0'),(12708,1834,'_publicize_twitter_user','@SavorMyWords'),(12707,1834,'_edit_lock','1574790966:1'),(11434,1536,'_publicize_pending','1'),(11435,1536,'_yoast_wpseo_content_score','60'),(11455,1552,'_wp_attached_file','2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg'),(11456,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:825;s:4:\"file\";s:44:\"2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-175x300.jpg\";s:5:\"width\";i:175;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x350.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x350.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x500.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x500.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x280.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-480x560.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:44:\"aea57a87e0dd20aa26d7cd73bbcec487-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11457,1540,'_thumbnail_id','1552'),(11461,1540,'_wpas_done_all','1'),(11462,1540,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1552\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11482,1540,'dsq_thread_id','5638356270'),(11467,1540,'_impact_noindex','index'),(11468,1540,'_impact_nofollow','follow'),(11469,1540,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11470,1540,'post_slider_check_key','0'),(11471,1540,'_yoast_wpseo_content_score','90'),(11472,1540,'_edit_last','1'),(11473,1540,'_jetpack_dont_email_post_to_subs','1'),(11476,1540,'_yoast_wpseo_primary_category',''),(11477,1540,'_wpas_skip_16665421','1'),(11478,1540,'_wpas_skip_9306599','1'),(11479,1540,'_wpas_skip_9626447','1'),(11480,1540,'_wpas_skip_12748247','1'),(11481,1540,'_wpas_skip_8363136','1'),(11488,1536,'_jetpack_dont_email_post_to_subs','1'),(11489,1560,'sc_member_order','0'),(11490,1561,'_wp_attached_file','2017/03/Tree-Woman.jpg'),(11491,1561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:446;s:4:\"file\";s:22:\"2017/03/Tree-Woman.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-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:\"Tree-Woman-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-550x350.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-550x350.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-280x446.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-550x280.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"Tree-Woman-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"© gingerkelly - http://www.redbubble.com/people/gingerkelly\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11492,1560,'_edit_last','1'),(11493,1560,'_use_impact','no'),(11494,1560,'_impact_noindex','index'),(11495,1560,'_impact_nofollow','follow'),(11496,1560,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11497,1560,'post_slider_check_key','0'),(11498,1560,'_yoast_wpseo_content_score','90'),(11499,1560,'_yoast_wpseo_primary_category',''),(11500,1560,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1561\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11501,1560,'_publicize_twitter_user','@SavorMyWords'),(11502,1560,'_edit_lock','1490461577:1'),(11503,1560,'_thumbnail_id','1561'),(11507,1560,'_wpas_done_all','1'),(11510,1560,'dsq_thread_id','5650733441'),(11514,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:864;s:4:\"file\";s:13:\"2017/03/h.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"h-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:13:\"h-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"h-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"h-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:14:\"h-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:13:\"h-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:13:\"h-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:14:\"h-1382x500.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:14:\"h-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:13:\"h-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:13:\"h-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:13:\"h-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:13:\"h-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:13:\"h-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11515,1567,'_edit_last','1'),(11516,1567,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1568\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11517,1567,'_edit_lock','1490464881:1'),(11518,1567,'_thumbnail_id','1568'),(11519,1567,'_use_impact','no'),(11520,1567,'_impact_noindex','index'),(11521,1567,'_impact_nofollow','follow'),(11522,1567,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11523,1567,'post_slider_check_key','0'),(11524,1567,'_yoast_wpseo_content_score','60'),(11525,1567,'_yoast_wpseo_primary_category',''),(11526,1567,'_publicize_twitter_user','@SavorMyWords'),(11530,1567,'_wpas_done_all','1'),(11532,1567,'dsq_thread_id','5665352476'),(11533,1572,'sc_member_order','0'),(11534,1572,'_edit_last','1'),(11535,1572,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1573\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11536,1572,'_edit_lock','1490466883:1'),(11537,1573,'_wp_attached_file','2017/03/wpid-spooning.jpg'),(11538,1573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:595;s:4:\"file\";s:25:\"2017/03/wpid-spooning.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-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:\"wpid-spooning-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-900x350.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"wpid-spooning-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11674,1594,'dsq_thread_id','5718021154'),(11542,1572,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11543,1572,'post_slider_check_key','0'),(11544,1572,'_yoast_wpseo_content_score','90'),(11545,1572,'_yoast_wpseo_primary_category',''),(11546,1572,'_publicize_twitter_user','@SavorMyWords'),(11547,1572,'_thumbnail_id','1573'),(11551,1572,'_wpas_done_all','1'),(11555,1576,'sc_member_order','0'),(11554,1572,'dsq_thread_id','5665423197'),(11556,1576,'_edit_last','1'),(11557,1576,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1577\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11558,1576,'_edit_lock','1490468602:1'),(11559,1577,'_wp_attached_file','2017/03/cropped-willow-tree-swing.jpg'),(11560,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:658;s:6:\"height\";i:240;s:4:\"file\";s:37:\"2017/03/cropped-willow-tree-swing.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-570x240.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-270x240.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-280x240.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-280x240.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-560x240.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-560x240.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:37:\"cropped-willow-tree-swing-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11561,1576,'_thumbnail_id','1577'),(11562,1576,'_use_impact','no'),(11563,1576,'_impact_noindex','index'),(11564,1576,'_impact_nofollow','follow'),(11565,1576,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11566,1576,'post_slider_check_key','0'),(11567,1576,'_yoast_wpseo_content_score','60'),(11568,1576,'_yoast_wpseo_primary_category',''),(11569,1576,'_publicize_twitter_user','@SavorMyWords'),(11573,1576,'_wpas_done_all','1'),(11575,1576,'dsq_thread_id','5665486973'),(11586,81,'_impact_noindex','index'),(11585,81,'_use_impact','no'),(11584,81,'_edit_lock','1490614206:1'),(11587,81,'_impact_nofollow','follow'),(11588,81,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11589,81,'post_slider_check_key','0'),(11590,81,'_yoast_wpseo_content_score','60'),(11596,1581,'_edit_last','1'),(11600,1581,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11601,1581,'post_slider_check_key','0'),(11602,1581,'_yoast_wpseo_content_score','90'),(11603,1581,'_yoast_wpseo_primary_category',''),(11604,1581,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1585\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11605,1581,'_publicize_twitter_user','@SavorMyWords'),(11606,1581,'_edit_lock','1491356078:1'),(11607,1585,'_wp_attached_file','2017/04/517106.gif'),(11608,1585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:281;s:4:\"file\";s:18:\"2017/04/517106.gif\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"517106-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"517106-300x169.gif\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/gif\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:18:\"517106-270x250.gif\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:18:\"517106-280x280.gif\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:18:\"517106-280x281.gif\";s:5:\"width\";i:280;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:18:\"517106-500x280.gif\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:18:\"517106-272x182.gif\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11609,1581,'_thumbnail_id','1585'),(11613,1581,'_wpas_done_all','1'),(11616,1581,'dsq_thread_id','5696888560'),(11624,1588,'sc_member_order','0'),(11625,1588,'_edit_last','1'),(11626,1588,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1589\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11627,1588,'_edit_lock','1491962954:1'),(11628,1589,'_wp_attached_file','2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png'),(11629,1589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:277;s:4:\"file\";s:114:\"2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-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:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-280x277.png\";s:5:\"width\";i:280;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-280x277.png\";s:5:\"width\";i:280;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:114:\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11630,1588,'_thumbnail_id','1589'),(11631,1588,'_use_impact','no'),(11632,1588,'_impact_noindex','index'),(11633,1588,'_impact_nofollow','follow'),(11634,1588,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11635,1588,'post_slider_check_key','0'),(11636,1588,'_yoast_wpseo_content_score','30'),(11637,1588,'_yoast_wpseo_primary_category',''),(11638,1588,'_publicize_twitter_user','@SavorMyWords'),(11642,1588,'_wpas_done_all','1'),(11643,1588,'_jetpack_dont_email_post_to_subs','1'),(11646,1588,'_wpas_skip_16665421','1'),(11647,1588,'_wpas_skip_9306599','1'),(11648,1588,'_wpas_skip_9626447','1'),(11649,1588,'_wpas_skip_12748247','1'),(11650,1588,'_wpas_skip_8363136','1'),(11654,1588,'dsq_thread_id','5713106395'),(11656,1594,'sc_member_order','0'),(11657,1594,'_edit_last','1'),(11874,1645,'_wp_attached_file','2017/05/Fallen-son.png'),(11873,1644,'sc_member_order','0'),(11661,1594,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11662,1594,'post_slider_check_key','0'),(11663,1594,'_yoast_wpseo_content_score','90'),(11664,1594,'_yoast_wpseo_primary_category',''),(11665,1594,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11666,1594,'_publicize_twitter_user','@SavorMyWords'),(11667,1594,'_edit_lock','1491964720:1'),(11671,1594,'_wpas_done_all','1'),(11677,1598,'sc_member_order','0'),(11678,1598,'_edit_last','1'),(11679,1598,'_use_impact','no'),(11680,1598,'_impact_noindex','index'),(11681,1598,'_impact_nofollow','follow'),(11682,1598,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11683,1598,'post_slider_check_key','0'),(11684,1598,'_yoast_wpseo_content_score','30'),(11685,1598,'_yoast_wpseo_primary_category',''),(11686,1598,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11687,1598,'_publicize_twitter_user','@SavorMyWords'),(11688,1598,'_edit_lock','1492014084:1'),(11689,1600,'sc_member_order','0'),(11690,1601,'_wp_attached_file','2017/04/zedity-The-other-side.html'),(11691,1600,'_edit_last','1'),(11692,1600,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11693,1600,'_edit_lock','1492015943:1'),(11694,1600,'_use_impact','no'),(11695,1600,'_impact_noindex','index'),(11696,1600,'_impact_nofollow','follow'),(11697,1600,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11698,1600,'post_slider_check_key','0'),(11699,1600,'_yoast_wpseo_content_score','30'),(11700,1600,'_yoast_wpseo_primary_category',''),(11701,1600,'_publicize_twitter_user','@SavorMyWords'),(11704,1603,'sc_member_order','0'),(11707,1603,'_edit_last','1'),(11708,1603,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11709,1603,'_edit_lock','1492026677:1'),(11806,1621,'_jetpack_dont_email_post_to_subs','1'),(11714,1608,'sc_member_order','0'),(11715,1609,'_wp_attached_file','2017/04/PhotoGrid_1491998479062.jpg'),(11716,1609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2017/04/PhotoGrid_1491998479062.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-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:\"PhotoGrid_1491998479062-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"PhotoGrid_1491998479062-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1491998479062-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1491998479062-2560x500.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1491998479062-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1491998479062-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11717,1610,'_wp_attached_file','2017/04/PhotoGrid_1487686393988.png'),(11718,1610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2017/04/PhotoGrid_1487686393988.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-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:\"PhotoGrid_1487686393988-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"PhotoGrid_1487686393988-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1487686393988-1170x350.png\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-570x350.png\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1487686393988-2560x500.png\";s:5:\"width\";i:2560;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"PhotoGrid_1487686393988-1170x500.png\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:35:\"PhotoGrid_1487686393988-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11719,1608,'_edit_last','1'),(11720,1608,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1610;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11721,1608,'_edit_lock','1492486348:1'),(11722,1608,'_use_impact','no'),(11723,1608,'_impact_noindex','index'),(11724,1608,'_impact_nofollow','follow'),(11725,1608,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11726,1608,'post_slider_check_key','0'),(11727,1608,'_yoast_wpseo_content_score','30'),(11728,1608,'_yoast_wpseo_primary_category','53'),(11729,1608,'_publicize_twitter_user','@SavorMyWords'),(11733,1608,'_wpas_done_all','1'),(12846,1886,'_yoast_wpseo_primary_category',''),(12847,1886,'_publicize_twitter_user','@SavorMyWords'),(11810,1621,'_wpas_skip_9306599','1'),(11809,1621,'_wpas_skip_16665421','1'),(11748,1608,'_jetpack_dont_email_post_to_subs','1'),(11751,1608,'_wpas_skip_16665421','1'),(11752,1608,'_wpas_skip_9306599','1'),(11753,1608,'_wpas_skip_9626447','1'),(11754,1608,'_wpas_skip_12748247','1'),(11755,1608,'_wpas_skip_8363136','1'),(11758,1608,'dsq_thread_id','5720369870'),(11770,1621,'sc_member_order','0'),(11771,1621,'_edit_last','1'),(11772,1621,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1622\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11773,1621,'_edit_lock','1492658762:1'),(11774,1622,'_wp_attached_file','2017/04/Traveler.jpg'),(11775,1622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:323;s:4:\"file\";s:20:\"2017/04/Traveler.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Traveler-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:\"Traveler-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:20:\"Traveler-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:20:\"Traveler-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:20:\"Traveler-280x323.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:20:\"Traveler-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:20:\"Traveler-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11920,1655,'_wp_attached_file','2017/05/Black-White-Friend.jpg'),(11919,1654,'sc_member_order','0'),(11993,1670,'_use_impact','no'),(11779,1621,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11780,1621,'post_slider_check_key','0'),(11781,1621,'_yoast_wpseo_content_score','60'),(11782,1621,'_yoast_wpseo_primary_category',''),(11783,1621,'_publicize_twitter_user','@SavorMyWords'),(11871,1634,'dsq_thread_id','5756891933'),(11787,1621,'_thumbnail_id','1622'),(11791,1621,'_wpas_done_all','1'),(11811,1621,'_wpas_skip_9626447','1'),(11796,1621,'dsq_thread_id','5735985417'),(11812,1621,'_wpas_skip_12748247','1'),(11813,1621,'_wpas_skip_8363136','1'),(11819,1631,'_wp_attached_file','2017/04/Little-Black-Girl.jpg'),(11820,1631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:736;s:6:\"height\";i:1093;s:4:\"file\";s:29:\"2017/04/Little-Black-Girl.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-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:29:\"Little-Black-Girl-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Little-Black-Girl-690x1024.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x350.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:29:\"Little-Black-Girl-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11821,1632,'_wp_attached_file','2017/04/Postive-Thoughts.jpg'),(11822,1632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2017/04/Postive-Thoughts.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-280x500.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:28:\"Postive-Thoughts-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11823,1633,'_wp_attached_file','2017/04/The-Grieving-Cycle_art.jpg'),(11824,1633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:453;s:4:\"file\";s:34:\"2017/04/The-Grieving-Cycle_art.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-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:\"The-Grieving-Cycle_art-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-650x350.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-280x453.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-560x453.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:34:\"The-Grieving-Cycle_art-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11825,1634,'sc_member_order','0'),(11826,1634,'_edit_last','1'),(11827,1634,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1632\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11828,1634,'_edit_lock','1493085091:1'),(11829,1634,'_use_impact','no'),(11830,1634,'_impact_noindex','index'),(11831,1634,'_impact_nofollow','follow'),(11832,1634,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11833,1634,'post_slider_check_key','0'),(11834,1634,'_yoast_wpseo_content_score','60'),(11835,1634,'_yoast_wpseo_primary_category','1'),(11836,1634,'_publicize_twitter_user','@SavorMyWords'),(11837,1634,'_thumbnail_id','1632'),(11841,1634,'_wpas_done_all','1'),(11842,1639,'sc_member_order','0'),(11843,1639,'_edit_last','1'),(11844,1639,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1640\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11845,1639,'_edit_lock','1493089603:1'),(11846,1640,'_wp_attached_file','2017/04/under-water-2.jpg'),(11847,1640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:374;s:4:\"file\";s:25:\"2017/04/under-water-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"under-water-2-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:\"under-water-2-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:25:\"under-water-2-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:25:\"under-water-2-500x350.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:25:\"under-water-2-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:25:\"under-water-2-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:25:\"under-water-2-280x374.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:25:\"under-water-2-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:25:\"under-water-2-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11848,1639,'_thumbnail_id','1640'),(11849,1639,'_use_impact','no'),(11850,1639,'_impact_noindex','index'),(11851,1639,'_impact_nofollow','follow'),(11852,1639,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11853,1639,'post_slider_check_key','0'),(11854,1639,'_yoast_wpseo_content_score','90'),(11855,1639,'_yoast_wpseo_primary_category','1'),(11856,1639,'_publicize_twitter_user','@SavorMyWords'),(11860,1639,'_wpas_done_all','1'),(11862,1639,'dsq_thread_id','5756816607'),(11875,1645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:261;s:6:\"height\";i:193;s:4:\"file\";s:22:\"2017/05/Fallen-son.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Fallen-son-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:22:\"Fallen-son-261x182.png\";s:5:\"width\";i:261;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11876,1644,'_edit_last','1'),(11877,1644,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1645\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11878,1644,'_edit_lock','1494301370:1'),(11879,1644,'_use_impact','no'),(11880,1644,'_impact_noindex','index'),(11881,1644,'_impact_nofollow','follow'),(11882,1644,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11883,1644,'post_slider_check_key','0'),(11884,1644,'_yoast_wpseo_content_score','30'),(11885,1644,'_yoast_wpseo_primary_category',''),(11886,1644,'_publicize_twitter_user','@SavorMyWords'),(11887,1644,'_thumbnail_id','1645'),(11891,1644,'_wpas_done_all','1'),(11894,1644,'dsq_thread_id','5799678567'),(11895,1649,'sc_member_order','0'),(11896,1649,'_edit_last','1'),(11897,1649,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1650\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11898,1649,'_edit_lock','1494367786:1'),(11899,1650,'_wp_attached_file','2017/05/5ee04e20748299c538d499f933922b77.jpg'),(11900,1650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:811;s:4:\"file\";s:44:\"2017/05/5ee04e20748299c538d499f933922b77.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-570x500.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-570x500.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:44:\"5ee04e20748299c538d499f933922b77-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11901,1649,'_thumbnail_id','1650'),(11992,1670,'_edit_last','1'),(11991,1670,'sc_member_order','0'),(11905,1649,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11906,1649,'post_slider_check_key','0'),(11907,1649,'_yoast_wpseo_content_score','60'),(11908,1649,'_yoast_wpseo_primary_category','1'),(11909,1649,'_publicize_twitter_user','@SavorMyWords'),(11915,1649,'_wpas_done_all','1'),(11917,1649,'dsq_thread_id','5802331329'),(11921,1655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:956;s:6:\"height\";i:537;s:4:\"file\";s:30:\"2017/05/Black-White-Friend.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-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:\"Black-White-Friend-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-956x350.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-956x500.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-956x500.jpg\";s:5:\"width\";i:956;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-280x537.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-560x537.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:30:\"Black-White-Friend-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1495864028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(11922,1654,'_edit_last','1'),(11923,1654,'_use_impact','no'),(11924,1654,'_impact_noindex','index'),(11925,1654,'_impact_nofollow','follow'),(11926,1654,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11927,1654,'post_slider_check_key','0'),(11928,1654,'_yoast_wpseo_content_score','30'),(11929,1654,'_yoast_wpseo_primary_category','1'),(11930,1654,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1655\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11931,1654,'_publicize_twitter_user','@SavorMyWords'),(11932,1654,'_edit_lock','1495882904:1'),(11933,1654,'_thumbnail_id','1655'),(11937,1654,'_wpas_done_all','1'),(11938,1658,'sc_member_order','0'),(11939,1659,'_wp_attached_file','2017/05/bottle-of-water.jpg'),(11940,1659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:328;s:4:\"file\";s:27:\"2017/05/bottle-of-water.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bottle-of-water-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:\"bottle-of-water-197x300.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:27:\"bottle-of-water-215x250.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:27:\"bottle-of-water-215x280.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:27:\"bottle-of-water-215x280.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:27:\"bottle-of-water-215x182.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:11:\"engin yavas\";s:6:\"camera\";s:12:\"Canon EOS 5D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1223391888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:12:\"bottle water\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:12:\"bottle water\";}}}'),(11941,1658,'_edit_last','1'),(11942,1658,'_use_impact','no'),(11943,1658,'_impact_noindex','index'),(11944,1658,'_impact_nofollow','follow'),(11945,1658,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11946,1658,'post_slider_check_key','0'),(11947,1658,'_yoast_wpseo_content_score','90'),(11948,1658,'_yoast_wpseo_primary_category',''),(11949,1658,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1659\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(11950,1658,'_publicize_twitter_user','@SavorMyWords'),(11951,1658,'_edit_lock','1495912053:1'),(11952,1658,'_thumbnail_id','1659'),(11956,1658,'_wpas_done_all','1'),(11961,1654,'dsq_thread_id','5855554816'),(11959,1658,'dsq_thread_id','5855139501'),(11977,1665,'dsq_thread_id','5867362385'),(11974,1665,'_wpas_done_all','1'),(11975,1665,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11972,1665,'sc_member_order','0'),(11973,1665,'_publicize_twitter_user','@SavorMyWords'),(11978,1666,'sc_member_order','0'),(11979,1666,'_publicize_twitter_user','@SavorMyWords'),(11980,1667,'_wp_attached_file','2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg'),(11981,1667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1588;s:6:\"height\";i:1600;s:4:\"file\";s:44:\"2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-768x774.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"6f36aa13fffbab6aa7c2d178c0373213-1016x1024.jpg\";s:5:\"width\";i:1016;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:45:\"6f36aa13fffbab6aa7c2d178c0373213-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:45:\"6f36aa13fffbab6aa7c2d178c0373213-1588x500.jpg\";s:5:\"width\";i:1588;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:45:\"6f36aa13fffbab6aa7c2d178c0373213-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:44:\"6f36aa13fffbab6aa7c2d178c0373213-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11985,1666,'_wpas_done_all','1'),(11986,1666,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1667;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(11988,1666,'dsq_thread_id','5873666661'),(11994,1670,'_impact_noindex','index'),(11995,1670,'_impact_nofollow','follow'),(11996,1670,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(11997,1670,'post_slider_check_key','0'),(11998,1670,'_yoast_wpseo_content_score','60'),(11999,1670,'_yoast_wpseo_primary_category',''),(12000,1670,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12001,1670,'_publicize_twitter_user','@SavorMyWords'),(12002,1670,'_edit_lock','1496721547:1'),(12006,1670,'_wpas_done_all','1'),(12008,1670,'dsq_thread_id','5884092830'),(12009,1673,'sc_member_order','0'),(12010,1673,'_edit_last','1'),(12011,1673,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1675\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(12012,1673,'_edit_lock','1497242018:1'),(12115,1692,'sc_member_order','0'),(12016,1673,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12017,1673,'post_slider_check_key','0'),(12018,1673,'_yoast_wpseo_content_score','60'),(12019,1673,'_yoast_wpseo_primary_category','1'),(12020,1673,'_publicize_twitter_user','@SavorMyWords'),(12021,1675,'_wp_attached_file','2017/06/wind.jpg'),(12022,1675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:736;s:6:\"height\";i:586;s:4:\"file\";s:16:\"2017/06/wind.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"wind-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:\"wind-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:16:\"wind-736x350.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:16:\"wind-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:16:\"wind-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:16:\"wind-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:16:\"wind-736x500.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:16:\"wind-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:16:\"wind-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:16:\"wind-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:16:\"wind-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:16:\"wind-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12023,1673,'_thumbnail_id','1675'),(12027,1673,'_wpas_done_all','1'),(12028,1676,'sc_member_order','0'),(12029,1676,'_edit_last','1'),(12153,1698,'sc_member_order','0'),(12176,1702,'sc_member_order','0'),(12177,1702,'_publicize_twitter_user','@SavorMyWords'),(12033,1676,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12034,1676,'post_slider_check_key','0'),(12035,1676,'_yoast_wpseo_content_score','60'),(12036,1676,'_yoast_wpseo_primary_category',''),(12037,1676,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12038,1676,'_publicize_twitter_user','@SavorMyWords'),(12039,1676,'_edit_lock','1497242319:1'),(12043,1676,'_wpas_done_all','1'),(12044,1679,'sc_member_order','0'),(12045,1680,'_wp_attached_file','2017/06/tenor.gif'),(12046,1680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:426;s:6:\"height\";i:302;s:4:\"file\";s:17:\"2017/06/tenor.gif\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"tenor-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"tenor-300x213.gif\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/gif\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:17:\"tenor-270x250.gif\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:17:\"tenor-280x280.gif\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:17:\"tenor-280x302.gif\";s:5:\"width\";i:280;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:17:\"tenor-426x280.gif\";s:5:\"width\";i:426;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"tenor-272x182.gif\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12047,1679,'_edit_last','1'),(12048,1679,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1680;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12049,1679,'_edit_lock','1497243052:1'),(12050,1679,'_use_impact','no'),(12051,1679,'_impact_noindex','index'),(12052,1679,'_impact_nofollow','follow'),(12053,1679,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12054,1679,'post_slider_check_key','0'),(12055,1679,'_yoast_wpseo_content_score','30'),(12056,1679,'_yoast_wpseo_primary_category','1'),(12057,1679,'_publicize_twitter_user','@SavorMyWords'),(12061,1679,'_wpas_done_all','1'),(12062,1683,'sc_member_order','0'),(12063,1683,'_edit_last','1'),(12064,1683,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12065,1683,'_edit_lock','1497245751:1'),(12190,1702,'_edit_last','1'),(12189,1702,'_edit_lock','1501170429:1'),(12069,1683,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12070,1683,'post_slider_check_key','0'),(12071,1683,'_yoast_wpseo_content_score','90'),(12072,1683,'_yoast_wpseo_primary_category','1'),(12073,1683,'_publicize_twitter_user','@SavorMyWords'),(12077,1683,'_wpas_done_all','1'),(12079,1676,'dsq_thread_id','5902080290'),(12081,1686,'sc_member_order','0'),(12082,1686,'_edit_last','1'),(12083,1686,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1687\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(12084,1686,'_edit_lock','1497246077:1'),(12085,1687,'_wp_attached_file','2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg'),(12086,1687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1505;s:6:\"height\";i:886;s:4:\"file\";s:60:\"2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-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:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-1024x603.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:61:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:61:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-1505x500.jpg\";s:5:\"width\";i:1505;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:61:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:60:\"5-Things-You-Need-to-Know-About-The-Tree-of-Life-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:10:\"primo p.s.\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1470665225\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12087,1686,'_thumbnail_id','1687'),(12245,1714,'_publicize_twitter_user','@SavorMyWords'),(12244,1714,'sc_member_order','0'),(12337,1517,'_oembed_41cd8cae34e73ced4231739df9553182','{{unknown}}'),(12091,1686,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12092,1686,'post_slider_check_key','0'),(12093,1686,'_yoast_wpseo_content_score','30'),(12094,1686,'_yoast_wpseo_primary_category',''),(12095,1686,'_publicize_twitter_user','@SavorMyWords'),(12099,1686,'_wpas_done_all','1'),(12101,1683,'dsq_thread_id','5902511318'),(12104,1686,'dsq_thread_id','5903290445'),(12112,1679,'dsq_thread_id','5905614739'),(12116,1692,'_edit_last','1'),(12117,1692,'_use_impact','no'),(12118,1692,'_impact_noindex','index'),(12119,1692,'_impact_nofollow','follow'),(12120,1692,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12121,1692,'post_slider_check_key','0'),(12122,1692,'_yoast_wpseo_content_score','60'),(12123,1692,'_yoast_wpseo_primary_category',''),(12124,1692,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12125,1692,'_publicize_twitter_user','@SavorMyWords'),(12126,1692,'_edit_lock','1497824016:1'),(12130,1692,'_wpas_done_all','1'),(12132,1692,'dsq_thread_id','5921798415'),(12134,1692,'_jetpack_dont_email_post_to_subs','1'),(12137,1692,'_wpas_skip_16665421','1'),(12138,1692,'_wpas_skip_9306599','1'),(12139,1692,'_wpas_skip_9626447','1'),(12140,1692,'_wpas_skip_12748247','1'),(12141,1692,'_wpas_skip_8363136','1'),(12149,573,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12150,2,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12154,1699,'_wp_attached_file','2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg'),(12155,1699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:53:\"2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Valentines-Day-Kissing-Shadow-Couple-Wide-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:54:\"Valentines-Day-Kissing-Shadow-Couple-Wide-1170x350.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:54:\"Valentines-Day-Kissing-Shadow-Couple-Wide-1920x500.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:54:\"Valentines-Day-Kissing-Shadow-Couple-Wide-1170x500.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:53:\"Valentines-Day-Kissing-Shadow-Couple-Wide-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12156,1698,'_edit_last','1'),(12157,1698,'_use_impact','no'),(12158,1698,'_impact_noindex','index'),(12159,1698,'_impact_nofollow','follow'),(12160,1698,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12161,1698,'post_slider_check_key','0'),(12162,1698,'_yoast_wpseo_content_score','30'),(12163,1698,'_yoast_wpseo_primary_category','1'),(12164,1698,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1699;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12165,1698,'_publicize_twitter_user','@SavorMyWords'),(12166,1698,'_edit_lock','1500225014:1'),(12170,1698,'_wpas_done_all','1'),(12172,1698,'dsq_thread_id','5993300816'),(12178,1703,'_wp_attached_file','2017/07/image.png'),(12179,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:540;s:4:\"file\";s:17:\"2017/07/image.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-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:17:\"image-216x300.png\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:17:\"image-388x350.png\";s:5:\"width\";i:388;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:17:\"image-388x350.png\";s:5:\"width\";i:388;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:17:\"image-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:17:\"image-388x500.png\";s:5:\"width\";i:388;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:17:\"image-388x500.png\";s:5:\"width\";i:388;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:17:\"image-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:17:\"image-280x540.png\";s:5:\"width\";i:280;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:17:\"image-388x280.png\";s:5:\"width\";i:388;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"image-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12183,1702,'_wpas_done_all','1'),(12184,1702,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1703;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12186,1702,'dsq_thread_id','6020288534'),(12191,1702,'_jetpack_dont_email_post_to_subs','1'),(12339,1733,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12197,1702,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12198,1702,'post_slider_check_key','0'),(12199,1702,'_yoast_wpseo_content_score','60'),(12200,1702,'_yoast_wpseo_primary_category',''),(12201,1702,'_wpas_skip_16665421','1'),(12202,1702,'_wpas_skip_9306599','1'),(12203,1702,'_wpas_skip_9626447','1'),(12204,1702,'_wpas_skip_12748247','1'),(12205,1702,'_wpas_skip_8363136','1'),(12210,1709,'sc_member_order','0'),(12211,1709,'_publicize_twitter_user','@SavorMyWords'),(12212,1710,'_wp_attached_file','2017/08/image.png'),(12213,1710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:683;s:6:\"height\";i:785;s:4:\"file\";s:17:\"2017/08/image.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-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:17:\"image-261x300.png\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:17:\"image-683x350.png\";s:5:\"width\";i:683;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:17:\"image-570x350.png\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:17:\"image-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:17:\"image-683x500.png\";s:5:\"width\";i:683;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:17:\"image-683x500.png\";s:5:\"width\";i:683;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:17:\"image-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:17:\"image-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:17:\"image-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:17:\"image-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"image-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12217,1709,'_wpas_done_all','1'),(12218,1709,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1710\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(12219,1709,'_edit_lock','1502197157:1'),(12220,1709,'_edit_last','1'),(12221,1709,'_jetpack_dont_email_post_to_subs','1'),(12236,1709,'_thumbnail_id','1710'),(12227,1709,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12228,1709,'post_slider_check_key','0'),(12229,1709,'_yoast_wpseo_content_score','60'),(12230,1709,'_yoast_wpseo_primary_category',''),(12231,1709,'_wpas_skip_16665421','1'),(12232,1709,'_wpas_skip_9306599','1'),(12233,1709,'_wpas_skip_9626447','1'),(12234,1709,'_wpas_skip_12748247','1'),(12235,1709,'_wpas_skip_8363136','1'),(12240,1709,'dsq_thread_id','6051054723'),(12246,1715,'_wp_attached_file','2017/08/image-1.png'),(12247,1715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:355;s:6:\"height\";i:554;s:4:\"file\";s:19:\"2017/08/image-1.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-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:19:\"image-1-192x300.png\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:19:\"image-1-355x350.png\";s:5:\"width\";i:355;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:19:\"image-1-355x350.png\";s:5:\"width\";i:355;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:19:\"image-1-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:19:\"image-1-355x500.png\";s:5:\"width\";i:355;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"image-1-355x500.png\";s:5:\"width\";i:355;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:19:\"image-1-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:19:\"image-1-280x554.png\";s:5:\"width\";i:280;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:19:\"image-1-355x280.png\";s:5:\"width\";i:355;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:19:\"image-1-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12251,1714,'_wpas_done_all','1'),(12252,1714,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1715;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12253,1714,'_edit_lock','1503025650:1'),(12254,1714,'_edit_last','1'),(12255,1714,'_jetpack_dont_email_post_to_subs','1'),(12270,1718,'sc_member_order','0'),(12258,1714,'_use_impact','no'),(12259,1714,'_impact_noindex','index'),(12260,1714,'_impact_nofollow','follow'),(12261,1714,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12262,1714,'post_slider_check_key','0'),(12263,1714,'_yoast_wpseo_content_score','60'),(12264,1714,'_yoast_wpseo_primary_category',''),(12265,1714,'_wpas_skip_16665421','1'),(12266,1714,'_wpas_skip_9306599','1'),(12267,1714,'_wpas_skip_9626447','1'),(12268,1714,'_wpas_skip_12748247','1'),(12269,1714,'_wpas_skip_8363136','1'),(12271,1718,'_publicize_twitter_user','@SavorMyWords'),(12272,1719,'_wp_attached_file','2017/08/image-2.png'),(12273,1719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:351;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2017/08/image-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-2-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:\"image-2-239x300.png\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:19:\"image-2-351x350.png\";s:5:\"width\";i:351;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:19:\"image-2-351x350.png\";s:5:\"width\";i:351;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:19:\"image-2-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:19:\"image-2-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:19:\"image-2-280x440.png\";s:5:\"width\";i:280;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:19:\"image-2-351x280.png\";s:5:\"width\";i:351;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:19:\"image-2-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12277,1718,'_wpas_done_all','1'),(12278,1718,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1719;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12279,1718,'_edit_lock','1502909059:1'),(12280,1718,'_edit_last','1'),(12281,1718,'_jetpack_dont_email_post_to_subs','1'),(12297,1718,'dsq_thread_id','6071465097'),(12284,1718,'_use_impact','no'),(12285,1718,'_impact_noindex','index'),(12286,1718,'_impact_nofollow','follow'),(12287,1718,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12288,1718,'post_slider_check_key','0'),(12289,1718,'_yoast_wpseo_content_score','60'),(12290,1718,'_yoast_wpseo_primary_category',''),(12291,1718,'_wpas_skip_16665421','1'),(12292,1718,'_wpas_skip_9306599','1'),(12293,1718,'_wpas_skip_9626447','1'),(12294,1718,'_wpas_skip_12748247','1'),(12295,1718,'_wpas_skip_8363136','1'),(12299,1714,'dsq_thread_id','6071915097'),(12300,1722,'sc_member_order','0'),(12301,1722,'_publicize_twitter_user','@SavorMyWords'),(12302,1723,'_wp_attached_file','2017/08/image-3.png'),(12303,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:368;s:6:\"height\";i:447;s:4:\"file\";s:19:\"2017/08/image-3.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-3-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:\"image-3-247x300.png\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:19:\"image-3-368x350.png\";s:5:\"width\";i:368;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:19:\"image-3-368x350.png\";s:5:\"width\";i:368;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:19:\"image-3-270x250.png\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:19:\"image-3-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:19:\"image-3-280x447.png\";s:5:\"width\";i:280;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:19:\"image-3-368x280.png\";s:5:\"width\";i:368;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:19:\"image-3-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12307,1722,'_wpas_done_all','1'),(12308,1722,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1723;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12314,1722,'_edit_lock','1503025651:1'),(12315,1722,'_edit_last','1'),(12316,1722,'_jetpack_dont_email_post_to_subs','1'),(12332,1722,'dsq_thread_id','6073993145'),(12322,1722,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12323,1722,'post_slider_check_key','0'),(12324,1722,'_yoast_wpseo_content_score','90'),(12325,1722,'_yoast_wpseo_primary_category',''),(12326,1722,'_wpas_skip_16665421','1'),(12327,1722,'_wpas_skip_9306599','1'),(12328,1722,'_wpas_skip_9626447','1'),(12329,1722,'_wpas_skip_12748247','1'),(12330,1722,'_wpas_skip_8363136','1'),(12338,1466,'_oembed_9d6c3925f3af6ca51834906a6ff73c82','{{unknown}}'),(12340,1734,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12353,1737,'_edit_last','1'),(12443,1768,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12442,1768,'_edit_last','1'),(12357,1737,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12358,1737,'post_slider_check_key','0'),(12359,1737,'_yoast_wpseo_content_score','30'),(12360,1737,'_yoast_wpseo_primary_category',''),(12361,1737,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12362,1737,'_publicize_twitter_user','@SavorMyWords'),(12363,1737,'_edit_lock','1505536042:1'),(12367,1737,'_wpas_done_all','1'),(12369,1737,'dsq_thread_id','6147051471'),(12370,1747,'_edit_last','1'),(12371,1747,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12372,1747,'_edit_lock','1509943076:1'),(12376,1747,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12377,1747,'post_slider_check_key','0'),(12378,1747,'_yoast_wpseo_content_score','90'),(12379,1747,'_yoast_wpseo_primary_category',''),(12380,1747,'_publicize_twitter_user','@SavorMyWords'),(12384,1747,'_wpas_done_all','1'),(12386,1747,'dsq_thread_id','6265445287'),(12387,1753,'_edit_last','1'),(12388,1753,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12389,1753,'_edit_lock','1509943846:1'),(12401,1753,'_wpas_done_all','1'),(12405,1755,'_edit_last','1'),(12393,1753,'_use_impact','no'),(12394,1753,'_impact_noindex','index'),(12395,1753,'_impact_nofollow','follow'),(12396,1753,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12397,1753,'post_slider_check_key','0'),(12398,1753,'_yoast_wpseo_content_score','60'),(12399,1753,'_yoast_wpseo_primary_category',''),(12400,1753,'_publicize_twitter_user','@SavorMyWords'),(12404,1753,'dsq_thread_id','6265458268'),(12406,1755,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12407,1755,'_edit_lock','1509945863:1'),(12408,1755,'_use_impact','no'),(12409,1755,'_impact_noindex','index'),(12410,1755,'_impact_nofollow','follow'),(12411,1755,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12412,1755,'post_slider_check_key','0'),(12413,1755,'_yoast_wpseo_content_score','90'),(12414,1755,'_yoast_wpseo_primary_category',''),(12415,1755,'_publicize_twitter_user','@SavorMyWords'),(12419,1755,'_wpas_done_all','1'),(12421,1755,'dsq_thread_id','6265492271'),(12422,1760,'_wp_attached_file','2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg'),(12423,1760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:720;s:4:\"file\";s:113:\"2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-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:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-900x350.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"slider-full\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:113:\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12424,1759,'_edit_last','1'),(12425,1759,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";s:4:\"1760\";s:11:\"_thumb_type\";s:5:\"thumb\";}'),(12426,1759,'_edit_lock','1514937414:1'),(12489,1776,'_edit_last','1'),(12488,1776,'_edit_lock','1524672234:1'),(12430,1759,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12431,1759,'post_slider_check_key','0'),(12432,1759,'_yoast_wpseo_content_score','60'),(12433,1759,'_yoast_wpseo_primary_category',''),(12434,1759,'_publicize_twitter_user','@SavorMyWords'),(12435,1759,'_thumbnail_id','1760'),(12439,1759,'_wpas_done_all','1'),(12441,1759,'dsq_thread_id','6385592239'),(12444,1768,'_edit_lock','1518581188:1'),(12445,1768,'_use_impact','no'),(12446,1768,'_impact_noindex','index'),(12447,1768,'_impact_nofollow','follow'),(12448,1768,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12449,1768,'post_slider_check_key','0'),(12450,1768,'_yoast_wpseo_content_score','60'),(12451,1768,'_yoast_wpseo_primary_category',''),(12452,1768,'_publicize_twitter_user','@SavorMyWords'),(12456,1768,'_wpas_done_all','1'),(12458,1768,'dsq_thread_id','6475873977'),(12459,1770,'_publicize_twitter_user','@SavorMyWords'),(12460,1771,'_wp_attached_file','2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg'),(12461,1771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:344;s:4:\"file\";s:42:\"2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-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:\"tumblr_mgujaf5mqs1rikdvro1_500-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-280x344.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:42:\"tumblr_mgujaf5mqs1rikdvro1_500-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12465,1770,'_wpas_done_all','1'),(12466,1770,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1771;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12476,1770,'dsq_thread_id','6619257696'),(12468,1773,'_publicize_twitter_user','@SavorMyWords'),(12469,1774,'_wp_attached_file','2018/04/image.png'),(12470,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:172;s:4:\"file\";s:17:\"2018/04/image.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:17:\"image-270x172.png\";s:5:\"width\";i:270;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:17:\"image-280x172.png\";s:5:\"width\";i:280;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:17:\"image-280x172.png\";s:5:\"width\";i:280;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"image-272x172.png\";s:5:\"width\";i:272;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12474,1773,'_wpas_done_all','1'),(12475,1773,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1774;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12478,1773,'dsq_thread_id','6619266815'),(12480,1776,'_publicize_twitter_user','@SavorMyWords'),(12481,1777,'_wp_attached_file','2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg'),(12482,1777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:409;s:4:\"file\";s:53:\"2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"tc-grid-full\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-612x350.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"tc-grid\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-570x350.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"tc-thumb\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-270x250.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-280x409.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-560x409.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:53:\"sad-girl-lying-in-bed-picture-id493155910-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12486,1776,'_wpas_done_all','1'),(12487,1776,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";i:1777;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12507,1776,'dsq_thread_id','6634446433'),(12492,1776,'_use_impact','no'),(12493,1776,'_impact_noindex','index'),(12494,1776,'_impact_nofollow','follow'),(12495,1776,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12496,1776,'post_slider_check_key','0'),(12497,1776,'_yoast_wpseo_content_score','30'),(12498,1776,'_yoast_wpseo_primary_category',''),(12499,1776,'_wpas_skip_16665421','1'),(12500,1776,'_wpas_skip_9306599','1'),(12501,1776,'_wpas_skip_9626447','1'),(12502,1776,'_wpas_skip_12748247','1'),(12503,1776,'_wpas_skip_8363136','1'),(12508,1784,'_edit_last','1'),(12509,1784,'_use_impact','no'),(12510,1784,'_impact_noindex','index'),(12511,1784,'_impact_nofollow','follow'),(12512,1784,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12513,1784,'post_slider_check_key','0'),(12514,1784,'_yoast_wpseo_content_score','60'),(12515,1784,'_yoast_wpseo_primary_category','1'),(12516,1784,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12517,1784,'_publicize_twitter_user','@SavorMyWords'),(12518,1784,'_edit_lock','1529702621:1'),(12522,1784,'_wpas_done_all','1'),(12539,1784,'dsq_thread_id','6748489892'),(12524,1787,'_edit_last','1'),(12528,1787,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12529,1787,'post_slider_check_key','0'),(12530,1787,'_yoast_wpseo_content_score','90'),(12531,1787,'_yoast_wpseo_primary_category',''),(12532,1787,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12533,1787,'_publicize_twitter_user','@SavorMyWords'),(12534,1787,'_edit_lock','1529703066:1'),(12538,1787,'_wpas_done_all','1'),(12541,1787,'dsq_thread_id','6748498750'),(12542,1797,'_edit_last','1'),(12543,1797,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12544,1797,'_edit_lock','1538711327:1'),(12622,1816,'_impact_noindex','index'),(12621,1816,'_use_impact','no'),(12620,1816,'_edit_lock','1566415176:1'),(12548,1797,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12549,1797,'post_slider_check_key','0'),(12550,1797,'_yoast_wpseo_content_score','90'),(12551,1797,'_yoast_wpseo_primary_category',''),(12552,1797,'_publicize_twitter_user','@SavorMyWords'),(12556,1797,'_wpas_done_all','1'),(12558,1797,'dsq_thread_id','6950949662'),(12559,1804,'_edit_last','1'),(12664,1824,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12663,1824,'_edit_last','1'),(12563,1804,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12564,1804,'post_slider_check_key','0'),(12565,1804,'_yoast_wpseo_content_score','90'),(12566,1804,'_yoast_wpseo_primary_category',''),(12567,1804,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12568,1804,'_publicize_twitter_user','@SavorMyWords'),(12569,1804,'_edit_lock','1553138673:1'),(12570,1804,'_oembed_0d37a804ff9789aa8644d9e9bebadb4d','{{unknown}}'),(12574,1804,'_wpas_done_all','1'),(12576,1804,'dsq_thread_id','7308523249'),(12577,1811,'_edit_last','1'),(12578,1811,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12579,1811,'_edit_lock','1553139738:1'),(12767,1856,'_impact_noindex','index'),(12738,1851,'_edit_last','1'),(12583,1811,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12584,1811,'layout_key',''),(12585,1811,'post_slider_check_key','0'),(12586,1811,'_yoast_wpseo_content_score','90'),(12587,1811,'_yoast_wpseo_primary_category',''),(12588,1811,'_publicize_twitter_user','@SavorMyWords'),(12592,1811,'_wpas_done_all','1'),(12606,1811,'dsq_thread_id','7308554384'),(12594,1813,'_edit_last','1'),(12727,1843,'_publicize_twitter_user','@SavorMyWords'),(12728,1843,'_edit_last','1'),(12598,1813,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12599,1813,'layout_key',''),(12600,1813,'post_slider_check_key','0'),(12601,1813,'_yoast_wpseo_content_score','90'),(12602,1813,'_yoast_wpseo_primary_category',''),(12603,1813,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12604,1813,'_publicize_twitter_user','@SavorMyWords'),(12605,1813,'_edit_lock','1553140728:1'),(12611,1813,'_wpas_done_all','1'),(12613,1813,'dsq_thread_id','7308566511'),(12618,1816,'_wpas_done_all','1'),(12619,1816,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12617,1816,'_publicize_twitter_user','@SavorMyWords'),(12623,1816,'_impact_nofollow','follow'),(12624,1816,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12625,1816,'layout_key',''),(12626,1816,'post_slider_check_key','0'),(12627,1816,'_yoast_wpseo_content_score','60'),(12638,1816,'dsq_thread_id','7598902240'),(12629,1816,'_edit_last','1'),(12632,1816,'_yoast_wpseo_primary_category',''),(12633,1816,'_wpas_skip_16665421','1'),(12634,1816,'_wpas_skip_9306599','1'),(12635,1816,'_wpas_skip_9626447','1'),(12636,1816,'_wpas_skip_12748247','1'),(12637,1816,'_wpas_skip_8363136','1'),(12639,1821,'_edit_last','1'),(12640,1821,'tc-thumb-fld','a:2:{s:9:\"_thumb_id\";b:0;s:11:\"_thumb_type\";s:10:\"attachment\";}'),(12641,1821,'_edit_lock','1569513784:1'),(12766,1856,'_use_impact','no'),(12765,1856,'_edit_lock','1606937160:1'),(12764,1856,'_edit_last','1'),(12645,1821,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12646,1821,'layout_key',''),(12647,1821,'post_slider_check_key','0'),(12648,1821,'_yoast_wpseo_content_score','90'),(12649,1821,'_yoast_wpseo_primary_category',''),(12650,1821,'_publicize_twitter_user','@SavorMyWords'),(12654,1821,'_wpas_done_all','1'),(12656,1821,'dsq_thread_id','7651549803'),(12665,1824,'_edit_lock','1574789549:1'),(12784,1865,'_edit_last','1'),(12783,1863,'_edit_lock','1607780491:1'),(12782,1863,'_edit_last','1'),(12669,1824,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12670,1824,'layout_key',''),(12671,1824,'post_slider_check_key','0'),(12672,1824,'_yoast_wpseo_content_score','30'),(12673,1824,'_yoast_wpseo_primary_category','1'),(12674,1824,'_publicize_twitter_user','@SavorMyWords'),(12678,1824,'_wpas_done_all','1'),(12680,1824,'dsq_thread_id','7717469117'),(12768,1856,'_impact_nofollow','follow'),(12769,1856,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12734,1843,'_yoast_wpseo_content_score','90'),(12733,1843,'_yoast_wpseo_primary_category',''),(12732,1843,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12731,1843,'_impact_nofollow','follow'),(12730,1843,'_impact_noindex','index'),(12729,1843,'_use_impact','no'),(12722,1466,'_oembed_07cfd96135aedcead266e4d5379cd078','{{unknown}}'),(12723,1517,'_oembed_dd27257b7be326d5870ef4ce7952dfb8','{{unknown}}'),(12726,1843,'_edit_lock','1598359180:1'),(12810,1872,'_edit_lock','1608739699:1'),(12739,1851,'_edit_lock','1605454154:1'),(12809,1872,'_edit_last','1'),(12713,1834,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12714,1834,'_yoast_wpseo_primary_category','1'),(12715,1834,'_yoast_wpseo_content_score','90'),(12719,1834,'_wpas_done_all','1'),(12829,1879,'_edit_last','1'),(12830,1879,'_edit_lock','1610890763:1'),(12743,1851,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12744,1851,'_yoast_wpseo_content_score','90'),(12745,1851,'_yoast_wpseo_primary_category','1'),(12746,1851,'_publicize_twitter_user','@SavorMyWords'),(12750,1851,'_wpas_done_all','1'),(12752,1853,'_edit_lock','1605455106:1'),(12751,1853,'_edit_last','1'),(13009,1926,'_edit_lock','1701287456:1'),(12853,1891,'_edit_last','1'),(12756,1853,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12757,1853,'_yoast_wpseo_content_score','90'),(12758,1853,'_yoast_wpseo_primary_category','1'),(12759,1853,'_publicize_twitter_user','@SavorMyWords'),(12763,1853,'_wpas_done_all','1'),(12770,1856,'_yoast_wpseo_content_score','90'),(12771,1856,'_yoast_wpseo_primary_category',''),(12772,1856,'_publicize_twitter_user','@SavorMyWords'),(12773,1859,'_wp_attached_file','2020/12/estrangement.jpg'),(12774,1859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:710;s:4:\"file\";s:24:\"2020/12/estrangement.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"estrangement-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:25:\"estrangement-1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"estrangement-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"estrangement-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-large-thumb\";a:4:{s:4:\"file\";s:24:\"estrangement-880x496.jpg\";s:5:\"width\";i:880;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:24:\"estrangement-450x254.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:24:\"estrangement-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:24:\"estrangement-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:24:\"estrangement-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:24:\"estrangement-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:24:\"estrangement-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12775,1856,'_thumbnail_id','1859'),(12779,1856,'_wpas_done_all','1'),(12781,1861,'_edit_lock','1606967252:1'),(12780,1861,'_edit_last','1'),(12785,1865,'_edit_lock','1607757219:1'),(12786,1866,'_wp_attached_file','2020/12/coffee.jpg'),(12787,1866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:330;s:4:\"file\";s:18:\"2020/12/coffee.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"coffee-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:18:\"coffee-450x291.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:18:\"coffee-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:18:\"coffee-280x330.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:18:\"coffee-510x280.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:18:\"coffee-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12788,1865,'_thumbnail_id','1866'),(12789,1865,'_use_impact','no'),(12790,1865,'_impact_noindex','index'),(12791,1865,'_impact_nofollow','follow'),(12792,1865,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12793,1865,'_yoast_wpseo_content_score','90'),(12794,1865,'_yoast_wpseo_primary_category',''),(12795,1865,'_publicize_twitter_user','@SavorMyWords'),(12799,1865,'_wpas_done_all','1'),(12801,1869,'_edit_lock','1607757737:1'),(12800,1869,'_edit_last','1'),(12802,1863,'_use_impact','no'),(12803,1863,'_impact_noindex','index'),(12804,1863,'_impact_nofollow','follow'),(12805,1863,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12806,1863,'_yoast_wpseo_content_score','90'),(12807,1863,'_yoast_wpseo_primary_category',''),(12808,1863,'_publicize_twitter_user','@SavorMyWords'),(12812,1873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:21:\"2020/12/Sad-Woman.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-280x427.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-560x427.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:21:\"Sad-Woman-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12813,1872,'_thumbnail_id','1873'),(12964,1916,'_wp_attached_file','2022/10/Couple_Banner-768x432-1.jpg'),(12896,1901,'_edit_last','1'),(12817,1872,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12818,1872,'_yoast_wpseo_content_score','30'),(12819,1872,'_yoast_wpseo_primary_category','1'),(12820,1872,'_publicize_twitter_user','@SavorMyWords'),(12824,1872,'_wpas_done_all','1'),(12826,1876,'_edit_lock','1608769377:1'),(12825,1876,'_edit_last','1'),(12827,1877,'_wp_attached_file','2020/12/reiki-main-.jpg'),(12828,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:633;s:6:\"height\";i:356;s:4:\"file\";s:23:\"2020/12/reiki-main-.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"reiki-main--300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"reiki-main--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:23:\"reiki-main--450x253.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:23:\"reiki-main--280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:23:\"reiki-main--280x356.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:23:\"reiki-main--560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:23:\"reiki-main--560x356.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:23:\"reiki-main--272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12845,1886,'_yoast_wpseo_content_score','90'),(12844,1886,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12843,1886,'_impact_nofollow','follow'),(12842,1886,'_impact_noindex','index'),(12841,1886,'_use_impact','no'),(12840,1886,'_edit_last','1'),(12848,1886,'_edit_lock','1627929077:1'),(12852,1886,'_wpas_done_all','1'),(13010,1927,'_wp_attached_file','2023/11/comparemanwoman.jpg'),(12922,1906,'_edit_last','1'),(12857,1891,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12858,1891,'_yoast_wpseo_content_score','90'),(12859,1891,'_yoast_wpseo_primary_category',''),(12860,1891,'_publicize_twitter_user','@SavorMyWords'),(12861,1891,'_edit_lock','1631426915:1'),(12865,1891,'_wpas_done_all','1'),(12866,1894,'_edit_last','1'),(13229,2006,'_edit_lock','1752080443:1'),(12935,1909,'_edit_last','1'),(12870,1894,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12871,1894,'_yoast_wpseo_content_score','90'),(12872,1894,'_yoast_wpseo_primary_category',''),(12873,1894,'_publicize_twitter_user','@SavorMyWords'),(12874,1894,'_edit_lock','1631427160:1'),(12878,1894,'_wpas_done_all','1'),(12879,1897,'_oembed_20e9cb79c435154d3e6e20eaf4d4094a','{{unknown}}'),(12880,1897,'_edit_last','1'),(12881,1897,'_edit_lock','1632067179:1'),(12882,1898,'_wp_attached_file','2021/09/overcoming_fear.png'),(12883,1898,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2021/09/overcoming_fear.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-450x338.png\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:27:\"overcoming_fear-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12884,1897,'_thumbnail_id','1898'),(12885,1897,'_use_impact','no'),(12886,1897,'_impact_noindex','index'),(12887,1897,'_impact_nofollow','follow'),(12888,1897,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12889,1897,'_yoast_wpseo_content_score','90'),(12890,1897,'_yoast_wpseo_primary_category',''),(12891,1897,'_publicize_twitter_user','@SavorMyWords'),(12895,1897,'_wpas_done_all','1'),(12963,1915,'_edit_lock','1666837112:1'),(12962,1915,'_edit_last','1'),(12900,1901,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12901,1901,'_yoast_wpseo_content_score','90'),(12902,1901,'_yoast_wpseo_primary_category',''),(12903,1901,'_publicize_twitter_user','@SavorMyWords'),(12904,1901,'_edit_lock','1636514579:1'),(12908,1901,'_wpas_done_all','1'),(12910,1903,'_edit_lock','1636656724:1'),(12909,1903,'_edit_last','1'),(13169,1986,'_use_impact','no'),(12979,1919,'_edit_lock','1676518178:1'),(12978,1919,'_edit_last','1'),(12914,1903,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12915,1903,'_yoast_wpseo_content_score','90'),(12916,1903,'_yoast_wpseo_primary_category',''),(12917,1903,'_publicize_twitter_user','@SavorMyWords'),(12921,1903,'_wpas_done_all','1'),(13008,1926,'_edit_last','1'),(12926,1906,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12927,1906,'_yoast_wpseo_content_score','90'),(12928,1906,'_yoast_wpseo_primary_category',''),(12929,1906,'_publicize_twitter_user','@SavorMyWords'),(12930,1906,'_edit_lock','1638215901:1'),(12934,1906,'_wpas_done_all','1'),(13025,1930,'_edit_lock','1704211658:1'),(13024,1930,'_edit_last','1'),(12939,1909,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12940,1909,'_yoast_wpseo_content_score','90'),(12941,1909,'_yoast_wpseo_primary_category',''),(12942,1909,'_publicize_twitter_user','@SavorMyWords'),(12943,1909,'_edit_lock','1644981319:1'),(12944,1909,'_thumbnail_id','1873'),(12948,1909,'_wpas_done_all','1'),(12950,1911,'_edit_lock','1644987301:1'),(12949,1911,'_edit_last','1'),(12951,1911,'_use_impact','no'),(12952,1911,'_impact_noindex','index'),(12953,1911,'_impact_nofollow','follow'),(12954,1911,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12955,1911,'_yoast_wpseo_content_score','90'),(12956,1911,'_yoast_wpseo_primary_category',''),(12957,1911,'_publicize_twitter_user','@SavorMyWords'),(12961,1911,'_wpas_done_all','1'),(12965,1916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:432;s:4:\"file\";s:35:\"2022/10/Couple_Banner-768x432-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-450x253.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-280x432.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-560x432.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:35:\"Couple_Banner-768x432-1-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12966,1915,'_thumbnail_id','1916'),(13146,1980,'_use_impact','no'),(13145,1980,'_edit_lock','1747964007:1'),(12970,1915,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12971,1915,'_yoast_wpseo_content_score','90'),(12972,1915,'_yoast_wpseo_primary_category','1'),(12973,1915,'_publicize_twitter_user','@SavorMyWords'),(12977,1915,'_wpas_done_all','1'),(13083,1953,'_edit_lock','1730730386:1'),(13082,1953,'_edit_last','1'),(12983,1919,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(12984,1919,'_yoast_wpseo_content_score','90'),(12985,1919,'_yoast_wpseo_primary_category',''),(12986,1919,'_publicize_twitter_user','@SavorMyWords'),(12990,1919,'_wpas_done_all','1'),(12998,1921,'_edit_lock','1676519165:1'),(12997,1921,'_edit_last','1'),(12993,1919,'_wpas_skip_16665421','1'),(12994,1919,'_wpas_skip_9306599','1'),(12995,1919,'_wpas_skip_9626447','1'),(12996,1919,'_wpas_skip_12748247','1'),(13011,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:599;s:4:\"file\";s:27:\"2023/11/comparemanwoman.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-450x449.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:27:\"comparemanwoman-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13012,1926,'_thumbnail_id','1927'),(13013,1926,'_use_impact','no'),(13014,1926,'_impact_noindex','index'),(13015,1926,'_impact_nofollow','follow'),(13016,1926,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13017,1926,'_yoast_wpseo_content_score','90'),(13018,1926,'_yoast_wpseo_primary_category','1'),(13019,1926,'_publicize_twitter_user','@SavorMyWords'),(13023,1926,'_wpas_done_all','1'),(13230,2007,'_wp_attached_file','2025/07/ChatGPT-Image-Jul-9-2025-09_47_18-AM.png'),(13111,1967,'_edit_last','1'),(13029,1930,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13030,1930,'_yoast_wpseo_content_score','90'),(13031,1930,'_yoast_wpseo_primary_category',''),(13032,1930,'_publicize_twitter_user','@SavorMyWords'),(13036,1930,'_wpas_done_all','1'),(13038,1933,'_edit_lock','1704217883:1'),(13037,1933,'_edit_last','1'),(13039,1934,'_wp_attached_file','2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-scaled.jpg'),(13040,1934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:58:\"2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-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:52:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash.jpg\";}'),(13041,1935,'_wp_attached_file','2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-scaled.jpg'),(13042,1935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:60:\"2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-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:54:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1.jpg\";}'),(13043,1936,'_wp_attached_file','2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg'),(13044,1936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:853;s:4:\"file\";s:53:\"2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"britt-small-thumb\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-11\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-12\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-21\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"so-masonry-size-22\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:53:\"joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13045,1933,'_thumbnail_id','1936'),(13056,1933,'_wpas_done_all','1'),(13147,1980,'_impact_noindex','index'),(13128,1972,'_edit_last','1'),(13127,1517,'_oembed_611d1e1f90f5546f09deaeeb4ed422a2','{{unknown}}'),(13052,1933,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13053,1933,'_yoast_wpseo_content_score','90'),(13054,1933,'_yoast_wpseo_primary_category',''),(13055,1933,'_publicize_twitter_user','@SavorMyWords'),(13148,1980,'_impact_nofollow','follow'),(13068,1948,'_edit_lock','1729280346:1'),(13067,1948,'_edit_last','1'),(13066,1466,'_oembed_d3cade0c01abf66e59a790b84398b6d9','{{unknown}}'),(13144,1980,'_edit_last','1'),(13074,1948,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13075,1948,'_yoast_wpseo_primary_category',''),(13076,1948,'_yoast_wpseo_content_score','60'),(13077,1948,'_yoast_wpseo_estimated-reading-time-minutes','2'),(13081,1948,'_wpas_done_all','1'),(13168,1986,'_edit_lock','1749568594:1'),(13167,1986,'_edit_last','1'),(13087,1953,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13088,1953,'_yoast_wpseo_primary_category',''),(13089,1953,'_yoast_wpseo_content_score','60'),(13090,1953,'_yoast_wpseo_estimated-reading-time-minutes','2'),(13094,1953,'_wpas_done_all','1'),(13095,1962,'_wp_attached_file','2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp'),(13096,1962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:76:\"2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp\";s:8:\"filesize\";i:20754;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-300x180.webp\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2396;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-1024x614.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1642;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-768x461.webp\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6618;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:77:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-1536x922.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15004;}s:22:\"britt-above-post-thumb\";a:5:{s:4:\"file\";s:77:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-1300x780.webp\";s:5:\"width\";i:1300;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12124;}s:17:\"britt-large-thumb\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-880x528.webp\";s:5:\"width\";i:880;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7844;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-450x270.webp\";s:5:\"width\";i:450;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3624;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-280x280.webp\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3182;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-280x560.webp\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3938;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-560x280.webp\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4550;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-560x560.webp\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6784;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:76:\"Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride-272x182.webp\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13097,1961,'_edit_last','1'),(13098,1961,'_edit_lock','1731080599:1'),(13099,1961,'_thumbnail_id','1962'),(13100,1961,'_use_impact','no'),(13101,1961,'_impact_noindex','index'),(13102,1961,'_impact_nofollow','follow'),(13103,1961,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13104,1961,'_yoast_wpseo_primary_category',''),(13105,1961,'_yoast_wpseo_content_score','90'),(13106,1961,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13110,1961,'_wpas_done_all','1'),(13228,2006,'_edit_last','1'),(13115,1967,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13116,1967,'_yoast_wpseo_primary_category',''),(13117,1967,'_yoast_wpseo_content_score','90'),(13118,1967,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13119,1967,'_edit_lock','1732035424:1'),(13120,1969,'_wp_attached_file','2024/11/PHILISTINE.jpg'),(13121,1969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:224;s:4:\"file\";s:22:\"2024/11/PHILISTINE.jpg\";s:8:\"filesize\";i:9093;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PHILISTINE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6088;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:22:\"PHILISTINE-225x182.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11611;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13122,1967,'_thumbnail_id','1969'),(13126,1967,'_wpas_done_all','1'),(13129,1972,'_edit_lock','1734664819:1'),(13133,1972,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13134,1972,'_yoast_wpseo_primary_category',''),(13135,1972,'_yoast_wpseo_content_score','90'),(13136,1972,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13137,1974,'_wp_attached_file','2024/12/Last-First-Date.jpg'),(13138,1974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:612;s:4:\"file\";s:27:\"2024/12/Last-First-Date.jpg\";s:8:\"filesize\";i:79653;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22090;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8850;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-768x610.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94628;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-450x358.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42377;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23104;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-280x560.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34971;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-560x280.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36025;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-560x560.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66884;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:27:\"Last-First-Date-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16113;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13139,1972,'_thumbnail_id','1974'),(13143,1972,'_wpas_done_all','1'),(13149,1980,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13150,1980,'_yoast_wpseo_primary_category',''),(13151,1980,'_yoast_wpseo_content_score','90'),(13152,1980,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13153,1980,'_thumbnail_id','1466'),(13157,1980,'_wpas_done_all','1'),(13175,1986,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13174,1986,'_yoast_wpseo_content_score','90'),(13173,1986,'_yoast_wpseo_primary_category',''),(13172,1986,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13171,1986,'_impact_nofollow','follow'),(13170,1986,'_impact_noindex','index'),(13176,1988,'_wp_attached_file','2025/06/Time-Walking-Man.png'),(13177,1988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:28:\"2025/06/Time-Walking-Man.png\";s:8:\"filesize\";i:2412417;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41259;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1247267;}s:17:\"britt-large-thumb\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-880x880.png\";s:5:\"width\";i:880;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1609739;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398916;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144188;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:318141;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316552;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:636133;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:28:\"Time-Walking-Man-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91885;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13178,1986,'_thumbnail_id','1988'),(13182,1986,'_wpas_done_all','1'),(13183,1986,'_publicize_shares','a:2:{i:0;a:10:{s:6:\"status\";s:7:\"success\";s:7:\"message\";s:61:\"http://monicarenata-poetry.tumblr.com/post/785977626294616064\";s:9:\"timestamp\";i:1749566675;s:7:\"service\";s:6:\"tumblr\";s:13:\"connection_id\";i:12746483;s:11:\"external_id\";s:30:\"monicarenata-poetry.tumblr.com\";s:13:\"external_name\";s:13:\"Monica Renata\";s:15:\"profile_picture\";s:0:\"\";s:12:\"profile_link\";s:38:\"http://monicarenata-poetry.tumblr.com/\";s:13:\"wpcom_user_id\";i:0;}i:1;a:10:{s:6:\"status\";s:7:\"failure\";s:7:\"message\";s:173:\"Error 401 (Error validating access token: The session has been invalidated because the user changed their password or Facebook has changed the session for security reasons.)\";s:9:\"timestamp\";i:1749566676;s:7:\"service\";s:8:\"facebook\";s:13:\"connection_id\";i:16878509;s:11:\"external_id\";i:347909465564862;s:13:\"external_name\";s:13:\"Monica Renata\";s:15:\"profile_picture\";s:420:\"https://scontent-dfw5-2.xx.fbcdn.net/v/t39.30808-1/308112699_502399705222993_6864835036553074694_n.jpg?stp=cp0_dst-jpg_s50x50_tt6&_nc_cat=106&ccb=1-7&_nc_sid=f907e8&_nc_ohc=qxba-oxSU3cQ7kNvwElxVnA&_nc_oc=Adm0zjxYfHqeDzZn5XhKwsC18Uvh00UkKlzDj3DTxeQl1elZk8O0UcAHl8vogMG66PA&_nc_zt=24&_nc_ht=scontent-dfw5-2.xx&edm=AGaHXAAEAAAA&_nc_gid=LJu1Kc5VwdMafCsLgQaCPg&oh=00_AfPpsCYDziMtupOjqONKY1Cgqd6FygQIJ6QUZcMx9pyCkw&oe=684C3A7F\";s:12:\"profile_link\";s:46:\"https://www.facebook.com/MonicaRenataWilliams/\";s:13:\"wpcom_user_id\";i:0;}}'),(13231,2007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:4:\"file\";s:48:\"2025/07/ChatGPT-Image-Jul-9-2025-09_47_18-AM.png\";s:8:\"filesize\";i:2603158;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95518;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-683x1024.png\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1150390;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-768x1152.png\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1462755;}s:17:\"britt-large-thumb\";a:5:{s:4:\"file\";s:49:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-880x1320.png\";s:5:\"width\";i:880;s:6:\"height\";i:1320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1880044;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-450x675.png\";s:5:\"width\";i:450;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:485269;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125702;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266791;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:245814;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:504585;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:48:\"ChatGPT-Image-Jul-9-2025-09_47_18-AM-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13201,1997,'_wp_attached_file','2025/06/Man-in-Thought-AI.png'),(13195,1986,'_wpas_skip_publicize_16878509','1'),(13196,1986,'_wpas_skip_publicize_25663788','1'),(13197,1986,'_wpas_skip_publicize_9266131','1'),(13198,1986,'_wpas_skip_publicize_9580907','1'),(13199,1986,'_wpas_skip_publicize_12746483','1'),(13200,1986,'_wpas_skip_publicize_25663790','1'),(13202,1997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:29:\"2025/06/Man-in-Thought-AI.png\";s:8:\"filesize\";i:5296032;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147676;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Man-in-Thought-AI-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1628284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:884521;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"Man-in-Thought-AI-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3271546;}s:22:\"britt-above-post-thumb\";a:5:{s:4:\"file\";s:31:\"Man-in-Thought-AI-1300x1300.png\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2381654;}s:17:\"britt-large-thumb\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-880x880.png\";s:5:\"width\";i:880;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1139173;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315412;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130462;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248968;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236185;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:478473;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:29:\"Man-in-Thought-AI-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82263;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13203,1996,'_edit_last','1'),(13204,1996,'_use_impact','no'),(13205,1996,'_impact_noindex','index'),(13206,1996,'_impact_nofollow','follow'),(13207,1996,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13208,1996,'_wpas_skip_publicize_9266131','1'),(13209,1996,'_wpas_skip_publicize_9580907','1'),(13210,1996,'_yoast_wpseo_primary_category',''),(13211,1996,'_yoast_wpseo_content_score','90'),(13212,1996,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13213,1996,'_edit_lock','1749570582:1'),(13214,1999,'_wp_attached_file','2025/06/Man-in-Thought-AI2.png'),(13215,1999,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:30:\"2025/06/Man-in-Thought-AI2.png\";s:8:\"filesize\";i:5296032;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147676;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Man-in-Thought-AI2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1628284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:884521;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Man-in-Thought-AI2-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3271546;}s:22:\"britt-above-post-thumb\";a:5:{s:4:\"file\";s:32:\"Man-in-Thought-AI2-1300x1300.png\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2381654;}s:17:\"britt-large-thumb\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-880x880.png\";s:5:\"width\";i:880;s:6:\"height\";i:880;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1139173;}s:17:\"britt-small-thumb\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315412;}s:18:\"so-masonry-size-11\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130462;}s:18:\"so-masonry-size-12\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-280x560.png\";s:5:\"width\";i:280;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248968;}s:18:\"so-masonry-size-21\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-560x280.png\";s:5:\"width\";i:560;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236185;}s:18:\"so-masonry-size-22\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-560x560.png\";s:5:\"width\";i:560;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:478473;}s:20:\"sow-carousel-default\";a:5:{s:4:\"file\";s:30:\"Man-in-Thought-AI2-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82263;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13216,1996,'_thumbnail_id','1999'),(13220,1996,'_wpas_done_all','1'),(13223,1996,'_wp_old_slug','1996-2'),(13224,1996,'_wpas_skip_publicize_16878509','1'),(13225,1996,'_wpas_skip_publicize_25663788','1'),(13226,1996,'_wpas_skip_publicize_12746483','1'),(13227,1996,'_wpas_skip_publicize_25663790','1'),(13244,2006,'_wpas_done_all','1'),(13235,2006,'_use_impact','no'),(13236,2006,'_impact_noindex','index'),(13237,2006,'_impact_nofollow','follow'),(13238,2006,'masonry_settings','a:1:{s:4:\"size\";s:2:\"11\";}'),(13239,2006,'_wpas_skip_publicize_9266131','1'),(13240,2006,'_wpas_skip_publicize_9580907','1'),(13241,2006,'_yoast_wpseo_primary_category',''),(13242,2006,'_yoast_wpseo_content_score','60'),(13243,2006,'_yoast_wpseo_estimated-reading-time-minutes','2'),(13285,2029,'_edit_lock','1781861389:2');
/*!40000 ALTER TABLE `wp_xwml_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_posts`
--
DROP TABLE IF EXISTS `wp_xwml_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=2034 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_posts`
--
LOCK TABLES `wp_xwml_posts` WRITE;
/*!40000 ALTER TABLE `wp_xwml_posts` DISABLE KEYS */;
INSERT INTO `wp_xwml_posts` VALUES (1,1,'2014-08-20 09:00:51','2014-08-20 09:00:51','Hello,\r\n\r\n \r\n\r\nFirst off, I would like to apologize for not making any posts lately. I have been in the process of taking my blogspot blog (<a title=\"Monica Renata: A Collection of Poetry and Random Thoughts\" href=\"http://monicarenata.blogspot.com\" target=\"_blank\">monicarenata.blogspot.com</a>) and moving it to my very own domain name. Welcome to <a title=\"Monica Renata: A Collection of Poems and Random Thoughts\" href=\"http://www.monicarenata.com\">MONICARENATA.COM</a>. I should be able to post all of my poems and other writings on here with ease. Also, I plan to bring much more to my audience. I hope you enjoy! And if you have any feedback or suggestions, please inform me.\r\n\r\n \r\n\r\nThanks,\r\n\r\nMonica Renata','Welcome To My Site','','publish','open','open','','hello-world','','','2014-08-20 13:52:50','2014-08-20 13:52:50','',0,'http://www.monicarenata.com/?p=1',0,'post','',3),(2,1,'2014-08-09 21:01:51','2014-08-09 21:01:51','I write when I am happy...I write when I am sad. At the end of the day I enjoy writing and also encouraging others. We all go through rough patches in life, and that is okay. \r\n\r\nBut Welcome to my site, I hope you enjoy it. Access to my social sites are available on my main page. In addition, if you would like me to write about a certain topic, please tell me and I can try to make it happen. After all, the purpose of this site is to encourage others and also help them through hard times... I know that writing has helped me through hard times as well...But yeah......\r\n\r\n\r\n<blockquote> Fill yourself with happiness with each breath you take. Don\'t let the past determine what your future shall be. Smile throughout the stormiest weather and laugh even when you are in pain. Life is too beautiful to stress over things that last mere seconds in our lifetime....................Life is too short to be anything but happy.-Monica Renata </blockquote>\r\n\r\n...and if you are having a bad day remember this:\r\n\r\n<blockquote> At some point amidst your tears, you have to decide if these tears are worth anything. Are you crying a river just to cry a river? Or are you crying a river so you can travel further along into your future? - Monica Renata </blockquote>\r\n\r\n\r\n\r\nI really hope this page helps others. Feel free to contact me via comments or via email. I am a staunch believe in \"You never know who your words can touch\".\r\n\r\n-Monica Renata ','Connect With Me','','publish','open','open','','connect-with-me','','','2014-10-01 14:16:09','2014-10-01 14:16:09','',0,'http://www.monicarenata.com/?page_id=2',0,'page','',4),(4,1,'2014-08-05 13:08:00','2014-08-05 13:08:00','The Cannots of Life\r\nBy: Monica Renata\r\n\r\nYou cannot make a well have water\r\nYou cannot make the horse drink\r\nYou cannot let your sight be perfect\r\nIf you are not willing to see\r\n\r\nOf all the things in life there are\r\nThere also is a choice\r\nYou decide the path you venture onto\r\nYou decide the words you voice\r\n\r\nYou cannot do anything\r\nOther than what you want to do\r\nAnd I cannot make you change\r\nUnless you really wanted to\r\n\r\n\r\n<strong><em>“You can never change anyone… They have to want to change themselves.”</em> –Monica Renata</strong>\r\n','The Cannots of Life','','publish','open','open','','the-cannots-of-life','','','2014-11-25 07:23:09','2014-11-25 13:23:09','',0,'http://www.monicarenata.com/?p=4',0,'post','',0),(745,1,'2014-11-25 07:23:09','2014-11-25 13:23:09','The Cannots of Life\r\nBy: Monica Renata\r\n\r\nYou cannot make a well have water\r\nYou cannot make the horse drink\r\nYou cannot let your sight be perfect\r\nIf you are not willing to see\r\n\r\nOf all the things in life there are\r\nThere also is a choice\r\nYou decide the path you venture onto\r\nYou decide the words you voice\r\n\r\nYou cannot do anything\r\nOther than what you want to do\r\nAnd I cannot make you change\r\nUnless you really wanted to\r\n\r\n\r\n<strong><em>“You can never change anyone… They have to want to change themselves.”</em> –Monica Renata</strong>\r\n','The Cannots of Life','','inherit','open','open','','4-revision-v1','','','2014-11-25 07:23:09','2014-11-25 13:23:09','',4,'http://www.monicarenata.com/4-revision-v1/',0,'revision','',0),(746,1,'2014-11-25 07:24:50','2014-11-25 13:24:50','Standing on the sofa\r\nFeet never touching the ground\r\nAt the peak of ecstasy\r\nNo sadness can be found\r\nLove is in the air\r\nAnd overfills the lungs\r\nA day which was like yesterday\r\nIn which tomorrow shall also be one\r\n\r\nBut then a screeching halt to it all\r\nA thunderstorm that has no end\r\nThose feet finally touch the ground\r\nThey are standing in wet sand\r\nSlowly sinking downward\r\nThe joys of being young again have quickly faded away\r\nTo wish for those days of happiness\r\nIn which sadness never saw the light of day\r\n\r\n<strong><em>\"As we get older, we allow sadness to come to our life. Sadness is never an initial feeling that one has, however, as we age it becomes a feeling that we know all too well...but why?\"</em> -Monica Renata </strong>','Sadness is Born','','inherit','open','open','','5-autosave-v1','','','2014-11-25 07:24:50','2014-11-25 13:24:50','',5,'http://www.monicarenata.com/5-autosave-v1/',0,'revision','',0),(5,1,'2014-08-04 16:23:00','2014-08-04 16:23:00','Standing on the sofa\r\nFeet never touching the ground\r\nAt the peak of ecstasy\r\nNo sadness can be found\r\nLove is in the air\r\nAnd overfills the lungs\r\nA day which was like yesterday\r\nIn which tomorrow shall also be one\r\n\r\nBut then a screeching halt to it all\r\nA thunderstorm that has no end\r\nThose feet finally touch the ground\r\nThey are standing in wet sand\r\nSlowly sinking downward\r\nThe joys of being young again have quickly faded away\r\nTo wish for those days of happiness\r\nIn which sadness never saw the light of day\r\n\r\n<strong><em>\"As we get older, we allow sadness to come to our life. Sadness is never an initial feeling that one has, however, as we age it becomes a feeling that we know all too well...but why?\"</em> -Monica Renata </strong>','Sadness is Born','','publish','open','open','','sadness-is-born','','','2014-11-25 07:24:57','2014-11-25 13:24:57','',0,'http://www.monicarenata.com/?p=5',0,'post','',0),(747,1,'2014-11-25 07:24:57','2014-11-25 13:24:57','Standing on the sofa\r\nFeet never touching the ground\r\nAt the peak of ecstasy\r\nNo sadness can be found\r\nLove is in the air\r\nAnd overfills the lungs\r\nA day which was like yesterday\r\nIn which tomorrow shall also be one\r\n\r\nBut then a screeching halt to it all\r\nA thunderstorm that has no end\r\nThose feet finally touch the ground\r\nThey are standing in wet sand\r\nSlowly sinking downward\r\nThe joys of being young again have quickly faded away\r\nTo wish for those days of happiness\r\nIn which sadness never saw the light of day\r\n\r\n<strong><em>\"As we get older, we allow sadness to come to our life. Sadness is never an initial feeling that one has, however, as we age it becomes a feeling that we know all too well...but why?\"</em> -Monica Renata </strong>','Sadness is Born','','inherit','open','open','','5-revision-v1','','','2014-11-25 07:24:57','2014-11-25 13:24:57','',5,'http://www.monicarenata.com/5-revision-v1/',0,'revision','',0),(6,1,'2014-07-21 13:36:00','2014-07-21 13:36:00','<div><b><span style=\"font-family: "Segoe Print";\">Pretty Little Picture</span></b><span style=\"font-family: "Segoe Print";\"><o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Pretty little picture<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">I decided to paint of you<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">It had flowers blooming beautifully<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">And the sky was a nice blue<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Pretty little picture<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">In the corner I was standing there<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Arms wide open waiting for your hug<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">And for you to toss me in the air<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">The weather always lovely<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">The setting always nice<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">No rainy days upon us<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Just beautiful sunny skies<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Frozen in a moment of time<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">That I wished to always be<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">In a world of endless beauty<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">That surrounds both you and me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Pretty little picture<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">I decided to paint for you<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Encompassed all my feelings<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Showed my dreams if there were to come true<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Sitting on my window pane<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Sometimes I wish it was more<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">Than just a pretty little picture<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">That remains while we are no more<o:p></o:p></span></div><div><br /></div><div style=\"background-color: black; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><b><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><b><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><u>CreateSpace:</u> </span></b><b><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: black; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><u>Blog:</u> </span></b><b><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><br /><div><br /></div>','Pretty Little Picture','','publish','open','open','','pretty-little-picture','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=6',0,'post','',0),(7,1,'2014-07-21 13:22:00','2014-07-21 13:22:00','<div><span style=\"font-family: "Segoe Print";\">“Some things will never change”…….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Sometimes saying this sounds so negative. Usually when we utter these words, it is in pure disappointment. We never truly wish positive situations to change, but we hope and pray that negative situations do. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Sometimes, there are situations in which in order for them to change that would require the efforts of another individual. Just by bringing that individual in the equation there is a 50/50 chance that you will either fail or succeed……<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">I thought things would get better with time. I thought that some things would change…. I prayed that some things would change…….. I wishes and cried and hoped that some things would change….but you know what…. They didn’t. No matter how much I wanted the situation to be different, it did not matter because it involved more than just me. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Sometimes we are so hard on ourselves. We cast the blame fully on us. We get on our knees and look to the sky and say “Why me?”……….but why? …. Do we not realize that although in some situations we are fully to blame, in others we are only partly? For example, it is like a race in which you have to tag the other person to start running. If you are ahead of the competition and then you tap your partners hand and he or she refuses to finish the race and you come in dead last, is it your fault that you lost? It may be partly your fault, but the blame is moreso on the other person because they didn’t even try. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Some things will never change………….I said how I felt, I showed how I wanted to be treated….I really did try…….but my effort was cancelled out by the lack of effort on the other person’s part. In order for change to occur, positive forces must interact. Change is cancelled out when a positive and a negative force collide…I realize this…. And despite how unhappy it makes me, I just have to realize that some things never change……<o:p></o:p></span></div><div><span style=\"font-family: "Segoe Print";\">I thought things would get better with time. I thought that some things would change…. I prayed that some things would change…….. I wishes and cried and hoped that some things would change….but you know what…. They didn’t. No matter how much I wanted the situation to be different, it did not matter because it involved more than just me…..and I can’t force others to change………<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">Just something to think about…. Have a great day. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Segoe Print";\">-Monica Renata <o:p></o:p></span></div><div><br /></div><div style=\"background-color: black; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><b><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><b><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><u>CreateSpace:</u> </span></b><b><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><div style=\"background: black; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i></b><b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><u>Blog:</u> </span></b><b><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span></b><b><span style=\"color: white; font-family: "Crimson Text","serif"; font-size: 12.0pt; mso-bidi-font-family: "Times New Roman"; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></b></div><br /><div><br /></div>','Some things will never change','','publish','open','open','','some-things-will-never-change','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=7',0,'post','',0),(8,1,'2014-07-21 13:08:00','2014-07-21 13:08:00','<div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><b><i>Pretty Flowers</i></b><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He gives me pretty flowers<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Every single day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He tells me I am special<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">In every single way<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He makes me feel so lovely<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">And also bubbly inside<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He makes me realize dreams do come true<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">And I am destined to fly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He makes me feel so many things<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Even though I may feel that I am not<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He makes me smile on the many days<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">In which it was happiness I forgot<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">To be his friend is a blessing<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">I’m so happy to have him in my life<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">He gives me pretty flowers<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">And I cherish him a lot<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>“Sometimes you never truly realize how much of a dramatic effect a tiny gesture of kindness can have…..Genuine kindness can help a neglected flower grow again”</i> –Monica Renata</span><o:p></o:p></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=3&opac=0\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=3&opac=0\" height=\"320\" width=\"258\" /></a></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div>','Pretty Flowers','','publish','open','open','','pretty-flowers','','','2014-08-09 21:16:03','2014-08-09 21:16:03','',0,'http://www.monicarenata.com/?p=8',0,'post','',0),(9,1,'2014-07-17 12:20:00','2014-07-17 12:20:00','<div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Segoe Print";\">Confessions of the Heart<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Truth is I really care for you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Honestly, I do<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Yet my heart cannot fully take<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">All you put me through<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Truth is you make me smile<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">You make me smile on countless days<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Yet the times when I am sad<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">You make me feel ashamed<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Wrapped up in my own emotions<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Trying to gain shelter from the storm<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">That you created with your words<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">That seems to keep getting strong<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Wind whipping at my face<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Rain flooding up to my neck<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Drowning in my love for you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">That you don’t seem to get<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Truth is, I really want you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Honestly, I do<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But what am I to think<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">When I am constantly abused<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Taken advantage of daily<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Yet you think I’m blind and cannot see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m just a stepping stone to your future success<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">And you step right over me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">This weight I bear is heavy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I can no longer help you if you don’t help me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Truth is, I really love you<o:p></o:p></span></div><br /><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But I have to start loving me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\"><br /></span></div><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><span style=\"background-color: white; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://amzn.com/B00EP5A484\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc; font-family: Calibri, sans-serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: black; clear: both; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; text-align: center;\"></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div>','Confessions of the Heart','','publish','open','open','','confessions-of-the-heart','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=9',0,'post','',0),(10,1,'2014-07-09 13:41:00','2014-07-09 13:41:00','<div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Never-Ending Time</b></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">By: Monica Renata</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The time seems never-ending<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Each second never really stops<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The world is constantly spinning<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The clock still goes tick tock<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">People come one minute<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">And then the next minute they are gone<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Memories are made in a second<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Yet are remembered years later just by playing a song<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Friendships last forever<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Memories seem to never fade<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The wonderful joys of living<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">That we should appreciate for the rest of our days<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The time seems never-ending<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Each second never really stops<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The world is constantly spinning<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The clock still goes tick tock<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">People come one minute<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">And the next minute they may be gone<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Memories are made in mere seconds<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">But we are reminded of them at the play of a song<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Appreciate the time you have<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">For time does not always last<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Appreciate the people you have in your life<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Before they become the people that you had<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Time seems never-ending<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">But in reality it is not<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">That’s why I shall cherish every day<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Even though it may not seem like a lot<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b><i>“Each day is a blessing. Appreciate what you have and continue to smile…….”</i></b> –Monica Renata <o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><span style=\"background-color: white; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://amzn.com/B00EP5A484\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc; font-family: Calibri, sans-serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: black; clear: both; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; text-align: center;\"></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div><div style=\"text-align: center;\"><br /></div><div><br /></div><br /><div><br /></div>','Never-Ending Time','','publish','open','open','','never-ending-time','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=10',0,'post','',0),(11,1,'2014-07-01 19:58:00','2014-07-01 19:58:00','<div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Mr. Care Too Much</b><o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>By: Monica Renata </i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>In the midst of sunny days<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Yet drowning in constant rainfall<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Lives the man who lives each and every day<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Afraid that he will fall<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Fall into a deep spell<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>That he can never seem to let go<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He is afraid to fall in love<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Because of the truths society holds<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>To care too much is crushing<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>And heart shattering to say the least<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>For if you care too much for someone<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>You might no longer be able to see<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Blinded by this stain called loved<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Judgment distorted every day<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He cared so much for others deeply<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>That he wishes his heart to go away<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>But to deprive the world of something great<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Of something so hard to find<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Would be like robbing the world’s strongest man<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Of his beautiful hazel eyes<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>For the heart not only beats for you<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>It also beats for me<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>And the heart radiates happiness<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>In all that we may see<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>They call him Mr. Care Too Much<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He has a great big heart<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He is loving and also kind<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He is also giving and smart<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Yet the one thing that I love so much<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He can’t really see<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He has the most beautiful gift<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>That I wish resided in me<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>A heart so full of hope and splendor<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>Beautiful as the sun’s rays<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>He has a heart that showers so many with love<o:p></o:p></i></span></div><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i>And that I shall envy for all days<o:p></o:p></i></span></div><div style=\"text-align: center;\"><br /></div><br /><div style=\"text-align: center;\"><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>“Sometimes the greatest hearts go through the most pain………..but those hearts also bring the most joy too. Never wish away a loving heart, for one day when you finally need it, it will be no more………”</b> –Monica Renata </i></span><o:p></o:p><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><br /></i></span><span style=\"font-family: Times, Times New Roman, serif;\"><i><br /></i></span><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt; text-align: start;\"><span style=\"background-color: white; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt; text-align: start;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in; text-align: start;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://amzn.com/B00EP5A484\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc; font-family: Calibri, sans-serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in; text-align: start;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: black; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in; text-align: start;\"><br /></div><div style=\"background-color: black; clear: both; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold;\"></div><div style=\"background-color: white; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; line-height: 15pt; margin-bottom: 0in; text-align: start;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div><br /></div>','Mr. Care Too Much','','publish','open','open','','mr-care-too-much','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=11',0,'post','',2),(12,1,'2014-06-25 18:53:00','2014-06-25 18:53:00','<span style=\"font-family: Trebuchet MS, sans-serif;\"><b>I Have Been Thinking</b></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">By: Monica Renata </span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span><span style=\"font-family: Trebuchet MS, sans-serif;\">I have been thinking</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">A lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Kind of lost</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">In my own words</span><br /><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Thoughts falling like raindrops</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Landing on the wings of a bird</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">So many thoughts surround me</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Yet I cannot speak</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I been thinking a lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">And my thoughts are consumed with me</span><br /><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I have been thinking</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">A lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Kind of lost</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">In my own words</span><br /><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I am the world’s greatest melody</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">That has yet to be heard</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">To twirl around greatness</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">To bow at no one’s feet</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I’ve been thinking a lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Wondering why I can’t see</span><br /><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I have been thinking</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">A lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Kind of lost</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">In my own words</span><br /><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Yet I still remain silent</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Silently waiting to be heard</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">To have thoughts float deep within</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Yet not utter a peep</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">I’ve been thinking a lot lately</span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\">Wondering why you don’t think of me</span><br /><br /><br /><div style=\"color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><div style=\"background-color: black; margin-bottom: 0.0001pt;\"><span style=\"background-color: white; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://amzn.com/B00EP5A484\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc; font-family: Calibri, sans-serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: black; line-height: 15pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: black; clear: both; text-align: center;\"></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div></div><br />','I Have Been Thinking','','publish','open','open','','i-have-been-thinking','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=12',0,'post','',0),(13,1,'2014-06-24 17:15:00','2014-06-24 17:15:00','<div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><b>HappyTown: The Train Stop</b></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">By: Monica Renata</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">On the gloomy streets of HappyTown</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">It never came to a complete stop</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">It kept on making its marvelous sound</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">It arrived each time on the dot</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Looking like a tube of marvelous steel</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Handcrafted by hard working men</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">The speed that was unrelenting</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">The speed that left behind huge gusts of wind</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">To stand at the vacant train stop</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Waiting to be here no more</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">But the train won’t stop in HappyTown</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">And this is something that I abhor</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">On the gloomy streets of HappyTown</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Surrounded by many who can’t see</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">That being happy is more than this town</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Being happy resides within you and me</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">To leave your place of comfort</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Doesn’t have to be all that bad</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">For being complacent in life</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Is what should really make you feel sad</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">There is more to life than your comfort zone</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Even though it is a happy spot</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">So I shall wait on that Choo-Choo train</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Until it finally stops</span></div><br /><i>“Sometimes we believe that happiness is only obtainable in our comfort zone. This prevents us from venturing outwards….But there is happiness outside your comfort zone. You just have to give yourself the opportunity to realize this”</i> –Monica Renata<br /><br /><br /><br /><br /><div style=\"background-color: #fff9e7; color: white; font-family: \'Crimson Text\'; font-size: 16px; font-weight: bold; margin-bottom: 0.0001pt;\"><div style=\"margin-bottom: 0.0001pt;\"><span style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://amzn.com/B00EP5A484\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc; font-family: Calibri, sans-serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #66cccc;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"line-height: 15pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: black; clear: both; text-align: center;\"></div><div style=\"background-color: white; line-height: 15pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: Arial, sans-serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #d4dd00; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div></div>','HappyTown: The Train Stop','','publish','open','open','','happytown-the-train-stop','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=13',0,'post','',0),(14,1,'2014-06-23 17:49:00','2014-06-23 17:49:00','<div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Sometimes my mind wanders<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And then I begin to cry<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And my mind is consumed with thoughts<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And I end up asking why<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">My heart starts to beat faster<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And then my breath seems to go slow<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">My palms get sweaty<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And then I walk out the door<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I look at all the trees<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I feel the cool air on my skin<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But I cannot escape one thing<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">That is the wrath deep within<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">My skin starts to get hot<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">My stomach begins to cramp<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I am doing so much thinking<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">That I feel like I am killing myself<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I look forward and see everything<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Yet I cannot take everything in<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Something is happening within my mind<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And I keep reliving a moment again and again<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I love you……..<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I think to myself<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But I know it doesn’t matter<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I always stuck by your side<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">No matter what happened<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But what is love when you feel so bad<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">What is a feeling that isn’t returned?<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I work myself up for disappointment<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Yet I always return<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I would say you have me hooked on you<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But I haven’t a clue<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I know I care about you<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But do I care about myself too?<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">The air seems so calm out side<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And I sit under the tree<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">I feel something wet on my face<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Something I thought came from the tree<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><br /></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But how can this be??<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">It is sunny outside<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">Rain can’t come today<o:p></o:p></span></b></div></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">But the weeping willow is crying<o:p></o:p></span></b></div></div><div style=\"text-align: center;\"><br /></div><div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\">And I think it is crying for me today<span style=\"color: #d9d9d9;\"><o:p></o:p></span></span></b></div><div style=\"text-align: center;\"><b><span style=\"font-family: \'Maiandra GD\', sans-serif; font-size: 14pt; line-height: 115%;\"><span style=\"color: #444444;\"><br /></span></span></b></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg\" height=\"320\" width=\"232\" /></a></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"clear: both; text-align: center;\"></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a><o:p></o:p></span></div></div>','The Tears of the Willow','','publish','open','open','','the-tears-of-the-willow','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=14',0,'post','',0),(351,1,'2014-08-09 21:16:07','2014-08-09 21:16:07','','4261206112_544d39afa2_o','','inherit','open','open','','4261206112_544d39afa2_o','','','2014-08-09 21:16:07','2014-08-09 21:16:07','',27,'http://www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png',0,'attachment','image/png',0),(15,1,'2014-06-23 16:42:00','2014-06-23 16:42:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Lucida Calligraphy";\">If I Didn’t Care<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care about you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care at all<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I would no longer be there for you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I wouldn’t try to catch you when you fall<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care about you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If there was no feeling left in me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I wouldn’t extend my kindness<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Even though you hurt me terribly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">In pain there is some pleasure<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">In light there is always dark<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And so may I rise one day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And then another day I may fall<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">To dwell in the past<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And let the future not arise<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Would be a terrible terrible waste<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Of my own heart and mind<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care about you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">There would be so many things I would not do<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">But instead I sit there quietly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">While I watch you abuse<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Abuse my kindness<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Abuse my heart<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">You trampled over me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I cared about you so much<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">That I was blind and could not see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care about you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">If I didn’t care at all<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I would harbor so much hate in my heart<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I would wish that you never rise but fall<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">But instead I keep a home for you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">In a part of my heart so deep<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And despite all the pain you put me through<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">My care for you never ceased<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"color: #215968; font-family: "Lucida Calligraphy"; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #215968; mso-style-textfill-fill-colortransforms: lumm=50000; mso-style-textfill-fill-themecolor: accent5; mso-themecolor: accent5; mso-themeshade: 128;\">“Life is too short to let hate consume your heart…Everyone should be forgiven….Forgiveness helps you heal in the long run.” </span><span style=\"font-family: "Lucida Calligraphy";\">–Monica Renata <o:p></o:p></span></div><div><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\"><br /></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br clear=\"all\" style=\"mso-special-character: line-break; page-break-before: always;\" /></span> <br /><div><br /></div>','If I Didn\'t Care','','publish','open','open','','if-i-didnt-care','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=15',0,'post','',0),(16,1,'2014-06-23 16:41:00','2014-06-23 16:41:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Segoe Print";\">I’m Not Your ______________<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not your cup of tea<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">That you marvel at the taste<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">With a splash of lemon and cubes of ice<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">On an extra warm sunny day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not your simple melody<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">That you know the pattern of the tune<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">My song is a bit dramatic<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">And it changes when I enter rooms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I am not many things<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But hopefully you find it in your heart<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">To someday let me be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Your ray of perfect sunshine<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Your beautiful glowing moon<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I wish to be your dreams come alive<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I wish to be your wish come true<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not the most perfect person on earth<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not the best in the room<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I may not even be your first choice<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But oh how I would really like to<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not your dream or fantasy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">I’m not your highlight of every day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But I wish to be your everything<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Hopefully you give me the chance one day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">For I may not be what you want<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">But I believe I am what you need<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">For I can offer you love everlasting<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print";\">Even though I am not what you may want me to be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"color: #215968; font-family: "Segoe Print"; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #215968; mso-style-textfill-fill-colortransforms: lumm=50000; mso-style-textfill-fill-themecolor: accent5; mso-themecolor: accent5; mso-themeshade: 128;\">“Sometimes if you give someone a chance you will realize that they are exactly what you dreamed of……… Sometimes we quickly disregard others without even knowing who they really are. You may one day pass up a true gem by judging the outside so rapidly……..” </span><span style=\"font-family: "Segoe Print";\">–Monica Renata<o:p></o:p></span></div><div><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','I\'m Not Your ________________','','publish','open','open','','im-not-your-________________','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=16',0,'post','',0),(17,1,'2014-06-20 18:59:00','2014-06-20 18:59:00','<div><b><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Mistakes<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">By: Monica Renata<o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I need to take a step forward<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But decided to take a step back<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For going forward had uncertainty <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And I knew of all that was left back<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Consciously planning my decision<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Yet I am afraid to fall<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So instead I stay in the place<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">That I have been in for far too long<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Trying to revel in perfection<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Yet perfection does not reside here<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I know this deep down inside<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But I choose to not reveal<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I can be wrong sometimes<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Sometimes I make mistakes<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Sometimes my calculations are wrong<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Sometimes I forget to love instead of hate<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Mistakes of my yesteryears<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Still resonate within me<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Yet I try to radiate perfection<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So all can envy me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But what’s the point of being perfect<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Because perfection has no flaws<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And with no flaws there cannot be growth<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So I will sit still for so long<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But I wish to grow so gracefully<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I wish to reach my peak<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So I shall no longer be afraid of my future<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And walk forward undoubtedly <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I need to take a step forward<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But decided to take a step back<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For going forward had uncertainty <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And I knew of all that was left back<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But after I take two steps forward<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Despite my one step back<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For my mistakes my be beautiful<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And show what I do lack<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">There is brilliance in uncertainty<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">There is gracefulness in rising up<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">There are lessons to be learned in mistakes<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So……….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Live life fearlessly<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Don’t worry about possible mistakes<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Stop trying to be perfect<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Fall in love with your beautiful mistakes<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Love them<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For they helped mold you<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For they taught you<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">For they stick with you forever…<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">So what are you afraid of? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">Why are we so deathly afraid to make mistakes? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">The fear of his having a mishap keeps us from venturing on to new things in life? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">But why?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I have been afraid<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">And lost countless opportunities because of this fear<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">However, when I finally took those opportunities <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I learned the greatest lessons in my failures<o:p></o:p></span></div><div><br /></div><div><b><i><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\">I am not afraid to make a mistake…….. I know that there are great lessons learned in the faults of life…………</span></i></b><i><span style=\"font-family: "Footlight MT Light","serif"; mso-bidi-font-family: FrankRuehl;\"> -Monica Renata <o:p></o:p></span></i></div><div><br /></div><div><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Mistakes','','publish','open','open','','mistakes','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=17',0,'post','',0),(18,1,'2014-06-20 17:48:00','2014-06-20 17:48:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Segoe Print"; font-size: 16.0pt; line-height: 115%; mso-bidi-font-family: FrankRuehl;\">Thanks for Believing in Me<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The sun rose again<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">As it has rose so many times before<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The birds started to chirp<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Yet my eyes still wanted to close<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">A new day was beginning<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Yet I wanted it just to end<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Yet you dragged me out of bed that morning<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And said there were events in life I must attend<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Feeling utterly defeated<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">My head still looked at the floor<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">I did not rush to do things<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Because what am I rushing for?<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Clothed in my own pity<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Surrounded by self-hate<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And you patted me on my back<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And said “It will be okay”<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Going through my day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">There are disappointments galore<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">I cry to myself<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">I wish this could be no more<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Throughout this day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">There was happiness and also pain<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Put when I marched into my home<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">You grabbed me and said “Tomorrow is another day”<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The moon begins to rise<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">As the sun fades to no more<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">I cry myself to sleep<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And wonder what I am living for<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And you tell me to cheer up<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">You say that it will be okay<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And you leave me til tomorrow<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Til I face another day</span></i></b><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The days pass by so slowly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The seasons come and go<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The cold chills me down to my tips<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And freezes me to the soul<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The heat of the sun then thaws me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And soon I realize I am growing so old<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Yet one thing that remains<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Is your undying faith which I still behold<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The faith that my dark days will end<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And I will blossom into who I was meant to be<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The faith that one day my head will stand high<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">As high as the tallest tree<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The faith that one day I will be in love<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And finally be able to see<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">To see that I could be the person<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Who I always wanted to be<o:p></o:p></span></i></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The sun rose again<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">As it has rose many times before<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">The birds start to chirp<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And my eyes no longer want to be closed<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">As the morning breeze brushes my face<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">I can hear those words in my heart say <o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">“No matter how hard life is, you will be okay”<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">So on I continue to venture<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">For I know that I can conquer anything placed before my feet<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">And to you I give you all the glory<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Segoe Print"; mso-bidi-font-family: FrankRuehl;\">Thanks for believing in me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><br /></div>','Thanks For Believing in Me','','publish','open','open','','thanks-for-believing-in-me','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=18',0,'post','',0),(19,1,'2014-06-17 11:45:00','2014-06-17 11:45:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To Decode A Riddle<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To ponder on a riddle<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To decode the matter at hand<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To get lost in all translation<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To find words which were once marked in sand<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To question your own sanity<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To think that maybe those words don’t mean the same<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To think there is a deeper meaning<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To wonder what is going on in their head<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Til the sun goes up<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Til the sun goes down<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Putting together the pieces of a puzzle<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">In which the last piece can’t be found<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Words which were meant to have meaning<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Are carefully hidden from you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Cloaked in a clever little riddle<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">That only baffles you<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To ponder on a riddle<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To decode the matter at hand<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Putting together the pieces of a puzzle<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">In which the last piece has disappeared like words in sand<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Let your thoughts relax<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Don’t keep thinking about what was said<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">For the right person does not speak in riddles<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">They speak fluently instead<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">“<i>Don’t keep thinking about what others said and try to decode it. The right person will not speak in riddles……….”</i> – Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><br /></div>','To Decode A Riddle','','publish','open','open','','to-decode-a-riddle','','','2014-08-09 21:22:29','2014-08-09 21:22:29','',0,'http://www.monicarenata.com/?p=19',0,'post','',0),(20,1,'2014-06-11 18:18:00','2014-06-11 18:18:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\">Beautiful Lies<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\">By: Monica Renata<span style=\"font-size: x-small;\"><o:p></o:p></span></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">To where I go <o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">To what I must see<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">It can’t get any better than this<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">To be surrounded by majestic possessions<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">To be surrounded by splendor amiss<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">To wait there oh so silently<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Waiting for my lover’s kiss<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">I fiddle my thumbs endlessly<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">While I relax in eternal bliss<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Walls made from fabricated truths<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Truths which you deny<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">But oh how beautiful the truth looks<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">When it is draped in a lie<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Floors of solid marble<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Crystal chandeliers by the door<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Sparkling with such splendor<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">That my tears shall drop no more<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">For I shall revel in this beauty<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">This beauty that surrounds me<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">The beauty that you created when you lied<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">And made me see only what you wanted me to see<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Made my world so pretty<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">Try to blind me<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">But your beauty may have distracted me then<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">But now… I can finally see<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div><i><span style=\"font-family: \'Lucida Calligraphy\'; line-height: 115%;\"><span style=\"font-size: x-small;\">“Sometimes we are too afraid to confront individuals when we know they are lieing too us…but why? What is the point in believing a lie even though you may know the truth? The truth may hurt sometimes but it’s better than living in a fairy tale that doesn’t have a great ending” –Monica Renata </span><span style=\"font-size: medium;\"><o:p></o:p></span></span></i></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><br /></div>','Beautiful Lies','','publish','open','open','','beautiful-lies','','','2014-08-09 21:22:29','2014-08-09 21:22:29','',0,'http://www.monicarenata.com/?p=20',0,'post','',0),(21,1,'2014-06-11 12:20:00','2014-06-11 12:20:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Thanks for Being A Great Friend<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Too many times I befriended<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Those who didn’t deserve<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Didn’t deserve my loyalty<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Didn’t deserve my kind words<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I gave up hope and I thought to myself<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">True friendship could never be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">So instead of focusing on other people<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I decided to focus on me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">And in that era of solidarity<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I started to extend<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Extend my presence in other networks<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">That I have never been<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">And upon my distant travels<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Which brought me to a world I never knew<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I met someone special<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Who showed me I was special too<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Constant talking on the phone<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Growing along each other in life<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Separated by many miles<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Yet close within our eyes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Someone who cared about me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Our conversations flowed with ease<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">We talked about many silly things<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Including strings of cheese<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I never thought I would ever have<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">A friend such as this<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I think about the time we first met<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">And I still reminisce<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">What a blessing you are to a life<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">That was once dark and so cold<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">What happiness you bring to my eyes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">When we speak of things untold<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Too many times I befriended<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Those who didn’t deserve<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">But I thank God I got this one right<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">I have a friend who makes my lips curve<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">So thanks for being there for me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">For I have really found a friend<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">Thanks for being my Top 8 buddy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\">We shall be friends til the end </span><span style=\"font-family: Wingdings; font-size: 14.0pt; line-height: 115%; mso-ascii-font-family: "Footlight MT Light"; mso-char-type: symbol; mso-hansi-font-family: "Footlight MT Light"; mso-symbol-font-family: Wingdings;\">J</span><span style=\"font-family: "Footlight MT Light","serif"; font-size: 14.0pt; line-height: 115%;\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><br /></div>','Thanks for Being A Great Friend','','publish','open','open','','thanks-for-being-a-great-friend','','','2014-08-09 21:22:30','2014-08-09 21:22:30','',0,'http://www.monicarenata.com/?p=21',0,'post','',0),(22,1,'2014-06-09 16:55:00','2014-06-09 16:55:00','<div align=\"center\" style=\"background: white; mso-background-themecolor: background1; text-align: center;\"><b><span style=\"font-family: "Lucida Calligraphy"; font-size: 13.0pt; line-height: 115%;\">Falling in Love with Potential<o:p></o:p></span></b></div><div align=\"center\" style=\"background: white; mso-background-themecolor: background1; text-align: center;\"><b><span style=\"font-family: "Lucida Calligraphy";\">By: Monica Renata<o:p></o:p></span></b></div><div style=\"background: white; mso-background-themecolor: background1;\"><br /></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><br /></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><b><span style=\"font-family: "Lucida Calligraphy";\">Potential<o:p></o:p></span></b></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><b><i><span style=\"font-family: "Lucida Calligraphy";\">adjective<o:p></o:p></span></i></b></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><i><span style=\"font-family: "Lucida Calligraphy";\">Having or showing the capacity to become or develop into something in the future<o:p></o:p></span></i></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><b><i><span style=\"font-family: "Lucida Calligraphy";\">Noun</span></i></b><i><span style=\"font-family: "Lucida Calligraphy";\"><o:p></o:p></span></i></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102;\"><i><span style=\"font-family: "Lucida Calligraphy";\">Latent qualities or abilities that may be developed and lead to future success or usefulness<o:p></o:p></span></i></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Potential………I so many times fall in love with potential…. Not what something actually is, but what it could be. That unmasked greatness that just hasn’t rose from the dark valleys of the unknown yet. That spirit which is unmatched by many yet IT does not know…….That possibility of what I truly desire, but what was before me wasn’t quite it but it was close……..<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I fell in love with potential. I overlooked the things that bothered me or the things that I didn’t like and I said that there was nowhere to go but UP from here. I decided not to accept someone for who they really were, but who they had the possibility to be…<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">The thin line that I decided to walk…….That balance beam that was over thousands of prickly needles……… With no other thoughts in my mind I decided to move forward and neglect what was in my face because I was blinded by potential and what someone else could possibly be……….How many times have you been blinded as well?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Too many times we overlook what is in front of us and look ahead to what we want to see. We see the flaws at hand, yet we tell ourselves that those flaws will heal with time and turn into something beautiful. In actuality, that may happen sometimes, but that is not always the case.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Potential………. I have always heard that I have potential. In all honesty, some only loved me because of that. As I think back on it now, I realize how inadequate I felt. I always felt like I never was good enough. I felt as though I was good, but I could be better if only I could reach my utmost potential. That type of thinking can turn a positive mind into a self-conscious mind. ..For a person to wake up every day and do their best yet their best isn’t good enough for them because they have been told that the level at which they are at is not considered their utmost potential by others…That’s painful to wake up to each day. ….. And also, even though you may reach what others considered your “utmost potential” that may still never be good enough…….Trust me, I know.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">But alas, I didn’t learn. I too became one who loved potential yet didn’t acknowledge the reality that was in front of my own face. I pretended that everyone was but a game piece in my world. I held some to the side for use later because I just knew that if given more time they could turn out to be better than what I actually perceived them to be. I did not think of their feelings, I simply said “you are good but you are not good enough yet”…….and that is so wrong.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Potential………I so many times fall in love with potential…. Not what something actually is, but what it could be. I sell myself short, and also I sell others short by doing this. And I’m pretty sure you have done this as well.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Always love people for who they are, not who they might be. Sometimes we take for granted the person we have right in front of our face because we are waiting for that person who doesn’t exist to make their appearance. We all know we can become better people. We all know that if given the time and the resources we can better our future selves……We all know we have potential…..but we should never love that potential over what we currently see in the mirror each and every day.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Love people for who they are now. Love yourself for who you are now. Worry about the future, but don’t obsess over it. Love in the present, and stop holding out your love on something or someone that isn’t there just yet.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Potential ……..is a great thing……..but not something to fall in love with.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">Have a great day, <o:p></o:p></span></div><div><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Falling In Love with Potential','','publish','open','open','','falling-in-love-with-potential','','','2014-08-09 21:22:30','2014-08-09 21:22:30','',0,'http://www.monicarenata.com/?p=22',0,'post','',0),(23,1,'2014-06-04 19:30:00','2014-06-04 19:30:00','<div><b><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The Sun Can’t Shine the Same<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">By: Monica Renata <o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Today it was 90 degrees<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Sweat dripped down my neck<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The children played outside happily<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">While adults decided to suntan and relax on their decks<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The water was so sparkling blue<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Just like the blue sky in which the birds soar<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The flowers smelled so bittersweet<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">A smell that makes you yearn for more<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">A beautiful day to say the least<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Yet I am surprised this day came<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">For even though it is joyous outside<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I know the sun can’t shine the same<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">To have the heat that once radiated<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Turn into something cold<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Flesh that was lively with color<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Can now only been seen in the words of stories told<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The brightest light I ever had<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">The light that let me see<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Through the darkest of dark places<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">That light that had never failed me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">But in an instant that light stopped<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">And that glow decided to cease<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">And with that soul lost<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">My world lost a masterpiece<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">Now in the sunniest of days<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I realize that time is short<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I love unconditionally<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I no longer treat feelings like an ugly wart<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I use to bask in the sun all day<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">And never appreciated that it was there<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">On the stormiest days when it’s presence was gone<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I pretended that I didn’t care<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">But to lose it forever<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I never thought this would be<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">So while the sun still shines for others<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">I know the sun can’t shine the same for me<o:p></o:p></span></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\">“To dwell in my own memories….. To now wish for what I always had….. To want to reach for someone.….. To know that they aren’t there…… Appreciate the loved ones in your life. Don’t wait til it is too late to realize how important someone is to you.”</span></i><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%; mso-fareast-font-family: DFKai-SB;\"> –Monica Renata<o:p></o:p></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><br /></div><br /><div><br /></div>','The Sun Can\'t Shine the Same','','publish','open','open','','the-sun-cant-shine-the-same','','','2014-08-09 21:22:30','2014-08-09 21:22:30','',0,'http://www.monicarenata.com/?p=23',0,'post','',0),(24,1,'2014-06-02 14:41:00','2014-06-02 14:41:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Californian FB","serif"; font-size: 14.0pt; line-height: 115%;\">The Bully: Does it Exist in the Adult World?<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Californian FB","serif"; font-size: 14.0pt; line-height: 115%;\">Monica Renata<o:p></o:p></span></div><div><br /></div><div><br /></div><div style=\"background: #FBD4B4; mso-background-themecolor: accent6; mso-background-themetint: 102;\"><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">The Bully<o:p></o:p></span></div><div style=\"background: #FBD4B4; mso-background-themecolor: accent6; mso-background-themetint: 102;\"><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Noun<o:p></o:p></span></i></div><div style=\"background: #FBD4B4; mso-background-themecolor: accent6; mso-background-themetint: 102;\"><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">a person who uses strength or power to harm or intimidate those who are weaker.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">I remember when I was growing up, I feared the bully…. You know that person who would try to make your life a living hell even on the sunniest days? That bully who your heart would just stop when you were in their presence because you just knew that your bit of happiness was about to be ripped away in just a matter of seconds……I feared this person greatly, but the only thing that brought calmness to my heart was the fact that I only encountered this bully at school. Once the bell rang and I got on the bus to go home, I was finally able to escape that hell. I was able to live freely once again without the constant terror of being punched, teased, or constantly embarrassed. I was home……..where those who loved me also reside. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Even in my teen years, I encountered bullies, but I just knew that once school ended I would encounter this no longer. I knew that once I exited grade schools I would leave behind the bullies and just walk into a world of positivity that had nothing but great things in store for me. I thought bullies didn’t exist after the age of 18. I thought people who were bullies grew out of it….. I thought so many things but…… I think in some aspects I was wrong. You see, many of us believe that bullying only happens in our childhood, however, is that actually so?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">As adults, we do not use the word bully as much. We use it if a kid is being picked on, but as far as adult usage, it is rarely used. Adults seem to use such phrases as “they constantly disrespect me”, “they constantly try to ridicule me in front of others”, or “they talk to me like I am trash”….they never call that person a bully, they just think it is a person behaving badly. Why is that? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Are adults afraid to admit that they are being mistreated by others? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Are adults afraid to associate their situations with those of adolescent teens and elementary kids? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">When researching bullying, one of the first websites which pops up is <a href=\"https://www.blogger.com/stopbullying.gov\">stopbullying.org</a>. According to this website the definition is as follows: <o:p></o:p></span></div><div><a href=\"https://www.blogger.com/blogger.g?blogID=64832133018470584\" style=\"clear: right; float: right; margin-bottom: 1em; margin-left: 1em;\"></a><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div><div style=\"background-position: initial initial; background-repeat: initial initial;\"><i><span style=\"background-color: #f9cb9c; font-family: \'Californian FB\', serif; font-size: 12pt; line-height: 115%;\">Bullying is unwanted, aggressive behavior among school aged children that involves a real or perceived power imbalance. The behavior is repeated, or has the potential to be repeated, over time. Both kids who are bullied and who bully others may have serious lasting problems. <o:p></o:p></span></i></div><div style=\"background-position: initial initial; background-repeat: initial initial;\"><i><span style=\"background-color: #f9cb9c; font-family: \'Californian FB\', serif; font-size: 12pt; line-height: 115%;\"><br /></span></i></div><div style=\"background-position: initial initial; background-repeat: initial initial;\"><i><span style=\"background-color: #f9cb9c; font-family: \'Californian FB\', serif; font-size: 12pt; line-height: 115%;\">In order to be considered bullying, the behavior must be aggressive and include: <o:p></o:p></span></i></div><div style=\"background-position: initial initial; background-repeat: initial initial; margin-left: 1in; text-indent: -0.25in;\"><!--[if !supportLists]--><span style=\"background-color: #f9cb9c;\"><span style=\"font-family: Wingdings; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Wingdings; mso-fareast-font-family: Wingdings;\">§<span style=\"font-family: \'Times New Roman\'; font-size: 7pt; line-height: normal;\"> </span></span><!--[endif]--><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">An Imbalance of Power: Kids who bully use their power-such as physical strength, access to embarrassing information, or popularity – to control or harm others. Power imbalances can change over time and in different situations even if they involve the same people. <o:p></o:p></span></i></span></div><div style=\"background-position: initial initial; background-repeat: initial initial; margin-left: 1in; text-indent: -0.25in;\"><!--[if !supportLists]--><span style=\"background-color: #f9cb9c;\"><span style=\"font-family: Wingdings; font-size: 12pt; line-height: 115%;\">§<span style=\"font-family: \'Times New Roman\'; font-size: 7pt; line-height: normal;\"> </span></span><!--[endif]--></span><i><span style=\"font-family: \'Californian FB\', serif; font-size: 12pt; line-height: 115%;\"><span style=\"background-color: #f9cb9c;\">Repetition: Bullying behaviors happen more than once or have the potential to happen more than once. </span><span style=\"background-color: #fbd4b4;\"><o:p></o:p></span></span></i></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">………But don’t some adults experience the same thing? ………..<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">I have seen many adults constantly humiliate others for no reason at all. <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">I have seen adults expose embarrassing information about someone in order to “get back” at them. <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">I have seen someone who holds a powerful position, control someone’s actions just because of the amount of power in the community they possess…….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">But why isn’t this called bullying? ……….<o:p></o:p></span></div><div><br /></div><div><b><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">So what do you think? Do you believe that bullying only happens in the adolescent world or do you think it can exist in adult lives as well?</span></b><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><o:p></o:p></span></div><div><br /></div><div style=\"background: #FFF9E7;\"><span style=\"color: #333333; font-family: "MV Boli"; font-size: 11.5pt; line-height: 115%;\"> </span><span style=\"background: white; color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; line-height: 115%; mso-bidi-font-family: Arial;\">Monica Renata </span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; line-height: 115%;\"><o:p></o:p></span></div><div style=\"background: white;\"><i><span style=\"color: #38761d; font-size: 11.5pt; line-height: 115%;\">My Book: </span></i><span style=\"color: #222222; font-size: 11.5pt; line-height: 115%;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-size: 11.5pt; line-height: 115%;\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; line-height: 115%;\"><u1:p></u1:p><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt;\"><b><u><span style=\"color: #222222; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-size: 11.5pt;\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt;\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Calibri","sans-serif"; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-theme-font: minor-bidi; mso-hansi-theme-font: minor-latin; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt;\"><u1:p></u1:p><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt;\"><b><u><span style=\"color: #222222; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt;\"><u1:p></u1:p><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt;\"><br /></div><div align=\"center\" style=\"text-align: center;\"> <span style=\"text-align: start;\"></span></div><div style=\"background: white; line-height: 15.0pt;\"><i><span style=\"color: #38761d; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt;\"><o:p></o:p></span></div>','The Bully: Does it Exist in the Adult World?','','publish','open','open','','the-bully-does-it-exist-in-the-adult-world','','','2014-08-09 21:22:30','2014-08-09 21:22:30','',0,'http://www.monicarenata.com/?p=24',0,'post','',0),(25,1,'2014-05-30 16:35:00','2014-05-30 16:35:00','<div><span style=\"font-family: "MV Boli";\">I feel sorry for no one………….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">I know that sounds so heartless but it is true. Hell, I don’t even feel sorry for myself at times because I realize that despite all of the hardships I encounter, I encounter those hardships because I allow myself to encounter them. Many times, we neglect responsibility for our actions. People nowadays feel as though they “deserve” things, when in actuality you deserve nothing. At the end of the day, every adult is where they are because of the decisions they DECIDED to make. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">I use to feel sorry for myself………. I use to blame everyone for my problems except myself. I blamed my current situation on the way in which I was raised, the family’s financial backgrounds, and also on the others who surrounded me……In a sense, that does affect you when you are younger, however, once you become an adult that really doesn\'t matter. I realized how foolish I was for casting all blame on others instead of looking for blame within myself.<o:p></o:p></span><br /><span style=\"font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "MV Boli";\"> If I was unhappy, it was because I allowed myself to be unhappy. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">If I felt unloved, it was because I refused to love my own self. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">If I was constantly losing jobs because I was running late to work, it was because I needed to correct myself and figure out a way to get there on time. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">LIFE IS NOT AS HARD AS WE SAY!!! So many times I hear people say they are poor because they don’t have cable tv. I hear people say that there aren’t any opportunities in this world for them, when I see opportunity knock constantly on their door and they deny it access into their life… People are……well.......People are stupid at times. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">We say we want to be surrounded by those who love us, yet we seek the attention of those who do not. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">We say we want better opportunities in life, yet we are too afraid to venture into the unknown. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">We say we want more time to handle the important things in life, yet each morning when we are granted a new day to live we waste it doing meaningless things instead of what we really love…..<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">But why? …………<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">You know…….. Life is truly what you make it. And if someone says that they have a horrible life I really do not feel sorry for them…. Life is what you make it. Whether you make it a Disney adventure or a slow ride in hell is YOUR CHOICE. Once you become an adult, you have to start living your life for you. Sure stuff happens! STUFF HAPPENS TO EVERYONE. But the difference is how you let that STUFF affect you. So many people wallow in their own grief after a breakup or some other unfortunate event, and never take the time to look at all the positive around them. When you look at all the negative things in life, that list of negatives tends to go on and on. However, when you look at the positives….that list stops short, but why? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">I guess what I’m trying to say is… Pick yourself back up and stop feeling sorry for yourself…… There are so many great things in life that you miss out on by having a negative mind. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "MV Boli";\">Stop worrying about those who don’t like you. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">Stop worrying about those times that you failed. <o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">Stop worrying about all of the things that make you unhappy and START LIVING!!<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "MV Boli";\">YOU DESERVE TO BE HAPPY!<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "MV Boli";\">We all do………… So we need to stop letting our minds keep us from that….<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli";\">At the end of the day, life is truly what you make it. Your life is a concoction of your expectations, decisions, and realities. You can decide to add a little bit of sugar to it to make it sweet, or you can throw in some Tabasco to make it fiery hot…but at the end of the day… That is your life. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\">So stop feeling sorry for yourself… And just live<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "MV Boli";\">Have a great day, </span></div><div><span style=\"font-family: "MV Boli";\"><br /></span></div><br /><div><span style=\"font-family: "MV Boli";\"> </span><span style=\"background-color: white; color: #222222; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span></div><div style=\"background-color: white; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; margin-bottom: 0.0001pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\">My Book: </span></i><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #66cccc; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">https://www.createspace.com/4430912</span></a></span><span style=\"font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"> </span><span style=\"color: #222222; font-family: Arial, sans-serif; font-size: 11.5pt;\"><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #66cccc; text-decoration: none;\" target=\"_blank\"><span style=\"font-family: \'Times New Roman\', serif;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: white; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 15pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\">Facebook:</span></u></b><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #66cccc; text-decoration: none;\" target=\"_blank\">http://facebook.com/TheAwkwardButterfly</a></span><span style=\"font-family: Arial, sans-serif; font-size: 11.5pt;\"><o:p></o:p></span></div><div style=\"background-color: #fff9e7; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 15pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background-color: white; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 15pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\">My Blog: </span></i><span style=\"color: #222222; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif; font-size: 11.5pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #66cccc; text-decoration: none;\" target=\"_blank\"><span style=\"color: #1155cc;\">http://monicarenata.blogspot.com</span></a></span></div>','I feel sorry for no one………….','','publish','open','open','','i-feel-sorry-for-no-one','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=25',0,'post','',0),(26,1,'2014-05-28 18:37:00','2014-05-28 18:37:00','<div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Palatino Linotype","serif"; font-size: 26.0pt; line-height: 115%;\">Finding Happy<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">In a world of endless thunderstorms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Surrounded by the unknown<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I hide my head underneath my arms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I wish to be back home<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Shrouded by my own inner fears<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Afraid of what may come next<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I remain the spot that I started in<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">So emotionally unattached<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Waiting for my hero<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">But will they ever come<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">To be alone in this fury<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">To be alone in hell on earth<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">Fire consumes my soul<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">Yet I can also feel the light<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">That radiates inside of me<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">That wants me to continue to fight<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">It offers me words of encouragement<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">Words which were never once there<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">It offers me these kind words<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Palatino Linotype","serif";\">This brought inner peace within<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"color: #0070c0; font-family: "Palatino Linotype","serif";\">Life can be hard sometimes<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"color: #0070c0; font-family: "Palatino Linotype","serif";\">There are many things you will go through<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"color: #0070c0; font-family: "Palatino Linotype","serif";\">Just remember to remain positive<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"color: #0070c0; font-family: "Palatino Linotype","serif";\">And always see things through<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">In a world of endless thunderstorms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I found that I was my own friend<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">And I looked deep inside and realized<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">That fear shouldn’t reside within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Overwhelmed by my blistering hope<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I no longer wished to be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">The person who was afraid of trying<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">The person who was scared to just see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Waiting for my hero<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">But the whole time it was me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">I think I finally found my happy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Palatino Linotype","serif";\">Here is where I want to be<o:p></o:p></span></div><div><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Finding Happy','','publish','open','open','','finding-happy','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=26',0,'post','',0),(27,1,'2014-05-27 14:28:00','2014-05-27 14:28:00','<div style=\"text-align: center;\"><i><span style=\"color: #17375e; font-family: "Goudy Old Style","serif"; font-size: 28.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #17375E; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: text2; mso-themecolor: text2; mso-themeshade: 191;\">You will never know what love truly is until you fully love yourself.…. – Monica Renata <o:p></o:p></span></i></div><div><i><span style=\"color: #17375e; font-family: "Goudy Old Style","serif"; font-size: 28.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #17375E; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: text2; mso-themecolor: text2; mso-themeshade: 191;\"><br /></span></i></div><div><br /></div><div><i><span style=\"font-family: "Goudy Old Style","serif";\">Love. We all want it. Many of us search for a lifetime to find it, but do we really know what it is? I have felt as though I have loved before, but was that true? To find beauty within a rock that has been weathered by so many storms…..That beautiful rock which is you. Take time to discover what makes you special….. Take the time to love yourself fully. Love yourself more than you thought you could ever be loved……..and then when another love crosses your path, you will know if it is worth putting your heart at risk. <o:p></o:p></span></i></div><div><i><span style=\"font-family: "Goudy Old Style","serif";\"><br /></span></i></div><div><i><span style=\"font-family: "Goudy Old Style","serif";\"><br /></span></i></div><div><i><span style=\"font-family: "Goudy Old Style","serif";\"><br /></span></i></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The Rock<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">To place it on a pedestal<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">To bow before its feet<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Seems like an uninspiring thing<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Its importance is of the least<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">It is just so plain and shallow<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">It stays the same each time<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">No one wants to marvel the rock<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">That is not hard to find<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Reflection seen every day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Yet it does not mean much<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">A rock that has been weathered by many storms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Yet never felt that touch<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">That touch of love that bursts within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">That radiates from sea to sea<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The acceptance of the realization<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">That that rock is me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">So what is there to like about it?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Yet, what is there to hide?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Constantly questioning my own value<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Constantly wondering why<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Why am I important?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Why do I have value today?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">What makes me so special?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">What makes people in my life stay?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Always doubting the beauty within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Yet believing all the negative hype<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">But today I decide to cast away<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The negativity associated with the rock<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Beautiful in its own way<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">It has such a marvelous hue<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Its endurance is never-ending<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Its strength is unparalleled too<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The gracefulness to tap dance on water<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The weight to sink deep down<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The malleability to forge into a weapon<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">The ability to survive time after time<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Weathered by many storms<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">So many times cast into the sea<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Yet I returned to land each time<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Smoothened out by harsh conditions around me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">And for that I love myself more<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">I realize the strength within me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">I learn to love myself regardless<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Of what others may think of me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">To place it on a pedestal<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">To bow before its feet<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Seems like an uninspiring thing<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Its importance is of the least<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">But the value of some great things<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Aren’t always seen<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">But love from within is priceless<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">And it will never leave<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">So love yourself undoubtedly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Appreciate all the flaws within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Never doubt your own existence<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Know your value from within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Love yourself so truly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Even if others may not<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">For you are a valuable person<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\">Just like the almighty rock<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png\" height=\"400\" width=\"257\" /></a></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Goudy Old Style","serif"; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','The Rock','','publish','open','open','','the-rock','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=27',0,'post','',0),(28,1,'2014-05-23 15:41:00','2014-05-23 15:41:00','<div><span style=\"font-family: "Garamond","serif";\">Waiting For Others to Hold My Hand<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">By : Monica Renata <o:p></o:p></span></div><div><br /></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I use to be afraid<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Of the many tasks at hand<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I shouted and complained<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Because others wouldn’t hold my hand<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I wanted to venture forward<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">But in the end I would always stop<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I wanted to accomplish my tasks<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Yet alone I felt I could not<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">A burning fiery desire<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Enclosed within my chest<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">In my mind I felt I can do anything<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">I believe that I have time left<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">However, there are many things that I want to do<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Yet it is confidence that I lack<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">So instead I wait for others to come<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">While my dreams I decide to push back<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">But one day I shall wake up<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">And I will finally be able to see<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">That while I waited for someone to hold my hand<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Time never waited for me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">Long has past my days of youth<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">My life is fading away fast<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I have goals I have never reached<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Yet I have more excuses than fingers on my hand<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">The agony of defeat<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Oh how I have wasted my time<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">I should have lived how I wanted to live<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Instead of waiting for others to hold my hand<o:p></o:p></span></div><div><br /></div><div><br /></div><div><br /></div><div><b><span style=\"font-family: "Garamond","serif";\">“Sometimes you have to live life according to your time schedule and stop “waiting” for others to show up. It is better to do things alone at times, than to not do them at all.” – Monica Renata <o:p></o:p></span></b></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg\" height=\"320\" width=\"214\" /></a></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><br />','Waiting For Others to Hold My Hand','','publish','open','open','','waiting-for-others-to-hold-my-hand','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=28',0,'post','',0),(29,1,'2014-05-22 19:37:00','2014-05-22 19:37:00','<div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Let Freedom Ring<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Upon the grassy fields in front<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I look at my team of men<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">So battered by the enemy’s fire<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Yet hope still resides within<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">To move forward brings an ounce of fear<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But this fear shall be overcome<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">For I am a soldier today<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And I shall fight through the rise and set of the sun<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">An overwhelming sense of pride<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">A burst of complete relief<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">My children’s children will know their grandfather<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And like me they shall aspire to be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">A hero I shall be today<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But not only I, you see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">For my men and I shall die for this country<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">So that we may forever let freedom ring<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/1038.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/1038.png\" height=\"192\" width=\"320\" /></a></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Let Freedom Ring','','publish','open','open','','let-freedom-ring','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=29',0,'post','',0),(30,1,'2014-05-20 19:26:00','2014-05-20 19:26:00','<div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Stormy Day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Today it rained<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">It rained so hard<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">It rained so much that all of the water washed away all of the happiness on my face<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And just when I thought it couldn’t get any worse…<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Thunder…<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And Lightning…<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">The two scariest things in the world to me started to occur<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Cowered in a corner of fear<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I sat<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I wished<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I prayed to be somewhere else<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But I remained here<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Surrounded by my reality which was not going to flee<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I had make a breakthrough<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I had to finally stand up for me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But in the dark<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">As I was in that pouring rain<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">My heart skipped a beat<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I was deathly afraid<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But how shall I live life<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">If I am afraid to?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">How can I be happy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">If I’m afraid to do what I must do?<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">So I wipe away all the tears on my face<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And realize that this storm is something I will have to embrace<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I can’t let it hold me down<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I can’t let it break me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I can’t be scared of where I am destined to be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">So forward I march<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Despite the rain and the thunder<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Lightning strikes ahead<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">But I decide to march on further<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Into my future<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Into the place where I’m supposed to be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Through the stormy day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I have to realize that like this it won’t always be<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Today it rained<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">It rained so hard<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">It rained so much that all of the water washed away all of the happiness on my face<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And just when I thought it couldn’t get any worse…<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">The sun shined brightly in the corner of my eye<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">The lightning subsided and the rain stopped<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">And when I finally looked around to see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I realized that happiness was what surrounded me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Oh stormy weather<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Thanks for making me see<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">That throughout my darkest battles I can make it<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">Even when I don’t believe<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">For I am more stronger than I sometimes believe<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\">I just have to follow the light that resides in me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg\" height=\"238\" width=\"320\" /></a></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "High Tower Text","serif";\"><br /></span></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Stormy Day','','publish','open','open','','stormy-day','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=30',0,'post','',0),(31,1,'2014-05-20 18:52:00','2014-05-20 18:52:00','<div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Endless Echoes<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">In a world of hallow white walls<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I whisper to you and hear my words echo<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Bouncing endlessly around<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Sounding like a distant melody with a mellow tone<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">You stand there<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">You stand as still as the air on a starry night<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">You say you listen <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Yet you do not hear…<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Words which were meant to be heard<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">But also words which deafen your ears<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I whisper to you<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">These words<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">My words <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">For you<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Yet you don’t understand<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">You can’t understand<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">So what now?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Hollow as the drum that is played by the music man at the beach<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">My heart aches<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Yet words, my words, surround me<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Drowning in a pool of what I decided to speak<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">What I really felt…<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">What I said…<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">What you did not want to hear…<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Heeeeeelllllllllloooooooooooooo……..<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I say and hear my echo repeat<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">We are standing face to face<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">So close that our feet meet<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I whisper to you in a room of hallow white walls<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">My words echo endlessly<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Yet on your ears they do not fall<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Drums pounding<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Sweat dropping at my feet<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">My words surround us both<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Yet your ears can’t hear a peep<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I’m talking to you<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I’m trying to get you to see<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Listen to the endless echoes<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Which surround you and me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">“Sometimes no matter how much you try to talk to someone about something, they will never be able to understand. You cannot speak upon deafened ears…” –Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg\" height=\"224\" width=\"320\" /></a></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: #FFF9E7; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><br /></div><br /><div><br /></div>','Endless Echoes','','publish','open','open','','endless-echoes','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=31',0,'post','',0),(32,1,'2014-05-20 12:30:00','2014-05-20 12:30:00','<div><span style=\"font-family: "Californian FB","serif";\">The Thrill is Gone<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">The days of our lives<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Through each grain of sand<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Important moments become memories<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">And feelings drift off like air<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">Caught in the middle<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">But don’t know what to do<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">You decide to stay<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">But you want to leave too<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">The songs are no longer cheery<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">The mood is so mellow<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">You stay there physically<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">But emotionally you have let go<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">The days of our lives<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Through each grain of sand<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Love use to be something..<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">But has become a thing of the past<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">But what are you to do<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">When the thrill is gone?<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">When kisses are cold?<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">When your hearts no longer warm?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">What are you to do?<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">When your heart no longer sings<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">The future isn’t bright<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">And you don’t want what it may bring<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">What are you to do?<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">When the feeling isn’t there<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">And your eyes look on coldly<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Without a single care<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">The days of our lives<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Through each grain of sand<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Love use to be overflowing<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">But now it does not reside here<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif";\">Should I stay<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Or Should I go<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">I question myself<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif";\">Yet I still don’t know….<o:p></o:p></span></div><div><br /></div><div><o:p><br /></o:p></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg\" height=\"278\" width=\"320\" /></a></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','The Thrill is Gone','','publish','open','open','','the-thrill-is-gone','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=32',0,'post','',0),(33,1,'2014-05-15 14:15:00','2014-05-15 14:15:00','<div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Footlight MT Light\', serif; font-size: 14pt; line-height: 115%;\"><span style=\"color: purple;\">Every Ounce of Me<o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: \'Footlight MT Light\', serif; font-size: 14pt; line-height: 115%;\"><span style=\"color: purple;\">By: Monica Renata</span><span style=\"color: #953735;\"><o:p></o:p></span></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the water flows indefinitely<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As it finally reached the brim<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">My love still overflows<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">With every ounce of me still<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the sun begins to go up<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the moon begins to rise<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">You are the first and last I think of<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">When I open and close my eyes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Endless fields of flowers<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Each and every day<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">My world is so much livelier<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">You always brighten my day<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Through the endless tears that flow<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Though they be happy or they be sad<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">My love for you shall always consume me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">I shall love you with every ounce of me still<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">No miles which are placed between us<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">No other person can make me hide<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">The feelings that I have<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">The feelings that won’t shrivel up and die<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Through the storms we been through together<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Through the memories that we have made<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">I won’t forget the blessing I received<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">When I met you that one day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the water flows indefinitely<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As it finally reached the brim<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">My love still overflows<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">With every ounce of me still<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the sun begins to go up<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">As the moon begins to rise<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">You are the first and last I think of<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">When I open and close my eyes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Endless fields of flowers<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">Each and every day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">My world is so much livelier<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">I love you….</span><br /><span style=\"font-family: "Footlight MT Light","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: Aparajita;\">w</span><span style=\"font-family: \'Footlight MT Light\', serif; font-size: 12pt; line-height: 115%;\">ith every ounce of me</span></div><div><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg\" height=\"125\" width=\"200\" /></a></div><br /></div><div><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><br /></div><div><br /></div><div><br /></div><br /><div><br /></div>','Every Ounce of Me','','publish','open','open','','every-ounce-of-me','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=33',0,'post','',0),(34,1,'2014-05-13 12:46:00','2014-05-13 12:46:00','<div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I Can’t Make You<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">By: Monica Renata <o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I am great in my own right<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Yet not everyone can see<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But my words mean nothing to others<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Who won’t let me be me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But the wait for me to express myself<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Is like a predetermined defeat<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">My thoughts you want me to voice<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But my words aren’t the words you want them to be<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">To say that I am fine<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">That is just a big fat lie<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But the words that are true to my heart<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Those are the words you will deny<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">To say I should express myself<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">To say I should be me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Yet you won’t listen to a word I say<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Yet you say “Your words may influence me”…<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But alas I know the reality<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">And it isn’t that hard to predict<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I can’t change someone’s way of thinking<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Especially when it is my words they choose to omit<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">So in my months of trying<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I have to just let go<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Let go of my foolish attempts<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">And realize what I should already know<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I can’t make you do anything<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">That you don’t wish to do<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">So instead I shall sit there quietly <o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Waiting for a breakthrough<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I can’t make you listen to me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Even though it matters much<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">So instead I shall keep my thoughts contained<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">While you reach out for my touch<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I can’t make you understand how I feel<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Because that isn’t what you want to do<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But I can’t keep going through the same thing<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I can’t take this torture I have been through……….<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I am great in my own right<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Yet not everyone can see<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But my words mean nothing to others<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Who won’t let me be me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But the wait for me to express myself<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Is like a predetermined defeat<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">My thoughts you want me to voice<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But my words aren’t the words you want them to be<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">So instead I shall just sit quietly<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">And not whisper a peep<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">I always knew some people wouldn’t accept me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #333333; font-family: "Modern No. 20","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">But I never thought it would be you who wouldn’t let me be me<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #333333; font-family: "Californian FB","serif"; font-size: 11.5pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">“Sometimes the ones we care about the most are the ones who really don’t care about how we feel. At times, some people become selfish and only acknowledge their feelings while neglecting yours….. Don’t let situations such as these bother you. Surround yourself with those who appreciate you for who you are and accept you completely” – Monica Renata <o:p></o:p></span></i></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg\" height=\"400\" width=\"308\" /></a></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span></i></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span></i></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span></i></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span></i></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a><o:p></o:p></span></div>','I Can\'t Make You','','publish','open','open','','i-cant-make-you','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=34',0,'post','',0),(35,1,'2014-05-13 12:04:00','2014-05-13 12:04:00','<div><i><span style=\"font-family: \'MV Boli\';\"><span style=\"color: #0b5394;\">Words or Actions? Which are more important…..</span><span style=\"color: red;\"><o:p></o:p></span></span></i></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif";\">A word………. A single distinct meaningful element of speech or writing, used with others (or sometimes alone) to form a sentence and typically shown with a space on either side when written or printed….<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Footlight MT Light","serif";\">An action……….. An action is the fact or process of doing something, typically to achieve an aim. A thing done; an act.<o:p></o:p></span></div><div><br /></div><div><u><span style=\"font-family: "Footlight MT Light","serif";\">Words are a beautiful collection of letters which join together to form thoughts, feelings, statements, emotions……………………and all sorts of other things. But without the reciprocated actions, do they mean anything? <o:p></o:p></span></u></div><div><u><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></u></div><div><u><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></u></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">What is the purpose of someone saying they <i><span style=\"color: #31859c; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #31859C; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent5; mso-themecolor: accent5; mso-themeshade: 191;\">Will always be there for you</span></i>, when in actuality the few times they are needed they are not there or “too busy”? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">What is the purpose of someone saying <i><span style=\"color: #31859c; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #31859C; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent5; mso-themecolor: accent5; mso-themeshade: 191;\">I care about you so much</span></i>, when in actuality they can go a whole week without checking on you just to see if you are okay? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">What is the purpose of someone saying <i><span style=\"color: #31859c; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #31859C; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent5; mso-themecolor: accent5; mso-themeshade: 191;\">You mean a lot to me</span></i>, when in actuality they could care less how you are doing?<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">People say so many things…………but should there words be taken as truth? ……….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Sometimes someone can break down in tears and tell you something, they can express how they feel and show a bit of anger at the fact that you don’t believe them….but what are words if they are not backed by actions? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I rather someone show me how they feel than to just say it………Because at the end of the day…….. Talk is very cheap. Whenever you just rely on what someone says you are only taking in half of the situation. <u>It’s amazing how someone can say they appreciate you….yet you are the very Very VERY last thing on their mind.</u> ..Sad but true. ……<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\"> I guess what I am trying to say is <b>When someone SHOWS you their feelings</b>believe that more than you believe their words. Actions speak louder than words and Actions can reveal the truth that was cloaked in a beautiful melody of words for quite some time. Don’t constantly hold on to what someone else has said, yet they constantly disprove…………Don’t even put yourself through the heartbreak. If you notice something doesn’t match up, address it then and if it doesn’t get better then just forget about it. Don’t let negativity consume your life. Some battles just aren’t worth fighting……..<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Have a great day,<o:p></o:p></span></div><div><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: #fff9e7; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><br /><div><br /></div>','Words Vs Actions','','publish','open','open','','words-vs-actions','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=35',0,'post','',0),(36,1,'2014-05-06 13:45:00','2014-05-06 13:45:00','<div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"color: red; font-family: "Vijaya","sans-serif"; font-size: 15.0pt; line-height: 115%;\">“You can’t let the same thing keep hurting you over and over again….”<o:p></o:p></span></i></b></div><div><br /></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Life is……..<o:p></o:p></span></div><div style=\"text-indent: .5in;\"><b><i><span style=\"color: #00b050; font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Beautiful<o:p></o:p></span></i></b></div><div style=\"margin-left: .5in; text-indent: .5in;\"><b><i><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Fun<o:p></o:p></span></i></b></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><b><i><span style=\"color: #604a7b; font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #604A7B; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent4; mso-themecolor: accent4; mso-themeshade: 191;\">Crazy<o:p></o:p></span></i></b></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Life is so many things……..and well, life can be complicated at times. Each day we wake up and take on a new day but some of us wake up with the thoughts of past actions or mistakes glooming over us. We think about this over and over and our new day becomes shrouded by the past which makes our ever approaching future seem a little dim. But why do we do this? Why do we let the past cloud our sunny outlook each new day? Why do you let the same thing that was bothering you yesterday bother you today? <o:p></o:p></span></div><div><b><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Things happen….<o:p></o:p></span></b></div><div style=\"background: #D6E3BC; mso-background-themecolor: accent3; mso-background-themetint: 102; text-indent: .5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">People hurt your feelings……..<o:p></o:p></span></div><div style=\"background: #D6E3BC; margin-left: .5in; mso-background-themecolor: accent3; mso-background-themetint: 102; text-indent: .5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">You mess up sometimes………<o:p></o:p></span></div><div style=\"background: #D6E3BC; margin-left: 1.0in; mso-background-themecolor: accent3; mso-background-themetint: 102; text-indent: .5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Others take you for granted……….<o:p></o:p></span></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">But at the end of the day, <u>you control what is important to you</u>. I believe that so many people find it so hard to shrug off certain things. We let emotions build up…. We cry for the same reason we cried yesterday…….But why? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">You can’t let the same thing keep hurting you over and over again……….<o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">If you don’t like something about yourself, <b><span style=\"background: #FBD4B4; mso-shading-themecolor: accent6; mso-shading-themetint: 102;\">Change it</span></b>!<o:p></o:p></span></div><div style=\"margin-left: .5in; text-indent: .5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">If you don’t like how someone is treating you, <b><span style=\"background: #D99594; mso-shading-themecolor: accent2; mso-shading-themetint: 153;\">Leave Them Alone</span></b>!<o:p></o:p></span></div><div style=\"margin-left: 1.5in;\"><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">If you keep making the same mistake over and over, <b><span style=\"background: yellow;\">STOP doing it and Make A Change Today</span></b>!!<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">You can’t let the same thing keep hurting you over and over again……….You just can’t let it……….. By doing so, you don’t even give your future a chance to shine brightly. You diminish the quality of your life because you are burdened by the things that you can’t seem to get over………… <b><u><span style=\"background: #D6E3BC; mso-shading-themecolor: accent3; mso-shading-themetint: 102;\">There is nothing worse than waking up a few months from now and realize that you wasted time stressing about something or someone who doesn’t matter</span></u></b>…………..<b><span style=\"background: #FFFF99;\">There is nothing worse than realizing that you made your life a living hell just because you couldn’t get over something</span></b>…………<b><span style=\"background: #FFCCCC;\">There is nothing worse than realizing that you wasted part of your life on something that you could have changed in a matter of seconds</span></b>………..<o:p></o:p></span></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Life is……..<o:p></o:p></span></div><div style=\"text-indent: .5in;\"><b><i><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Beautiful<o:p></o:p></span></i></b></div><div style=\"margin-left: .5in; text-indent: .5in;\"><b><i><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Fun<o:p></o:p></span></i></b></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><b><i><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Crazy<o:p></o:p></span></i></b></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Life is so many things……..and well, life can be complicated at times………<b><span style=\"color: #0070c0;\">But sometimes we forget that life is short……..<u>Life is too short to be anything but happy</u></span></b>. Embrace the positive people around you, and discard the negative ones from your life. Forget about your past mistakes, and begin to find ways to overcome those hurdles. Live each day as a new day that hasn’t been tarnished by the past of yesterday. You owe it to yourself. You deserve to be happy. Stop letting the same things keep you from enjoying your life! You don’t want to wake up one day and realize how much time you actually wasted on something that is so meaningless today. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Vijaya","sans-serif"; font-size: 14.0pt; line-height: 115%;\">Have a great day, <o:p></o:p></span></div><div><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><br /></div><br /><div><br /></div>','You Can\'t Let the Same Thing Keep Hurting You Over and Over Again.....','','publish','open','open','','you-cant-let-the-same-thing-keep-hurting-you-over-and-over-again','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=36',0,'post','',0),(37,1,'2014-05-02 13:08:00','2014-05-02 13:08:00','<div><span style=\"font-family: "Footlight MT Light","serif";\">SandMan<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Beautifully created<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Carved from the sand with blood, tears, and sweat<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Takes a while to finish creating<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Takes so much to stay intact<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Molded by not only the hands of one<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">But by the hands of many<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Each day helps create the masterpiece<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Its work status is unending <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Yet beautiful indeed<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">The core includes the heart<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">That stays true to what it knows and loves<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">That beats despite all of its past hurt<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Molded into perfection<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Perfection that not many will see<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">But despite all that you encounter<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Please don’t change who you are or who you want to be<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t let others change who you are<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t let situations take away your hope<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t allow ungrateful people to rob all of the giving in your heart<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t let words get you down<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t stray from the path of who you want to be<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Don’t let someone tell you that you are not good enough when you are being all you can be<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Blood, tears, and sweats<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Carved a beautiful masterpiece<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Disappointments helped mold you<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">And so did past defeats<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Rise up and realize your value<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">You are worth more than you may think<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">For those made of sand who remain intact<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Are indeed a masterpiece<o:p></o:p></span></div><div><br /></div><div><i><span style=\"font-family: "Footlight MT Light","serif";\">“We mold ourselves by our personal experience and what goes on around us. Do not allow others to break you. Remain true to the person you really are……. “ –Monica Renata <o:p></o:p></span></i></div><div><i><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></i></div><div><i><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg\" height=\"240\" width=\"320\" /></a></div><div><i><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></i></div><div><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: #66cccc; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: #66cccc; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','SandMan','','publish','open','open','','sandman','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=37',0,'post','',0),(38,1,'2014-04-30 17:49:00','2014-04-30 17:49:00','<div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Patience is a Virtue<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Patience is a virtue<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">That so many seem to lack<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">But what’s the point of always waiting<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">When it is consistency someone lacks?<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Patiently waiting for things to change<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">But will that ever be? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Patiently waiting for someone to see their flaws<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">But will they ever see? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">To wait around forever<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">To experience the same result<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Waiting patiently for a change<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">But change shall never come<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Wait no longer my dear friend<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Patience isn’t as all good as it seems<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">For if you want things to change<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">You have to be the change you wish to see<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Stop letting time just pass you by<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Stop being so darn patient<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">For those who wait never receive handouts<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; mso-bidi-font-family: "MV Boli";\">Because victory is given to those who take it <o:p></o:p></span></div><div><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin: 0in;\"><span style=\"color: #222222; font-family: ""Monotype Corsiva"","serif"; font-size: 18.0pt;\">Monica Renata </span><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /></span><i><span style=\"color: #38761d; font-family: ""serif"","serif";\">My Book: </span></i><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: ""serif"","serif";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><b><u><span style=\"color: #222222; font-family: ""serif"","serif";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: ""serif"","serif";\"> </span><span style=\"color: #222222; font-family: ""sans-serif"","serif";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"font-family: ""serif"","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><b><u><span style=\"color: #222222; font-family: ""serif"","serif";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: ""serif"","serif";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><i><span style=\"color: #38761d; font-family: ""serif"","serif";\">My Blog: </span></i><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: ""serif"","serif";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><u1:p></u1:p> <u1:p></u1:p> <u1:p></u1:p> <span style=\"font-family: "MV Boli"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;\"><br clear=\"all\" style=\"mso-special-character: line-break; page-break-before: always;\" /></span> <br /><div><br /></div>','Patience is a Virtue','','publish','open','open','','patience-is-a-virtue','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=38',0,'post','',0),(39,1,'2014-04-30 15:35:00','2014-04-30 15:35:00','<div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: "MV Boli";\">Summer Days<o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">The brilliance of the summer sun<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">That quickly goes away<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">After showcasing all of its wonder<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">On a beautiful summer day<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Night skies take over as the sun does set<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">No more are the sounds of birds and bees<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Crickets chirp so very loudly<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Interrupting so many who try to sleep<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Sweet smells of muggy gloom<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Flower petals lost in the wind<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">Summer days come upon us quick<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\">And just as quick they come to an end<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg\" height=\"239\" width=\"320\" /></a></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "MV Boli";\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin: 0in;\"><span style=\"color: #222222; font-family: ""Monotype Corsiva"","serif"; font-size: 18.0pt;\">Monica Renata </span><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /></span><i><span style=\"color: #38761d; font-family: ""serif"","serif";\">My Book: </span></i><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: ""serif"","serif";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><b><u><span style=\"color: #222222; font-family: ""serif"","serif";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: ""serif"","serif";\"> </span><span style=\"color: #222222; font-family: ""sans-serif"","serif";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"font-family: ""serif"","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><b><u><span style=\"color: #222222; font-family: ""serif"","serif";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: ""serif"","serif";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin: 0in;\"><i><span style=\"color: #38761d; font-family: ""serif"","serif";\">My Blog: </span></i><span style=\"color: #222222; font-family: ""serif"","serif";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: ""serif"","serif";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"font-size: 13.5pt;\"><o:p></o:p></span></div><u1:p></u1:p> <u1:p></u1:p> <u1:p></u1:p> <br /><div><br /></div>','Summer Days','','publish','open','open','','summer-days','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=39',0,'post','',0),(40,1,'2014-04-23 19:31:00','2014-04-23 19:31:00','<div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><i><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">“Never ignore a person who loves you, cares for you, and misses you. Because one day, you might wake up from your sleep and realize that you lost the moon while counting the stars” –Unknown<o:p></o:p></span></i></b></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">How many times have you heard this before? Never ignore a person who <b>loves</b> you, <b>cares</b> for you, and <b>misses</b> you…….Because one day, you might wake up from your sleep and realize that you lost the moon while counting the stars……..So many of us take this quote as a lesson that we should appreciate the people in our lives. We give others <b>Moon</b> status and we revolve our lives around them so that we can never lose them……We disregard the fainting stars we come in contact with because we give the moon so much precedence above all…….<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I found my moon once….I thought that it was everything that I have ever dreamed. It was almost perfect… So frickin perfect!!!.........I loved the moon and it was my light in the darkest of days. I never wanted to lose it…..But one day, the moon didn’t shine so brightly anymore. In fact, it abandoned me at times, but I kept holding on. I just couldn’t lose my moon. Instead of rising every night, my moon disappeared some days which left my world in complete darkness. <o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-indent: .5in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I cried out…….yet my tears were in vain. <o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I tried to speak when the moon was present, but each time this occurred the moon would perform a vanishing act. <o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I valued my moon so much………..but it seems as though it didn’t value me………<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><i><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">When you neglect the stars in the night sky you no longer have light if the moon is gone……. </span></i><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\"> I gave up all the glistening studs I had in order to obtain the moon, yet it left me in complete darkness. Lost, confused, and so unsure of myself I questioned the creator of all……..In my realm of silence I thought I found nothing……however, I was finally calmed by my thoughts……….What if that light that brightened my night was not the moon after all? What if it was just a fainting star…….<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">In each person’s life, they will encounter there moon and their stars. Stars are merely those who have an impact on your life whether positive or negative. They are very much needed for your personal development. The moon tends to the individual or individuals(s) who have a dramatic effect on your life for long periods of time. Your moon may be your mother, your spouse, or a family member…….Your stars may include friends, family, and sometimes even your current spouse (if it wasn’t meant to last). At the end of the day, to make your night sky beautifully, you must have both. Your stars and your moon are necessary…………You just have to learn how to differentiate between the two………<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Just because something shines so profusely does not mean that it is of greater value than a star. Sometimes things have a way of looking more expensive than they actually are………<b><i>Sometimes we place a high value on the wrong people and we lose ourselves completely because we gave everything else up</i></b>……… Sad, but so very true. We label people as stars and say they aren’t important, when in actuality they may have been our moon….<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I guess what I am trying to say is be careful of the individuals you value. As humans, at times we value the wrong ones and believe that they are so beneficial to us when they are actually just bringing us down……… Don’t overvalue some <b><i>fainting star</i></b> and miss out on your true moon!! Life is too short……Yet a night in complete darkness can seem like forever……..<o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><b><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Moon Love<o:p></o:p></span></b></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">By: Monica Renata <o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><br /></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Amidst the world that’s warm yet cold<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">As I sit underneath the tree<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Your eyes gaze upon my body<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Yet my eyes won’t let me get sleep<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><br /></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Infatuated by your beauty<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I no longer focus on the stars<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">For you are who I want forever<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">I wish to lie forever in your arms<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><br /></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Amidst the world that’s warm yet cold<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">As I sit underneath the tree<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Your love is really all I need<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><span style=\"color: #222222; font-family: DaunPenh; font-size: 14.0pt; mso-fareast-font-family: "Times New Roman";\">Your love has set me free<o:p></o:p></span></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><br /></div><div align=\"center\" style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in; text-align: center;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: 6.0pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><br /><div><br /></div>','Moon Love: Stop overvaluing fainting stars','','publish','open','open','','moon-love-stop-overvaluing-fainting-stars','','','2014-08-09 21:22:31','2014-08-09 21:22:31','',0,'http://www.monicarenata.com/?p=40',0,'post','',0),(41,1,'2014-04-23 18:58:00','2014-04-23 18:58:00','<div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Dreadful Holiday<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">By: Monica Renata <o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">It comes around each and every year<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">It is really hard to ignore<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">The TV reminds you daily<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">And so do your neighborhood stores<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">All the guys get ready<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">All the girls wait to be attended on by their king<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">A day I sit alone once again<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Oh that dreadful dreadful holiday<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I never received flowers<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Or even a lover’s kiss<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Not even a box of chocolates<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Or someone say that it is I they miss<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">I never woke up happy<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">And just so excited on that day<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">In fact I wish that I never existed<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Oh that dreadful dreadful holiday<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Aisles are filled with red and pink<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Some place rose petals on the floor<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">And I sit in my apartment<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Painfully alone<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Never really experienced it<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">But always wondered what if<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">What it would be like to have someone<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Who spoiled me and brought me gifts<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">To feel the genuine affection of another<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">To know that your presence would be missed<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Unfulfilled wishes<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">But each year I hope for more<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Maybe someday it will come together<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Maybe someday it will mean something to me<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">Maybe next year I won’t be alone again<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\">On that dreadful dreadful holiday<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://scm-l3.technorati.com/11/02/05/25519/valentine\'sday.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://scm-l3.technorati.com/11/02/05/25519/valentine\'sday.jpg\" height=\"221\" width=\"320\" /></a></div><div><span style=\"font-family: "Modern No. 20","serif"; mso-bidi-font-family: "MV Boli";\"><br /></span></div><div><br /></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"margin-bottom: 0.0001pt;\"><br /></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: 6.0pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Dreadful Holiday','','publish','open','open','','dreadful-holiday','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=41',0,'post','',0),(42,1,'2014-04-23 15:47:00','2014-04-23 15:47:00','<div><span style=\"font-family: "Garamond","serif";\">Overlooked Birth<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">In the world I was welcomed<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">By other human beings <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Surrounded by so many people<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Surrounded by those I’ve never seen<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">Taking my first breath<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">My lungs take everything in<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">And finally I am introduced to a world<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">That contains nothing but sin<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">To be birthed from such happiness<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">To miraculously and successfully exit the womb<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Surrounded by so many people<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Who despite my actions their lives shall resume<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">My life is just beginning<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Yet their life is coming to an end<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Each day everyone will live their life<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Despite the homecoming of the next<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">Each birth is overlooked by someone<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Each birth is not always felt<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">But the lives who will feel the presence of the newborn<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">Are the one in which that birth affects<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><br /><div style=\"background: white; line-height: 15.0pt; margin-bottom: 6.0pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div>','Overlooked Birth','','publish','open','open','','overlooked-birth','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=42',0,'post','',0),(43,1,'2014-04-22 19:03:00','2014-04-22 19:03:00','<div><span style=\"font-family: "Brush Script MT"; font-size: 24.0pt; line-height: 115%;\">Life, Purpose, & Love<o:p></o:p></span></div><div><br /></div><div>To be alive is a wonderful thing… It is a blessing to open your eyes each morning and view the beautiful world around you. So many things to do…… So many new people to meet…… Life is somewhat like a reoccurring dream that starts at the same time each night, yet ends different each time you are about to open your eyes……… <span style=\"font-family: Algerian; font-size: 14.0pt; line-height: 115%;\">Life</span><span style=\"font-size: 14.0pt; line-height: 115%;\"> is </span><span style=\"font-family: "Brush Script MT"; font-size: 14.0pt; line-height: 115%;\">beautiful</span>………But are you enjoying yours? <o:p></o:p></div><div><br /></div><div>For quite some time I have always heard that <i>Life is nothing without purpose</i>. I always wondered what that meant, and in all honesty, I believe that still till this day I am somewhat confused on the meaning. <o:p></o:p></div><div><br /></div><div style=\"background-color: #d9d9d9; background-position: initial initial; background-repeat: initial initial; margin: 15pt 0in 7.5pt;\"><b><span style=\"font-size: 13.0pt;\">pur·pose<o:p></o:p></span></b></div><div style=\"background-color: #d9d9d9; background-position: initial initial; background-repeat: initial initial; margin-bottom: 0.0001pt;\"> <i>noun ˈpər-pəs<o:p></o:p></i></div><div style=\"background: #D9D9D9; line-height: 15.0pt; margin-bottom: 7.5pt; mso-background-themecolor: background1; mso-background-themeshade: 217;\">: the reason why something is done or used : the aim or intention of something<o:p></o:p></div><div style=\"background: #D9D9D9; line-height: 15.0pt; margin-bottom: 7.5pt; mso-background-themecolor: background1; mso-background-themeshade: 217;\">: the feeling of being determined to do or achieve something<o:p></o:p></div><div style=\"background: #D9D9D9; line-height: 15.0pt; margin-bottom: 2.25pt; mso-background-themecolor: background1; mso-background-themeshade: 217;\">: the aim or goal of a person : what a person is trying to do, become, etc.<o:p></o:p></div><div><br /></div><div>Each night I go to bed. <o:p></o:p></div><div>Each morning I rise up again. <o:p></o:p></div><div>But what for? <o:p></o:p></div><div>What is the reason for my existence? What am I supposed to do? <o:p></o:p></div><div>What is your purpose in life? <o:p></o:p></div><div><br /></div><div>I firmly believe that everyone was created for a reason… And yes, it may be true that some of us may never truly know that reason, but some of us will find out. <o:p></o:p></div><div><br /></div><div style=\"margin-left: .5in;\">Maybe your purpose in life is to rejuvenate our youth and help them to excel beyond those in the past. <o:p></o:p></div><div style=\"margin-left: 1.0in;\">Maybe your purpose is to find the cure for diseases that have ravaged so many individuals’ lives. <o:p></o:p></div><div style=\"margin-left: 2.0in;\">Maybe your purpose is to be the inspiration that your little sister or brother needs…….<o:p></o:p></div><div style=\"margin-left: 2.0in;\"> Or maybe…just maybe…. You are like me…. And you just don’t know yet………<o:p></o:p></div><div><br /></div><div>At the end of the day, you must find your purpose in life, and once you do that I believe that ONLY THEN will you begin<span style=\"font-family: "Colonna MT";\"> living</span>. Living is when each breath is valued. When each new sight opens your eyes to things you never knew. Living is loving your life and every tinny tiny moment of it………I will be the first to admit that I am not yet to this point, but I am close. I love my life, yet not enough to appreciate it fully. Therefore, instead of truly living….. I exist……but I want to do more than that. <o:p></o:p></div><div><br /></div><div>Today I vow to grab life by the ropes and go on a journey that I could only have dreamed of. I will find my true calling and realize why I am here and what I am meant to do. I will cherish each sight and each breath. I will live my life and I will finally feel the <span style=\"font-family: Forte;\">true love</span> that can only arise once you fully love the person you see every day……… <b><i><u><span style=\"font-family: Harrington; font-size: 14.0pt; line-height: 115%;\">yourself</span></u></i></b>. <o:p></o:p><br /><br /></div><div>Life is nothing without purpose…..if we had no purpose we would just walk around the earth doing nothing productive….not making a difference……..we would basically be a hallow shell of a human……….<o:p></o:p><br /><br /></div><div>I guess what I am trying to say is, <i><u>now is the time to stop existing and start living</u></i>. Don’t let doubts hold you back from your true callings. Do not be afraid to fail a few times. Find your purpose in life and fall in love with yourself. Appreciate your life and every single second of it…… <span style=\"font-family: "Brush Script MT"; font-size: 16.0pt; line-height: 115%;\">Life is so beautiful</span>………..and I don’t want you to finally realize that when it is too late. <o:p></o:p></div><div><br /></div><div>Have a great day, <o:p></o:p></div><div><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: 6.0pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><br /><div><br /></div>','Life, Purpose & Love','','publish','open','open','','life-purpose-love','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=43',0,'post','',0),(44,1,'2014-04-16 17:15:00','2014-04-16 17:15:00','<div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">Kissed the Midnight Moon<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I kissed the midnight moon<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">That seemed so far away<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I felt it on my cherry lips<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I could taste its sweet taste<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I kissed the midnight moon<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">Yet it wasn’t as cold as I thought<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">It had warmth about it all<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">And soon I got lost in my thoughts<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">Floating high forever<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">Never coming back down<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">A love like no other<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">A love that lifts me high and never brings me down<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I kissed the midnight moon<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">Something I loved but was always far away<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">I was able to finally get a glimpse of heaven<o:p></o:p></span></div><div><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">And find the light in my darkest of days<o:p></o:p></span></div><div><br /></div><div><i><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\">“Sometimes we don’t really understand how close we are to obtaining what we truly want. We admire from a distance and believe that the impossible cannot be reached, but actually it can be. The only way to guarantee that you will never be able to reach your utmost potential is to not try. “ –Monica Renata <o:p></o:p></span></i></div><div><i><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\"><br /></span></i></div><div><i><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\"><br /></span></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg\" height=\"275\" width=\"320\" /></a></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div><i><span style=\"font-family: Gabriola; font-size: 14.0pt; line-height: 115%;\"><br /></span></i></div><div><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin-bottom: 0in; mso-line-height-alt: 15.0pt;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: .0001pt; margin-bottom: 0in;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background: white; line-height: 15.0pt; margin-bottom: 6.0pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #333333; font-family: "Arial","sans-serif"; font-size: 11.5pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Harrington; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div><span style=\"font-family: Harrington; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/e505355f36634704486fae0eebaba121.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/e505355f36634704486fae0eebaba121.jpg\" height=\"320\" width=\"238\" /></a></div><div><span style=\"font-family: Harrington; font-size: 14.0pt; line-height: 115%;\"><br /></span></div><div> </div><div><br /></div><br /><div><br /></div>','Kissed the Midnight Moon','','publish','open','open','','kissed-the-midnight-moon','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=44',0,'post','',0),(45,1,'2014-04-16 14:48:00','2014-04-16 14:48:00','<div><span style=\"font-family: "Bookman Old Style","serif";\">I am too nice<o:p></o:p></span></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Bookman Old Style","serif";\">I\'m too nice.... That\'s my problem... I\'m really too nice. And when people act ugly towards me I don\'t have it in me to treat them the same way...<o:p></o:p></span></i></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I grew up being taught the <b><span style=\"color: #cc9900;\">Golden Rule</span></b>. You know, “Treat people the way you would like to be treated”…… I treat others with kindness because at the end of the day that is the same kindness that I would like to be returned to me.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\"> Genuine kindness……<o:p></o:p></span></div><div style=\"margin-left: .5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">The type of kindness where if someone was crying you would give up your precious valuable time to be their shoulder to cry on. <o:p></o:p></span></div><div><br /></div><div style=\"margin-left: 1.0in;\"><span style=\"font-family: "Bookman Old Style","serif";\">The type of kindness where you offer your last just so someone could have something. <o:p></o:p></span></div><div><br /></div><div style=\"margin-left: 1.5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">The type of kindness where you would give up a few minutes of your happiness just to see someone else smile...<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">So genuine…..So true……..Yet it so often seems that the world does not appreciate people like that. <o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Kindness has become a thing of the past. <i><u><span style=\"color: #595959; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #595959; mso-style-textfill-fill-colortransforms: "lumm=65000 lumo=35000"; mso-style-textfill-fill-themecolor: text1; mso-themecolor: text1; mso-themetint: 166;\">Everyone must equip themselves with an iron heart because emotions are trampled on daily, kindness is deemed to be a weakness, and quite frankly having evil ways (whether it be using or disrespecting someone) has become the norm. <o:p></o:p></span></u></i></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">To be such a kind person in an unkind world………Must be hard at times…….<o:p></o:p></span></div><div><br /></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">I have said to myself so many times “<i><span style=\"color: #953735; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #953735; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent2; mso-themecolor: accent2; mso-themeshade: 191;\">I am too nice</span></i>”………<o:p></o:p></span></div><div style=\"margin-left: 1.0in;\"><span style=\"font-family: "Bookman Old Style","serif";\">I have told myself that “<span style=\"color: #558ed5; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #558ED5; mso-style-textfill-fill-colortransforms: "lumm=60000 lumo=40000"; mso-style-textfill-fill-themecolor: text2; mso-themecolor: text2; mso-themetint: 153;\">I will start treating others as coldly as they treat me</span>”……<o:p></o:p></span></div><div style=\"margin-left: 1.5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">I say “<span style=\"color: #7030a0;\">I won’t let this hurt my feelings anymore. I will stop being nice</span>”……<o:p></o:p></span></div><div><br /></div><div style=\"margin-left: 1.5in; text-indent: .5in;\"><b><span style=\"font-family: "Bookman Old Style","serif";\">But at the end of the day……I remain the same. <o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I <u>remain</u>the person who checks on others to make sure they are doing okay. <o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I <u>remain</u>the person who goes out of my way to bring medicine or food to a friend if they are sick. <o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I <u>remain</u>the person who smiles despite knowing that this kindness will never be returned…..<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">A friend once told me the following, “<b><i>A consequence of being nice and doing stuff for people is that you can never expect that in return or else you will be disappointed</i></b>.”<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">For so long, I thought this was a foolish statement. I honestly thought that others too knew of the <b><span style=\"color: #cc9900;\">Golden Rule</span></b>, which they did; however many only use it when it benefits them. So selfish…….but what can you do? That’s life……….<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I guess it all comes down to <b><i>“To Be”</i></b> or <b><i>“Not to Be”</i></b>……….<o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">Do you want to be a nice person or not? <o:p></o:p></span></div><div style=\"margin-left: .5in; text-indent: .5in;\"><i><span style=\"font-family: "Bookman Old Style","serif";\">Do you want to live selflessly or selfishly?</span></i><span style=\"font-family: "Bookman Old Style","serif";\"> <o:p></o:p></span></div><div style=\"margin-left: 1.5in;\"><span style=\"font-family: "Bookman Old Style","serif";\">Do you want the possibility of having your feelings hurt if you are taken advantage of or do you have it in you to be okay with the outcome either way it goes? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I’m too nice……That may be so true. My feelings may be hurt so many times, but no matter what, I will still smile. I will still be that person who tries to brighten others day. I will still be that person who checks up on others to make sure all is well. I will still be that person who helps others even though I may need help at times. And no, this does not mean I am a weak person. <o:p></o:p></span></div><div style=\"background: #E5DFEC; mso-background-themecolor: accent4; mso-background-themetint: 51;\"><b><span style=\"font-family: "Bookman Old Style","serif";\">Kind<o:p></o:p></span></b></div><div style=\"background: #E5DFEC; mso-background-themecolor: accent4; mso-background-themetint: 51;\"><span style=\"font-family: "Bookman Old Style","serif";\">Adjective.<o:p></o:p></span></div><div style=\"background: #E5DFEC; mso-background-themecolor: accent4; mso-background-themetint: 51;\"><i><span style=\"font-family: "Bookman Old Style","serif";\">Having or showing a gentle nature and a desire to help others: wanting and liking to do good things and to bring happiness to others<o:p></o:p></span></i></div><div><span style=\"font-family: "Bookman Old Style","serif";\">What is so weak about that person? What is so wrong about trying to spread happiness? What is wrong with being kind?......<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I believe that nothing is wrong with it. There is no such thing as being “Too Nice”! You are yourself. You are a great person, and don’t let anyone tell you otherwise. It isn’t your fault that others take advantage of your gentle nature. In all honestly, when someone takes advantage of a nice person they are actually ruining so much for themselves. <o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">When a kind person’s heart begins to become icy cold, it doesn’t really have that much emotion left. All the bruises from being trampled on so many times may heal, but the heart no longer beats with kindness; it beats with rage and resentment. When a kind person dies inside, it isn’t a good thing for anyone really. With so much negativity in the world……..why deprive the world of someone who’s joy is to bring happiness to others?......<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">I guess what I’m trying to say is this……..<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">If you are a nice person, please continue to be nice. Don’t let the world change you. <o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">And if you know nice people, please do not use them. Appreciate them, for it is very rare that we come across selfless people. Too many times we purely focus on ourselves and neglect those who go out of their way for us. Too many times we forget about people until the moment when we need them. Too many times we act ugly with each other because we feel as though our kindness will be taken as weakness and we will be used……..<o:p></o:p></span></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Bookman Old Style","serif";\">I\'m too nice.... That\'s my problem... I\'m really too nice. And when people act ugly towards me I don\'t have it in me to treat them the same way...<o:p></o:p></span></i></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">But at the end of the day, I rather be a nice person than to be someone I am not………<o:p></o:p></span><span style=\"font-family: \'Bookman Old Style\', serif;\">I guess it all comes down to </span><b style=\"font-family: \'Bookman Old Style\', serif;\"><i>“To Be”</i></b><span style=\"font-family: \'Bookman Old Style\', serif;\"> or </span><b style=\"font-family: \'Bookman Old Style\', serif;\"><i>“Not to Be”</i></b><span style=\"font-family: \'Bookman Old Style\', serif;\">……….</span></div><div><br /></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Have a great day, <o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial;\"><span style=\"color: #222222; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial; mso-fareast-font-family: "Times New Roman";\">Monica Renata </span><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /></span><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Book: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">https://www.createspace.com/4430912</span></a></span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">The Awkward Butterfly:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> </span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"color: blue; font-family: "Times New Roman","serif"; text-decoration: none; text-underline: none;\">http://amzn.com/B00EP5A484</span></a><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial;\"><b><u><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">Facebook:</span></u></b><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"> <a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"color: blue; text-decoration: none; text-underline: none;\">http://facebook.com/TheAwkwardButterfly</span></a></span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin-bottom: 6pt;\"><i><span style=\"color: #38761d; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\">My Blog: </span></i><span style=\"color: #222222; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><br /><b><u>Blog:</u></b> </span><span style=\"color: blue; font-family: "Times New Roman","serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"color: #1155cc; text-decoration: none; text-underline: none;\">http://monicarenata.blogspot.com</span></a></span><span style=\"color: #222222; font-family: "Arial","sans-serif"; font-size: 12.0pt; mso-fareast-font-family: "Times New Roman";\"><o:p></o:p></span></div><div><br /></div><div><br /></div><br /><div><br /></div>','I am TOO nice','','publish','open','open','','i-am-too-nice','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=45',0,'post','',0),(46,1,'2014-04-09 15:40:00','2014-04-09 15:40:00','<div><span style=\"font-family: "Lucida Calligraphy";\">Appreciate The Night Sky</span></div><div><span style=\"font-family: "Lucida Calligraphy";\">By: Monica Renata</span></div><div><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Each night is one in the same<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">The same ole night sky<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">That glistens with every star above<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">As the moon just shifts on by<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">To view this as a miracle<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">To view this as unique<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Would be to say air is so rare<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Therefore at night we sleep<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">To never look in amazement<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">To miss the shooting stars<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">To miss the radiance of the moon’s splendor<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">To not gaze til morning comes<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">Beautiful indeed<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Light that brightens your darkest nights<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">It deserves a gaze<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Yet so many look away and don’t admire the sight<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">Always there<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Yet Forgotten<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Forgotten<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Yet always tries to shine<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Don’t ever forget about your night sky<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">For soon those stars may die<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Lucida Calligraphy";\">For once the twinkles are all gone<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">And once the moon no longer shines bright<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">The night sky will search for another<o:p></o:p></span></div><div><span style=\"font-family: "Lucida Calligraphy";\">Who shall appreciate their light<o:p></o:p></span></div><div><br /></div><br /><div><i><span style=\"font-family: "Lucida Calligraphy";\">“Don’t ever take anyone or anything for granted………. For you might lose the one thing that was keeping your world from being consumed by darkness.” – Monica Renata <o:p></o:p></span></i></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg\" height=\"256\" width=\"320\" /></a></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div><i><span style=\"font-family: "Lucida Calligraphy";\"><br /></span></i></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Book: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://amzn.com/B00EP5A484</span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>Facebook:</u></b> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://facebook.com/TheAwkwardButterfly</span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Blog: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><b><u>Blog:</u></b> <span style=\"color: blue;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">http://monicarenata.blogspot.com</a></span></span></div><div><br /></div>','Appreciate The Night Sky','','publish','open','open','','appreciate-the-night-sky','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=46',0,'post','',0),(47,1,'2014-04-08 13:51:00','2014-04-08 13:51:00','<div><span style=\"font-family: "Garamond","serif";\">I thought…………<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">For the past few nights I have been in heavy thought. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Wondering….. <o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">Contemplating….. <o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">Hoping…. <o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Words floated endlessly through my mind just like feathers on the wind on a cool autumn breeze. Frighteningly beautiful thoughts. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\">To have all, then to lose it all…..<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">To want more, yet be unable to obtain it…<o:p></o:p></span></div><div style=\"margin-left: .5in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">Consumed by the thought of not knowing…...never truly knowing……….<o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">I thought<o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Tears of sadness flowed from those big eyes that so many said were beautiful. The smile that was always there was no more. Like the rivers that flow through so many places ….<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">A never ending flow……..<o:p></o:p></span></div><div><span style=\"font-family: Garamond, serif;\"> </span><span style=\"font-family: Garamond, serif;\">Drifting around the curves of earthly flesh….</span></div><div><span style=\"font-family: "Garamond","serif";\"> Ongoing………….<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">In the darkness, solitude is truly realized. Surrounded by nothing but four blank walls…..the insignificance of your existence is recognized…and then you begin to sink again……..Tears start to wet the ground around you………..Your feet begin to descend……….Life is becoming cloaked by quicksand which you cannot escape. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Tears of sadness turn to rage………<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"> Tears of rage become hate……..<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"> And hate consumes the soul……….<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Yet I still thought….<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><i><span style=\"font-family: "Garamond","serif";\">To have all, then to lose it all…..<o:p></o:p></span></i></div><div style=\"text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\">To want more, yet be unable to obtain it…<o:p></o:p></span></i></div><div style=\"margin-left: .5in; text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\">Consumed by the thought of not knowing….never truly knowing……….<o:p></o:p></span></i></div><div style=\"margin-left: .5in; text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\"><br /></span></i></div><div><u><span style=\"font-family: "Garamond","serif";\">Sometimes, our biggest downfall is our own mind</span></u><span style=\"font-family: "Garamond","serif";\">…… We think too much. We dwell too much on the negative happenings of our lives and we let them consume us. A thought turns into a dream which then evolves into an ongoing nightmare that we live daily. Each day it is the same, we cower in that corner of misery and live the same event over and over and over again til the peak of our sadness has been reached and we feel as though it cannot be pacified by anyone. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><b><span style=\"font-family: "Garamond","serif";\">People have a tendency of never seeing the good in situations</span></b><span style=\"font-family: "Garamond","serif";\">. We extrapolate that every happening in our life is an outright attack on our personal integrity. We don’t take away any lessons for the situations; <i>instead we just believe that “someone” is against us</i>. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">I thought………<o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">I thought so much about the same thing over and over again. I thought about what happened. I thought about how I felt. I thought about how much sadness and hatred was now an emotional burden for me…. <b><i>I thought about so much, but I never once thought about how I played a role. </i></b><o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><b><i><br /></i></b></span></div><div><i><span style=\"font-family: "Garamond","serif";\">I never thought about how my actions could have been the cause. <o:p></o:p></span></i></div><div style=\"text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\">I never thought about how maybe I need to look within myself and change things. <o:p></o:p></span></i></div><div style=\"margin-left: .5in; text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\">I never thought that maybe the only person who was against me was myself……….<o:p></o:p></span></i></div><div style=\"margin-left: .5in; text-indent: .5in;\"><i><span style=\"font-family: "Garamond","serif";\"><br /></span></i></div><div><span style=\"font-family: "Garamond","serif";\">For the past few nights I have been in heavy thought. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Wondering….. <o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">Contemplating….. <o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\">Hoping…. <o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">Words floated endlessly through my mind just like feathers on the wind on a cool autumn breeze. Frighteningly beautiful thoughts. <o:p></o:p></span></div><div><span style=\"font-family: "Garamond","serif";\"><br /></span></div><div><span style=\"font-family: "Garamond","serif";\">But today……….. I won’t let those thoughts consume me….I can no longer blame one person for a situation that the outcome is dependent on multiple people and situations. I look within myself for clarification. I look within myself for peace. For no one is against me, I am my own worst enemy. And I realize that if I want change, it will start with me. Things happen in life…… Some good things… Some bad things…. Some days you will be happy… Other days you may be really really sad. But each day is a blessing and a day to learn. Look within yourself for clarity. Do not try to discard your own faults as nonexistent. We are not perfect, nor are we expected to be. Life may throw us many punches, but sometimes we must look at situations to realize if we are the reason that life decided to swing. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Garamond","serif";\">Have a great day, <o:p></o:p></span></div><br /><div><br /></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Book: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://amzn.com/B00EP5A484</span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>Facebook:</u></b> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://facebook.com/TheAwkwardButterfly</span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Blog: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><b><u>Blog:</u></b> <span style=\"color: blue;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">http://monicarenata.blogspot.com</a></span></span></div><div><br /></div>','I Thought.....','','publish','open','open','','i-thought','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=47',0,'post','',0),(48,1,'2014-04-07 13:22:00','2014-04-07 13:22:00','<div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">The Sun after the Storm<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">By: Monica Renata<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">In a world of endless silence<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Stranded far away from home<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">No friend to talk to<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Not a thing to call your own<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Darkness infinitely surrounds you<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">You are in the middle of the sea<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">The storms are raging fiercely<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Here is not where you want to be<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Cold as the artic snowcaps<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Face as pale as can be<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Your hope is somewhat shattered<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">You crumble to your feet<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Why have I been forsaken?<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Why have I not have anything to call my own?<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Why am I consumed with sadness?<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Why don’t I have a place to call home?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">To pity you is what you want<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">You want others to see<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">But sometimes you have the let your inner light shine<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">In order for you to truly open your eyes to see<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">In a world of endless silence<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Stranded far away from home<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">No friend to talk to<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Not a thing to call your own<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Darkness infinitely surrounds you<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">You are in the middle of the sea<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">The storms are raging fiercely<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Here is not where you want to be<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">But maybe you are supposed to be here<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">For maybe you will learn<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Learn to believe in yourself more<o:p></o:p></span></div><div><b><u><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Learn to be the sun after each storm<o:p></o:p></span></u></b></div><div><br /></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Sure at times you may have no one<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">Sure you may not have any place to be<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">But remember that pain is only temporary<o:p></o:p></span></div><div><span style=\"font-family: Vijaya, sans-serif; font-size: 12pt; line-height: 18px;\">And here in pain you will not always be<o:p></o:p></span></div><div><br /></div><div><br /></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg\" height=\"212\" width=\"320\" /></a></div><br /><div><br /></div><div><br /></div><br /><div><br /></div>','The Sun After the Storm','','publish','open','open','','the-sun-after-the-storm','','','2014-08-09 21:16:43','2014-08-09 21:16:43','',0,'http://www.monicarenata.com/?p=48',0,'post','',0),(365,1,'2014-08-09 21:16:44','2014-08-09 21:16:44','','rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you','','inherit','open','open','','rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you','','','2014-08-09 21:16:44','2014-08-09 21:16:44','',49,'http://www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg',0,'attachment','image/jpeg',0),(49,1,'2014-04-04 16:41:00','2014-04-04 16:41:00','<div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Standing up is the hard part<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">So much weight on your two feet<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Moving forward into the world<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Yet not knowing where that path leads<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Standing up is the hard part<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">So many things you have to do<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">There are many goals to accomplish<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">And so many tasks to pursue<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Standing up is the hard part<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">So keep standing and never get down<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">It might be painfully hard some days<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">But it’s better than being on the ground<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">TOo many times we fall face first<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">And are afraid to get back up<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Too many times we let life knock us down<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">And we say we cannot and will not get up<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Too many times we let opinions of others <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Hold us down more and more<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Too many times we didn’t rise up<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Because it was just easy staying down on the floor<o:p></o:p></span></div><div><br /></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Standing up is the hard part<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">But it is better than defeat<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Don’t let life get you down<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Be all that you can be<o:p></o:p></span></i></b></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">And the times that you feel weary<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">And believe that you have no more strength<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Remember that although your other option may be easy<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">The consequence is that in life you will never transcend <o:p></o:p></span></div><div><br /></div><div><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">“If you are always afraid to get up after a fall, then you will never be able to progress in life. Standing up may be the hard part, but it also yields the most rewards. Continue to move forward in life and never let situations keep you down” –Monica Renata <o:p></o:p></span></i></div><div><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg\" height=\"320\" width=\"294\" /></a></div><div><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i></div><div><br /></div><div><br /></div><br /><div><br /></div>','Standing Up Is the Hard Part','','publish','open','open','','standing-up-is-the-hard-part','','','2014-08-09 21:16:44','2014-08-09 21:16:44','',0,'http://www.monicarenata.com/?p=49',0,'post','',0),(50,1,'2014-04-03 13:10:00','2014-04-03 13:10:00','<div><span style=\"font-family: "Modern No. 20","serif";\">Holding On<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif";\">Holding on to hope<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But is this hope true<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Am I floating in dreams?<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Am I hiding from the truth?<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Actions do speak <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But words confirm<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Tell me your feelings<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Let them be known<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif";\">Holding on<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But should I let go<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">My brain says yes <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But my heart constantly tells me no<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Actions do speak<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But words confirm<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But I can’t reveal<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">How much I feel alone<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Modern No. 20","serif";\">Holding on<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Is what I constantly do<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Hiding my feelings <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">While also hiding from the truth<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Actions do speak<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">But words confirm<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">Before all I love myself first<o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\">So this can’t go on<o:p></o:p></span></div><div><br /></div><br /><div><i><span style=\"font-family: "Modern No. 20","serif";\">“Sometimes you just have to know when to walk away. Never jeopardize your feelings for the sake of “getting” someone back in your life. If they left, it was a conscious decision they made. Just pick up your pride and move on.. “–</span></i><span style=\"font-family: "Modern No. 20","serif";\"> Monica Renata <o:p></o:p></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg\" height=\"214\" width=\"320\" /></a></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div><span style=\"font-family: "Modern No. 20","serif";\"><br /></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Book: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://amzn.com/B00EP5A484</span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>Facebook:</u></b> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://facebook.com/TheAwkwardButterfly</span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Blog: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><b><u>Blog:</u></b> <span style=\"color: blue; text-decoration: none;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">http://monicarenata.blogspot.com</a></span></span></div>','Holding On','','publish','open','open','','holding-on','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=50',0,'post','',0),(51,1,'2014-04-01 16:02:00','2014-04-01 16:02:00','<div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Bubble<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Forever like a bubble<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Floating softly in the wind<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Admired by the children<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">As soon as its journey begins<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">To reach your peak in life<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">Then finally just pop<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">It’s great to be at the top sometimes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">But sooner or later that time comes to a stop<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><br /><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\">“Always humble yourself… you never know when your time of greatness will come to an end.” –Monica Renata<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg\" height=\"212\" width=\"320\" /></a></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Garamond","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Book: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://amzn.com/B00EP5A484</span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><b><u>Facebook:</u></b> <a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://facebook.com/TheAwkwardButterfly</span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\">My Blog: </span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><b><u>Blog:</u></b> <a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc; text-decoration: none;\" target=\"_blank\"><span style=\"color: blue;\">http://monicarenata.blogspot.com</span></a></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div>','Bubble','','publish','open','open','','bubble','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=51',0,'post','',0),(52,1,'2014-03-31 13:32:00','2014-03-31 13:32:00','Full Circle\r\nBy: Monica Renata\r\n\r\nBricks thrown\r\nHouse was built\r\n\r\nHeart shattered\r\nBut it beats still\r\n\r\nTaken advantage of\r\nA lesson learned\r\n\r\nHarsh words said\r\nBut never returned\r\n\r\nNegativity launched\r\nCatcher’s mitt full \r\n\r\nPasses by\r\nBut presence still known\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n\r\nNegativity thrown\r\nThen made into something great\r\n\r\nReplaced with positivity\r\nNow whose heart aches?\r\n\r\nSitting in a house\r\nWhile you sit alone\r\n\r\nLost everything\r\nWhile you were being so cold\r\n\r\nBricks thrown\r\nHouse was built\r\nBricks from your house that your hands built\r\n\r\nHeart shattered\r\nBut it beats still\r\nNo longer for you, it only beats for me as it forever will\r\n\r\nTaken advantage of\r\nA lesson learned\r\nCan’t even be mad because for my foolishness this I earned\r\n\r\nHarsh words said\r\nBut never returned\r\nSilence is better because I owe you no words\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n','Full Circle','','publish','open','open','','full-circle','','','2014-09-19 13:25:57','2014-09-19 13:25:57','',0,'http://www.monicarenata.com/?p=52',0,'post','',0),(619,1,'2014-09-19 13:25:57','2014-09-19 13:25:57','Full Circle\r\nBy: Monica Renata\r\n\r\nBricks thrown\r\nHouse was built\r\n\r\nHeart shattered\r\nBut it beats still\r\n\r\nTaken advantage of\r\nA lesson learned\r\n\r\nHarsh words said\r\nBut never returned\r\n\r\nNegativity launched\r\nCatcher’s mitt full \r\n\r\nPasses by\r\nBut presence still known\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n\r\nNegativity thrown\r\nThen made into something great\r\n\r\nReplaced with positivity\r\nNow whose heart aches?\r\n\r\nSitting in a house\r\nWhile you sit alone\r\n\r\nLost everything\r\nWhile you were being so cold\r\n\r\nBricks thrown\r\nHouse was built\r\nBricks from your house that your hands built\r\n\r\nHeart shattered\r\nBut it beats still\r\nNo longer for you, it only beats for me as it forever will\r\n\r\nTaken advantage of\r\nA lesson learned\r\nCan’t even be mad because for my foolishness this I earned\r\n\r\nHarsh words said\r\nBut never returned\r\nSilence is better because I owe you no words\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n','Full Circle','','inherit','open','open','','52-revision-v1','','','2014-09-19 13:25:57','2014-09-19 13:25:57','',52,'http://www.monicarenata.com/52-revision-v1/',0,'revision','',0),(53,1,'2014-03-31 12:53:00','2014-03-31 12:53:00','<div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Feather<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">To only be a feather<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Float lightly on the wind<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Close eyes in wonder<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">And begin to pretend <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Lightweight and beautiful<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Floating round and round<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Going on forever<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Yet never touching the cold, hard ground<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Admired by many<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Yet captured by none<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Started standing by many<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Now floating as one<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">Going to new places<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">So light and so free<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">To only be a feather<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">And live not confined by what others want for me<o:p></o:p></span></div><div><br /></div><br /><div><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\">“Live life freely. Don’t let others view of what your life should be confine you to their small world. Expand your horizons and live.” –Monica Renata <o:p></o:p></span></i><br /><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg\" height=\"320\" width=\"248\" /></a></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Book: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://amzn.com/B00EP5A484</span></span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><b><u>Facebook:</u></b> </span><a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://facebook.com/TheAwkwardButterfly</span></span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Blog: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><span style=\"font-size: small;\"><b><u>Blog:</u></b> </span><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://monicarenata.blogspot.com</span></span></a></span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 12.0pt; line-height: 115%;\"><br /></span></i></div>','Feather','','publish','open','open','','feather','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=53',0,'post','',0),(54,1,'2014-03-31 02:33:00','2014-03-31 02:33:00','The night is young<br />The day is old<br /><br />Wishing for a sign<br />Chills in my soul<br /><br />Partially awake<br />Yet mentally sleep<br /><br />Sweat drips down<br />Ice cold feet<br /><br />Can\'t hear any sounds<br />Yet within screams<br /><br />Looking in the mirror<br />Reflection can\'t be seen<br /><br />Breathing hard<br />But gasping for air<br /><br />Reaching for it<br />But it is not there<br /><br />Beating heart<br />So shattered and weak<br /><br />Pumping a fluid<br />That rejuvenates me<br /><br />Ashes to Ashes<br />Dust to Dust<br /><br />So close to death<br />I can feel her touch<br /><br /><br /><br /><br /><br /><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Book: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://amzn.com/B00EP5A484</span></span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><b><u>Facebook:</u></b> </span><a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://facebook.com/TheAwkwardButterfly</span></span></a></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Blog: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><span style=\"font-size: small;\"><b><u>Blog:</u></b> </span><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://monicarenata.blogspot.com</span></span></a></span></div>','Cadaver\'s Dream','','publish','open','open','','cadavers-dream','','','2014-08-09 21:22:32','2014-08-09 21:22:32','',0,'http://www.monicarenata.com/?p=54',0,'post','',0),(55,1,'2014-03-28 14:12:00','2014-03-28 14:12:00','<div><span style=\"font-family: "Footlight MT Light","serif";\">I Dreamed A Dream<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed that life was splendid<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed that life was neat<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed that all my dreams would come true<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">And riches would be thrown at my feet<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed of homes with marble<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed of blue skies and crystal clean air<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed of my prince charming<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Waiting in the carriage made of glass<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed that life was a fairy tale<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed that all my wishes would come true<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed of a world of splendor <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Yet in my naïve mind I didn’t have a clue<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Life is not a fairy tale<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Some wishes don’t come true<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">You can’t always just be given what you want<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">You have to work hard too<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">So long are the dreams of glory <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">That I have so long dreamed<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">For life isn’t a fairy tale<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">And I have to put in work in order to receive<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Receive my world of riches<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Receive that house I yearn<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I can’t just wait for it to be given<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">For that doesn’t happen like that anymore<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">To wish upon a star<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Wait for a genie to grant my wish<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I wasn’t born a princess<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">But I know happily ever after does exists<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Was I at once foolish? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Was I once blind but now can see? <o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">I dreamed life was a fairy tale<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\">Yet reality is what my eyes meet<o:p></o:p></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><br /></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><i>\"Life isn\'t a fairy tale....but sometimes you can get your happily ever after. You just have to work hard to get it instead of waiting for it to happen\" - Monica Renata </i></span></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><i><br /></i></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg\" height=\"320\" width=\"204\" /></a></div><div><span style=\"font-family: "Footlight MT Light","serif";\"><i><br /></i></span></div><br /><div><br /></div>','I Dreamed A Dream','','publish','open','open','','i-dreamed-a-dream','','','2014-08-09 21:16:48','2014-08-09 21:16:48','',0,'http://www.monicarenata.com/?p=55',0,'post','',0),(56,1,'2014-03-27 15:33:00','2014-03-27 15:33:00','<div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Promises…..How many of us have heard the statement that “<i><u>Promises are made to be broken</u></i>.”<o:p></o:p></span></div><div><br /></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise I won’t lie to you<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise I won’t tell your secrets<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise I would never hurt you<o:p></o:p></span></i></div><div align=\"center\" style=\"text-align: center;\"><i><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise<o:p></o:p></span></i></div><div><br /></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">So many promises given, yet how many are actually fulfilled? I once believed that all promises would be kept. In my naïve mind, I actually believed that others knew the true value of keeping a promise. I thought that if I could do it, so could they. I let others promise me things and when they messed up I said to myself, “Oh this promise will become fulfilled in time”………and you know what…. They never did. <o:p></o:p></span></div><div style=\"text-indent: .5in;\"><b><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></b></div><div style=\"text-indent: .5in;\"><b><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I was lied to<o:p></o:p></span></b></div><div style=\"margin-left: .5in; text-indent: .5in;\"><b><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">My secrets were told<o:p></o:p></span></b></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><b><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I was hurt…<o:p></o:p></span></b></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Promises broken and yet they cannot be repaired. Hurt felt deep down in your soul and a silent cry is released but only you can stand amidst your own agony. I trusted too many. I believed that too many would come through. They let me down. And by them letting me down, I felt like I let myself down for believing them. <o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Promises mean nothing…. Or so I thought…….<o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">One day I made a promise to myself. I promised myself that <i>I wouldn’t let others get me down</i>. I promised myself that <i>despite the hurt that others have placed on me, I will not let that emit to my friends and family</i>. I promised that <i>no matter how hard my life is I will never try to make anyone feel worthless</i>. I keep my promises. I hold on to my words. If I say that I am going to do something, I will do it. It may be in two hours, a day, or even a year but when I make a promise I will fulfill it in the end. <o:p></o:p></span></div><div><b><i><u><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></u></i></b></div><div><b><i><u><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">The true value of a promise cannot be seen unless you keep promises with yourself</span></u></i></b><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">. If you cannot even keep a promise that you make with yourself that entails that they are entirely worthless to you. Promises involve trust…And if you can’t trust yourself. Who else do you actually have? <o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">A promise is <u>a statement telling someone that you will definitely do something or that something will definitely happen in the future</u>. <o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise myself many things. <o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise to be better each day. <o:p></o:p></span></div><div style=\"margin-left: .5in; text-indent: .5in;\"><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise to live a positive life. <o:p></o:p></span></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">I promise to try to make my mark on this world. <o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Promises…They are very special and involve a lot of trust. From what actually goes on around us, we may indeed think that promises are made to be broken. In life, we encounter a disappointments that results from promises that were not kept. We get hurt, and then we become bitter. We lose trust in mankind. We think that all people are bad…and the value of a promise becomes utterly worthless…. But in reality, <span style=\"color: #953735; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #953735; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent2; mso-themecolor: accent2; mso-themeshade: 191;\">a promise being broken shows that the other person lacks the ability to truly trust themselves</span>. To make a promise, and then turn against it…..when one does this they are turning on themselves as well. Don’t get angry. <o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Hope that the person find themselves. <o:p></o:p></span></div><div style=\"text-indent: .5in;\"><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Hope that they truly begin to trust themselves. <o:p></o:p></span></div><div style=\"margin-left: 1.0in;\"><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Be happy that you aren’t them……<o:p></o:p></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\"><br /></span></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">Just know the true value of promises, and don’t let others ignorance get you do. Promises aren’t made to be broken. For if you break a promise, you break the trust you have with yourself. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Cambria","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: "Browallia New";\">-Monica Renata<o:p></o:p></span></div><br /><div style=\"margin-left: 1.0in;\"><br /></div>','Promises: Are they really made to be broken?','','publish','open','open','','promises-are-they-really-made-to-be-broken','','','2014-08-09 21:16:48','2014-08-09 21:16:48','',0,'http://www.monicarenata.com/?p=56',0,'post','',0),(57,1,'2014-03-27 13:47:00','2014-03-27 13:47:00','<div><span style=\"font-family: "Bookman Old Style","serif";\">Hero’s Curse<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Volcanoes erupt.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">The sky is filled with gray.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Who will come and save us<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">On this so unfortunate day?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Hearts are stricken with fear.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Eyes are filled with fright.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">We need someone to save us.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">We need someone to use all their might.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">And amidst the gloomy stratosphere<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Someone rises against the foe.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">It appears to be a hero<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Who has been frequently seen before.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Grateful are the people.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Two cheers for the battle that goes on.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">We must applaud our hero.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">For he is very strong.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">His battle wounds will go ignored.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">The fight will still go on.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">And in the end he defeats the villain.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">But inside he is torn.<o:p></o:p></span></div><div><br /></div><div><i><span style=\"font-family: "Bookman Old Style","serif";\">For all the times he helped others<o:p></o:p></span></i></div><div><i><span style=\"font-family: "Bookman Old Style","serif";\">He never saw this deed repeat<o:p></o:p></span></i></div><div><i><span style=\"font-family: "Bookman Old Style","serif";\">For he helped others all the time<o:p></o:p></span></i></div><div><i><span style=\"font-family: "Bookman Old Style","serif";\">But wondered who would help in his time of need<o:p></o:p></span></i></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">And as the skies restore to blue.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">His heart sinks instead of soar.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">For he shall go to his hideout.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">And wait til the next time he is needed once more. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">The curse of being a hero.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">People are always cheering so happily.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Yet no one can truly calm the sadness.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Which inside the hero they can’t see.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Who will save the hero?<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">The world may never know.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Yet when others are in need.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">You will see him again once more.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bookman Old Style","serif";\">A beautiful ending.<o:p></o:p></span></div><div><span style=\"font-family: "Bookman Old Style","serif";\">Yet such a tragic end.<o:p></o:p></span></div><div><b><i><span style=\"font-family: "Bookman Old Style","serif";\">The hero saves the world again<o:p></o:p></span></i></b></div><b><i><span style=\"font-family: "Bookman Old Style","serif";\">But the world won’t be his true friend</span></i></b><br /><div><b><i><span style=\"font-family: "Bookman Old Style","serif";\"><br /></span></i></b></div><div><b><i><span style=\"font-family: "Bookman Old Style","serif";\"><br /></span></i></b></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg\" height=\"226\" width=\"320\" /></a></div><div><b><i><span style=\"font-family: "Bookman Old Style","serif";\"><br /></span></i></b></div>','Hero\'s Curse','','publish','open','open','','heros-curse','','','2014-08-09 21:16:48','2014-08-09 21:16:48','',0,'http://www.monicarenata.com/?p=57',0,'post','',0),(370,1,'2014-08-09 21:16:50','2014-08-09 21:16:50','','victory-02','','inherit','open','open','','victory-02','','','2014-08-09 21:16:50','2014-08-09 21:16:50','',58,'http://www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg',0,'attachment','image/jpeg',0),(58,1,'2014-03-25 13:32:00','2014-03-25 13:32:00','<div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">The Path to Victory<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Tomorrow is another day<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">A day to put my feet back on the grass<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I can’t let the past losses disappoint me<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I have to keep that in the past<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Tomorrow is another day<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">In which I will continue to train<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I have to keep getting better<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Even if it means practicing in the storming rain<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Tomorrow is another day<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">A day in which victory is close<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">For each day I give my all<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I am placing fear in my foes<o:p></o:p></span></div><div><br /></div><div><b><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Work hard each day<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Play harder on the field of life<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Crushing all those against me<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Victory is within sight<o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Tomorrow is another day<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I said this long ago<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">And now I stand so much stronger<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Than I have ever been before<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">The time is now that I face my fate<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I smell triumph in the air<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">The path to victory I have taken<o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">And it has lead me here<o:p></o:p></span></div><div><br /></div><br /><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">“<i>The key to winning is positivity and believing in yourself. If you believe that you can conquer your world, then you are half ways there</i>.” –Monica Renata <o:p></o:p></span></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"180\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg\" width=\"320\" /></a></div><div><span style=\"font-family: "Palatino Linotype","serif"; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\"><br /></span></div>','The Path to Victory','','publish','open','open','','the-path-to-victory','','','2014-08-09 21:16:50','2014-08-09 21:16:50','',0,'http://www.monicarenata.com/?p=58',0,'post','',0),(59,1,'2014-03-25 13:13:00','2014-03-25 13:13:00','<div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">The Unnoticed Bloom<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Today the flowers bloomed<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">But you didn’t even notice<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Their fluorescent smell crossed the meadow<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Yet your nose didn’t even notice<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">They were so beautiful and also bright<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">But your eyes could not see<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">You were surrounded by endless beauty<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">But your heart wouldn’t let you see<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">To be surrounded by such greatness<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">But inside filled with grief<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Happiness is overshadowed<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">By the darkness which is inside deep<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Deep within your battered soul<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Deep within your heart<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">You can’t see the joy around you<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">If you house hate in your heart<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Good days are bound to happen<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">And so are bad days as well<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">But it is up to you to decide<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Which days will overwhelm<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">To hold on to something that brings you down<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Makes no sense at all<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">For if you continue to carry that weight<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">You will never rise after each fall<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Today the flowers bloomed<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I wish that you could see<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">Their fluorescent smell crossed the meadow<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">I wish you could smell those flowers with me<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">They were so beautiful and also bright<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">You would enjoy this sight indeed<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">To be surrounded by endless beauty<o:p></o:p></span></div><div><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">You need to open up your heart and let it see<o:p></o:p></span></div><div><br /></div><br /><div><i><span style=\"font-family: Harrington; font-size: 12.0pt; line-height: 115%; mso-bidi-font-family: David;\">“<b>Don’t let disappointments in your life get you down. If you hang on to all the negativity in your life, you will never be able to rise above it. Stay positive and know that each day is a new day to do better</b>.” – Monica Renata <o:p></o:p></span></i></div>','The Unnoticed Bloom','','publish','open','open','','the-unnoticed-bloom','','','2014-08-09 21:16:50','2014-08-09 21:16:50','',0,'http://www.monicarenata.com/?p=59',0,'post','',0),(60,1,'2014-03-25 12:46:00','2014-03-25 12:46:00','<div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Fisherman’s Treasure<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">As he sat upon the rocky beach<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Holding on to his precious gem<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He glanced at it one last time<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Before a.m. turned to p.m.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Overwhelmed with emotions<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Inside he feels like he has died<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Yet he tries to hold on to the memories made<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He tries hard not to cry<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">But in his instance of sorry<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He decided to throw the gem away<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Even though it was beautiful and shined so brightly<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He no longer wanted it around his face<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">So deep down in the ocean blue<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">The gem should shine no more<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Covered by endless sediment<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">As it landed on the ocean floor<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">A precious gem that once had value<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Has value no more<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Sitting patiently waiting to be found<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">On that lonely ocean floor<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">As he sat upon the rocky beach<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Holding nothing in his hands<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He glanced at the open water once more<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Before a.m. turned to p.m.<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Overwhelmed with emotions<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">In search of something he thought he would never find<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He wants to find something special <o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">You can see it in his eyes<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">And in his instance of sorrow<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">You can see determination on his face<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He wants to find his precious<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">And today he cannot wait<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">So deep down in the ocean blue<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Until his body can be seen no more<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Covered by endless ocean waters<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">He lands on the ocean floor<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">A precious gem that once had value<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Has value once again<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">And this time it shines much brighter<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Than when it was in the other man’s hands<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Fisherman’s treasure<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">A value once more restored<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">Be careful what you throw in the waters<o:p></o:p></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\">For when you want again it will be there no more<o:p></o:p></span></div><div><br /></div><div><br /></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\"> <i>\"<b>Don\'t throw away something that you always wanted to keep</b>\" -Monica Renata </i></span></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\"><i><br /></i></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg\" height=\"213\" width=\"320\" /></a></div><div><span style=\"font-family: "Colonna MT"; font-size: 12.0pt; line-height: 115%;\"><i><br /></i></span></div><div><br /></div><br /><div><br /></div>','Fisherman\'s Treasure','','publish','open','open','','fishermans-treasure','','','2014-08-09 21:16:51','2014-08-09 21:16:51','',0,'http://www.monicarenata.com/?p=60',0,'post','',0),(61,1,'2014-03-25 12:18:00','2014-03-25 12:18:00','<div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Porcelain Doll<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Cheeks the color of roses<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Eyes made of glass<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Sitting on the top shelf<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">As time so slowly pass<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Watching the surroundings around<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Eyes just cannot shut<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Smiling so radiantly <o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Yet happiness isn’t felt much<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">People swarm around<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Yet no one comes to play<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Sitting on the shelf<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Waiting for the next day<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Never getting any attention<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Only there for a few weekly stares<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Beauty is so brilliant<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Yet your attention I can’t have<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">To be something so precious<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Yet to be constantly ignored<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Smile brightly little porcelain doll<o:p></o:p></span></div><br /><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\">Through all the pain you must endure<o:p></o:p></span></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/35.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/35.jpg\" /></a></div><div><span style=\"font-family: "Poor Richard","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div>','Porcelain Doll','','publish','open','open','','porcelain-doll','','','2014-08-09 21:16:51','2014-08-09 21:16:51','',0,'http://www.monicarenata.com/?p=61',0,'post','',0),(373,1,'2014-08-09 21:16:51','2014-08-09 21:16:51','','letter','','inherit','open','open','','letter','','','2014-08-09 21:16:51','2014-08-09 21:16:51','',63,'http://www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg',0,'attachment','image/jpeg',0),(62,1,'2014-03-19 13:16:00','2014-03-19 13:16:00','<div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Does it taste a lot like jealousy? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Mixed with a little bit of spite? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Or does it taste like motivation? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Mixed with good vibes? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Bitter about a few things? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Voicing your own insecurities and fears? <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Repeating unverified words which were heard with your ears?<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Two lips moving up and down <o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">At the speed of light<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Take time to taste the words that you speak<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">To your taste buds, are they a delight? <o:p></o:p></span></div><div><br /></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Bitter words uttered daily<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Should be replaced by those which are sweet<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Let your taste buds go on a trip<o:p></o:p></span></i></b></div><div><b><i><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Away from negativity<o:p></o:p></span></i></b></div><div><br /></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Sour and bitter tastes<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Shall no longer be<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">Instead opt for something better<o:p></o:p></span></div><br /><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\">That is flavorful and sweet<o:p></o:p></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div><div><span style=\"font-family: "Californian FB","serif"; font-size: 12.0pt; line-height: 115%;\"><br /></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"font-family: \'Times New Roman\', serif; font-size: 12pt;\"><br /></span><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Book: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /></span><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>CreateSpace:</u></b> </span><span style=\"color: blue; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif;\" target=\"_blank\">https://www.createspace.com/4430912</a></span></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif; font-size: small;\"><b><u>The Awkward Butterfly:</u></b> </span><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #1155cc; font-family: \'Times New Roman\', serif;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://amzn.com/B00EP5A484</span></span></a></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 12pt;\"><span style=\"font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\"><b><u>Facebook:</u></b> </span><a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://facebook.com/TheAwkwardButterfly</span></span></a><br /></span></div><div style=\"background-color: white; color: #222222; font-family: arial; font-size: small; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d; font-family: \'Times New Roman\', serif;\"><span style=\"font-size: small;\">My Blog: </span></span></i><span style=\"font-family: \'Times New Roman\', serif;\"><br /><span style=\"font-size: small;\"><b><u>Blog:</u></b> </span><a href=\"http://www.monicarenata.com/\" style=\"color: #1155cc;\" target=\"_blank\"><span style=\"color: blue;\"><span style=\"font-size: small;\">http://monicarenata.blogspot.com</span></span></a></span></div>','Taste Your Words','','publish','open','open','','taste-your-words','','','2014-08-09 21:22:33','2014-08-09 21:22:33','',0,'http://www.monicarenata.com/?p=62',0,'post','',0),(63,1,'2014-03-19 12:53:00','2014-03-19 12:53:00','<div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Tear my flesh upon my back<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Set a fire to my bones<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Silence the words of my wisdom<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I am now emotionally cold<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Cold as the wind that blows on the cold November day<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Pounding on my soul that wishes to see the light of day<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Calm within the storm<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I so decided to wait<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">For you to read my letter<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And finally know what I have to say<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Reading my every word<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Words which came from my soul<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I wanted you to feel what I felt<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">But I guess your heart is cold<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Tearing up my letter<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I feel each rip go down my back<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Burning up the pieces<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I can feel the fire burning up to my neck<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Silenced are the words I wrote<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">They no longer mean a thing<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">On that cold November day<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">You decided to silence all words from me<o:p></o:p></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">Ashes lie before us both<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">A pile of powdery substance on the floor<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">And soon a draft blows them away<o:p></o:p></span></div><div style=\"text-align: center;\"><span style=\"font-family: "Lucida Calligraphy";\">I guess now my soulful words are no more<o:p></o:p></span></div><div><br /></div><div><br /></div><div><div style=\"background-color: white; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; margin: 0in;\"><div style=\"margin: 0in;\"><span style=\"color: #888888; font-family: \'Monotype Corsiva\'; font-size: 18pt;\">Monica Renata </span><span style=\"color: #888888;\"><br /></span><i><span style=\"color: #38761d;\">My Book:<span> </span></span></i><span style=\"color: #888888; font-size: 10pt;\"><br /></span><b><u><span style=\"color: #888888;\">CreateSpace:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10pt;\"><a href=\"https://www.createspace.com/4430912\" style=\"color: #c95f5f; text-decoration: none;\" target=\"_blank\"><span style=\"font-size: 12pt;\">https://www.createspace.com/<wbr></wbr>4430912</span></a></span><span style=\"color: #888888; font-family: Arial, sans-serif; font-size: 10pt;\"><o:p></o:p></span></div><div style=\"margin: 0in 0in 0.0001pt;\"><b><u><span style=\"color: #888888;\">The Awkward Butterfly:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10pt;\"><span style=\"color: #c95f5f; font-size: 12pt; text-decoration: none;\"><a href=\"http://amzn.com/B00EP5A484\" style=\"color: #c95f5f; text-decoration: none;\" target=\"_blank\">http://amzn.com/B00EP5A484</a></span></span><br /><b><u><span style=\"color: #888888;\">Facebook:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10pt;\"><a href=\"http://facebook.com/TheAwkwardButterfly\" style=\"color: #c95f5f; text-decoration: none;\" target=\"_blank\"><span style=\"font-size: 12pt;\">http://facebook.com/<wbr></wbr>TheAwkwardButterfly</span></a></span><span style=\"color: #888888; font-family: Arial, sans-serif; font-size: 10pt;\"><o:p></o:p></span></div><div style=\"margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d;\">My Blog:<span> </span></span></i><span style=\"color: #888888; font-size: 10pt;\"><br /></span><b><u><span style=\"color: #888888;\">Blog:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10pt;\"><a href=\"http://www.monicarenata.com/\" style=\"color: #c95f5f; text-decoration: none;\" target=\"_blank\"><span style=\"font-size: 12pt;\">http://monicarenata.blogspot.<wbr></wbr>com</span></a></span></div></div><div style=\"background-color: white; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; margin: 0in 0in 0.0001pt;\"><span style=\"color: #888888; font-size: 10pt;\"><br /></span><span style=\"color: #888888; font-family: Arial, sans-serif; font-size: 10pt;\"><o:p></o:p></span></div></div><br /><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg\" height=\"213\" width=\"320\" /></a></div>','The Letter','','publish','open','open','','the-letter','','','2014-08-09 21:22:33','2014-08-09 21:22:33','',0,'http://www.monicarenata.com/?p=63',0,'post','',0),(374,1,'2014-08-09 21:16:57','2014-08-09 21:16:57','','2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie','','inherit','open','open','','2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie','','','2014-08-09 21:16:57','2014-08-09 21:16:57','',67,'http://www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg',0,'attachment','image/jpeg',0),(64,1,'2014-03-18 15:37:00','2014-03-18 15:37:00','<div><b><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 18.0pt; line-height: 115%;\">Time.......<o:p></o:p></span></i></b></div><div><br /></div><div><u><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">How many times have we said we just \"don\'t have the time”???<o:p></o:p></span></u></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">In each day there are <b>24 hours</b>, within those 24 hours are <b>1440 minutes</b>, and within those minutes are <b>86,400 seconds</b>..... Seems like a lot, doesn\'t it? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Each day we wake up to take on the world. We go out there and do what we have to do in order to make it to the next day. At times, your day can seem so hectic and you just wish some of your time away. For example, how many times have you been sitting at work and just praying silently in your head that the end of the day would come soon so you can just go home and relax? <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">It\'s amazing how we say <i>time is so precious and valuable</i>...yet we actually don\'t value it at all. We play around it and expect it to mold around our lives, but the truth is, <b><i><u>time stops for no one</u></i></b>. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Everyone has a small doomsday clock above their heads that we all ignore. We neglect the fact that each day of life brings us closer to death. We forget that soon others presence will be no longer. We forget that we should embrace each moment as if it were our last...Instead; we push things to the side. We say they are not important at the moment. We say we <b>have time</b> to take care of all these things........And when we don\'t take care of these things we blame time. We say we <u>didn\'t have enough of</u> it. We say it <u>moves too fast</u>. We say <b><i>I wish I was given more time</i></b>. <o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">We don\'t look at ourselves. We don\'t see how wasteful we are of something so <b><i><span style=\"color: red;\">precious</span></i></b>. In any given day a person can update their Facebook status, post photos on Instagram, play games, and watch hours of TV but swear they didn\'t have time for other things in life....<o:p></o:p></span></div><div><br /></div><div><b><i><span style=\"color: #604a7b; font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #604A7B; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent4; mso-themecolor: accent4; mso-themeshade: 191;\">To pick up the phone and call someone just to say hello<o:p></o:p></span></i></b></div><div style=\"text-indent: .5in;\"><b><i><span style=\"color: #604a7b; font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #604A7B; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent4; mso-themecolor: accent4; mso-themeshade: 191;\">To hug a family member and tell them how much you love them<o:p></o:p></span></i></b></div><div style=\"margin-left: .5in; text-indent: .5in;\"><b><i><span style=\"color: #604a7b; font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #604A7B; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent4; mso-themecolor: accent4; mso-themeshade: 191;\">To help your fellow man and encourage others in life<o:p></o:p></span></i></b></div><div style=\"margin-left: 1.0in; text-indent: .5in;\"><b><i><span style=\"color: #604a7b; font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-style-textfill-fill-alpha: 100.0%; mso-style-textfill-fill-color: #604A7B; mso-style-textfill-fill-colortransforms: lumm=75000; mso-style-textfill-fill-themecolor: accent4; mso-themecolor: accent4; mso-themeshade: 191;\">To open your mind and see things through new eyes<o:p></o:p></span></i></b></div><div><br /></div><div><u><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Small things, that many of us swear we have no time for..............<o:p></o:p></span></u></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">In each day there are 24 hours, within those 24 hours are 1440 minutes, and within those minutes are 86,400 seconds..... It may seem like a lot, but it actually isn’t. <b><i>Time is one of the few things in life we can’t get back once it is used</i></b>. Each day is something special. Each day is a day in which you should take advantage of every second and do positive things with your life. Don’t fool around with idle tasks that do nothing for you. Open your eyes and see the beauty that surrounds you and appreciate it. Don’t let someone’s clock expire before you actually realize how much they mean to you. <o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Take time to tell people you love them, and make every second of your life count!!<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Have a great day!!!<o:p></o:p></span></div><div><br /></div><div style=\"background: white; margin-bottom: .0001pt; margin: 0in;\"><span style=\"color: #888888; font-family: "Monotype Corsiva"; font-size: 18.0pt; mso-bidi-font-family: Arial;\">Monica Renata </span><span style=\"color: #888888;\"><br /><br /></span><i><span style=\"color: #38761d;\">My Book:<span> </span></span></i><span style=\"color: #888888; font-size: 10.0pt;\"><br /></span><b><u><span style=\"color: #888888;\">CreateSpace:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10.0pt;\"><a href=\"https://www.createspace.com/4430912\" target=\"_blank\"><span style=\"font-size: 12.0pt;\">https://www.createspace.com/<wbr></wbr>4430912</span></a></span><span style=\"color: #888888; font-family: "Arial","sans-serif"; font-size: 10.0pt;\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin: 0in 0in 0.0001pt;\"><b><u><span style=\"color: #888888;\">The Awkward Butterfly:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10.0pt;\"><a href=\"http://amzn.com/B00EP5A484\" target=\"_blank\"><span style=\"font-size: 12.0pt;\">http://amzn.com/B00EP5A484</span></a><br /></span><b><u><span style=\"color: #888888;\">Facebook:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10.0pt;\"><a href=\"http://facebook.com/TheAwkwardButterfly\" target=\"_blank\"><span style=\"font-size: 12.0pt;\">http://facebook.com/<wbr></wbr>TheAwkwardButterfly</span></a><br /><!--[if !supportLineBreakNewLine]--><br /><!--[endif]--></span><span style=\"color: #888888; font-family: "Arial","sans-serif"; font-size: 10.0pt;\"><o:p></o:p></span></div><div style=\"background-color: white; background-position: initial initial; background-repeat: initial initial; margin: 0in 0in 6pt;\"><i><span style=\"color: #38761d;\">My Blog:<span> </span></span></i><span style=\"color: #888888; font-size: 10.0pt;\"><br /></span><b><u><span style=\"color: #888888;\">Blog:</span></u></b><span><span style=\"color: #888888;\"> </span></span><span style=\"color: #888888; font-size: 10.0pt;\"><a href=\"http://www.monicarenata.com/\" target=\"_blank\"><span style=\"font-size: 12.0pt;\">http://monicarenata.blogspot.<wbr></wbr>com</span></a></span><span style=\"color: #888888; font-family: "Arial","sans-serif"; font-size: 10.0pt;\"><o:p></o:p></span></div><br /><div><br /></div>','Time: How much do you really have?','','publish','open','open','','time-how-much-do-you-really-have','','','2014-08-09 21:22:33','2014-08-09 21:22:33','',0,'http://www.monicarenata.com/?p=64',0,'post','',0),(65,1,'2014-03-13 19:11:00','2014-03-13 19:11:00','No one can buy you your happiness </br>It is something only you must seek </br>For even in the brightest forest </br>It can still be hard to see </br></br>To find your true happiness </br>You might have to search through the stars above </br>Because everyone\'s happiness isn\'t in water </br>Nor even down the many streets that you walk </br></br>No one can buy you your happiness </br>So stop thinking that this is something others have to do </br>Get out and chase your dreams </br>Find some hobbies to pursue </br></br>Happiness isn\'t hard to find </br>It is just sometimes hard to see </br>Hard to see what you truly want </br>Hard to see what makes you happy </br></br>Find the things in life that make you smile </br>Find the things that make you sing </br>And in your quest of finding those things </br>You will find you way to HAPPY and see what true happiness really means</br>','The Search For Happy','','publish','open','open','','the-search-for-happy','','','2014-08-09 21:16:52','2014-08-09 21:16:52','',0,'http://www.monicarenata.com/?p=65',0,'post','',0),(66,1,'2014-03-13 14:34:00','2014-03-13 14:34:00','I journey to the mountain </br> To face the war I waged </br>My thoughts are filled with victory </br>But inside I\'m afraid </br></br>To face what I have longed to face </br>To face what is unknown </br>Forward I shall continue </br>Until what is unknown is known </br></br>Surrounded by the enemy unexpectedly </br>I try to draw my sword </br>But it isn\'t next to me </br>And I am also standing alone </br></br>I am alone once again </br>It feels like cement is on my feet </br>I close my eyes and count to ten </br>Yet when I open my eyes I cannot see </br></br>A casulaty of this battle field </br>I shall someday be </br>Surrounded by all my fears </br>I know I shall face defeat </br></br>Heart pounding </br>Skin sweating </br>Eyes open but I can\'t see </br>I am fighting my own demons </br>That reside in me </br></br>My thoughts are taking me everywhere </br>But the truth I can\'t escape </br>And soon I find myself standing </br>In another unfamiliar place </br></br>In the sea I so stand </br>With a rage that can\'t be tamed </br>Surrounded by an endless sea </br>But my hands are covered in flames </br></br>So much power I have within </br>Yet I am unable to use </br>I feel like I have not the time to spend </br>On battling my dark inner truths </br></br>But running serves no purpose </br>For the enemy gets stronger with my retreat </br>I have to one day face my fears </br>I have to overcome obstacles put in place by me </br> </br>I journey to the mountain </br>To face the war that inside I waged </br>My thoughts are filled with victory </br>But inside I\'m afraid </br></br>I have to face the truth inside </br>I have to come to terms with what\'s within </br>I am fighting a battle with my fears </br>And today I plan to win </br>','Journey to the Mountain','','publish','open','open','','journey-to-the-mountain','','','2014-08-09 21:16:52','2014-08-09 21:16:52','',0,'http://www.monicarenata.com/?p=66',0,'post','',0),(67,1,'2014-03-13 00:35:00','2014-03-13 00:35:00','<div style=\"text-align: center;\"><i>\"I\'m going to the movies alone...............\"</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: left;\">Never in a million years would I have ever thought of doing this. I mean, who does that? The only people who go to the movies alone are weirdos, friendless people...... you know.... people who are NOT you. </div><div style=\"text-align: left;\">But you know what.........what is so bad about it? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Today, I sat at work thinking about how much I wanted to go see a movie. In all honesty, I thought about it for quite some time, however, I didn\'t want to go alone. Therefore, I waited because I thought others would have asked me to go or even hint that they wanted to go to a movie...but none of this ever happened. In my attempt to \"not go it alone\" I even asked some of my friends...who turned down the request because they were \"not into\" that kind of movie. So there I was.... Wanting so see a movie..... but had no one to go see it with. And quite frankly, everyone seemed so wrapped up in their life, that doing something that is considered \"uninteresting\" to them would be such a burden. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I\'m not going to lie, I actually felt pitiful. </div><div style=\"text-align: left;\">There I was... </div><div style=\"text-align: left;\">Wanting to see a movie that I waited to come out for over 2 years.....</div><div style=\"text-align: left;\">.and didn\'t have anyone to go with....not a dang soul</div><div style=\"text-align: left;\">But hey, I wanted to go see it... So I had it in my head that I was going to go but I had to call others to get reassurance.</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I called some friends and asked them if they would ever go see a movie alone. I was hoping that they would have encouraging words however, they did not have anything nice to say. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\"><i>\"That\'s so lame!! Who goes to the movies alone?\"</i></div><div style=\"text-align: left;\"><i>\"Going to the movies alone is boring.....\"</i></div><div style=\"text-align: left;\"><i>\"A person must be really desperate and unliked if they go see a movie alone..\"</i></div><div style=\"text-align: left;\"><i><br /></i></div><div style=\"text-align: left;\">These types of comments kept coming. I actually decided to cancel my plans to initially see the movie because of them. But then I thought to myself, <i style=\"font-weight: bold;\">Why am I afraid to go alone</i>? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I couldn\'t even answer that question......... It\'s not like I thought I would have been taunted by the movie theater ghost.... Nor was it that I thought the <b>Loser</b> logo would be stamped on my forehead....The truth was.... I was just afraid of what others think....<u>But why should I even care about what others think of me</u>? So what if they think I\'m lame!!!.... So what if they think I am desperate or unliked!!!!..... truth is... they can <i style=\"font-weight: bold;\">THINK</i> whatever they wish of me because at the end of the day <b>I know myself</b>. And I know that I am not any of those things. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I went to the movies. Alone. I went so early in the day that only a handful of people were in there.. And I had a great time. I laughed, I was entertained, and I was happy...But most importantly, I learned something about myself. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\"><i style=\"font-weight: bold;\">If you are constantly afraid to do things alone, you will miss out on true growth and some of the best experiences in life</i>. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I find this event as a stepping stone to my future. I no longer will let the thoughts of others deter me from what I want to do. We all come across roadblocks in life, and many times those roadblocks are people\'s thoughts...but we just don\'t realize it them. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Wake up!!! Stop being scared of lonely because lonely isn\'t a bad thing. Don\'t be afraid to burn your own path in life. Don\'t be afraid to venture from the crowd. Sure it might be scary, but you will definitely thank yourself later. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I went see a movie alone...</div><div style=\"text-align: left;\">And no it didn\'t suck as much as I thought it would have..</div><div style=\"text-align: left;\">It actually made me realize that sometimes I should be satisfied with just the company of ME. </div><div style=\"text-align: left;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg\" height=\"212\" width=\"320\" /></a></div><div style=\"text-align: left;\"><br /></div><br /><br />','Going it Alone','','publish','open','open','','going-it-alone','','','2014-08-09 21:16:57','2014-08-09 21:16:57','',0,'http://www.monicarenata.com/?p=67',0,'post','',0),(68,1,'2014-03-09 22:56:00','2014-03-09 22:56:00','As the sky went from blue to midnight<br />As my room slowly faded to black<br />Thoughts wandered through my mind<br />But in my spot I so sat<br /><br />A place that is so old<br />Yet it always seems brand new<br />The place you told me to wait<br />If I wanted to ever see you<br /><br />Surrounded by what I always knew<br />But yet also surrounded by the unknowns<br />Thoughts racing through my mind<br />I can\'t figure out which way I shall one day go<br /><br />To leave this place would be a dream<br />But to leave would be a dream not so much<br />So instead I will just wait it out<br />Waiting for your touch<br /><br />But I can\'t do this forever<br />One day I want to be free<br />I can\'t keep waiting for forever<br />So now may be my time to leave<br /><br />As the sky went from midnight to blue<br />As my room slowly faded to blue from black<br />Thoughts wandered through my mind<br />But in my spot I so sat<br />Yet this time I wasn\'t as still<br />As I have been before<br />My feet finally started moving<br />And I\'m making my way towards the door<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png\" height=\"225\" width=\"320\" /></a></div><br /><br /><br /><br /><br /><br /><br /><br />','The Wait','','publish','open','open','','the-wait','','','2014-08-09 21:16:58','2014-08-09 21:16:58','',0,'http://www.monicarenata.com/?p=68',0,'post','',0),(376,1,'2014-08-09 21:16:58','2014-08-09 21:16:58','','dont-keep-your-feeling','','inherit','open','open','','dont-keep-your-feeling','','','2014-08-09 21:16:58','2014-08-09 21:16:58','',69,'http://www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg',0,'attachment','image/jpeg',0),(69,1,'2014-03-02 06:43:00','2014-03-02 06:43:00','<span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Twigs upon the great oak tree</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Seem to break with the wind</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Limbs which were thought to be strong</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Actually do bend</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">The outer appearance shows much</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But it doesn\'t show all</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">To be strong on the outside</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Doesn\'t reflect what\'s inside and that\'s the downfall</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">As strong as a great big wall</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But hallow on the inside</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Putting on a mask of a greater emotion</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Than what is really felt inside</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Standing like the great oak tree</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">So strong and beautiful indeed</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But if only others knew</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">That my insides were so weak</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">\"Hiding emotions really doesn\'t solve anything... It just makes you weaker. \" -Monica Renata </span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg\" height=\"239\" width=\"320\" /></a></div><br />','Insides','','publish','open','open','','insides','','','2014-08-09 21:16:58','2014-08-09 21:16:58','',0,'http://www.monicarenata.com/?p=69',0,'post','',0),(70,1,'2014-02-28 15:37:00','2014-02-28 15:37:00','The Bricks They Shall Throw </br> By: Monica Renata </br> </br> You started building your castle </br> Started building from the floor </br>Bricks are piled before your feet </br>Yet they keep throwing more </br></br>Surrounded by your enemies </br>Who disguised themselves as friends </br>On and On you shall keep building </br>Hoping one day this pain will end </br></br>Constant jokes are about you </br>They are calling you out your name </br>You want to leave this place </br>You are very much ashamed </br></br>But in your instance of sorrow </br>Your castle walls shall grow </br>And soon you shall stand in a fortress </br>Made up of what others decided to throw </br></br>Stronger than what stood before </br>Each brick gave a little more strength </br>Those words hurt you deeply </br>But inside you found your inner strength </br></br>Beautiful and lovely </br>So much stronger than you were before </br>Just continue to build towards your dreams daily </br>Despite the bricks that others may throw </br></br> </br> \"Never let what others say deter you from your dreams!! Take their negative comments and turn it into motivation for you to move forward!\" -Monica Renata','The Bricks They Shall Throw','','publish','open','open','','the-bricks-they-shall-throw','','','2014-08-09 21:16:59','2014-08-09 21:16:59','',0,'http://www.monicarenata.com/?p=70',0,'post','',0),(71,1,'2014-02-25 14:06:00','2014-02-25 14:06:00','They Said I Wouldn’t Make it </br>By: Monica Renata </br> </br> They said I wouldn’t make it </br> So I said I disagree </br> And then they made a circle around </br> And starting teasing me </br> </br> They said I wouldn’t make it </br> So I said that can’t be so </br> For I have faith in myself </br> And I resonate with hope </br> </br> They said I wouldn’t make it </br> So I didn’t say a word </br> I did what I had to do </br> And I started to ignore </br> </br> Ignore all of the negative comments </br> Ignore everyone but me </br> Because in order to truly make it </br> I have to be true to me </br> </br> They said I wouldn’t make it </br> Oh how they wished that was so true </br> Because now I am excelling past them </br> And making my wishes come true </br> </br> \"Don\'t let the negative opinion of others make you afraid to accomplish your goals.\" - Monica REnata','They Said I wouldn\'t Make It','','publish','open','open','','they-said-i-wouldnt-make-it','','','2014-08-09 21:16:59','2014-08-09 21:16:59','',0,'http://www.monicarenata.com/?p=71',0,'post','',0),(72,1,'2014-02-25 13:38:00','2014-02-25 13:38:00','Fly </br> By: Monica Renata </br> </br> On our backs they sat </br> Yet they seemed so heavy to hold </br> We always thought others were holding us back </br> But that was not always so </br> </br> A burden that is so heavy </br> Makes us unable to reach the mountain that is so high </br> There is a fire brewing in our belly </br> Yet still we are unable to fly </br> </br> Trying to get one foot off the ground </br> But being held down each time </br> The world is slowly moving but we cannot hear a sound </br> </br> And on our back they so sat </br> So beautiful indeed </br> Almost comparable to eagles </br> These beautiful and powerful wings </br> </br> Yet no matter how strong they are </br> They still will be unable to help you fly </br> If you hold on to all your pain </br> If you let hope in your heart die </br> </br> Glorious beginnings </br> Please take life in stride </br> Don’t hold on to all of life’s hurt </br> Let go and you will be able to fly!! </br> </br> “In order to excel in life, you must be willing to let of the things that hold you down.” –Monica Renata </br>','Fly','','publish','open','open','','fly','','','2014-08-09 21:16:59','2014-08-09 21:16:59','',0,'http://www.monicarenata.com/?p=72',0,'post','',0),(73,1,'2014-02-22 19:05:00','2014-02-22 19:05:00','Winter snow is falling down<br />Soon to be no more<br />For Spring is finally coming<br />And life shall no longer be a bore<br /><br />Birds will once again fly around<br />And the leaves will show once again on trees<br />For Spring is the loveliest of seasons<br />And since it is coming I am pleased<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg\" /></a></div><br />','Winter to Spring','','publish','open','open','','winter-to-spring','','','2014-08-09 21:17:00','2014-08-09 21:17:00','',0,'http://www.monicarenata.com/?p=73',0,'post','',0),(74,1,'2014-02-21 21:54:00','2014-02-21 21:54:00','Nature provides exceptions<br />For every single rule<br />And alas I fell for it completely<br />And I got lost in you<br /><br />The things I said I wanted<br />Didn\'t matter if they weren\'t with you<br />I was lost in my own stupidity<br />I was acting like a fool<br /><br />I said I would never make exceptions<br />But then I couldn\'t see<br />How I could make everything work<br />If I really wasn\'t happy<br /><br />So I threw out the idea of what I wanted<br />And I said I would never look back<br />I said at least I\'m happy<br />So what if they may lack<br /><br />But as time goes on<br />There are some things that you will see<br />The other will constantly wonder<br />\"Why are they talking to me?\"<br />And they will confront you<br />With what you said you wanted before<br />And you won\'t be able to answer<br />Because in your heart you want them more<br /><br />More than those petty things you wanted<br />More than what you ever said you need<br />But even if you voice this to them<br />You know they won\'t believe<br /><br />So therefore make no exceptions<br />Stick to what you say you want<br />Because sometimes liking someone for themselves<br />Really isn\'t enough<br /><br />People want to feel secure<br />They want to know that to others they can\'t compare<br />So next time just stick with what you want<br />Or what you get will vanish in thin air<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png\" height=\"253\" width=\"400\" /></a></div><br />','No Exceptions','','publish','open','open','','no-exceptions','','','2014-08-09 21:17:03','2014-08-09 21:17:03','',0,'http://www.monicarenata.com/?p=74',0,'post','',0),(75,1,'2014-02-21 15:18:00','2014-02-21 15:18:00','<p dir=\"ltr\">“If you really want something, you have to give it your all.”………….. I know everyone has heard this before. We are taught from our young years that if we want something bad enough all we have to do is put our all into and. And if we put our ALL into it, we will reach our goals………But is that true? Are you capable of achieving what your heart may so desire just by giving it YOUR ALL??? </p><p dir=\"ltr\">The answer is yes, and no…………You see, when we have a goal that is solely dependent on us, then of course if we give it our all we can accomplish it. For example, say I want to become a college graduate. That is indeed a possibility. I can do all the things required to reach that point. Sign up for fianancial aid, come up with ways to fund my schooling, study, devote my free time to indulging myself in my studies, put my ALL into it… you know stuff like that… and eventually I will obtain my goal. </p><p dir=\"ltr\">The difficulties come in when your goal revolves around another person as well. For example, let me see……..let’s talk about the topic of relationships. You can want a relationship to last and prosper into something else (ya know, possibly marriage). So you do everything to try to make it work. You put aside your selfish pride. You devote a lot of your time into the other person. You make them feel special (or so you thought), you let them into your life fully, basically YOU GIVE THEM YOUR ALL………but then later on, it just doesn’t work. Hmmmm, I wonder why? Many times I see many people say, “I gave it my all so I don’t understand why it didn’t work” but the truth is, your all is only good enough when you are the only variable in the equation. When someone else is in the mix, your good enough could be cancelled out by their weakness and your best then becomes mediocre.</p><p dir=\"ltr\"> “I gave it my all”………. Athletes usually say this too. Sometimes you can give something your all, but then experience a loss. Like the other team just obliterated you; the score was 15 to 72 (a horrible loss). You feel like you gave it your all, and then you wonder was your all good enough? It probably was, however, it did not radiate to others because the rest of your team lacks skill..lol. </p><p dir=\"ltr\">This happens. This is life. Is there a reason to cry over it? No, not really. But hey, sometimes a good cry could help you with the situation (tears are sometimes like therapy!!!). I guess what I am trying to say is…….”If you really want something, you have to give it your all”……….. and if it doesn’t work out SO WHAT!!! YOU TRIED!!! And you should be happy about that. Your personal best shouldn’t be defined by the best of others. Things happen and life goes on. And sometimes a few bad experiences help mold you into a phenomenal person. So reach for the stars and don’t let anyone tell you that your best isn’t good enough. Because eventually, everything you desire will be in your grasp, and one day those relationships will work out, and your team will win those games, and all that good stuff. </p><p dir=\"ltr\">So smile, and keep on truckin!!! Because if you really want something……….. and you give it your all……You have a higher chance of obtaining it than if you didn’t try at all. </p><p dir=\"ltr\">Have a great day,<br />Monica Renata </p>','Just Give It Your All.........Or Maybe Not','','publish','open','open','','just-give-it-your-all-or-maybe-not','','','2014-08-09 21:17:03','2014-08-09 21:17:03','',0,'http://www.monicarenata.com/?p=75',0,'post','',0),(76,1,'2014-02-21 13:46:00','2014-02-21 13:46:00','<p dir=\"ltr\">Don’t ever get too comfortable <br />That’s what they always say <br />For obviously something is wrong with comfort <br />And it is something in which you shall run away </p><p dir=\"ltr\">Don’t ever get too comfortable <br />They say with that look in their eyes <br />Yet usually when they say this <br />They are the one with the surprise </p><p dir=\"ltr\">“Surprise! Guess what! I’m leaving!” <br />“You have to be ready for this now!” <br />“Because I said don’t get too comfortable” <br />“So on your face shall remain that smile” </p><p dir=\"ltr\">“Surprise! Guess what! I planned this!” <br />“Quite some time ago” <br />“That’s why I always said” <br />“Don’t get too comfortable!” </p><p dir=\"ltr\">Don’t ever get too comfortable <br />That’s what they always say <br />For obviously I shouldn’t be comfortable <br />Because it is them who shall run away </p><p dir=\"ltr\">But alas I rather be comfortable <br />I rather be at ease with my day <br />For comfort is a form of relaxation <br />And I shall not stress today <br /></p>','Don\'t get TOO Comfortable','','publish','open','open','','dont-get-too-comfortable','','','2014-08-09 21:17:03','2014-08-09 21:17:03','',0,'http://www.monicarenata.com/?p=76',0,'post','',0),(77,1,'2014-02-21 13:36:00','2014-02-21 13:36:00','<p dir=\"ltr\">Bye Bye to the old me <br />Adios to what came before <br />Now is the time to make the change <br />Now is the time to transform </p><p dir=\"ltr\">Growth in all directions <br />Endless potential in sight <br />I can not remain complacent <br />For victory is right in my sight </p><p dir=\"ltr\">Forward into the future <br />Not looking back at the past <br />I will be greater than before <br />To transform is now the task <br /></p>','Transform','','publish','open','open','','transform','','','2014-08-09 21:17:03','2014-08-09 21:17:03','',0,'http://www.monicarenata.com/?p=77',0,'post','',0),(78,1,'2014-02-20 05:21:00','2014-02-20 05:21:00','It\'s hard for me to express my feelings<br />So instead I write them down<br />I write sad things when I am happy<br />I write happy things when I frown<br /><br />It\'s like I have to be a puzzle<br />I can\'t let anyone see<br />See how I am truly feeling<br />So I write words so all can see<br /><br />Because words are something different<br />They are actually quite unique<br />They can mean one thing to you...<br />While also meaning another to me<br /><br />I could say the wind was blowing<br />And leaves hit the ground<br />And to me that represents the tears flowing<br />And the wind \"whooshing\" is my cry<br /><br />I could say the flowers bloomed<br />And were beautiful for all to see<br />But actually this represents love<br />That has finally reached its peak<br /><br />It\'s hard for me to express my feelings<br />So instead I write them down<br />But alas it solves nothing<br />And my world keeps tumbling down','It\'s hard for me to express my feelings','','publish','open','open','','its-hard-for-me-to-express-my-feelings','','','2014-08-09 21:17:03','2014-08-09 21:17:03','',0,'http://www.monicarenata.com/?p=78',0,'post','',1),(79,1,'2014-02-20 00:11:00','2014-02-20 00:11:00','<span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I\'m Beautiful</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>By: Monica Renata</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i><br /></i></span><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I\'m beautiful on the inside</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>Even though you cannot see</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>My heart is as pure as water</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>My emotions are true as they can be</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i><br /></i></span><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I\'m beautiful on the outside</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>Even though I may not get many stares</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I have a presence that is undeniable</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I sometimes express myself by what I wear</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i><br /></i></span><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I am very beautiful</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>On the outside and underneath</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>I may not be your definition of beautiful</i></span><br /><span style=\"font-family: Trebuchet MS, sans-serif;\"><i>But I am beautiful to me</i></span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg\" height=\"240\" width=\"320\" /></a></div><br /><br />','I\'m Beautiful','','publish','open','open','','im-beautiful','','','2014-08-09 21:17:06','2014-08-09 21:17:06','',0,'http://www.monicarenata.com/?p=79',0,'post','',0),(80,1,'2014-02-19 18:17:00','2014-02-19 18:17:00','The Trap <br />By: Monica Renata <br /><br />Clinging on the mountainside <br />I watch as you react <br />You have a look of shock on your face <br />You don’t know how to act <br /> Your heart is beating fiercely <br />You tell me “hold on, don’t let go” <br />You want me in your life completely <br />You can’t image living your life alone <br /><br />Clinging on the mountainside <br />I watch as you react <br />You reach your hand out to me <br />But I refuse like a brat <br /> “Why are you doing this?!” <br />“Give me your hand so we can go!” <br />But I know that this is a trap <br />And I can’t do this anymore <br /><br />I can’t let you rescue me this time <br />Because what I’m running from is you <br />I can’t keep going back to you <br />Even though you are the only one I knew <br />I can’t allow myself to be broken further <br />Because I know I will be broken again this time <br />I can’t keep chasing what makes me happy <br />If what makes me happy also makes me cry <br /><br />Clinging on the mountainside <br />I watch as you react <br />You have a look of shock on your face <br />You don’t know how to act <br />I fell for this too many times <br />I can no longer fall for this trap <br /><br />I have to let go of this all <br />I have to stop neglecting me <br />I have to find my true freedom <br />As I float upon the wind <br /> <div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg\" /></a></div>','The Trap','','publish','open','open','','the-trap','','','2014-08-09 21:17:06','2014-08-09 21:17:06','',0,'http://www.monicarenata.com/?p=80',0,'post','',0),(381,1,'2014-08-09 21:19:27','2014-08-09 21:19:27','','bus_transportation_118386_tns','','inherit','open','open','','bus_transportation_118386_tns','','','2014-08-09 21:19:27','2014-08-09 21:19:27','',85,'http://www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png',0,'attachment','image/png',0),(81,1,'2014-02-17 17:40:00','2014-02-17 17:40:00','If people were like paper<div>And were made from great big trees</div><div>How much would you appreciate them?</div><div>How much would their value really mean? </div><div><br /></div><div>Would you tattoo their flesh with hearts? </div><div>Would you write lovely words on them? </div><div>Or would you crumble them up and throw them away</div><div>Hoping to never see them again? </div><div><br /></div><div>If people were like paper</div><div>Would you finally be able to see</div><div>See how your words affect them?</div><div>See the hurt underneath? </div><div><br /></div><div>How broken you made them feel? </div><div>How crumbled they are inside? </div><div>If people were like paper</div><div>A straight one would be hard to find</div><div><br /></div><div>For life throws everyone curve balls</div><div>And life isn\'t always sweet</div><div>We are constantly straightened out as best as can be</div><div>After we overcome a defeat</div><div><br /></div><div>But the wrinkles in that paper</div><div>Will always be there</div><div>The stains of the past can\'t be washed away</div><div>Yet they can\'t be seen by a simple stare</div><div><br /></div><div>People guard their feelings</div><div>With the expressions on their face</div><div>No one truly knows the person inside</div><div>No one knows what they been through to date</div><div><br /></div><div>If people were like paper</div><div>It would be so neat</div><div>Because we could all see that we aren\'t perfect</div><div>Yet we all are still very unique</div><div><br /></div><div>We could understand that everyone\'s been hurt</div><div>We could see that many have overcame</div><div>And the wrinkliest of paper people</div><div>Had a lot to overcome</div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"153\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w\" width=\"400\" /></a></div><div><br /></div><div><br /></div>','Paper People','','publish','open','open','','paper-people','','','2014-08-09 21:17:06','2014-08-09 21:17:06','',0,'http://www.monicarenata.com/?p=81',0,'post','',0),(82,1,'2014-02-17 05:40:00','2014-02-17 05:40:00','As I stare into the mirror<br />I can\'t describe what I see<br />My vision is so blurry<br />But I know that ahead is a picture of me<br /><br />She is just so plain and simple<br />Not at all unique<br />No glamour of the movie stars<br />Not the pearliest of white teeth<br /><br />Her clothes are somewhat tattered<br />Worn from years of use<br />She tries to smile<br />But suddenly she gets confused<br /><br />What is there to smile about<br />There is nothing here to see<br />Some changes must be made<br />She has to be the woman you want her to be<br /><br />So out she pulls her makeup bag<br />That allows her to doodle away<br />She starts to prepare everything<br />And brush makeup on her face<br /><br />She highlights her eyes<br />The eyes that she thought you never knew<br />She paints her lips so carefully<br />Those lips which always yearned to kiss you<br /><br />She works on her masterpiece<br />She even does her hair<br />She curls it like the girls you like<br />She wants you to stare<br /><br />And soon when she is satisfied<br />She will finally smile<br />And put down all of her brushes<br />And begin to dress herself in a new style<br /><br />All of this for you<br />Not an ounce of it for me<br />Yet when I finally reveal myself<br />It isn\'t I that you see<br /><br />Her eyes are so much brighter<br />Her clothes are so brand new<br />Her waist is definitely smaller<br />Her smile is pearly white too<br /><br />She has just everything<br />Everything I wanted to be<br />I wanted to make you happy<br />But she is prettier than me<br /><br />Her looks catch your attention<br />While my looks are just a bore<br />You ask her out on dates<br />And it hurts me to the core<br /><br />My feelings are so hurt<br />I can\'t paint on what I am not underneath<br />I can\'t even compete<br />I don\'t stand a chance<br />I get it<br />She\'s prettier than me<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q\" width=\"320\" /></a></div><br /><br />','Prettier Than Me','','publish','open','open','','prettier-than-me','','','2014-08-09 21:17:07','2014-08-09 21:17:07','',0,'http://www.monicarenata.com/?p=82',0,'post','',0),(83,1,'2014-02-16 20:40:00','2014-02-16 20:40:00','<div style=\"text-align: center;\">\r\n\r\nStanding face to face\r\n\r\nExpressing words that are true to you\r\n\r\nI wish you could hear my feelings\r\n\r\nI wish that you knew the truth\r\n\r\n \r\n\r\nTelling me what\'s bothering you\r\n\r\nBut not knowing what bothers me\r\n\r\nI can feel myself fall apart\r\n\r\nWhile I am standing on my two feet\r\n\r\n \r\n\r\nYour words they pierce like daggers\r\n\r\nMy heart skips a few beats\r\n\r\nYour words are stinging each part of me\r\n\r\nKilling me softly on repeat\r\n\r\n \r\n\r\nLooking deeply in my eyes\r\n\r\nYou want to make sure your words are known\r\n\r\nYou ask for my response\r\n\r\nYou say you can\'t do this anymore\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut that is not quite true\r\n\r\nFor every time I say that\r\n\r\nI am just trying not to disappoint you\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut in my mind I wonder still\r\n\r\nI can\'t seem to take all of this in\r\n\r\nBut I have no choice but to swallow this pill\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut I wish you would school me\r\n\r\nOn how you are really feeling\r\n\r\nAbout where you wish you could be\r\n\r\n \r\n\r\nI can\'t comprehend the worse\r\n\r\nI refuse to crush the bit of hope in my hand\r\n\r\nI don\'t understand what you want right now\r\n\r\nBut I will say\r\n\r\nI understand\r\n\r\n</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.bantamapparel.com/sku/2_PI245.jpg\"><img src=\"http://www.bantamapparel.com/sku/2_PI245.jpg\" alt=\"\" width=\"320\" height=\"165\" border=\"0\" /></a></div>\r\n<div style=\"text-align: center;\"></div>','I Understand','','publish','open','open','','i-understand','','','2015-08-03 08:22:20','2015-08-03 13:22:20','',0,'http://www.monicarenata.com/?p=83',0,'post','',0),(84,1,'2014-02-16 18:41:00','2014-02-16 18:41:00','And In that corner I so sat<br />As I let love pass me by<br />Drifting away into a deep sleep<br />Calming myself with lullabies<br /><br />Trying to tame my trembling heart<br />Trying to make sense of what it\'s been through<br />Slowing taking out the shards of glass<br />That were placed there by you<br /><br />You who had my heart completely<br />You who made me complete<br />You who made my heart beat fiercely<br />You who decided to retreat<br /><br />Of all the love I had bursting inside<br />And the love you had to turn out not be so true<br />But I have to pull myself together<br />I have to get over you<br /><br />Drifting away in that corner<br />Waiting for my mind to sleep<br />I shall rest easy once you aren\'t on my mind<br />For I need my inner peace<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN\" /></a></div><br /><div><br /></div>','In The Corner','','publish','open','open','','in-the-corner','','','2014-08-09 21:19:27','2014-08-09 21:19:27','',0,'http://www.monicarenata.com/?p=84',0,'post','',0),(85,1,'2014-02-16 18:25:00','2014-02-16 18:25:00','I missed the bus again today<br />It just went passing by<br />I got a whiff of the black smoke<br />I got dirt in my eyes<br /><br />I missed the bus again today<br />It is now on the next street<br />Waiting to pick up its next passengers<br />Waiting for everyone but me<br /><br />I missed the bus again today<br />Just like I did last time<br />I think I have to be more alert<br />And stop letting opportunities pass me by<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png\" height=\"315\" width=\"400\" /></a></div><br />','I Missed The Bus','','publish','open','open','','i-missed-the-bus','','','2014-08-09 21:19:27','2014-08-09 21:19:27','',0,'http://www.monicarenata.com/?p=85',0,'post','',0),(86,1,'2014-02-13 00:43:00','2014-02-13 00:43:00','<div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg\" height=\"320\" width=\"306\" /></a></div><br /><div><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">The Awkward Butterfly</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" height=\"320\" width=\"210\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4430912\">https://www.createspace.com/4430912</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492343781\">http://amzn.com/1492343781</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00EP5A484\">http://amzn.com/B00EP5A484</a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Keyword: Love</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" height=\"320\" width=\"208\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4442730\">https://www.createspace.com/4442730</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492724211\">http://amzn.com/1492724211</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00F7KX2LC\">http://amzn.com/B00F7KX2LC</a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Keyword: Inner Strength</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" height=\"320\" width=\"210\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4459697\">https://www.createspace.com/4459697</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492834149\">http://amzn.com/1492834149</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00FI0PCT6\">http://amzn.com/B00FI0PCT6</a></div>','Valentine\'s Day Freebie','','publish','open','open','','valentines-day-freebie','','','2014-08-09 21:19:29','2014-08-09 21:19:29','',0,'http://www.monicarenata.com/?p=86',0,'post','',0),(87,1,'2014-02-12 23:39:00','2014-02-12 23:39:00','<div><b><i><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Cliché Love Poem<o:p></o:p></span></i></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">By: Monica Renata<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I knew a billion words<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I knew the right words to say<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I would tell you exactly how much you take my breath away<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I had a nice big raincoat<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I had a boat to sail the sea<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I would tell you that I would cross the oceans for you to be with you always<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I could pick some flowers<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If I could recite their colors too<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I would tell you roses are red, and so are my cheeks when I see you<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">For when I’m without you I feel as if I can’t breathe<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">For I can’t image my world without you<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">To find you I would cross the many seas<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">You are the brightest flower in the bunch<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">You are the one who I choose<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">And I love that you love me for me<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">So here is what else I would do<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If you wanted a bowl of cereal<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If there was no milk in the fridge<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I would run to the store across the street to see you smile like a kid<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If you were caught in the storming rain<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If you tripped in a puddle and messed up your shoes<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I would have a warm pair of clothes ready for you and also a bowl of warm soup<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If you were having a bad day<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">If you felt like the world was against you<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I will be your number one fan, and let you know that your special!<o:p></o:p></span></b></div><div><br /></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Oh the many things I would do<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">To express my love for you<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I guess there are many ways I can “Do” what I always say<o:p></o:p></span></b></div><div><b><span style=\"font-family: "Segoe Script","sans-serif"; font-size: 10.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I love you, I love you, I love you<o:p></o:p></span></b></div><div><br /></div><div><br /></div><br /><div><br /></div>','Cliche Love Poem','','publish','open','open','','cliche-love-poem','','','2014-08-09 21:19:29','2014-08-09 21:19:29','',0,'http://www.monicarenata.com/?p=87',0,'post','',0),(88,1,'2014-02-12 23:38:00','2014-02-12 23:38:00','<div><b><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Five<o:p></o:p></span></i></b></div><div><b><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">By: Monica Renata <o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Five is the magic number<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">That connects us once again<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">To take my five and then your five<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">And intertwine them in an embrace<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Powers begins to exchange between us<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">We each hold on tight<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">And then you grab your other arm<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">And connect my other five to your five<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">So much energy between us<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">We never want to let go<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Moments I wish could last forever<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Moments I feel through my soul<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Just your hand within my hand<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">Brings tears trickling down my face<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">I feel something deep within<o:p></o:p></span></div><br /><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\">You have left a memory that can’t be erased<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg\" height=\"240\" width=\"320\" /></a></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%; mso-bidi-font-family: Kalinga;\"><br /></span></div>','Five','','publish','open','open','','five','','','2014-08-09 21:19:29','2014-08-09 21:19:29','',0,'http://www.monicarenata.com/?p=88',0,'post','',0),(387,1,'2014-08-09 21:19:30','2014-08-09 21:19:30','','78219_max','','inherit','open','open','','78219_max','','','2014-08-09 21:19:30','2014-08-09 21:19:30','',89,'http://www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg',0,'attachment','image/jpeg',0),(89,1,'2014-02-12 23:32:00','2014-02-12 23:32:00','<div><b><i><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Stone-faced Soldier<o:p></o:p></span></i></b></div><div><b><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Bullets going everywhere<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Bombs are in close sight<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">So much devastation around<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Gunpowder is drowning out the light<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Death around as far as the eye can see<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">No sign of peace close by<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">There is no need to try to hide<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">For you can’t escape even if you close your eyes<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">The cries of other men<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Become too much to bear<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">But in order to accept reality<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Obtained is the stone-faced stare<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Face no longer blushed with red<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Breathing is as normal as can be<o:p></o:p></span></div><div><span style=\"font-family: MV Boli; font-size: medium;\"><span style=\"line-height: 115%;\">The mouth </span></span><span style=\"font-family: MV Boli;\"><span style=\"font-size: 19px; line-height: 21.466665267944336px;\">doesn\'t</span></span><span style=\"font-family: MV Boli; font-size: medium;\"><span style=\"line-height: 115%;\"> form a frown<o:p></o:p></span></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Nor does it smile or show its teeth<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Void of all emotions<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">No joys celebrated in life<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Disappointments don’t exist<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">A mere spectator of others lives<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Life is a battlefield<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">So many are afraid to get hurt<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Instead of wearing their heart on their sleeve<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">They trample their own hearts like dirt<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">For what is the point of exposing a thing<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">That at times is fragile and breaks<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Emotion dies within their soul<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">And they develop that Stone-face<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">They won’t show an ounce of emotion<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">They won’t show exactly how they feel<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">For they are a stone-faced soldier<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">And life is their battlefield<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Marching on in life<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">Not caring what others may feel or speak<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">For they live life unconnected<o:p></o:p></span></div><div><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%;\">And sit on the bench of life while others are out on the field<o:p></o:p></span></div><div><br /></div><i><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;\">“Do not let the fear of getting your feelings hurt hold you back from living! When you decide not to live your life, you will end up watching others live theirs.” – Monica Renata </span></i><br /><i><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;\"><br /></span></i><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg\" height=\"235\" width=\"320\" /></a></div><i><span style=\"font-family: "MV Boli"; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;\"><br /></span></i>','Stone-faced Soldier','','publish','open','open','','stone-faced-soldier','','','2014-08-09 21:19:30','2014-08-09 21:19:30','',0,'http://www.monicarenata.com/?p=89',0,'post','',0),(90,1,'2014-02-12 23:30:00','2014-02-12 23:30:00','<div align=\"center\" style=\"text-align: center;\"><b><i><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You, I love YOU</span></i></b><b><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\"><o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">By: Monica Renata <o:p></o:p></span></b></div><div align=\"center\" style=\"text-align: center;\"><b><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\"><br /></span></b></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You make me happy<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You make me smile from ear to ear<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You make me feel so secure<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">When I am having a bad day all I have to think of is YOU and then I will feel better.<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You have the loveliest laugh<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You are so caring<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You are the reason I know what love is<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">When I doubt that love exists all I have to do is look at you to be assured that it exists and it radiates brightly from within YOU. <o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You are so special to me<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You have so many imperfections which make you perfect in my eyes<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You are the type of person I always dreamed of meeting<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">When I think of my future I can’t think of living it without YOU………………..<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You are the greatest person I have ever met<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You make me happier than I have ever been<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">You mean so much more to me than you think<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">And that’s why<o:p></o:p></span></div><div align=\"center\" style=\"text-align: center;\"> </div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: Boopee; font-size: 12.0pt; line-height: 115%;\">I Love YOU!<o:p></o:p></span></div>','You, I love YOU','','publish','open','open','','you-i-love-you','','','2014-08-09 21:19:30','2014-08-09 21:19:30','',0,'http://www.monicarenata.com/?p=90',0,'post','',0),(91,1,'2014-02-12 23:26:00','2014-02-12 23:26:00','<div><b><i><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Best Served Cold<o:p></o:p></span></i></b></div><div><b><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">By: Monica Renata<o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">The dish they say is best served cold<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">That dagger stained with hate<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">The vicious look in your big bright eyes<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">That look of disgust on your face<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">To wish upon someone’s demise<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Yet not utter a single word to speak<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">But someday you will get them back<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">For then, you will let your actions speak<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Heart beating fiercely<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">No one sings kumbaya <o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Palms are getting sweaty<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Trust in mankind is gone<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">A hearty soup that’s been iced down<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">A serving of maggoty cheese<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Revenge is a dish best served cold<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">And so revolting that no one can eat<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">To wish upon someone’s demise<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Yet not utter a single word to speak<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">But someday you will get them back<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">For then, you will let your actions speak<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">An aged knife I found in the house<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">A conscious that no longer thinks<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">I shall embark on my revenge<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">Cold Blooded is what they will call me<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">To wipe away your past sins<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">With your very own blood<o:p></o:p></span></div><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">The killer will never think he murders<o:p></o:p></span></div><br /><div><span style=\"font-family: "Tempus Sans ITC"; font-size: 14.0pt; line-height: 115%;\">For revenge is all he knows<o:p></o:p></span></div>','Best Served Cold','','publish','open','open','','best-served-cold','','','2014-08-09 21:19:30','2014-08-09 21:19:30','',0,'http://www.monicarenata.com/?p=91',0,'post','',0),(92,1,'2014-02-12 23:23:00','2014-02-12 23:23:00','<div><b><i><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt;\">Time Waits</span></i></b><b><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt;\"> <o:p></o:p></span></b></div><div><b><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt;\">By: Monica Renata <o:p></o:p></span></b></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">They say time waits for no man<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Yet I think that is not true<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">For time always waits for me<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">While I am waiting for you<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">In the frigid storms of winter<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">In the sea which is overcome by powerful waves<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">I feel time freeze for an everlasting moment<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Whenever I see your face<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">And in that moment I realize that I have loved<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Like I never loved before<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">The coldness we once encountered doesn’t seem so cold anymore<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">The waves have finally stopped and I can finally walk through<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Walk through my sea of emotions<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">So that I can get close to you<o:p></o:p></span></div><div><br /></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">They say time waits for no man….<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Yet I slightly disagree<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">For every time I see your face<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">I feel as if this is our first meet<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Such a beautiful spirit<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Such a extraordinary soul<o:p></o:p></span></div><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">Time will wait for us to get it right<o:p></o:p></span></div><br /><div><span style=\"font-family: "Bradley Hand ITC"; font-size: 14.0pt; line-height: 115%;\">And our love shall never grow old<o:p></o:p></span></div>','Time Waits','','publish','open','open','','time-waits','','','2014-08-09 21:19:30','2014-08-09 21:19:30','',0,'http://www.monicarenata.com/?p=92',0,'post','',0),(93,1,'2014-02-08 23:43:00','2014-02-08 23:43:00','The heart goes through many journeys<br />Just like feathers in the wind<br />Twirling round and round endlessly<br />Never truly finding a true end<br /><br />To love one day so passionately<br />And the next day that love grows cold<br />Yet still beating with such vigor<br />Never truly neglecting the old<br /><br />Heart still filled with love<br />But that love is tainted within<br />Trying to differentiate through all that has gone on<br />But the brain might someday win<br /><br />Thinking about the wrongs<br />Yet killing each beat of love with each thought<br />The heart goes through many journeys<br />And I believe this time it has gotten lost<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg\" height=\"240\" width=\"320\" /></a></div><br /><br />','Lost Heart','','publish','open','open','','lost-heart','','','2014-08-09 21:19:31','2014-08-09 21:19:31','',0,'http://www.monicarenata.com/?p=93',0,'post','',0),(94,1,'2014-02-08 03:54:00','2014-02-08 03:54:00','<div>No one is <u>perfect</u>…. Yet we all strive to be…<o:p></o:p></div><div><i>But what is perfection? <o:p></o:p></i></div><div>It seems as if no one can truly explain it…<o:p></o:p></div><div>But they say the following:<o:p></o:p></div><div align=\"center\" style=\"text-align: center;\"><i>“If I could do this then I would be perfect…”<o:p></o:p></i></div><div align=\"center\" style=\"text-align: center;\"><i>“If I lost this bit of weight, I would be perfect…”<o:p></o:p></i></div><div align=\"center\" style=\"text-align: center;\"><i>“If I changed this about myself…then….. I will be perfect”<o:p></o:p></i></div><div><br /></div><div><b><i><u>Perfect</u></i></b> - <i>having all the required or desirable elements, qualities, or characteristics; as good as it is possible to be.<o:p></o:p></i></div><div><br /></div><div>I guess it all comes down to what you think…. Do you think you are good enough? Are you what you desire to be? Are you happy with yourself?...<o:p></o:p></div><div><br /></div><div>Many times the dissatisfaction we feel in areas of our life is due to others. Sometimes people tell us we aren\'t good enough, and we believe them. We believe them without even questioning what “Good Enough” actually is. I remember an old teacher use to say that “Everyone is perfect in their own way”. At the time I heard this, I believed her. I was probably like 5 or 6 years old, and in Kindergarten, and I believed her….<o:p></o:p></div><div>It wasn\'t until years later that I started doubting her words. I would have so many critique my life. I would hear so many negative words. I would see so much on tv and in magazines that basically told me “you are not perfect”……..And soon the hope I had inside me slowly died……….<o:p></o:p></div><div><b><i><u>Hope</u></i></b>………that little light that radiates from the tiny candle within yourself goes dark……..But can it be restored? The truth is, that light inside of you never dies, it may go dim, but it never dies……When I learned this, then I was able to realize who I really was………Who I really am………..<o:p></o:p></div><div><br /></div><div>When people talk negatively about you<o:p></o:p></div><div><b><i><span style=\"color: #1f497d; font-family: "Bradley Hand ITC"; mso-themecolor: text2;\">Do not let their words harm you<o:p></o:p></span></i></b></div><div style=\"text-indent: .5in;\"><br /></div><div style=\"text-indent: .5in;\">When people do not believe in you<o:p></o:p></div><div style=\"text-indent: .5in;\"><b><i><span style=\"color: #1f497d; font-family: "Bradley Hand ITC"; mso-themecolor: text2;\">Never stop believing in yourself<o:p></o:p></span></i></b></div><div><br /></div><div style=\"margin-left: .5in; text-indent: .5in;\">When no one wants to accompany you on your path<o:p></o:p></div><div style=\"margin-left: .5in; text-indent: .5in;\"><b><i><span style=\"color: #1f497d; font-family: "Bradley Hand ITC"; mso-themecolor: text2;\">Walk it alone, for sometimes greatness is found on paths no one else wanted to take<o:p></o:p></span></i></b></div><div><br /></div><div>You are perfect in your own way………Don’t let anyone tell you otherwise. I wish I would have listened to my teacher back then………because then, I never would have doubted it. Perfection isn\'t unattainable. It is practically being the best you that “you can possibly be”… And sure you can get better……..Everyone can……But in order to keep getting better, you have to keep hope alive. Always believe in yourself. Don’t let others get you down.<span style=\"background-color: yellow; color: #444444;\"> <i>Let your inner light shine so brightly that it blinds those standing thousands of miles away</i>.</span> <b><i>Be yourself</i></b> for <o:p></o:p></div><div>You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">beautiful</span></i></b>, <o:p></o:p></div><div style=\"text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">courageous</span></i></b>, <o:p></o:p></div><div style=\"margin-left: .5in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">important</span></i></b>, <o:p></o:p></div><div style=\"margin-left: 1.0in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">talented</span></i></b>, <o:p></o:p></div><div style=\"margin-left: 1.5in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">powerful,</span></i></b><o:p></o:p></div><div style=\"margin-left: 2.0in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">giving</span></i></b>, <o:p></o:p></div><div style=\"margin-left: 2.5in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">perfect</span></i></b>,<o:p></o:p></div><div style=\"margin-left: 3.0in; text-indent: .5in;\">And most importantly<o:p></o:p></div><div style=\"margin-left: 3.5in; text-indent: .5in;\">You are <b><i><span style=\"font-family: "Bradley Hand ITC";\">Someone Special</span></i></b>……..<o:p></o:p></div><div><br /></div><div><o:p><br /></o:p></div><div><o:p><br /></o:p></div><div><o:p>-Monica Renata </o:p></div><div><br /></div><br /><div><br /></div>','Hope in Perfection','','publish','open','open','','hope-in-perfection','','','2014-08-09 21:19:31','2014-08-09 21:19:31','',0,'http://www.monicarenata.com/?p=94',0,'post','',0),(95,1,'2014-01-29 02:57:00','2014-01-29 02:57:00','<span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Bubble gum between my fingers</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Stuck together like glue</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I\'m in a sticky situation</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I don\'t know if I can break through</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b><br /></b></i></span><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Dripping lot hot candle wax</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>From my eyes my feelings flow</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Happiness is seconds away</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>But which way do I go</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b><br /></b></i></span><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I\'m in a sticky situation</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I just don\'t know if I can break through</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I have to decide where I want to be</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>But which way do I go? </b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b><br /></b></i></span><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>North to face my deepest fears</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>East to what I have always known</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>West to where my hearts resides</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>South to where others think I should go....</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b><br /></b></i></span><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Decisions, Decisions, Decisions</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>Are sometimes so hard to make</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>I cry not because I\'m sad</b></i></span><br /><span style=\"font-family: Times, Times New Roman, serif;\"><i><b>But because I\'m happy with the decision I\'m about to make</b></i></span><br /><br /><br /><i>\"Never be afraid to follow your true path in life..... Sometimes we have to stop being afraid of the possibility of failure and go where we always dreamed we would be.... \" - Monica Renata </i><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg\" height=\"320\" width=\"273\" /></a></div><br />','Sticky Situations','','publish','open','open','','sticky-situations','','','2014-08-09 21:19:34','2014-08-09 21:19:34','',0,'http://www.monicarenata.com/?p=95',0,'post','',0),(96,1,'2014-01-29 02:41:00','2014-01-29 02:41:00','<div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remember when the snow fell light<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And it landed on the ground<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>This rarely happened in my neighborhood<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>So I was happy and I smiled<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remember when that snow turned to hail<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And then feel upon my face<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>It wasn’t as soft as the snow was<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But I was still happy it came<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remember when that hail turned to hail stones<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I finally had to run for cover<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I watched in amazement while in my house<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><span style=\"line-height: 18.399999618530273px;\"><b><i>And I went watch from the window while wrapped in my covers</i></b></span></span></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Soon the snow came harder<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And the stones continued to fall<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I watched myself get blocked in<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I no longer could do anything at all<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remember when he said he loved me<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I was happy and I smiled<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I remember when he left<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But he came back <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I was happy, so I smiled<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But now it is just a storm <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I have tried to run but cannot hide<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I can be honest with him and tell him how I feel<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But it seems like he doesn’t get it inside<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Why would someone want something<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>That they decided to throw away<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Why would someone hold on to something<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>In hopes of having it one day<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Why say you love someone<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>When you look in their face and constantly lie<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And why shed a single tear <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>When I tell you I am tired of trying. <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remembered when it snowed that day. <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I remember how I felt. <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I was in love and I was blinded by some petty things<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I was blinded by how I felt<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>When it began to hail I still watched in amazement<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Because I wanted to believe it couldn’t be that bad<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And when the hail stones started to drop<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I ran for cover but I still was there<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I eventually became trapped, and I was alone<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I was hiding from the truth<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And we all know the truth can open scary doors<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>It opened the door to the real you<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>As time went on my heart grew cold<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And I could say this is because of you<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But now I treat you, <o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>How you always treated me<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And now you tell me you feel used<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But that is something I can\'t see...</i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And now you show emotion<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But my heart is cold and your tears don’t faze me<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>For now I am frozen<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And you are a distant memory<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>I run into you time from time<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And you are but a stranger to me<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>You give me a hug you buy a gift<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><span style=\"line-height: 115%;\">But it </span><span style=\"line-height: 18.399999618530273px;\">doesn\'t</span><span style=\"line-height: 115%;\"> mean anything to me at all<o:p></o:p></span></i></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>You call me and I pick up<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And you just hear me breathe on the phone<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>You want me to show an ounce of feeling<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But I packed those up long ago<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But the moral of the story is<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Don’t take advantage of a real love<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Cause if someone really loves you<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>So loves with all their heart and soul<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And yeah they say the first wound<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Is always the one that cuts deep<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But never throw away something<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>That you always thought you would keep<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Because people get feed up at times<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And yes, they do move on<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>But when someone loses all emotion for you<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>You basically do not exist in their world<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>So treat your partner right<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>And hold on to what you got<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i>Cause a person can only take so much<o:p></o:p></i></span></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><i><span style=\"font-family: Times, Times New Roman, serif;\"><span style=\"font-size: x-small;\">Until they decide to shut you completely out</span><span style=\"color: #d9d9d9; font-size: 14pt;\"><o:p></o:p></span></span></i></span></b></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Times, Times New Roman, serif; font-size: x-small;\"><i><br /></i></span></span></b></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa-300x225.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><i><span style=\"font-family: Times, Times New Roman, serif;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa-300x225.jpg\" height=\"240\" width=\"320\" /></span></i></a></div><div style=\"text-align: left;\"><b><span style=\"line-height: 115%;\"><span style=\"font-family: Courier New, Courier, monospace; font-size: x-small;\"><br /></span></span></b></div>','Winter Storm','','publish','open','open','','winter-storm','','','2014-08-09 21:19:35','2014-08-09 21:19:35','',0,'http://www.monicarenata.com/?p=96',0,'post','',0),(97,1,'2014-01-24 18:44:00','2014-01-24 18:44:00','<div style=\"text-align: center;\"><i><span style=\"font-size: large;\">Life.</span></i></div><div style=\"text-align: center;\">It is so beautiful</div><div style=\"text-align: center;\">Yet it is one of the things we really don\'t appreciate</div><br /><div style=\"text-align: center;\">The smell of morning dew</div><div style=\"text-align: center;\">The sound of the wind blowing</div><div style=\"text-align: center;\">All seem to be so insignificant until they go away</div><br /><div style=\"text-align: center;\"><span style=\"font-size: large;\"><i>Today </i></span></div><div style=\"text-align: center;\">You woke up</div><div style=\"text-align: center;\">You are breathing</div><div style=\"text-align: center;\">But are you <b>living</b>? </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: left;\">Think about what makes you smile</div><div style=\"text-align: left;\">Think about what makes you sing</div><div style=\"text-align: left;\">Think about the kindness others showed you</div><div style=\"text-align: left;\">Think about all you say</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Are you living life for yourself? </div><div style=\"text-align: left;\">Are you living for others? </div><div style=\"text-align: left;\">Are you trying to please your friends? </div><div style=\"text-align: left;\">Are you trying to please your mother? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Life is so beautiful</div><div style=\"text-align: left;\">Life is more than just finding a mate</div><div style=\"text-align: left;\">Life is about living for you</div><div style=\"text-align: left;\">Life is about living </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">But what is living to you? </div><div style=\"text-align: left;\">Is living waking up each morning and going to bed each night? </div><div style=\"text-align: left;\">Is living completing tasks and trying to progress in areas of your life? </div><div style=\"text-align: left;\">Is living trying to make it into a better situation than you were born into? </div><div style=\"text-align: left;\">Is living being <u>completely and utterly happy</u>? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Open your eyes, and truly look within yourself. Are you happy with where you are now? Are you happy with your life? If the answer is \'Yes\' then I congratulate you. However, if the answer is \'No\', I would like to ask you why? If you aren\'t happy about something <i><b>fix it</b></i>. It is that simple. The truth is, your life can be actually anything that you wish it to be. All you have to do is <i>believe</i> that your life is worth living, and if you really do believe that it will soon become a fact. To live life......Like truly live life, you must live for yourself. Just like the milk in the fridge, you have a limited amount of time to do everything you want to do before you go bad. Your time is so precious, so don\'t waste it trying to do what OTHERS what you to do. <i><b>Do What You Want </b></i>with your life. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Don\'t let others opinions sway you from where you truly want to be. </div><div style=\"text-align: left;\">Don\'t let others dreams become your own, and neglect yours. </div><div style=\"text-align: left;\">Don\'t live for someone else.....Live for you. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: center;\"><i><span style=\"font-size: large;\">Life.</span></i></div><div style=\"text-align: center;\">It is so beautiful</div><div style=\"text-align: center;\">Yet it is one of the things we really don\'t appreciate</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">We don\'t appreciate life until we only have a few grains of sand left in our hourglass</div><div style=\"text-align: center;\">We don\'t appreciate life until we realize that we have <i>wasted</i> years trying to please others</div><div style=\"text-align: center;\">We don\'t appreciate life until we realize we have exhausted so much time </div><div style=\"text-align: center;\">We don\'t appreciate life until we are looking death in the face </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Too many times people lie on their death beds and think about what they <b>wished</b> they would have done. But I don\'t want you to be like that. Live life for yourself. If you want to run a marathon, go run a marathon. If you want to write a book, write a book! If you want to be the best part on earth, do it!!! If you want to dress up and be a ninja for the day, you better dress up and be the best ninja around!!! Do what makes you happy!! Do what you love!! Have no regrets!!! Smile in your struggles and make it through your failures because in the end at least you went after what you wanted. </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"> And that my friend is what I would call <i><b>Living</b></i>..... </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div>So start living today... Do what makes you happy and stop letting those little birds of negativity tweet in your ear. Stop letting your fears hold you back. Stop putting aside your happiness, because you are afraid to hurt others feelings....because in the end you will regret it. <br /><br /><div style=\"text-align: center;\"><span style=\"font-size: large;\"><i>Today </i></span></div><div style=\"text-align: center;\">You woke up</div><div style=\"text-align: center;\">You are breathing</div><div style=\"text-align: center;\">But are you <b>living</b>? </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">If not.... I really hope that you start soon :) </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">-Monica Renata </div>','Are You Living?','','publish','open','open','','are-you-living','','','2014-08-09 21:19:35','2014-08-09 21:19:35','',0,'http://www.monicarenata.com/?p=97',0,'post','',0),(98,1,'2014-01-23 20:20:00','2014-01-23 20:20:00','Sneaky Sneaky Sara<br />Thinks that I don\'t know<br />She always in my business<br />She always wants to know<br /><br />Know what I am doing<br />Know all whom I speak too<br />Sneaky Sara follows me<br />Like my favorite pair of shoes<br /><br />Sneaky Sneaky Sara<br />Thinks that I don\'t know<br />So she covers up her footprints<br />But I still will know<br /><br />Sara is so very sneaky<br />And she calls herself my friend<br />She thinks I don\'t know about this <br />So I guess I will continue to pretend<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg\" height=\"320\" width=\"262\" /></a></div><br />','Sneaky Sara','','publish','open','open','','sneaky-sara','','','2014-08-09 21:19:36','2014-08-09 21:19:36','',0,'http://www.monicarenata.com/?p=98',0,'post','',0),(392,1,'2014-08-09 21:19:37','2014-08-09 21:19:37','','Divorce1','','inherit','open','open','','divorce1','','','2014-08-09 21:19:37','2014-08-09 21:19:37','',99,'http://www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg',0,'attachment','image/jpeg',0),(99,1,'2014-01-23 18:53:00','2014-01-23 18:53:00','<div style=\"text-align: center;\">They called him Bojo the Bandit</div><div style=\"text-align: center;\">His teeth were yellow and green </div><div style=\"text-align: center;\">His hair was wild and very unkempt</div><div style=\"text-align: center;\">His clothes weren\'t all that clean</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">He was always quite</div><div style=\"text-align: center;\">And I could never hear his feet</div><div style=\"text-align: center;\">He always took the pretty things</div><div style=\"text-align: center;\">When everyone was asleep </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They called him Bojo the Bandit</div><div style=\"text-align: center;\">He liked to steal many things</div><div style=\"text-align: center;\">He stole moms new dinette set</div><div style=\"text-align: center;\">He stole moms fancy rings</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">If it wasn\'t glued down </div><div style=\"text-align: center;\">He would take it</div><div style=\"text-align: center;\">He just loved to take all things</div><div style=\"text-align: center;\">And he also told me every day</div><div style=\"text-align: center;\">\"You should never want to be me\"</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They called him Bojo the Bandit </div><div style=\"text-align: center;\">But I still don\'t understand</div><div style=\"text-align: center;\">For Bojo was the man who I always called my dad</div><div style=\"text-align: center;\">He took everything from my Mom</div><div style=\"text-align: center;\">He took it while she was sleep</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I guess this is the thing that is called divorce</div><div style=\"text-align: center;\">So I won\'t speak a peep</div><div style=\"text-align: center;\">For I\'m afraid of the next thing he will take....</div><div style=\"text-align: center;\">Perhaps it will be me</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg\" height=\"212\" width=\"320\" /></a></div><br /><br /><br />','Bojo The Bandit','','publish','open','open','','bojo-the-bandit','','','2014-08-09 21:19:37','2014-08-09 21:19:37','',0,'http://www.monicarenata.com/?p=99',0,'post','',0),(100,1,'2014-01-22 20:47:00','2014-01-22 20:47:00','Oh words cannot describe<br />This devilish little treat<br />For chocolate was my bestest friend<br />Until I suffered this feat<br /><br />It all started two days ago<br />As I was perusing the aisles in the store<br />I had a sample of some chocolates<br />And my mouth just wanted more<br /><br />So to aisle 3 I brought myself<br />I was surrounded by so much speldor<br />Gummy bears and coconut bites<br />I had to take a gander<br /><br />So much deliciousness surrounding me<br />But my eyes wanted one thing<br />This box of JoeJoe\'s Chocolates<br />Those chocolates that made my tongue sing<br /><br />So in the basket I threw a box<br />Then two, Then three<br />And the next thing I knew I was walking out the store<br />Cases of JoeJoe\'s Chocolates being carried behind me<br /><br />I couldn\'t wait to get home that night<br />I would be a hog in heaven indeed<br />Unknowingly To taste the sweet sweet chocolate gifts<br />Would cause the greatest depression, I now see<br /><br /><br />After eating five boxes I was full as a tick<br />I swear I couldn\'t feel any better<br />But then I felt a little prick<br />As my belt got a little tighter<br /><br />I developed uncontrollable gas<br />Which I thought would never pass<br />And then I heard the loudest sound<br />And it was coming from within<br /><br />I felt my stomach twirling around<br />I felt it jump around too<br />And then it felt like someone tied it<br />Like they were tying a knot on a rope<br /><br />This continued for quite some time<br />Until I let out a cry<br />It felt like something was inside of me<br />And eating me from the inside<br /><br />My stomach sounded like trumpets<br />That were calling the demons from hell<br />I crawled into a tiny ball<br />I wished I could run away from the smell<br /><br />This went on for hours<br />And at one point I thought I wouldn\'t be able to open my eyes to see<br />But finally when the clock struck 12<br />The pain stopped and a man stood before me<br /><br />\"Well, I see you liked my chocolates kid!<br />I bet they were quite a delight!<br />My good ole JoeJoe Chocolates are supposed to make you have the time of your life!<br />But it is a treat that you must be very careful<br />Watch how much you eat <br />For if not enjoyed in moderation you will face your punishment for greed\"<br /><br />And then after he said his words<br />He quickly went away<br />And now I learned my lesson<br />I will only eat one chocolate a day<br /><br />Oh words cannot describe<br />This devilish little treat<br />For chocolate was my bestest friend<br />Until I suffered this feat<br /><br /><br /><br /><br />','JoeJoe\'s Chocolates','','publish','open','open','','joejoes-chocolates','','','2014-08-09 21:19:37','2014-08-09 21:19:37','',0,'http://www.monicarenata.com/?p=100',0,'post','',0),(101,1,'2014-01-21 20:41:00','2014-01-21 20:41:00','<div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The beauty of your eyes</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>That can see deep down in my soul</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The warmth that your embrace gives me</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You are the fire in the mist of the cold</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The way you smile so coyly</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The firmness in the shake of your hand</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The way you put no one above me</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The way you make me constantly stare</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The things I love about you</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>The things that I love so</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You are the apple of my eye</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>And I just want you to know</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>That you are the reason why I smile</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You are the reason why I sing</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You protect me from the cruel cruel world</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You take down my wall brick by brick</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You are beautiful on the outside</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>But more spectacular within</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>I just can\'t find the words to describe</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>How you make me feel within</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>From the time the sun do rise</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>Til the time that it goes low</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>You are forever on my mind</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>I just wanted you to know</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><br /></i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>And don\'t for a second think</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>That I don\'t care the very least</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>For you bring me so much happiness in life</i></span></span></div><div style=\"text-align: center;\"><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i>A future with you is all I want to see</i></span></span><br /><br /><br /><span style=\"color: #38761d;\"><span style=\"background-color: white;\"><i><b>\"Sometimes the hardest words to say is how you really feel......\" - Monica Renata</b> </i></span></span></div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/17.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/17.jpg\" height=\"148\" width=\"320\" /></a></div><br />','I Just Want You To Know','','publish','open','open','','i-just-want-you-to-know','','','2014-08-09 21:19:38','2014-08-09 21:19:38','',0,'http://www.monicarenata.com/?p=101',0,'post','',0),(394,1,'2014-08-09 21:19:41','2014-08-09 21:19:41','','You-20Light-20Up-20My-20Life-20image_1','','inherit','open','open','','you-20light-20up-20my-20life-20image_1','','','2014-08-09 21:19:41','2014-08-09 21:19:41','',102,'http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png',0,'attachment','image/png',0),(102,1,'2014-01-21 16:53:00','2014-01-21 16:53:00','<div style=\"text-align: center;\">Bright little stars scattered about </div><div style=\"text-align: center;\">like glitter in my hand</div><div style=\"text-align: center;\">In the night sky I become completely lost</div><div style=\"text-align: center;\">I am floating from the land</div><div style=\"text-align: center;\">In euphoric Ecstasy</div><div style=\"text-align: center;\">A feeling I can\'t explain</div><div style=\"text-align: center;\">As I begin to rise</div><div style=\"text-align: center;\">And touch the sky once again</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Oh in my dreams I come alive</div><div style=\"text-align: center;\">In my dreams I see you</div><div style=\"text-align: center;\">The brightest star in the sky</div><div style=\"text-align: center;\">For what brightens my days is you</div><div style=\"text-align: center;\">The darkest darkness is a place I shall no longer be</div><div style=\"text-align: center;\">For you are with me til the end of time</div><div style=\"text-align: center;\">My guiding light in the darkness</div><div style=\"text-align: center;\">For you light up my life </div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" height=\"262\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','My Light In The Sky','','publish','open','open','','my-light-in-the-sky','','','2014-08-09 21:19:41','2014-08-09 21:19:41','',0,'http://www.monicarenata.com/?p=102',0,'post','',0),(103,1,'2014-01-21 14:35:00','2014-01-21 14:35:00','If you could wish it<br />You\'d wish me <b>perfect</b><br />But that cannot be so<br />So instead you complain about things you want changed <br />And things that have to go<br /><br /><br />You say I\'m perfect<br />But not quite perfect<br />Like a flawed little jewel<br />I have such a radiance about me<br />But you wish it to be dull<br /><br /><i>Shine bright like a diamond</i><br /><i>But not too bright for others to see</i><br />Hold your head up with dignity<br />But slant your eyes so you can\'t see<br /><br /><b>I</b>nsecure, you have me feeling<br /><b>N</b>onchalant, you want me to be<br /><b>S</b>parse, are my interactions<br /><b>E</b>ccentric, I am to be<br /><b>C</b>razy, you make me seem<br /><b>U</b>gly, I feel inside<br /><b>R</b>esounding is my life<br /><b>E</b>lectric is my personality that I now hide<br /><br />I\'m almost completely perfect<br />But there are some things that I lack<br />Stop tearing me down to piece<br />For now I feel <u>inadequate</u><br /><br /><br /><b><i>\"When you don\'t believe in yourself, no one else will. Until you truly believe that you are good enough, you never will be.\" -Monica Renata </i></b><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg\" height=\"206\" width=\"320\" /></a></div><br />','Inadequate','','publish','open','open','','inadequate','','','2014-08-09 21:19:41','2014-08-09 21:19:41','',0,'http://www.monicarenata.com/?p=103',0,'post','',0),(104,1,'2014-01-21 14:12:00','2014-01-21 14:12:00','Who will wave the white flag?<br />Who will reveal the truth?<br />To give up now would hurt so bad<br />But maybe it is something you need to do<br /><br />The smallest drop of poison<br />Dispensed through your veins<br />Slowly killing you each moment<br />Slowly driving you insane<br /><br />What you want is your greatest downfall<br />Your greatest downfall seems so sweet<br />Confused by your inner emotions<br />Yet you still have to see....<br /><br />It\'s everything you ever wanted<br />It\'s everything that you feel you need<br />You are pursuing your greatest downfall<br />But perhaps its time to leave<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg\" height=\"320\" width=\"232\" /></a></div><br /><br />\"<i>Sometimes the one thing we fight for the most is the ONE THING we do not need.......\" </i>- Monica Renata','White Flag','','publish','open','open','','white-flag','','','2014-08-09 21:19:42','2014-08-09 21:19:42','',0,'http://www.monicarenata.com/?p=104',0,'post','',0),(105,1,'2014-01-21 13:40:00','2014-01-21 13:40:00','<div style=\"text-align: center;\">When your eyes lose that shimmer</div><div style=\"text-align: center;\">When you no longer look for me to hold</div><div style=\"text-align: center;\">I stand in the corner</div><div style=\"text-align: center;\">I stand there all alone</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">When you walk around in circles</div><div style=\"text-align: center;\">When you open your mouth to speak</div><div style=\"text-align: center;\">I listen to your every word...but..</div><div style=\"text-align: center;\">I am afraid to speak</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">When you grab all of your belongings</div><div style=\"text-align: center;\">When you tell me you can\'t do this anymore</div><div style=\"text-align: center;\">I shield myself from the hurt</div><div style=\"text-align: center;\">I shield myself from being alone</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">There are many things I could do</div><div style=\"text-align: center;\">There are many things I could say</div><div style=\"text-align: center;\">But what I know for certain</div><div style=\"text-align: center;\">Is I can\'t make you stay</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">For your feet are not here planted</div><div style=\"text-align: center;\">For your mind is made up as you speak</div><div style=\"text-align: center;\">I can\'t do anything about it</div><div style=\"text-align: center;\">Obviously you don\'t like what you see</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I can speak to an entire nation</div><div style=\"text-align: center;\">I can make them feel my words</div><div style=\"text-align: center;\">But to you I am nothing</div><div style=\"text-align: center;\">To you my words are so cold</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I could do so many things</div><div style=\"text-align: center;\">There are so many things I could be</div><div style=\"text-align: center;\">But I know I can\'t make you stay</div><div style=\"text-align: center;\">If you are determined to leave </div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l\" /></a></div><br />','Can\'t Make You Stay','','publish','open','open','','cant-make-you-stay','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=105',0,'post','',0),(106,1,'2014-01-17 16:03:00','2014-01-17 16:03:00','<div style=\"text-align: center;\">A speck on my drinking glass</div><div style=\"text-align: center;\">A particle on my spoon</div><div style=\"text-align: center;\">A spot I cannot erase</div><div style=\"text-align: center;\">But I want it removed</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">A memory I shall never forget</div><div style=\"text-align: center;\">A distant thought that I hate to remember</div><div style=\"text-align: center;\">A unneeded nuisance to all</div><div style=\"text-align: center;\">Removal is definitely the appropriate measure</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><i>Just something that I dislike</i></div><div style=\"text-align: center;\"><i>Just something that shouldn\'t be</i></div><div style=\"text-align: center;\"><i>For negativity isn\'t needed in my life</i></div><div style=\"text-align: center;\"><i>I need to break completely free</i></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">A speck of utter discontent</div><div style=\"text-align: center;\">A particle of hate</div><div style=\"text-align: center;\">A spot upon my shattered heart</div><div style=\"text-align: center;\">A memory that can\'t be erased</div><div style=\"text-align: center;\">A distant thought I hate to remember</div><div style=\"text-align: center;\">The unneeded nuisance was me</div><div style=\"text-align: center;\">For you never loved me like you said you did</div><div style=\"text-align: center;\">For in life you tried to remove me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><i>There are just some things I don\'t like</i></div><div style=\"text-align: center;\"><i>There are some things I don\'t need</i></div><div style=\"text-align: center;\"><i>For if I can\'t make you happy</i></div><div style=\"text-align: center;\"><i>Then maybe its my time to leave </i></div><div style=\"text-align: center;\"> </div><br />','PINCH','','publish','open','open','','pinch','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=106',0,'post','',0),(107,1,'2014-01-15 20:55:00','2014-01-15 20:55:00','<div style=\"text-align: center;\">I came</div><div style=\"text-align: center;\">I saw</div><div style=\"text-align: center;\">I conquered</div><div style=\"text-align: center;\">And yet that wasn\'t enough</div><div style=\"text-align: center;\">My greed sometimes consumes my being</div><div style=\"text-align: center;\">Enough is never really \"enough\"</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I try</div><div style=\"text-align: center;\">I try again</div><div style=\"text-align: center;\">I then succeed</div><div style=\"text-align: center;\">And I should be happy but I want more</div><div style=\"text-align: center;\">My constant obsession to become better consumes me</div><div style=\"text-align: center;\">I can\'t be complacent for long</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I climb</div><div style=\"text-align: center;\">I run</div><div style=\"text-align: center;\">I reach my goal</div><div style=\"text-align: center;\">Standing on the mountain top</div><div style=\"text-align: center;\">My dream is to touch the sky</div><div style=\"text-align: center;\">So today I won\'t stop</div><div style=\"text-align: center;\"> </div><div style=\"text-align: center;\">Always go further than you wanted to go</div><div style=\"text-align: center;\">Always push pass your past successes</div><div style=\"text-align: center;\">And if you feel like you reached your peak</div><div style=\"text-align: center;\">Just know that you can keep on progressing</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I came</div><div style=\"text-align: center;\">I saw</div><div style=\"text-align: center;\">I conquered</div><div style=\"text-align: center;\">That was never really enough</div><div style=\"text-align: center;\">And with that I found out</div><div style=\"text-align: center;\">That I could be much better than I actually thought</div><br /><br /><i>\"You never know what you are fully capable of if you don\'t give yourself a shot.... Stop capping your talents! You are capable of more than you think!!!\" -Monica Renata </i><br /><br />','I came, I saw, I conquered','','publish','open','open','','i-came-i-saw-i-conquered','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=107',0,'post','',0),(108,1,'2014-01-13 15:37:00','2014-01-13 15:37:00','<div style=\"text-align: center;\"><b><i><span style=\"font-family: "Courier New",Courier,monospace;\">You can\'t be me<br />And I can\'t be you<br />You are You<br />And no one can be more you than you<br /><br />Each second that pass<br />Each minute in the day<br />Turns into hours<br />And then hours turn to days<br /><br /><br />Those days mash in together<br />But it doesn\'t hide the truth<br />That yesterday, today, and tomorrow<br />You will be YOU<br /><br />You are someone special<br />You are someone unique<br />You are you<br />So start saying, \"I love me!\"</span></i></b></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><i>\"The best love is self love!!\" -Monica Renata</i></div>','You Are You','','publish','open','open','','you-are-you','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=108',0,'post','',0),(109,1,'2014-01-09 18:29:00','2014-01-09 18:29:00','Many admire the thief<br />For the countless riches they\'ve gained<br /><br />But no one notices the man<br />Who goes to work each day<br /><br />So easy it is to be blinded<br />By such shiny silver and gold<br /><br />Yet the copper of a penny dulls<br />And can\'t soothe the greed in the soul<br /><br />Little by little the man shall work<br />More and more the thief shall take<br /><br />But in the end the greatest riches<br />Are held by those who don\'t cheat<br /><br /><i>\"Dishonest money dwindles away, but whoever gathers money little by little makes it grow\" Proverbs 13:11</i>','Man Vs Thief','','publish','open','open','','man-vs-thief','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=109',0,'post','',0),(110,1,'2014-01-09 14:59:00','2014-01-09 14:59:00','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:DoNotShowComments/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div style=\"text-align: center;\">They want me to follow instructions</div><div style=\"text-align: center;\">Like I’m some sort of child</div><div style=\"text-align: center;\">They want me to have fear in my voice</div><div style=\"text-align: center;\">They want me to not smile</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They want me to listen to everything</div><div style=\"text-align: center;\">Every little word they say</div><div style=\"text-align: center;\">They want me to follow instructions</div><div style=\"text-align: center;\">But I shall say, “No Way!”</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">To give up all my liberties</div><div style=\"text-align: center;\">And become a mental slave</div><div style=\"text-align: center;\">Is something that I shall not become</div><div style=\"text-align: center;\">My relentlessness shall not wave</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Undoubtedly doubtful</div><div style=\"text-align: center;\">Yet inside I have too much pride</div><div style=\"text-align: center;\">The lion’s roar is mute today</div><div style=\"text-align: center;\">But the heart of the beast is still inside</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Remove the shackles from my mental</div><div style=\"text-align: center;\">Let my words become the swords that stab deep</div><div style=\"text-align: center;\">They want me to follow instructions</div><div style=\"text-align: center;\">But I want my soul to be free</div><div><br /></div><div><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:DoNotShowComments/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--></div><br /><div><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> </div><div><i>“Sometimes we let others imprison us mentally……. Once a mind is imprisoned hope may seem so far away… Don’t allow yourself to become a mental slave to others.” –Monica Renata </i></div> <br /><br />','They Want Me To Follow Instructions','','publish','open','open','','they-want-me-to-follow-instructions','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=110',0,'post','',0),(111,1,'2014-01-09 14:46:00','2014-01-09 14:46:00','<br />I tried to be a cat today<br />I sat down and let out a purr<br />I rubbed my body on the passing humans<br />But alas, I didn\'t have any fur<br /><br /><br />I tried to be mermaid today<br />I swam deep down under the sea<br />I saw many fish surrounding me<br />But alas, I could not breath<br /><br />I tried to be a warrior today<br />I grabbed a big sword that was heavy to hold<br />I ran onto a field of grass<br />But alas, it was accompanied by not a single soul<br /><br />I tried to be so many things<br />But in the end that wasn\'t me<br />I guess I have to \"try\" to stop being something else<br />I have to just be me <br /><br /><br />I can try to do many things<br />I can imitate what I see<br />But growth comes from self-realization<br />Growth comes from within me<br /><br />I tried to be myself today<br />I really liked that a lot<br />I realized that there is beauty within your flaws<br />But alas, I realized I can\'t be what I am not<br /><br /><br />\"Sometimes the hardest thing to realize in life is that you are good enough being YOURSELF. You do not have to imitate others in order to stand out.... Know yourself, and love yourself and others will follow\" -Monica Renata <br /><br /><br />','I tried','','publish','open','open','','i-tried','','','2014-08-09 21:19:43','2014-08-09 21:19:43','',0,'http://www.monicarenata.com/?p=111',0,'post','',0),(112,1,'2014-01-03 18:35:00','2014-01-03 18:35:00','<div style=\"text-align: center;\"></div>\r\n<p style=\"text-align: center;\">Completely and utterly interesting\r\nThe apple of one\'s eye\r\nAdmiration of so many others\r\nBut nothing but coldness inside</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Smile that shines so brightly\r\nFollowed by a smirk\r\nWe were warned about this person\r\nThis person will treat you worst than dirt</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">To take your heart and hold it\r\nHold it so very tight\r\nYou think this is a loving embrace\r\nBut it only looks like that to the naive eye</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Dance with your emotions\r\nIn a never ending fiery ring\r\nYou think this is love\r\nBecause what else could it be?</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Wrapped up in this whole feeling\r\nThen they decide to leave\r\nLost in all confusion\r\nYou get on your knees and plead</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">\"Why is this happening?\"\r\n\"What did I do wrong?\"\r\nBut in the eyes of the HeartBreaker\r\nYou see a person with no soul</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Stealing hearts and murdering them\r\nMake your emotions cease\r\nYou can\'t win with the heartbreaker\r\nFor they will leave your heart decease</p>\r\n<p style=\"text-align: center;\"></p>\r\n<em>\"Watch who you give your heart to...... Everyone doesn\'t value it the same...........\" - Monica Renata</em>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\"><img src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\" alt=\"\" width=\"391\" height=\"400\" border=\"0\" /></a></div>\r\n ','The HeartBreaker','','publish','open','open','','the-heartbreaker','','','2015-09-04 08:57:47','2015-09-04 13:57:47','',0,'http://www.monicarenata.com/?p=112',0,'post','',0),(1104,1,'2015-09-04 08:54:40','2015-09-04 13:54:40','<div style=\"text-align: center;\"></div>\r\n<p style=\"text-align: center;\">Completely and utterly interesting\r\nThe apple of one\'s eye\r\nAdmiration of so many others\r\nBut nothing but coldness inside\r\n\r\nSmile that shines so brightly\r\nFollowed by a smirk\r\nWe were warned about this person\r\nThis person will treat you worst than dirt\r\n\r\nTo take your heart and hold it\r\nHold it so very tight\r\nYou think this is a loving embrace\r\nBut it only looks like that to the naive eye\r\n\r\nDance with your emotions\r\nIn a never ending fiery ring\r\nYou think this is love\r\nBecause what else could it be?\r\n\r\nWrapped up in this whole feeling\r\nThen they decide to leave\r\nLost in all confusion\r\nYou get on your knees and plead\r\n\r\n\"Why is this happening?\"\r\n\"What did I do wrong?\"\r\nBut in the eyes of the HeartBreaker\r\nYou see a person with no soul\r\n\r\nStealing hearts and murdering them\r\nMake your emotions cease\r\nYou can\'t win with the heartbreaker\r\nFor they will leave your heart decease</p>\r\n \r\n\r\n<em>\"Watch who you give your heart to...... Everyone doesn\'t value it the same...........\" - Monica Renata</em>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\"><img src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\" alt=\"\" width=\"391\" height=\"400\" border=\"0\" /></a></div>\r\n ','The HeartBreaker','','inherit','closed','closed','','112-revision-v1','','','2015-09-04 08:54:40','2015-09-04 13:54:40','',112,'http://www.monicarenata.com/112-revision-v1/',0,'revision','',0),(1102,1,'2015-09-04 08:53:18','2015-09-04 13:53:18','<div style=\"text-align: center;\"></div>\r\n<p style=\"text-align: center;\">Completely and utterly interesting</p>\r\n<p style=\"text-align: center;\">The apple of one\'s eye</p>\r\n<p style=\"text-align: center;\">Admiration of so many others</p>\r\n<p style=\"text-align: center;\">But nothing but coldness inside</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Smile that shines so brightly</p>\r\n<p style=\"text-align: center;\">Followed by a smirk</p>\r\n<p style=\"text-align: center;\">We were warned about this person</p>\r\n<p style=\"text-align: center;\">This person will treat you worst than dirt</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">To take your heart and hold it</p>\r\n<p style=\"text-align: center;\">Hold it so very tight</p>\r\n<p style=\"text-align: center;\">You think this is a loving embrace</p>\r\n<p style=\"text-align: center;\">But it only looks like that to the naive eye</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Dance with your emotions</p>\r\n<p style=\"text-align: center;\">In a never ending fiery ring</p>\r\n<p style=\"text-align: center;\">You think this is love</p>\r\n<p style=\"text-align: center;\">Because what else could it be?</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Wrapped up in this whole feeling</p>\r\n<p style=\"text-align: center;\">Then they decide to leave</p>\r\n<p style=\"text-align: center;\">Lost in all confusion</p>\r\n<p style=\"text-align: center;\">You get on your knees and plead</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">\"Why is this happening?\"</p>\r\n<p style=\"text-align: center;\">\"What did I do wrong?\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But in the eyes of the <em>HeartBreaker</em></p>\r\n<p style=\"text-align: center;\">You see a person with no soul</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Stealing hearts and murdering them</p>\r\n<p style=\"text-align: center;\">Make your emotions cease</p>\r\n<p style=\"text-align: center;\">You can\'t win with the heartbreaker</p>\r\n<p style=\"text-align: center;\">For they will leave your heart decease</p>\r\n \r\n\r\n \r\n\r\n<em>\"Watch who you give your heart to...... Everyone doesn\'t value it the same...........\" - Monica Renata</em>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\"><img src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\" alt=\"\" width=\"391\" height=\"400\" border=\"0\" /></a></div>\r\n ','The HeartBreaker','','inherit','closed','closed','','112-revision-v1','','','2015-09-04 08:53:18','2015-09-04 13:53:18','',112,'http://www.monicarenata.com/112-revision-v1/',0,'revision','',0),(113,1,'2014-01-02 20:29:00','2014-01-02 20:29:00','<div style=\"text-align: center;\">Who wants to be Normal? </div><div style=\"text-align: center;\">You know, normal just like you</div><div style=\"text-align: center;\">With that nice clean shirt on your back</div><div style=\"text-align: center;\">And that rugged pair of shoes</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Who wants to be normal? </div><div style=\"text-align: center;\">Who wants to have their hair neat all day? </div><div style=\"text-align: center;\">Who wants to eat breakfast, lunch, and dinner</div><div style=\"text-align: center;\">Instead of snacking through the day?</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Who wants to be normal?</div><div style=\"text-align: center;\">Not this person here</div><div style=\"text-align: center;\">I just want so much in life</div><div style=\"text-align: center;\">I want to be eccentric to the vast majority of my peers</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I\'d rather be different</div><div style=\"text-align: center;\">I would rather wake up at 2</div><div style=\"text-align: center;\">And my first meal will be called Br-inner</div><div style=\"text-align: center;\">And I wouldn\'t wear tied shoes</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I want to wear wrinkled shirts</div><div style=\"text-align: center;\">And I don\'t want to wear any shoes</div><div style=\"text-align: center;\">I mean who wants to be normal?</div><div style=\"text-align: center;\">If I will be just like you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Hair unkempt on my head</div><div style=\"text-align: center;\">The biggest smile on my face</div><div style=\"text-align: center;\">What\'s the point of being normal</div><div style=\"text-align: center;\">When you can be carefree and smile all day</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The world would be my oyster</div><div style=\"text-align: center;\">I would go by no one\'s clock but my own</div><div style=\"text-align: center;\">Being normal isn\'t all its cracked up to be</div><div style=\"text-align: center;\">Being normal means to society you conform</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I\'d rather be unconventional</div><div style=\"text-align: center;\">I\'d rather be just like me</div><div style=\"text-align: center;\">Because whats the point of being Normal</div><div style=\"text-align: center;\">If I have to change some pieces of me? </div><div style=\"text-align: center;\">Then walk this world as a drone</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">:) </div><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi\" width=\"320\" /></a></div><br />','Who Wants To Be Normal?','','publish','open','open','','who-wants-to-be-normal','','','2014-08-09 21:19:45','2014-08-09 21:19:45','',0,'http://www.monicarenata.com/?p=113',0,'post','',0),(114,1,'2014-01-02 19:37:00','2014-01-02 19:37:00','<div style=\"text-align: center;\">Knocking on my door</div><div style=\"text-align: center;\">But I\'m afraid to answer</div><div style=\"text-align: center;\">Back to my room I go</div><div style=\"text-align: center;\">They shall not receive an answer</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Pounding at my door</div><div style=\"text-align: center;\">I tip toe to the door to peek</div><div style=\"text-align: center;\">Someone is standing on the doorstep</div><div style=\"text-align: center;\">But they are unfamiliar to me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The Doorbell chimes a few times</div><div style=\"text-align: center;\">I wish they would go away</div><div style=\"text-align: center;\">\"No one is here,\" I shout to them</div><div style=\"text-align: center;\">\"Please just go away\" </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I hear them shouting out my name</div><div style=\"text-align: center;\">They say \"Hey this is me!!\"</div><div style=\"text-align: center;\">But I\'m not willing to take that chance</div><div style=\"text-align: center;\">I stand still and can\'t move my feet</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">\"I will just leave a letter, \" He shouted</div><div style=\"text-align: center;\">\"And I won\'t come here anymore\"</div><div style=\"text-align: center;\">And when I finally read that letter it said</div><div style=\"text-align: center;\">\"Don\'t miss out when <i>Opportunity</i> knocks on your door\"</div><br /> <br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg\" /></a></div><br />','Knocking at my door','','publish','open','open','','knocking-at-my-door','','','2014-08-09 21:19:46','2014-08-09 21:19:46','',0,'http://www.monicarenata.com/?p=114',0,'post','',0),(115,1,'2014-01-02 17:20:00','2014-01-02 17:20:00','I was young. I believed that everyone was purely good at heart. I believed that the world was going to be as great as I wanted it to be. I was naive but I didn\'t know it. Mom always told me, \"Child be careful who you consider your friends.\".... And I didn\'t listen. I assumed that if someone smiled in your face then they were genuine.<br /><br />April 13th, 2006........That Thursday morning I awoke with the energy I had the past couple of days. I was excited about life. I was so close to the dreams that I always dreamed of! I was about to start <b>my life</b>. I dug through my closet to find the nicest clothes I could find and then I began to get ready for the day. This was the day that would propel me in the business world. I was going to a resume workshop and I was preparing myself to get my first job.<br /><br />The workshop was held in an old school building that looked as if it was a gym at one point. I quickly found my way to a desk and sat in the seat farthest in the back. The room was very poorly lit, and the seat was so cold that it gave me chills for a minute. I was the first one there but I didn\'t mind. I was too excited. As the clock slowly approached 8 o\'clock, the room began to fill. I seen people of all ages. Some already had jobs but they wanted to know how to improve their resumes so they could be more \"marketable\" to other companies. <br /><br />It was told to us that the workshop would be divided into two sections which was separated by an hour and a half lunch break. I sat up straight and my ears were just anticipating the next words spoken by the instructor. His name was Mr.Hill. Mr.Hill was a retired teacher who still volunteered in the small town of Aspen. I remember him speaking to my class one year and he said, \"You could be anything you want to be....It all depends on <b>YOU</b>.\"........It\'s crazy that he always said that because I always wondered who would want to be unmarried and childless at the age of 52.... I mean, he had no one.......Maybe it was because of his stout stature or the way in which his teeth jutted outwards... or maybe the condition of his skin... Who knows.....But I know one thing, this couldn\'t be what he <b>truly</b> wanted from his life.......But alas, Mr.Hill is Mr.Hill............And he is very knowledgeable so I respect all that he say....So for the next 4 hours... I listened... I listened carefully to all he said and I took notes with the greatest detail.<br /><br />Before long, it was time for our break. I didn\'t bring lunch that day so I decided to sit outside and just relax. I mean, it was a beautiful day! Not too hot, not too cold. Just a beautiful day overall....I laid my back against the brick building and slid down to the ground in utter comfort. The ground was a little damp from the previous nights rain, but I was too comfortable to move. I closed my eyes and let the smooth April air gently touch my face...Relaxation at its finest! Soon, I saw a shadow however over me. I opened my eyes and it was <i>That Person</i>. They smiled at me and gave an introduction, and before you know it we were both sitting next to each other on that brick wall talking and laughing away. It\'s amazing how much we had in common, we talked so much that we both ended up being a few minutes late to the next session, but to me it didn\'t matter.<br /><br />After sitting through the final session of the workshop, <i>That Person</i> and I spoke once more before heading home. Long story short, that person ended up becoming my best friend. I told them all of my secrets, my fears, about my dreams.... I told them everything. I felt like I had a friend that would last til the end of time. I remember before I left home for good, my mom pulled me over to the side and told me those same words she told me so long ago, \"Child be careful who you consider your friends.\". Honestly those words went in one ear and out the other. At the end of the day, I had one best friend who I absolutely trusted...So how could I ever choose the wrong friends?<br /><br />As time went forward, I struggled through life and so did my friend. The only difference is that I overcame mines. I remember one day while I was standing in the middle of a crowded bookstore, I saw my friend. I waved, but I only received a cold stare....Maybe I changed a little...Maybe I just wasn\'t recognized....After obtaining my books I went approach them. And believe it or not I only received another cold look and a few choice words........\"Leave me alone, I don\'t like you\"........<br /><br />Rejected and ashamed I calmly walked home. I thought over and over and over again that maybe I possibly did something wrong and they needed time to cool off. Each time I called <i>That Person</i>, my call would be forwarded to the voicemail.... Each text I sent didn\'t get a response...I was completely lost.<b> I didn\'t do anything to <u><i>That Person</i></u></b>.......I didn\'t do anything............<br /><br />As years went on I became a great person...well according to others anyways. I graduated from college. Moved thousands of miles from home. I actually became the somebody I always wanted to be. In all honesty, the only thing that was missing from my life was a close friend......I just couldn\'t find that. I couldn\'t find anyone who I just felt comfortable with. Until one day when I met Sam. Sam was an interesting individual. Sam loved the outdoors, but also had an obsession with tomfoolery. So when anyone hung out with Sam it was never boring. Sam opened up to me tremendously, telling me about every aspect of his life. For the longest time, we talked and just had plan fun. Until one day I was asked, \"Why don\'t you ever tell me much about your life? You never truly open up?\"..................I looked in his bright brown eyes and I absolutely didn\'t know why......but then I finally responded, \"Because people walk in and out of others lives so unexpectedly that sometimes knowing just the surface of a person is enough...\"<br /><br /><span style=\"color: blue;\">\"But what if, that person says they won\'t leave?\"</span> Sam asked with a confused look on his face.<br />\"Some people can say that they won\'t but they do.\"<br /><span style=\"color: blue;\">\"But why not open up and then try it out to see...?\"</span><br />\"There is no point in getting so deep..... and then end up with nothing\"<br /><span style=\"color: blue;\">\"What are you afraid of?\"</span><br />\"Nothing..........\"<br /><br /><div style=\"text-align: center;\">--------------------------------------------------------------------------------------------------------</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But the truth is...........<b>I am afraid</b>. I\'m afraid of being hurt. I\'m afraid of putting all of my emotions into someone and then they just walk away unexpectedly. I shield myself from hurt by creating a wall so tall that no one can climb over. I let no one in....Because the truth is......I\'m scared of letting someone know all of me....and then walking away.....like I was nothing...........</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">------------------------------------------------------------------------------------------------------------</div><br />It\'s amazing how we can go through life and feel as though we are indestructible. We say that we learn from past mistakes, but we let some of the hurt in our past move forward with us each and every day. How many times have you let <i><b>That Person</b></i> dictate a certain part of your life? You know.... <i><b>That Person</b></i>.....They all did different things.....<br /><br /><br /><i>That Person</i> who lied to you<br /><i>That Person </i>who cheated on you<br /><i>That Person </i>who stole from you<br /><i>That Person </i>who made you realize that Mom was right....Everyone can\'t be your friend<br /><br />We all have <i>That Person</i> in our life....That person who has left....but then again never really left. They help dictate our future decisions without us even knowing. Soon we find ourselves throwing others into the category of <i>That Person</i> because we no longer can see the good in others because we have been hurt before............<b><u>Don\'t let the past actions of others hold you back</u></b>....<br /><br />When someone walks out of your life <i>let them</i>. It\'s okay to cry. It\'s okay to feel hurt, but know that everyone isn\'t like them. Kill off the notion that so many people are like <i>That Person</i>....because at the end of the day....<u>they are NOT that person</u>.......<br /><br />Til this day, Sam things I am such an emotionless person....After all, I can\'t truly reveal that I am afraid.......I am indestructible.... I am fearless.......but the truth is...I\'m just so afraid. But one day I have to finally throw <i>That Person</i> out of my life completely.....And then, I will be able to completely move on........<br /><br /><br /><br /><i>\"Don\'t prejudge someone off of the actions of someone in your past... People aren\'t the same... And if you do so, you might miss out on a true treasure in life\" -Monica Renata</i><br /><br /><br /><br />','THAT PERSON never left.......... ( A short story)','','publish','open','open','','that-person-never-left-a-short-story','','','2014-08-09 21:19:46','2014-08-09 21:19:46','',0,'http://www.monicarenata.com/?p=115',0,'post','',0),(116,1,'2014-01-01 19:45:00','2014-01-01 19:45:00','Pretty little picture<br />Painted in my mind<br />Each brushstroke drew a memory<br />Which had emotion inside<br /><br />Pretty little picture<br />On a canvas in front of me<br />Can\'t put down the brush now<br />My work isn\'t complete<br /><br />Pretty little picture<br />The story of my life<br />I have to keep on painting<br />Till I get this one right<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"234\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg\" width=\"320\" /></a></div><br />','Pretty Little Picture','','publish','open','open','','pretty-little-picture-2','','','2014-08-09 21:19:48','2014-08-09 21:19:48','',0,'http://www.monicarenata.com/?p=116',0,'post','',0),(399,1,'2014-08-09 21:19:49','2014-08-09 21:19:49','','dancers1','','inherit','open','open','','dancers1','','','2014-08-09 21:19:49','2014-08-09 21:19:49','',117,'http://www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg',0,'attachment','image/jpeg',0),(117,1,'2013-12-31 17:43:00','2013-12-31 17:43:00','<div style=\"text-align: center;\">I just want to dance!!!</div><div style=\"text-align: center;\">Move my body left and right!!!</div><div style=\"text-align: center;\">Sing the song at the top of my lungs!!</div><div style=\"text-align: center;\">And groove all through the night!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I just want to dance!</div><div style=\"text-align: center;\">Move my body to the beat</div><div style=\"text-align: center;\">Smile and laugh abundately</div><div style=\"text-align: center;\">While I carelessly move my feet</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I just want to dance </div><div style=\"text-align: center;\">I want my soul to be free</div><div style=\"text-align: center;\">For in my music I find comfort</div><div style=\"text-align: center;\">And I\'m not afraid to be me</div><br /><br /><i>\"It\'s amazing how music can really express how we feel in our hearts...\" -Monica Renata</i><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg\" width=\"247\" /></a></div><br />','Dance','','publish','open','open','','dance','','','2014-08-09 21:19:50','2014-08-09 21:19:50','',0,'http://www.monicarenata.com/?p=117',0,'post','',0),(118,1,'2013-12-31 14:28:00','2013-12-31 14:28:00','Searching for my <i>Kingdom Heart</i><br />That is my <i>Final Fantasy</i><br />Standing at the top of <i>Silent Hill</i><br />Waiting for my <i>Mario</i>.... or perhaps Luigi<br /> <br />Thoughts running through my head like <i>Sonic</i><br />My mind is a <i>Battlezone</i><br />So much emotion <i>Uncharted</i><br />I\'m walking in Raccoon City alone <br /><br />Emotionally <i>Left 4 Dead</i><br />I feel like this is <i>The Last Of Us</i><br />I can\'t be a <i>Tomb Raider</i><br />I can\'t make your corpse rise <i>From Dust</i><br /><br />Running with a <i>Need For Speed</i><br />Running in the <i>Heavy Rain</i><br />Inside I am experiencing <i>Mortal Kombat</i><br />the devil in Kazuya resides in me<br /><br />But alas I want a <i>Halo</i><br />So I have to prepare my <i>Gears of War</i><br />I can\'t live a <i>Half-Life</i><br />I have to learn to walk this <i>LittleBigPlanet</i> alone<br /><br />Prepare yourself for the battles<br />But always do what is right<br /><br />For life can\'t be paused<br />And you don\'t get anymore chances after this life<br />You have to stop thinking that life is full of games<br />You have to start living for you<br />And stop letting others dictate your life<br />Because in your life you aren\'t meant to be player 2 <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg\" width=\"320\" /></a></div><br /><br /><br /><br /><br />','Life Isn\'t a Game','','publish','open','open','','life-isnt-a-game','','','2014-08-09 21:19:51','2014-08-09 21:19:51','',0,'http://www.monicarenata.com/?p=118',0,'post','',0),(119,1,'2013-12-31 03:46:00','2013-12-31 03:46:00','Ceiling fan is spinning<br /><br />Thoughts consuming my head<br /><br />Waiting for sleep to come over me<br /><br />But I\'m wide awake instead<br /><br />Worrying and constantly thinking<br /><br />The clock goes tick tock<br /><br />This will be a very long night<br /><br />For I am kept awake by my thoughts<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg\" /></a></div><br />','Sleepless Night','','publish','open','open','','sleepless-night','','','2014-08-09 21:19:52','2014-08-09 21:19:52','',0,'http://www.monicarenata.com/?p=119',0,'post','',0),(120,1,'2013-12-30 14:48:00','2013-12-30 14:48:00','<div style=\"text-align: center;\">Fog thick like powder</div><div style=\"text-align: center;\">I feel it touch my face</div><div style=\"text-align: center;\">Wondering around in circles</div><div style=\"text-align: center;\">No shelter to embrace</div><div style=\"text-align: center;\">Following the one star I see</div><div style=\"text-align: center;\">The only light in the sky</div><div style=\"text-align: center;\">Trying to make it to tomorrow</div><div style=\"text-align: center;\">Trying to keep all hope alive</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Running into nothingness</div><div style=\"text-align: center;\">My only shelter is a tree</div><div style=\"text-align: center;\">That drips the heavy fog</div><div style=\"text-align: center;\">And lands all over me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Cold but not abandoned</div><div style=\"text-align: center;\">For I still have that light</div><div style=\"text-align: center;\">I must keep moving forward</div><div style=\"text-align: center;\">Victory is within sight</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Going in endless circles</div><div style=\"text-align: center;\">Don\'t know where I should be</div><div style=\"text-align: center;\">Trying to get out of this hazy forest</div><div style=\"text-align: center;\">But the wildlife is consuming me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">It is very dark outside</div><div style=\"text-align: center;\">Or is it that I can\'t see? </div><div style=\"text-align: center;\">In order to make it out </div><div style=\"text-align: center;\">I have to find the light that radiates from me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">For He is always with me</div><div style=\"text-align: center;\">But I think he wants me to see </div><div style=\"text-align: center;\"><i><b>Be the light in your own darkness</b></i></div><div style=\"text-align: center;\"><i><b>And then you will finally be able to see </b></i></div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"255\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg\" width=\"320\" /></a></div><div style=\"clear: both; text-align: center;\"></div><br />','Light In The Darkness','','publish','open','open','','light-in-the-darkness','','','2014-08-09 21:19:54','2014-08-09 21:19:54','',0,'http://www.monicarenata.com/?p=120',0,'post','',0),(121,1,'2013-12-27 19:35:00','2013-12-27 19:35:00','<div style=\"text-align: center;\"><b><i>\"I\'m just not where I am supposed to be at this time of my life....\"</i></b></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: left;\">Does this sound remotely familiar? </div><div style=\"text-align: left;\">I know it sounds familiar to me........Sometimes, we think that we can just plan out our entire life... and although there is some truth to that....the truth is... that is hard to do....Because <u>stuff happens. </u>You may experience a small setback or something can happen which can change your whole perception of what you want for your future. Sometimes I look at my life and I shake my head because in all honesty, this isn\'t what I expected my life to be like at this age. I honestly thought my life would have been............how do I say this..............<i>Way better than it is today</i>......lol. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I envisioned a life of glamor and success that was monumental for anyone in my age group. I envisioned being successful in my business life but in my personal life as well... At this age I was supposed to <b>have it all</b>, but the truth is....the awful realistically speaking truth.....is..... that I don\'t have it all... I have some of it though...But not all of it....</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">And that simple fact that I do not have <i><b>ALL</b></i> of what I wanted eats away at me. And that little voice in my head constantly reminds me of the simple fact that <i><b>\"I\'m just not where I am supposed to be at this time of my life....\"</b></i></div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">But is this voice even right? When I was created was there a specific destination that I was <b>supposed</b> to be at a certain stage of my life? At 5 years old was I <b>supposed</b> to be the little kid in the play-yard who knew how to do cartwheels before anyone else? At 16 was I <b>supposed</b> to be the most popular kid in school? At 20 was I <b>supposed</b> to find my soul-mate and prepare to settle down for the rest of my life? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Truth is..... when it comes to life there is no set age at which you are <b>supposed</b> to do anything. Sure there are goals and other things you need to accomplish, but if you do not accomplish them at a certain age...that doesn\'t mean that they are no longer obtainable. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Many times we place a timeline on the important things in life. We say things such as \"<i>If I don\'t find love by age 24 I will be alone forever.\"</i>...... We say such things as, <i>\"I am too old to learn a new skill.....that was something I was <b>supposed</b> to do in my younger years.\".... </i> </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">We say so many things.....and what is really sad is that we constantly feed this to our own minds and eventually.........<b>we believe it</b>........We believe that certain things cannot be obtained because it has reached its expiration date. We give up on what we truly want because it seems that the time in which we were supposed to do it has long passed.....We eventually hold ourselves back....... </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">At the end of the day, you are not <b>supposed</b> to be anywhere....You have to <b>WANT</b> to be at a certain place in your life in order to obtain it. When you want something you will invest your time, money, or whatever need-be in order to obtain it. <i><b>\"<u>I\'m just not where I WANTED to be at this time of my life</u>\"</b></i>..............This is the truth....but you know what... I\'m not too old to give up. I can still obtain EVERYTHING that I ever wanted..........My dreams can still become a reality... I just have to try harder...Sure time may not be on my side....but at least I have time, and so do you!!!</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">So stop believing that your time has passed when it comes to certain aspects of your life. You are the conductor of your life!! Sure you may come across some unruly weather along the way, but you gotta keep moving forward. You may not be where you want to be today....but it can happen. After all, progress is never made if you are unwilling to take a step forward!!!</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Have a good day everyone!!!</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">-Monica Renata </div>','I\'m Just Not Where I\'m Supposed To Be..........','','publish','open','open','','im-just-not-where-im-supposed-to-be','','','2014-08-09 21:19:54','2014-08-09 21:19:54','',0,'http://www.monicarenata.com/?p=121',0,'post','',0),(122,1,'2013-12-27 15:14:00','2013-12-27 15:14:00','Seesawing on an issue<br />Thoughts traveling with the wind<br />At a fork in the neverending road<br />Constantly straddling the fence<br /><br />On one side of the battle field<br />The opponent lies<br />In the eyes of my enemy<br />I see what resides inside<br /><br />A fierce warrior each claim to be<br />One who fights for truth<br />But deep inside the mind<br />Each know they decline the truth<br /><br />Truth be told I shouldn\'t be fighting<br />Because I don\'t know what is right<br />My indecisiveness makes me weary<br />It makes me doubt this entire fight<br /><br />The world is full of fighting<br />But what are we fighting for?<br />Seesawing on issues<br />Stuck at a fork in the road<br />Constantly straddling the fence<br />Thoughts are traveling with the wind<br />But do we know the issue at hand<br />Before the battle begins? <br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg\" width=\"320\" /></a></div><br /><br /><br /><br /><br /><br />','What Are We Fighting For?','','publish','open','open','','what-are-we-fighting-for','','','2014-08-09 21:19:54','2014-08-09 21:19:54','',0,'http://www.monicarenata.com/?p=122',0,'post','',0),(123,1,'2013-12-20 18:57:00','2013-12-20 18:57:00','It is the season of giving.....<br />The most wonderful time of the year....<br /><br />This is the time of year that parents are racing frantically in crowded stores to buy their little ones gifts. This is the time of year when some people go into financial ruin, just so that others can be \"happy\" to receive a gift. This is <b>THAT</b> time of year........<br /><br />Too many times we forget the true reason for the season. We have replaced the true meaning of this holiday with many materialistic things. Many do not think of giving to others, but yet they are ever so grateful to receive...<i>but why? </i><br /><br />I honestly believe that the only true time people understand what this season is all about is when we are small children and then when we reach the age of our grandparents. I remember as a kid being excited about getting a three coloring books with the 48 box of RoseArt crayons. I was so happy with this...but then... as I got older...I wanted more stuff...And this stuff happened to be video games, shoes, and all other types of materialistic things. As I got older I no longer looked forward to the family members being all in one house.... I just wanted to run to the tree and claim anything that had my name on it....<br /><br />It was the season of giving but I didn\'t want to give.... I only wanted to receive...And you know what, I notice that many people are like that. They are so wrapped up in the materialistic aspect of the holiday season that they don\'t <i>appreciate</i> the small things. <br /><br />You living to see another year....<br />Your health.......<br />Your family and their health...<br />The smile on others face just because you are there............<br /><br /><br />Yeah..... it is very nice to get gifts..But that isn\'t the only reason for the season........Take time to give..........<i><b>Volunteer</b></i> in your community. There are so many people who have no one this holiday season. There are some who are down on their luck and any little bit of help would be a blessing. <i><b>Interact</b></i> with your long lost family who you may come in contact with. <i><b>Be kind </b></i>to a stranger.....anything!!!!!<br /><br />You would be surprised how the smallest gesture could mean so much to someone else. But anyways, Happy Holidays everyone! And remember that <u><i>Sometimes the best gifts <b>can not</b> be bought</i></u>! :)<br /><br />-Monica Renata<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"http://www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg\" width=\"640\" /></a></div><br />','Happy Holidays','','publish','open','open','','happy-holidays','','','2014-08-09 21:19:58','2014-08-09 21:19:58','',0,'http://www.monicarenata.com/?p=123',0,'post','',0),(124,1,'2013-12-20 16:14:00','2013-12-20 16:14:00','<div style=\"text-align: center;\">A memory placed deep in my mind</div><div style=\"text-align: center;\">So deep that it can\'t be reached</div><div style=\"text-align: center;\">A memory that is embedded inside</div><div style=\"text-align: center;\">A memory of which my mouth won\'t speak</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">To reveal it would cause so much pain</div><div style=\"text-align: center;\">But for me it would cause release</div><div style=\"text-align: center;\">A memory that replays over and over in my mind</div><div style=\"text-align: center;\">A memory I hope no one seeks</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Sometimes opening up and being honest</div><div style=\"text-align: center;\">Is the hardest part....</div><div style=\"text-align: center;\">You have so much to tell someone</div><div style=\"text-align: center;\">But in that moment you are lost....</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">What are you to do when you want to speak</div><div style=\"text-align: center;\">But fear is preventing you from doing so?</div><div style=\"text-align: center;\">Why can\'t you stop thinking about this memory</div><div style=\"text-align: center;\">Which happened so long ago?</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">A memory placed deep in my mind</div><div style=\"text-align: center;\">So deep that it can\'t be reached</div><div style=\"text-align: center;\">I want to tell the truth this time</div><div style=\"text-align: center;\">But there is so much fear inside of me</div><div style=\"text-align: center;\">What\'s the point of saying something</div><div style=\"text-align: center;\">Or even bringing it up? </div><div style=\"text-align: center;\">For it is a memory in my head</div><div style=\"text-align: center;\">That I have lived enough</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But slowly it is taking over</div><div style=\"text-align: center;\">And I adjust my life accordingly</div><div style=\"text-align: center;\">For fear of revealing this memory</div><div style=\"text-align: center;\">Makes me unable to see</div><div style=\"text-align: center;\">See the true wonders in life</div><div style=\"text-align: center;\">See the true world around me</div><div style=\"text-align: center;\">But this memory will stay deep in my mind</div><div style=\"text-align: center;\">While it dictates my life to me</div><br /><div style=\"text-align: center;\"><i>\"Don\'t let one situation dictate how your entire life will be......\" -Monica Renata</i></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg\" width=\"213\" /></a></div><div style=\"text-align: center;\"><br /></div>','Memory Walls','','publish','open','open','','memory-walls','','','2014-08-09 21:20:00','2014-08-09 21:20:00','',0,'http://www.monicarenata.com/?p=124',0,'post','',0),(125,1,'2013-12-18 20:25:00','2013-12-18 20:25:00','From the ground it sprouted<br />Despite the lack of the sun<br />Strong and yet beautiful<br />The victory of life it had won<br /><br />Leaves occupy the branches<br />And soon comes fruit<br />This tree just keep on giving<br />But was only nurtured at its roots<br /><br />Soon others only reap their benefits<br />Of coming in contact with the tree<br />They pick each and every fruit<br />And then attack the leaves<br /><br />And how baron this tree looks<br />The beauty has now left<br />But soon it will heal itself up<br />And start to give again<br /><br />To give and not be appreciated<br />To have tears that others will never see<br />For the creation of life is a beautiful thing<br />That so many of us want to keep<br /><br />The products of the struggle<br />The tree will never see<br />For it will give to the takers<br />And remain the giving tree<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg\" width=\"276\" /></a></div><br /><br /><br /><br /><br /><div style=\"text-align: center;\"><i>\"Sometimes in life we only care about ourselves.... We constantly take from others but do not offer a hand to help anyone else in need. If hands are never extended to help others, then more individuals will not reach their hands out to others. In order to make sure kindness continues to exist in this world, you have to be willing to be kind yourself... Give a little bit... and in the end it will be so worth it.... \" -Monica Renata </i></div><br /><br /><br /><br />','The Giving Tree','','publish','open','open','','the-giving-tree','','','2014-08-09 21:20:02','2014-08-09 21:20:02','',0,'http://www.monicarenata.com/?p=125',0,'post','',0),(126,1,'2013-12-17 20:54:00','2013-12-17 20:54:00','I knew you couldn\'t take it anymore<br />And the blame was all on me <br />I knew that you were unwanted and unwelcome....<br />Therefore, I took everything into my hands<br />I made the decision to do it<br />To do what was wanted<br />In the midst of my tears I thought about it<br />I thought about all the tears that can be saved<br />I thought about all of the hardship that could be diverted<br />I mean.... I knew you would be able to feel the tension<br />So why hurt you?<br />Why let you even go through it all?<br /><br />As I sat in silence for two straight days<br />I contemplated over and over the different choices I could have made<br />I could have let you remain intact....but....that would be a problem<br />That would be something that others did not want..<br />So I made the hardest decision that I have ever made..<br />I decided to let you go...<br />I decided to go against how I truly felt<br />And I got rid of you<br />Each trickle of blood that trickled down my flesh when I ripped you from within stabbed my soul<br />A deep emotional hurt that I never knew existed<br />But I told myself... This.... will....pass<br />And you know what it didn\'t<br /><br />Instead of throwing you away forever<br />I decided to lock you away<br />I mean you were a part of me that I hope to never forget<br />But..I should for the sake of my sanity....<br /><br />To know that you grew from constant eruptions of love make you so special..<br />But to know that the removal of that love was the determining factor of your future presence sickens me <br /><br />I loved you<br />But others didn\'t<br />I cared about you<br />but others didn\'t<br />I really wanted to try to make things work......<br />But no one else wanted to..<br /><br />I just couldn\'t hurt you<br />I just couldn\'t do it...<br />You deserve so much more<br />I didn\'t want to see you emotionally crumble<br />But I wanted you...but others wanted so much more<br />So in that little box <br />You will always be<br />I have to take care of things first<br />Before you can start to beat<br /><br />But know that I care<br />And it was hard for me<br />But I have to protect my heart<br />So in this box you will always be<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg\" /></a></div><br /><br /><br /><br />','Bye Love','','publish','open','open','','bye-love','','','2014-08-09 21:20:03','2014-08-09 21:20:03','',0,'http://www.monicarenata.com/?p=126',0,'post','',0),(127,1,'2013-12-17 20:28:00','2013-12-17 20:28:00','Please be gentle my darling<br />Do not run away<br />For I care for you so very much<br />I just don\'t know what to say<br /><br />Please be gentle my darling<br />I don\'t want to make you frown<br />For I care about your happiness<br />I just don\'t know how....<br /><br />How to show you how I really feel<br />It\'s like I just freeze<br />I have so much love in my heart<br />So much love that will never leave<br />But when I open to speak to you<br />My words get all messed up<br />And then I become a mute to the world<br />My heart\'s emotions are trapped<br /><br />Please be gentle my darling<br />I care about you too<br />But sometimes the hardest thing to admit<br />Is my love for you <br /><br />','Gentle My Darling','','publish','open','open','','gentle-my-darling','','','2014-08-09 21:20:03','2014-08-09 21:20:03','',0,'http://www.monicarenata.com/?p=127',0,'post','',0),(128,1,'2013-12-17 20:20:00','2013-12-17 20:20:00','Awakening from slumber<br />At the sound of the alarm<br />Preparing for the day ahead<br />I know it will be long<br />I take a shower then I brush my teeth<br />And then put on my clothes<br />I sigh, then make a crazy face<br />I know today will be long<br /><br />Constant repetitive tasks<br />I complete at work each day<br />Disagreements amongst co-workers<br />Crazy drivers on the street<br />The world is such a crazy place<br />I wish to not go it alone<br />I complete my tasks and as the day ends<br />I yearn to be home<br /><br />The world is such a crazy place<br />I wish to not go it alone<br />To race back home and wait for you<br />Even though I hate to be alone<br />Just to see you walk through the door<br />brings a smile upon my face<br />I love waking up each morning<br />But I swear you are the best part of my day <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg\" width=\"307\" /></a></div><br /><br /><br />','Best Part of My Day','','publish','open','open','','best-part-of-my-day','','','2014-08-09 21:20:04','2014-08-09 21:20:04','',0,'http://www.monicarenata.com/?p=128',0,'post','',0),(129,1,'2013-12-17 19:42:00','2013-12-17 19:42:00','Progress...<br />We all want to make progress in life..<br />We want to move forward and accomplish the things that we have dreamed about....<br /><br />If you have a goal, you can accomplish it. All goals are alike. Whether they are big or small they all start with that <i><u><b>first step</b></u></i>. You have to be willing to take a leap of faith and go against your fears and take the first step in accomplishing your goal. That is the only way you can make progress. And continually making progress can deem a lifetime of results.<br /><br />-------------------------------------------------------------------------------------------------------------------<br /><br /><br /><div style=\"text-align: center;\">The Weight</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Skeleton is overwhelmed</div><div style=\"text-align: center;\">Body filled with fat</div><div style=\"text-align: center;\">Can\'t blame anyone</div><div style=\"text-align: center;\">For motivation that is lacked</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Food is plentiful in the land</div><div style=\"text-align: center;\">Yet you choose what you eat</div><div style=\"text-align: center;\">Sure fast food is available</div><div style=\"text-align: center;\">And veggies are not cheap</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Make a conscious effort</div><div style=\"text-align: center;\">try to increase your life</div><div style=\"text-align: center;\">Release all of your frustrations</div><div style=\"text-align: center;\">Get some exercise</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Those burgers and those milkshakes</div><div style=\"text-align: center;\">Won\'t completely go away</div><div style=\"text-align: center;\">So lay off of them for a couple of months</div><div style=\"text-align: center;\">Learn how to moderate</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Skeleton was overwhelmed</div><div style=\"text-align: center;\">Body filled with fat</div><div style=\"text-align: center;\">I didn\'t blame anyone </div><div style=\"text-align: center;\">For the motivation that I lacked</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Food is all around</div><div style=\"text-align: center;\">Yet I have to decide what I will eat</div><div style=\"text-align: center;\">I will try to eat some healthy meals</div><div style=\"text-align: center;\">Even though burgers are so cheap</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I have to make a conscious effort</div><div style=\"text-align: center;\">To continually increase my quality of life</div><div style=\"text-align: center;\">I blow off steam daily</div><div style=\"text-align: center;\">simply by getting some exercise</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Those burgers and those milkshakes</div><div style=\"text-align: center;\">Did not go away</div><div style=\"text-align: center;\">I laid off of them for a couple of months</div><div style=\"text-align: center;\">And carefully watched what I ate</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Progress didn\'t started immediately</div><div style=\"text-align: center;\">but it started with the choices I would make</div><div style=\"text-align: center;\">Sure I didn\'t see results quickly</div><div style=\"text-align: center;\">But after months the weight started to melt away</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Be persistent and you will reach you goal</div><div style=\"text-align: center;\">Be consistent you will keep it</div><div style=\"text-align: center;\">You can do anything that you want to do</div><div style=\"text-align: center;\">If in your heart you believe it</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><br />','The Weight','','publish','open','open','','the-weight','','','2014-08-09 21:20:04','2014-08-09 21:20:04','',0,'http://www.monicarenata.com/?p=129',0,'post','',0),(130,1,'2013-12-14 12:28:00','2013-12-14 12:28:00','The crowd is cheering on fiercely<br />Sweat is dripping down my neck<br />I am sitting in the corner<br />Knowing soon I have to go back<br /><br />They throw me a bottle of water<br />And also a small towel too<br />\"Are you ready kid?\"<br />They ask me<br />And to smile is all I can do<br /><br />My opponent is so ready<br />I can see the smirk on their face<br />They want to bring me down to the ground<br />My courage they want to break<br /><br />I am sitting in the corner<br />Knowing soon I have to go back<br />I finally come to my feet<br />I finally prepared for what comes next<br /><br />Their punches weight down on me<br />The only thing I\'m hitting is air<br />My coach is screaming loud for me<br />But I can\'t see anyone there<br /><br />The crowd is yelling for my demise<br />Strength I no longer have left<br />I take another hit<br />then fall to the ground<br />The fight in me has left<br /><br />\"Get up! Get up! Get up!\"<br />They say<br />Now the crowd is cheering profusely<br />So I think I have them on my side<br />And I find the strength to rise up smoothly<br /><br />But as I\'m finally up to my feet<br />I hear the cheers go away<br />They are now screaming for my opponent again<br />\"Finish him!\"<br />I heard someone say<br /><br />And in that moment I lost all hope<br />Cause it seemed like no one was for me<br />And the next punch that was delivered was like lighting<br />That struck me down like a tree<br /><br />And in that moment the cheers finally stopped<br />No one was cheering for me<br />I lay there on the cold hard ground<br />While someone counted to 3<br /><br />Why did I let my strength come from those I didn\'t know?<br />Why didn\'t I at least believe in myself whenever I first hit the floor?<br />The world can try to break you down<br />And there will be countless times you fall to the floor<br />Don\'t let life beat you up so bad<br />You really need to wake up and see<br />That you have the strength to do anything in life<br />So don\'t let life beat you up so bad<br />Unless you want to be TKO\'ed like me<br /><br /><br />\"No matter how hard life knocks you down you have to be strong enough to get back up. \" -Monica Renata<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg\" /></a></div><br /><br />','TKO','','publish','open','open','','tko','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=130',0,'post','',0),(131,1,'2013-12-13 20:33:00','2013-12-13 20:33:00','<br /><div style=\"margin-bottom: 0;\">ed·u·ca·tion</div><div><div><span><span>ˌejəˈkāSHən</span>/</span><span data-log-string=\"pronunciation-icon-click\" style=\"display: inline-block;\" title=\"Listen\"></span></div><div><div><i>noun</i></div><div data-mh=\"-1\"><span>noun: <b>education</b></span><span>; noun: <b>an education</b></span></div><ol><li><div><div><div style=\"float: left;\"><strong>1</strong>. </div><div style=\"margin-left: 20px;\"><div style=\"font-size: small;\"><div style=\"display: inline;\"><span>the process of receiving or giving systematic instruction, esp. at a school or university.</span></div><div>\"<span>a new system of public education</span>\"</div><div><table><tbody><tr><td style=\"padding-right: 3px;\"></td><td></td></tr></tbody></table></div></div><div style=\"margin-left: -25px;\"><ul><li data-mh=\"-1\"><div><div style=\"font-size: small;\"><div style=\"display: inline;\"><span>the theory and practice of teaching.</span></div><div>\"<span>colleges of education</span>\"</div></div></div></li><li data-mh=\"-1\"><div><div style=\"font-size: small;\"><div style=\"display: inline;\"><span>a body of knowledge acquired while being educated.</span></div><div><span>plural noun: <b>educations</b></span></div><div>\"<span>his education is encyclopedic and eclectic</span>\"</div><div><table><tbody><tr><td style=\"padding-right: 3px;\"></td><td></td></tr></tbody></table></div></div></div></li><li data-mh=\"-1\"><div><div style=\"font-size: small;\"><div style=\"display: inline;\"><span>information about or training in a particular field or subject.</span></div><div>\"<span>health education</span>\"</div></div></div></li></ul></div></div></div></div></li><li><div><div><div style=\"float: left;\"><strong>2</strong>. </div><div style=\"margin-left: 20px;\"><div style=\"font-size: small;\"><div style=\"display: inline;\"><span>an enlightening experience.</span></div><div>\"<span>a day with those kids was an education in patience and forbearance</span>\"</div></div></div></div></div></li></ol></div></div><br /><div style=\"text-align: center;\">----------------------------------------------------------</div><div style=\"text-align: center;\">\"An education can open many doors!\"</div><div style=\"text-align: center;\">\"You have to go to school and make good grades, then go to college and get a degree!\"</div><div style=\"text-align: center;\">\"Your education is important to your future!\"</div><div style=\"text-align: center;\">\"Your degree will show that you are educated!\"</div><br />All my life I have heard one or other statements. I have been taught at a young age that education will be the determining factor of my future success or my ultimate demise. I have been trained to recognize that without an education my capability to function in corporate America would be completely nonexistent. And if I cannot function in that world, I would end up being one of those people who live one penny away from financial ruin.......That\'s what they told me anyways.<br /><br />I remember times when I was in high school crying my eyes out because I just didn\'t understand how to work a math problem. The fear of failing a test was greater than my fear of death. I couldn\'t be a failure. I had to prove to others that I could be successful, and in order to be successful I had to obtain an education....<br /><br />Day and night I studied.................Countless hours of sleep were lost because I wanted things to be <b>perfect</b>. Every book that I owned for school purposes was in my backpack....It felt like I was carrying a boulder on my back, but this was the sacrifice I had to make in order to be educated, right? <br /><br />My whole life, <u>I thought being educated was defined by a piece of paper that you walk across a stage to obtain</u>. I worked my ass off! Dedicated so much time and also gave up so much of my social life just to obtain a piece of paper.....Just so I can be deemed \"<i><u>educated</u></i>\".......But was I really? <br /><br />I have learned nothing from classroom instructions..... It has been the experiences that have made me into the educated person that I am today. I learned by actions, not by words which were typed in a textbook that was dated back a few years back. I learned by working with others who were in a field in which I wanted to pursue. I learned by engaging in activities with them... I learned by talking to them..... I have been educated by the world.<br /><br />Too many times, we force children to go to colleges for the simple fact is that we define a college degree as being the means to obtain the status of \"educated\" but that is <b>WRONG</b>. There are other means to obtain a skill or an experience which will help you excel in life. Too many times we cut down young children and tell them such things as \"You are not college material\". Do you know what that means to them? That is the equivalent of telling them that they can never be an educated individual because they lack the ability to be a possible college graduate. Everyone wasn\'t meant to go to college, everyone wasn\'t meant to be a chef, everyone wasn\'t meant to be a construction worker, but <i>EVERYONE</i> has the capability of being educated despite their occupation.<br /><br />We need to change the way we explain education to our kids. There are so many who believe that education, by means of a college degree, is the only way to have a happy life. And that just isn\'t true.<br /><br />It is so much pressure on a young child who believes this....<br />Imagine a young child who wakes up and studies and then goes to bed and studies every single night because they are afraid to make a B on an exam.......<br />Imagine someone who misses out on school dances their senior year because they are feverishly trying to apply to ever single college that they think will accept them because they are afraid of not being excepted it into a good school..............<br />Image someone who takes their own life just because they failed a college class.......<br /><br />This is what happens when we don\'t tell people the truth about education........So.......... I guess what I am trying to say is....... Educate yourself........ let the world be your teacher! There are different ways of learning. College is one place, but not the only place.........<br /><br />Life is supposed to be an enlightening experience. Have you been enlightened today?<br /><br /><div style=\"text-align: center;\">---------------------------------------------------------</div><br /><div style=\"margin-bottom: 0px; text-align: left;\"><span style=\"background-color: white;\">en·light·en</span></div><div style=\"text-align: left;\"><span style=\"background-color: white;\"><span><span>enˈlītn</span>/</span><span data-log-string=\"pronunciation-icon-click\" style=\"display: inline-block;\" title=\"Listen\"></span></span></div><div style=\"text-align: left;\"><span style=\"background-color: white;\"><i>verb</i></span></div><div style=\"text-align: left;\"><span style=\"background-color: white;\">gerund or present participle: <b>enlightening</b></span></div><div style=\"float: left; text-align: left;\"><span style=\"background-color: white;\"><strong>1</strong>. </span></div><div style=\"display: inline; text-align: left;\"><span style=\"background-color: white;\">give (someone) greater knowledge and understanding about a subject or situation.</span></div><div style=\"text-align: left;\"><span style=\"background-color: white;\">\"<span>Christopher had not enlightened Frances as to their relationship</span>\"</span></div>','Education: Have you been Enlightened Today?','','publish','open','open','','education-have-you-been-enlightened-today','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=131',0,'post','',0),(132,1,'2013-12-13 14:54:00','2013-12-13 14:54:00','What is the difference between a truth and a lie?<br />Do you know?<br /><br />Many of us define the truth as a fact and a lie as a false statement but is that so? At times I am afraid to tell the truth so I withhold it, but does that make me a liar?<br /><br /><div style=\"margin-bottom: 0px;\"><span style=\"font-size: large;\"><b>truth</b></span></div><div><span><span>tro͞oTH</span>/</span><span data-log-string=\"pronunciation-icon-click\" style=\"display: inline-block;\" title=\"Listen\"></span></div><div><i>noun</i></div><div data-mh=\"-1\"><span>noun: <b>truth</b></span></div><div style=\"float: left;\"><strong>1</strong>. </div><div style=\"display: inline;\"><span>the quality or state of being true.</span></div><div>\"<span>he had to accept the truth of her accusation</span>\"</div><br /><br />The definition of the word truth.........It is so hard to decode this because at the end of the day were you being true? Am I being true when I keep something to myself because I do not want to hurt someone or bother them about a certain topic?<br /><br />I keep the truth to myself yet I do not lie about it or make up some extravagant story to cover it up. I just keep it between me, myself, and I..... I mean many of us do this. We hold stuff in, but does that make us a liar?<br /><br /><div style=\"margin-bottom: 0px;\"><span style=\"font-size: large;\"><b>li·ar</b></span></div><div><span><span>ˈlīər</span>/</span><span data-log-string=\"pronunciation-icon-click\" style=\"display: inline-block;\" title=\"Listen\"></span></div><div><i>noun</i></div><div data-mh=\"-1\"><span>noun: <b>liar</b></span><span>; plural noun: <b>liars</b></span></div><div style=\"float: left;\"><strong>1</strong>. </div><div style=\"display: inline;\"><span>a person who tells lies.</span></div><br /><br />A liar is a person who tells lies......but I am not telling anything. I am remaining silent in hopes that I am never questioned about the topic. For if I am questioned, then I will reveal the truth....but I\'m not questioned... no one even asks me..... so I just hold it in. <br /><br /><br /><br /><div style=\"text-align: center;\">-----------------------</div><br />Holding stuff in does not make me a liar though. For the longest time, I thought it did. I felt that each time I was holding in some of my emotions I was lying to the world. But the thing is, you are not lying to the world if you aren\'t revealing or speaking a thing. If you think about it, the only person you are truly lying to is yourself. When we keep certain things inside we really aren\'t comfortable with our true selves. We think we are strong, but are we really? I can recall many conversations when people wanted to talk about my viewpoints on family and I just decided not to comment. I didn\'t lie to them, but I just wasn\'t comfortable with my views. I was afraid of being criticized and ridiculed, therefore, I saved myself the social shame that I thought I would have encountered. I repressed all of my opinions and didn\'t reveal any. It\'s crazy because in moments like that, you feel the words at the back of your throat but you are too afraid to speak. And the pressure of holding in the truth is building up inside of you like water in a tank and you are about to burst but you are just afraid to say how you really feel.... You keep your truth inside....after all....it isn\'t hurting anyone....right?<br /><br />Holding in the truth isn\'t a bad thing.... It doesn\'t make you a liar either....but sometimes your truth can help someone who is in the same situation as you....<br /><br />There are women in the world who pretend like their home life is going great but each day they are verbally abused by their spouse but they keep in this truth and respond with \"Everything is fine\" when they are questioned about their relationships. <br /><br />There are little kids who are being bullied at school but they never tell their families because they don\'t want their dad to think they are \"soft\" because boys are supposed to be strong<br /><br />There are people going through storms that seem to never end in life.........and they don\'t say a word......but that doesn\'t make them a liar.....<br /><br />Sometimes people are more understanding than you think..... and sometimes when you reveal your truths you can actually help someone else out. What we keep in the most is our flaws, we don\'t reveal our downfalls to others....but those downfalls can help others.<br /><br />The image you give from the outside can not reflect all that you have been through. Sure someone seems successful now, but just by looking at them you can never truly tell what they have been through. That strong man at the gym may have been bullied so much as a kid to the point where it brought tears to his eyes everyday, but a kid will look at him and think that nothing like that could have ever happened in his lifetime. And at the end of the day, that guy may not want to reveal that either....but if he did he could help that kid so much.... .Your truths may be painful for yuo to acknowledge or openly speak about at times....but they could help someone else.....<br /><br />Just a thought though....<br /><br /><i>Signing Off</i><br />Monica Renata','Holding in Truths','','publish','open','open','','holding-in-truths','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=132',0,'post','',0),(133,1,'2013-12-12 19:34:00','2013-12-12 19:34:00','<br />A long hug on a winter day<br />A stranger asking \"How are you?\"<br />A gentle tug on my hair<br />A bottle of sweet perfume<br /><br />My favorite song on the radio<br />A karaoke session with friends<br />Dancing in my PJs<br />Reading about the latest trends<br /><br />Things that make me smile<br />Things that make me beam with joy<br />Like finding pictures from years ago<br />Or finding my favorite toy<br /><br />Reading old messages<br />Smiling with my friends<br />Writing about all I have seen <br />I think it is life that makes me happy<br />and I will smile until the end','Things that Make Me Smile','','publish','open','open','','things-that-make-me-smile','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=133',0,'post','',0),(134,1,'2013-12-12 15:18:00','2013-12-12 15:18:00','The complete sound of nothingness<br />The nothingness your lips speak<br />An invisible cloud in the sky<br />That drenches me with rain as I sleep<br /><br />To believe<br />Or not to<br />I question this everyday<br />Until the sounds of your nothingness<br />Quickly fades away<br /><br />Confectioners sugar floating around<br />Your lies... they seem so sweet<br />Floating around in this room<br />Allowing me not to see<br /><br />Oh indeed how sweet it is<br />To think that I believe your lies<br />You candy coat all the truths<br />And believe that my sweet tooth won\'t make me question why<br /><br />The complete sound of nothingness<br />There is no truth to what you speak<br />I know this very well<br />Some nights I cry myself to sleep<br />Oh how sweet it is to tell a lie<br />When you think I won\'t know the truth<br />Your candy coated deceit<br />Is only sweet to you<br /><br /><br /><i>\"Don\'t sugarcoat the truth........It isn\'t as sweet as you may think.\" -Monica Renata</i><br /><br />','Candy Coated','','publish','open','open','','candy-coated','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=134',0,'post','',0),(135,1,'2013-12-12 14:05:00','2013-12-12 14:05:00','<br /><br /><div style=\"text-align: left;\"><i><b><span style=\"font-size: large;\">Hope</span></b></i> - </div><div style=\"text-align: left;\"><i>noun</i></div><div data-mh=\"-1\" style=\"text-align: left;\"><span>noun: <b>hope</b></span><span>; plural noun: <b>hopes</b></span></div><div style=\"float: left; text-align: left;\"><strong>1</strong>. </div><div style=\"display: inline; text-align: left;\"><span>a feeling of expectation and desire for a certain thing to happen.</span></div><div style=\"text-align: left;\">\"<span>he looked through her belongings in the hope of coming across some information</span>\"</div><br /><br /><br /><br />Hope.........Don\'t give up hope..........<br />We always seem to tell this to others, but what does this really mean? After all, you can\'t tell someone not to give up hope, when you know not what they went through in order to feel that all that <i>hope</i> that they once had is now gone...I had a desire for something to happen, I dreamt about it day and night, for days, months, even years... and here I am...still hoping......but why?<br /><br />Each ounce of hope is quickly diminished by disappointments, yet I try to keep it alive but it is hard. It is so hard to see things that you want so desperately continually fall apart in your face. Yes, you wanted this so much...you may have felt as if you deserved it... you <i><b>hoped</b></i> for it....but in the end you never got it. <br /><br />It\'s crazy how you can have a dream........work towards your dream.....and then watch someone murder that dream....and yet, they are usually the one who says \"Don\'t give up hope!\"....You want me to not give up but every single time that I am working so hard to achieve what I so desire you constantly tear me down with your negativity, you disappoint me with your actions, and then I become a shell of who I truly am....and I feel like.... there is no hope....it won\'t happen for me... it just won\'t. <br /><br />When all is lost... Should you give up hope?............<br /><br /><br />The answer is <b>NO</b>. We all have desires in life! We all want certain things to happen, and truth be told <u>THEY CAN HAPPEN</u>. Sometimes we let the negativity of others hold us back. But why? Who are they to tell us that we <b>can not</b> do something? Who are they to tell us that we are <b>not good enough</b>? Who are they to tell us that we want <b>too much</b>? People always want to talk, but why let their talking determine your decisions in life? If you want something GO GET IT! If you decide to give up on it make sure that this was a choice that you <b>solely</b> made! Give up when you wanted to give up, not when something told you that you <b>can\'t</b> do it. <br /><br />This morning, I woke up feeling defeated. I felt like everything I ever wanted would just slip through my fingers as it has in the past. And then when I felt that way I was slammed down by more disappointment... and in that instant I put my head down and I slowly said to myself <i>\"I give up...What\'s the point of hoping for something that will never be?\"</i>..... I sat for about ten minutes and in that moment of solidarity I felt as if it was me against the world... I felt like there was no hope in hoping because ..... I mean... what\'s the point???..........<br /><br />What is the freakin point!!!???<br /><br />Well.... the point of it all is.... I want it......And if I truly want something I should not give up on it! Mama didn\'t raise a quitter!!!! I know that I am rambling on and stuff....but I just want you to know that sure sometimes it seems like all hope is lost...but at the end of the day hope is only lost if you allow it to be lost.<i><b> </b></i><u><i><b>Never give up on something you truly want</b></i>!</u> You will live to regret it. And when I am 85 sitting on my front porch I do not want to regret a thing about my life!<br /><br />So keep hoping!!!!!! I know I will! :)<br /><br />Have a great day!!!!','Keep Hoping','','publish','open','open','','keep-hoping','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=135',0,'post','',0),(136,1,'2013-12-11 19:12:00','2013-12-11 19:12:00','Beautiful summer days<br />That delightful day in June<br />When two friends met each other<br />And in their hearts they both made more room<br /><br />In July as the heat climbed<br />So did their emotions inside<br />It was hard to hide the emotions of the heart<br />It was hard to even deny<br /><br />Weeks past by<br />Nights then days<br />And in August we both sit<br />Wondering what else will happen after we had our first kiss<br /><br />September things intensified<br />We no longer did what was right<br />Emotions got the best of me<br />And in October I was out of sight<br /><br />The coldness of the seasons as November moved in soon<br />My heart ended up hurting less<br />It was frozen from the cold<br />But as the time continued on<br />It still tried to thaw<br />But that cold December wind<br />Won\'t let my heart move forward','December is So Cold','','publish','open','open','','december-is-so-cold','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',0,'http://www.monicarenata.com/?p=136',0,'post','',0),(137,1,'2013-12-11 14:32:00','2013-12-11 14:32:00','I have a cat named Speckle<br />She has a lot of spots<br />She rolls around on her belly<br />She really eats a lot<br /><br />I have a cat named Speckle<br />She claws everything she sees<br />My mom wants to get rid of her<br />But I want her to never leave<br /><br />I have a cat named Speckle<br />She does so many things<br />She sits around the house<br />For she knows she is the queen<br /><br />Too lazy to catch the mouse in the house<br />She just eats and sleeps a lot<br />I have a cat named Speckle<br />That I adore so much! <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"233\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg\" width=\"320\" /></a></div><br /><br /><br />','Speckle','','publish','open','open','','speckle','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=137',0,'post','',0),(138,1,'2013-12-11 13:57:00','2013-12-11 13:57:00','I wish to be extraordinary<br />Like no one was before<br />I wish to fly higher than an eagle<br />I wish that in life I will soar<br /><br />I wish to be unique<br />Like a rainbow on an uncommon day<br />In the mist of a fierce hurricane<br />The fruit on the tree that shall stay<br /><br />I can only be me<br />And that\'s what I plan to do<br />I can\'t be anyone else in life<br />I can\'t even be you<br />I have to stand firm in my beliefs<br />And not drift like a feather on the win<br />I wish to be extraordinary<br />And with me that is where I shall begin<br /><br /><br /><div style=\"text-align: center;\"><i>\"If you wish to be something great start working on being true to yourself!!\" -Monica Renata</i></div>','Extraordinary','','publish','open','open','','extraordinary','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=138',0,'post','',0),(139,1,'2013-12-10 19:22:00','2013-12-10 19:22:00','And at that very moment<br />I felt completely out of breath<br />My heart was racing fiercely<br />And my shirt was drenched with sweat<br />I had a thirst that was so profound<br />Yet not even a drop of water to drink<br />A raging inferno burned inside<br />My flesh grew redder<br />And then balance left my feet<br /><br />In my mind I can feel myself twirling<br />In an endless funnel cloud<br />My eyes are red and burning<br />My teeth firmly biting down<br />I have so much to say<br />Yet I cannot even speak<br />I\'m bursting from the insides<br />With anger from your deceit<br /><br />Your words have really touched me<br />And this time they touched me to my soul<br />I\'m quivering in the corner....<br />I can\'t do this any more......<br />I want to stay and talk things out<br />But my emotions are taking over me<br />I have to walk away from this<br />I have to start taking care of me<br /><br />Tears are building up<br />Water sprouts that I refuse to turn on<br />I can\'t let this get the best of me<br />I have to just move on<br /><br />Burning with so much emotion<br />Like a fire of the utmost degree <br />The unbreakable has finally broken<br /><br />I let this get the best of me...<br /><br />The fake smile is there no more<br />I\'m halfway out the door<br />And inside my head I keep telling myself <br />I just can\'t do this anymore <br /><br />','No More','','publish','open','open','','no-more','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=139',0,'post','',0),(140,1,'2014-08-09 21:20:07','0000-00-00 00:00:00','I use to be single<br />I use to be all alone<br />It wasn\'t fun being lonely<br />When I sat inside my home<br /><br />So one day I decided<br />I decided to see<br />What this thing called \"love\"<br />Can truly be<br /><br /><br />','','','draft','open','open','','','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=140',0,'post','',0),(141,1,'2013-12-06 13:25:00','2013-12-06 13:25:00','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:DoNotShowComments/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">The Awkward Butterfly</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" width=\"210\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4430912\">https://www.createspace.com/4430912</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492343781\">http://amzn.com/1492343781</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00EP5A484\">http://amzn.com/B00EP5A484</a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Keyword: Love</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" width=\"208\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4442730\">https://www.createspace.com/4442730</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492724211\">http://amzn.com/1492724211</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00F7KX2LC\">http://amzn.com/B00F7KX2LC</a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><h2 style=\"text-align: center;\"><u><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Keyword: Inner Strength</span></i></u></h2><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\" width=\"210\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">CreateSpace: <a href=\"https://www.createspace.com/4459697\">https://www.createspace.com/4459697</a></div><div style=\"text-align: center;\">Amazon: <a href=\"http://amzn.com/1492834149\">http://amzn.com/1492834149</a></div><div style=\"text-align: center;\">Amazon Kindle: <a href=\"http://amzn.com/B00FI0PCT6\">http://amzn.com/B00FI0PCT6</a></div>','My Works!!!','','publish','open','open','','my-works','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=141',0,'post','',0),(142,1,'2013-12-05 02:53:00','2013-12-05 02:53:00','The Awkward Butterfly by Monica Renata http://www.amazon.com/dp/1492343781/ref=cm_sw_r_udp_awd_TO-Nsb10ASW7X<div style=\"clear: both; text-align: center;\"> <a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png\" style=\"margin-left: 1em; margin-right: 1em;\"> <img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40-168x300.png\" /> </a> </div>','Please check out my book','','publish','open','open','','please-check-out-my-book','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',0,'http://www.monicarenata.com/?p=142',0,'post','',0),(143,1,'2013-12-04 16:14:00','2013-12-04 16:14:00','Bills, Bills, Bills!<br />I pay them every day.....<br />And as soon as I get my next check<br />There are even more bills I have to pay!!!<br /><br />It seems like everything costs these days<br />Water<br />Air<br />And the lights<br />I don\'t think I will ever get a break<br />This just isn\'t right!!<br /><br />For many years I thought this would be different<br />I couldn\'t wait to be<br />Be an adult for once in my life<br />Do what my parents never allowed me<br />But man, I didn\'t expect this!!<br />It\'s something new everyday!!<br /><br />Today I have to buy tires for my car<br />And also get an oil change<br /><br />The fancy clothes I always wanted<br />Cost so much in the store<br />I wish mommy and daddy were here<br />I\'m kinda feeling poor<br /><br />Everything I want<br />Are now my actual needs<br />Because things cost so much in life<br />That I no longer want for needless things<br /><br />Bills, Bills, Bills....<br />That\'s all I seem to pay...<br />I guess being an adult<br />Isn\'t always great!<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg\" width=\"320\" /></a></div><br /><br />','Growing Up','','publish','open','open','','growing-up','','','2014-08-09 21:20:08','2014-08-09 21:20:08','',0,'http://www.monicarenata.com/?p=143',0,'post','',0),(144,1,'2013-12-04 15:39:00','2013-12-04 15:39:00','<div style=\"text-align: center;\">I\'m Officially Official!</div><div style=\"text-align: center;\">Can\'t you tell by the look of my shoes? </div><div style=\"text-align: center;\">Or how my stance is firm</div><div style=\"text-align: center;\">Or how I do what I choose? </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I\'m officially official!</div><div style=\"text-align: center;\">You can tell by my crease</div><div style=\"text-align: center;\">That is ironed in my pant leg</div><div style=\"text-align: center;\">That\'s confidence that does not speak!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I\'m officially official</div><div style=\"text-align: center;\">I always take care of mines</div><div style=\"text-align: center;\">Money is a priority</div><div style=\"text-align: center;\">My business has to thrive</div><div style=\"text-align: center;\">I worked hard for all of this</div><div style=\"text-align: center;\">And so many doubted me</div><div style=\"text-align: center;\">But I\'m officially official today</div><div style=\"text-align: center;\">I\'m the businessman I always wanted to be! </div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"237\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Officially Official','','publish','open','open','','officially-official','','','2014-08-09 21:20:12','2014-08-09 21:20:12','',0,'http://www.monicarenata.com/?p=144',0,'post','',0),(145,1,'2013-12-03 20:58:00','2013-12-03 20:58:00','<div style=\"text-align: center;\">My heart started pounding fiercely </div><div style=\"text-align: center;\">And then you danced on my cheek</div><div style=\"text-align: center;\">Accompanied by your friends</div><div style=\"text-align: center;\">You then formed a stream</div><div style=\"text-align: center;\">And how I tried to capture you all</div><div style=\"text-align: center;\">Within the palms of my hands</div><div style=\"text-align: center;\">But instead you seeped right through</div><div style=\"text-align: center;\">And made a stain on my pants</div><div style=\"text-align: center;\">A part of me is now missing</div><div style=\"text-align: center;\">A part that few even know</div><div style=\"text-align: center;\">For I have finally shed those tears</div><div style=\"text-align: center;\">That I held in so long</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Dancing Teardrops','','publish','open','open','','dancing-teardrops','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=145',0,'post','',0),(146,1,'2013-12-03 20:37:00','2013-12-03 20:37:00','<div style=\"text-align: center;\">I stand on the nose of the lion</div><div style=\"text-align: center;\">Who stretches his mouth out to roar</div><div style=\"text-align: center;\">And as I stand here confidently</div><div style=\"text-align: center;\">I honestly fear no more</div><div style=\"text-align: center;\">For what is the use of being afraid</div><div style=\"text-align: center;\">When my fear is what surrounds me?</div><div style=\"text-align: center;\">For I shall stare into the eyes of this culprit</div><div style=\"text-align: center;\">While his belly waits for him to eat</div><br /><br />\"Sometimes there is no use in being afraid...Look fear in the face and defy it!!!.\" -Monica Renata','The Lion\'s Nose','','publish','open','open','','the-lions-nose','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=146',0,'post','',0),(147,1,'2013-12-03 20:14:00','2013-12-03 20:14:00','I was young<br />What was I supposed to do?<br />I was learning about math<br />And simply tying my shoes<br />When out of no where<br />I\'m approached by a group of three<br />And I said hello<br />But then one punched me<br />And in that instant, I was hurt and afraid<br />And my mind was still in a constant daze <br />But what am I to do?<br />So on the ground is where I stayed<br />And then they just walked away<br /><br />They promised they would come the next day<br />And that promise they kept the very next day <br /><br />What was I supposed to do?<br />I was just so dumb and still young too<br />I let them approach me again and the damage was done<br />I knew to brace myself for another punch <br />However, this time they decided to speak<br />And each word they spoke<br />Really cut me deep<br /><br />\"You are so ugly!\"<br />\"You are nothing at all!\"<br />\"Why do you exist!?\"<br />The insults went on<br /><br />And emotionally broken<br />I was scared to speak<br />But what am I to do?<br />I need to say something<br />But I\'m just a geek<br />So in that place is where I stayed<br />And then they just walked away<br />and I knew they would come back another day....<br />Because they always come back the very next day.......... <br /><br />Each day I come home<br />I just try to smile<br />I can\'t let you know<br />Everything that goes down<br />I get on the Internet<br />and all I see<br />Are pictures and statuses written about me<br />I can\'t escape this torment!<br />I can\'t have my life!<br />And then I wonder if this is my punishment for all that I didn\'t do right....<br />I\'m bullied by my peers<br />They won\'t let me be<br />Be anyone at all..<br />I\'m scared to be me....<br /><br />Nothing I do can ever be right<br />Each day I am preparing for another fight<br />I can\'t shed a tear because one tear will equal more<br />I can\'t wait til the weekend!<br />I can\'t take any more! <br /><br />What was I supposed to do?<br />I was walking out of class and then I heard BOOM!<br />And on the floor I was down on my knees<br />Yes, they tripped me, but I pretended I tripped on my own feet<br />My current life is my personal hell<br />And soon in the background I hear the bell<br />I can\'t wait to spend my weekend at home!<br />Where no one can taunt me because I\'m all alone....<br /><br />What was I supposed to do?<br />The bullying continued even after I left school<br />They passed pictures around<br />And called me names<br />Social media really drives me insane<br />I can\'t escape this<br />What am I supposed to do?<br />I can\'t tell you what is going on in and out of school<br />It\'s just too much!<br />They won\'t let me be!<br />I can\'t be who I am!<br />They won\'t accept me for me!!<br />Maybe this is my punishment<br />For all the wrongs in my life<br />For bothering dad....<br />For messing up my new bike... <br />Maybe I wasn\'t meant to be happy<br />Maybe I\'m not supposed to be in this life<br />I just don\'t understand why?<br /><br />I\'m so sorry Mom....<br />For what I\'m about to do.....<br />But what was I supposed to do??....................<br /><br /><br />For more information about Bullying please check out the following link: <a href=\"http://www.bullyingstatistics.org/content/bullying-and-suicide.html\" target=\"_blank\">Bullying Statistics </a><br /><br />','What was I supposed to do?','','publish','open','open','','what-was-i-supposed-to-do','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=147',0,'post','',0),(148,1,'2013-12-03 19:57:00','2013-12-03 19:57:00','<div style=\"text-align: center;\">Please do not cry for me</div><div style=\"text-align: center;\">For I am still there even though you can\'t see</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The tears your eyes try to release</div><div style=\"text-align: center;\">So filled with the agony of the loss of me </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I see it all</div><div style=\"text-align: center;\">But this is meant to be</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I have lived my life</div><div style=\"text-align: center;\">So let me sleep</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But forever let me be a memory in your head</div><div style=\"text-align: center;\">For alive I will be</div><div style=\"text-align: center;\">Even though my body is dead</div><br />','Don\'t Cry for Me','','publish','open','open','','dont-cry-for-me','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=148',0,'post','',0),(149,1,'2014-08-09 21:20:13','0000-00-00 00:00:00','It has been 25 days since you went away<br />But inside my heart you shall always stay<br />Just like the memories of my youth<br />I\'m reminded of you and all that you do<br /><br />It\'s been 25 days since the first day<br />That you decided to walk away<br />You walked right out of the front door<br />And said that you didn\'t love me no more<br /><br />It\'s been 24 days since I thought you would call<br />I wanted by the phone<br />And it didn\'t ring at all<br />23 days since I waited again<br />Then I wanted to cry<br />But I didn\'t do that then','25 Days of Missing You','','draft','open','open','','','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=149',0,'post','',0),(150,1,'2013-12-02 13:17:00','2013-12-02 13:17:00','<div style=\"text-align: center;\">The first snow fell on a December day</div><div style=\"text-align: center;\">Right on a tree branch where it decided to stay</div><div style=\"text-align: center;\">Then soon snow fell more and more</div><div style=\"text-align: center;\">The branch snapped</div><div style=\"text-align: center;\">And the snow then fell to the floor</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The icy breeze I feel all around</div><div style=\"text-align: center;\">The numbness in my hands</div><div style=\"text-align: center;\">My rigid smile</div><div style=\"text-align: center;\">Lovely in so many ways</div><div style=\"text-align: center;\">This beautiful December day</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg\" width=\"240\" /></a></div><div style=\"text-align: center;\"><br /></div><br /><br /><br /><br />','December','','publish','open','open','','december','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=150',0,'post','',0),(151,1,'2013-11-27 16:02:00','2013-11-27 16:02:00','In life we would like to have many things<br />The fancy cars<br />The diamond rings<br />We want want want<br />And then want more<br />We get so much stuff<br />That our house can\'t fit any more<br /><br />But in the end<br />Do you have a masterpiece?<br />Did you put together what you truly wanted<br />piece by piece?<br />You probably have a lot<br />But it still isn\'t right<br />And yet you think of what you want<br />Each and every night<br /><br />In life we want many things<br />Such materialistic people<br />We sometimes be<br />We want, want, want<br />But forget what we need<br />We forget about kindness<br />And good deeds<br />We don\'t appreciate<br />That we already have what we need<br /><br />So stop....<br />Think about the many things you have.. <br />Be thankful for many things<br />Stop worrying about the minor things<br />For the true wonders in life can\'t be bought with cash<br /><br />Be thankful for the air you currently breathe<br />For today someone didn\'t wake this morning you see<br />Be thankful for twinkles in your children\'s eyes<br />Be thankful that today those eyes will not cry<br />Be thankful for being the shoes on your feet<br />They might not be the ones you wanted<br />But they are yours to keep<br />Be thankful for the clothes on your back<br />Because sometimes clothes are what others lack<br />Be thankful<br />Be thankful<br />Be thankful indeed<br />For you may be something others wish they could be<br />Be thankful for all the good in your life<br />Be thankful that today you\'re alive<br /><br /><br />In life we would like to have many things<br />The fancy cars<br />The diamond rings<br />We want want want<br />And then want more<br />We get so much stuff<br />That our house can\'t fit any more<br />But our houses are already filled...but we can\'t see<br />Cause we can\'t see what we truly needed<br />Be thankful that your house is filled with love<br />Be thankful that today is a day you are alive to see...<br />Be thankful <br /><br />','Be Thankful','','publish','open','open','','be-thankful','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',0,'http://www.monicarenata.com/?p=151',0,'post','',0),(152,1,'2013-11-27 15:38:00','2013-11-27 15:38:00','Can you fill my cup with coffee?<br />Such a warm and delicious brew<br />Intoxicated by the aroma<br />And so fulfilling too<br /><br />Can you fill my cup with coffee?<br />I want my cup to be filled to the rim<br />I want the heat to touch my nose<br />My soul it shall soothe from within<br /><br />Filling me up<br />Filling me up<br />With happiness in my life<br />Can you fill my cup with coffee?<br />For I am happy when you are by my side<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg\" width=\"320\" /></a></div><br /><br /><br />','Fill my cup with Coffee','','publish','open','open','','fill-my-cup-with-coffee','','','2014-08-09 21:20:14','2014-08-09 21:20:14','',0,'http://www.monicarenata.com/?p=152',0,'post','',0),(153,1,'2013-11-26 19:17:00','2013-11-26 19:17:00','So much on my plate right now<br />And I don\'t know what to do!!!<br />And every time I turn around<br />They are giving me more food!!<br /><br />I\'m hungry but I can not eat<br />Instead I want to scream right now<br />I\'m standing in a traffic filled street<br />I\'m about to have a breakdown<br /><br />Stresses of life have been piling up<br />I swear that they touch the sky!!<br />And it seems like the only solution<br />Would be to curl up and die<br /><br />I\'m overwhelmed by so many situations<br />I have so much to say but I can\'t speak<br />I feel like I\'m standing in the middle<br />Of thousands of school kids at P.E.<br /><br />I want to talk to someone<br />But that someone isn\'t here<br />And quite frankly I honestly believe<br />That they wouldn\'t want to hear it<br /><br />I pulling out my hair<br />Strand by Strand<br />And I watch each strand hit the ground<br />My life use to be up, Up, UP<br />But now it\'s looking down <br /><br />Swirling endlessly<br />Loop by Loop<br />Going down, Down, DOWN<br />I can\'t even hold on to anything to avoid falling<br />My face is a constant frown<br />And I\'m afraid to voice the words<br />That I am so scared to speak <br />But the stresses of life have taken their toll<br />And have finally gotten to me<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"258\" src=\"http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi\" width=\"320\" /></a></div><br />','Breakdown','','publish','open','open','','breakdown','','','2014-08-09 21:20:15','2014-08-09 21:20:15','',0,'http://www.monicarenata.com/?p=153',0,'post','',0),(154,1,'2013-11-26 19:03:00','2013-11-26 19:03:00','Decisions....<br />We all make them...whether they are right or wrong it is inevitably our choice.<br />You decide what will happen in your life!<br />You decide where you will go!<br /><br />Sometimes, we think the world is against us. And we also believe that everything that has happened to us is \"not our fault\" but in actuality if you had the ability to decide then and there if you would go through with something then ....the consequences which you face are your fault. It\'s all on you... You made this bed... so there you shall lie.<br /><br />Nobody\'s perfect. We all make bad choices at times. Some of those bad choices end up haunting us each and every day. It is so great a burden on the mind that you are constantly in a battle with yourself....but hey, you did it to yourself, right?<br /><br /><br />','Decisions... Just Thoughts','','publish','open','open','','decisions-just-thoughts','','','2014-08-09 21:20:15','2014-08-09 21:20:15','',0,'http://www.monicarenata.com/?p=154',0,'post','',0),(155,1,'2013-11-26 14:08:00','2013-11-26 14:08:00','Trapped on an island<br />Yet somewhat close to land<br />I hold my breathe tightly<br />For I wish to no longer be there<br />I can see land<br />But it is not close enough to reach<br />I am on this island<br />In the middle of the sea<br /><br />This has really got me down<br />I\'m feeling kind of alone<br />I start to chop the trees around<br />For this place is no longer home<br />And I want to reach that land ahead<br />That land that I can see<br />But even though it is close<br />It is not close enough to reach<br /><br />In my sorrows I feel overwhelmed<br />At times I cannot sleep<br />I start to put these logs together<br />And throw them in the sea<br />And the land that seemed so far away<br />Gets closer each time<br />I want to leave this island<br />For this is my time to shine<br /><br />As the logs start collecting<br />They finally create a bridge<br />And I am marveled by my accomplish<br />I wonder if I should walk ahead<br />Leave this island that serves no purpose to me<br />Cross this ever changing sea<br />I have to reach this bit of land<br />That use to be hard to reach<br /><br />I\'m over all of this negativity<br />I am over this \"woe is me\"<br />I have to keep pushing on<br />I have to be all I want to be<br />I can\'t let the negatives hold me back<br />I have to keep pushing ahead<br />I have to build a bridge and get over it<br />For hard times were not meant to last<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"263\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg\" width=\"320\" /></a></div><br /><br /><br />','Get Over It','','publish','open','open','','get-over-it','','','2014-08-09 21:20:16','2014-08-09 21:20:16','',0,'http://www.monicarenata.com/?p=155',0,'post','',0),(156,1,'2013-11-25 19:28:00','2013-11-25 19:28:00','<div style=\"text-align: center;\">Strung along the empty room</div><div style=\"text-align: center;\">Falling from the sky</div><div style=\"text-align: center;\">A piece of a love I thought I knew</div><div style=\"text-align: center;\">A love that floated so high</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Up higher than the mountain tops</div><div style=\"text-align: center;\">But love so deep as the sea</div><div style=\"text-align: center;\">Today I drop my confetti hearts</div><div style=\"text-align: center;\">For everyone to see</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Unparallelled in pureness</div><div style=\"text-align: center;\">It was once a whole that felt</div><div style=\"text-align: center;\">Abandoned by the others</div><div style=\"text-align: center;\">And so like paper, it did tear</div><div style=\"text-align: center;\">And into tiny little pieces</div><div style=\"text-align: center;\">It so did come to be</div><div style=\"text-align: center;\">Tiny confetti hearts</div><div style=\"text-align: center;\">Which use to be a part of me</div><br /><br /><div style=\"text-align: center;\"><i>\"When you make someone your everything you give them the ability to take away everything...So be careful who you give your heart to because if you give it completely you are giving that person the ability to break it into tiny pieces.....\" -Monica Renata</i></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"192\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Confetti Hearts','','publish','open','open','','confetti-hearts','','','2014-08-09 21:20:16','2014-08-09 21:20:16','',0,'http://www.monicarenata.com/?p=156',0,'post','',0),(417,1,'2014-08-09 21:20:18','2014-08-09 21:20:18','','image-20cemetery-20in-20winter','','inherit','open','open','','image-20cemetery-20in-20winter','','','2014-08-09 21:20:18','2014-08-09 21:20:18','',157,'http://www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg',0,'attachment','image/jpeg',0),(157,1,'2013-11-25 14:43:00','2013-11-25 14:43:00','On the cold steps I said goodbye<br />As the wind blew through my hair<br />And I felt my tears freeze up<br />Because of the winter air<br />And in that moment<br />I felt my heart sink<br />Sink to the deepest low it could go<br />And I knew I wouldn\'t see you again<br />Even though I wanted to see you so<br /><br />As my feet finally moved forward<br />I tried hard not to cry<br />And I remember looking into the sky<br />And screaming \"Why God!\" in my mind<br />My hands started getting colder<br />As I walked closer to the street<br />I knew this would be my last time following you<br />This moment is so bittersweet<br /><br />I walk and walk and walk<br />And my feet begin to get numb<br />Just like how I\'m feeling emotionally<br />I can\'t be warmed by the morning sun<br />And I look at that nicely dug patch<br />And I can\'t even speak<br />I never imaged that you would leave<br />Or ever be separated from me <br /><br />On this cold winter day I said goodbye<br />As the wind blew through my hair<br />I tried hard not to cry<br />I don\'t want to believe you are in there<br />I never thought that this would be a day I would ever see<br />The day you are laying inside your coffin<br />Resting in eternal sleep<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"212\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg\" width=\"320\" /></a></div><br />','The Winter March','','publish','open','open','','the-winter-march','','','2014-08-09 21:20:18','2014-08-09 21:20:18','',0,'http://www.monicarenata.com/?p=157',0,'post','',0),(158,1,'2013-11-25 14:26:00','2013-11-25 14:26:00','Mirror Mirror on the wall<br />Who is the fairest of them all?<br />Just look into my eyes<br />And finally speak<br />Say what I am thinking<br />Say it is me!<br />For I believe I am like the stars<br />That glisten up above all<br />And so rare is a beauty like mines<br />So speak to me mirror<br />Don\'t be shy<br /><br />Mirror Mirror on the wall<br />It is I once again<br />And today I stand tall<br />With confidence and a bit of conceit<br />For I want you to speak to me!!<br />Say what I want you to say RIGHT NOW!<br />I\'m the fairest in the land, and I don\'t know how<br />But my beauty is hard to reach<br />I am the most beautiful girl in all the streets<br /><br />Mirror Mirror on the wall<br />Who is the fairest of them all?<br />My heart may be black<br />But I\'m pretty on out<br />And that\'s what everyone cares about<br />I\'m a mean girl<br />But no one can see<br />Physically I am what many others want to be<br />Beauty unparrelled<br />And so profound<br />I am on a high horse and won\'t come down<br /><br />For it has been tattooed in my brain<br />That the only beauty that matters<br />Is the one that can be seen<br />So I will let the rotten reside inside<br />And only showcase the beauty that they can see radiate from outside<br /><br /><br /><i>\"Sometimes we truly forget about the beauty within........And neglecting that beauty can cause much more pain in the end.\" -Monica Renata</i><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi\" height=\"320\" width=\"240\" /></a></div><br />','The Snow Queen','','publish','open','open','','the-snow-queen','','','2014-08-09 21:20:19','2014-08-09 21:20:19','',0,'http://www.monicarenata.com/?p=158',0,'post','',0),(159,1,'2013-11-25 14:08:00','2013-11-25 14:08:00','Some call it breakfast<br />Some call it lunch<br />I call it food<br />That I love so much<br />For I shall never ever see<br />What the purpose of brunch<br />Was meant to be<br /><br />For breakfast occurs when I open my eyes<br />I head to the kitchen<br />No matter the time<br />And I whip up some hash browns and maybe some eggs<br />And three hours later<br />I will do the same<br />But instead of the menu I had before<br />I will adjust it<br />Or add some more<br />And this my friend I will call lunch<br />For I believe in breakfast and lunch<br /><br />Combining those meals<br />Won\'t be a treat<br />Because what I love to do<br />Is eat, Eat, EAT<br />I have to have my three meals aside<br />For if they don\'t happen...<br />I might die<br /><br />Some call it breakfast<br />Some call it lunch<br />I call it food that I love so much<br />For I can\'t combine the two meals you see<br />And that is why brunch is not for me <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg\" width=\"320\" /></a></div><br /><br /><br /><br />','Brunch','','publish','open','open','','brunch','','','2014-08-09 21:20:19','2014-08-09 21:20:19','',0,'http://www.monicarenata.com/?p=159',0,'post','',0),(160,1,'2013-11-25 04:36:00','2013-11-25 04:36:00','<div style=\"text-align: center;\">Flowers bloom in winter too</div><div style=\"text-align: center;\">Throughout all the ice</div><div style=\"text-align: center;\">They make it through</div><div style=\"text-align: center;\">And even though the birds no longer play</div><div style=\"text-align: center;\">I can hear the melodies in my head</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The fragrance I can\'t wait to smell</div><div style=\"text-align: center;\">I hold it closely</div><div style=\"text-align: center;\">I even stare</div><div style=\"text-align: center;\">So beautiful and yet so true</div><div style=\"text-align: center;\">This lovely flower</div><div style=\"text-align: center;\">I thought only bloomed in June</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Flowers bloom in winter too</div><div style=\"text-align: center;\">I\'m reminded every time I look at you</div><div style=\"text-align: center;\">Even in bad days</div><div style=\"text-align: center;\">You can always see</div><div style=\"text-align: center;\">The beauty that resides in me</div><div style=\"text-align: center;\">Your hugs I yearn for every day</div><div style=\"text-align: center;\">The smell of your flesh</div><div style=\"text-align: center;\">I can never walk away</div><div style=\"text-align: center;\">So beautiful and yet so true</div><div style=\"text-align: center;\">I am no longer a skeptic</div><div style=\"text-align: center;\">For I can now see it too</div><div style=\"text-align: center;\">Flowers bloom in winter too</div><br /><div style=\"text-align: center;\"><b><i>\"Sometimes the greatest love can blossom from the coldest heart....\" -Monica Renata</i></b></div><div style=\"text-align: center;\"><b><i><br /></i></b></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><b><i><br /></i></b></div><br />','Flowers Bloom In Winter Too','','publish','open','open','','flowers-bloom-in-winter-too','','','2014-08-09 21:20:21','2014-08-09 21:20:21','',0,'http://www.monicarenata.com/?p=160',0,'post','',0),(161,1,'2013-11-24 23:01:00','2013-11-24 23:01:00','Once I knew you so well<br />Like how I knew the back of my hand<br />I knew the curvature of all your features<br />I always knew where we stand<br />But today I am uncertain<br />For I don\'t know you anymore<br />I use to know you so well<br />Before you walked out of that door<br /><br />I use to know your every thought<br />Like Mother Nature knew when it would rain<br />I could look you in the eyes each day<br />And know each day you were the same<br />But today I am uncertain<br />For I don\'t know you anymore<br />I use to know you so well<br />Before you walked out of that door<br /><br />Each morning we stand face to face<br />Yet we both don\'t know<br />That although we are so close together<br />We are more farther than we are close<br />Our hands always still meet<br />When we reach out our hands<br />but this change is something that I have yet to understand<br /><br />You look in the mirror each day<br />And prepare yourself for your journey<br />And each time you walk out the door<br />You are always in a hurry<br />You seem to change each and every day<br />Then you come back to me<br />And you give me that hard look<br />Just like you have faced defeat<br /><br />We are identical in nature<br />Yet we are worlds apart<br />I am a part of you<br />But we differ on some parts<br />I use to know you so much<br />I used to know you so well<br />Before you walked out of that door<br />It seems like the world has changed you<br />You are now so cold<br />You smile in my presence<br />But I can clearly see<br />That slowly you are changing<br />From the person you use to be<br /><br /><i><br /></i><i>\"Never let the world change you! Everyone wasn\'t meant to be like everyone else.....\" -Monica Renata</i><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"253\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg\" width=\"320\" /></a></div><br /><br /><br /><br />','Who Are You?','','publish','open','open','','who-are-you','','','2014-08-09 21:20:22','2014-08-09 21:20:22','',0,'http://www.monicarenata.com/?p=161',0,'post','',0),(162,1,'2013-11-24 19:51:00','2013-11-24 19:51:00','You used to say you loved me<br />There were certain things you used to do<br />You used to make me smile all day<br />You used to see things through<br /><br />You used to always smile around me<br />There were certain things you used to say<br />You used to always seem so happy<br />You used to try to see me every day<br /><br />But my how times have changed<br />You are not who you used to be<br />Or perhaps it is I<br />Maybe I am not the old me<br />Each second, each minute, each hour that goes by<br />Which turns into days and then weeks<br />Seems as though we are slowly realizing<br />We each are not who we used to be<br /><br />You used to make me smile all the time<br />You used to never make me scared<br />But now when I stare in your eyes<br />I don\'t know who resides in there<br />There is a coldness that has overtaken you<br />You are but a stranger in my eyes<br />For you use to be the cause of my happiness<br />But now you make me cry<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"135\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg\" width=\"320\" /></a></div><br /><br />','You Used To','','publish','open','open','','you-used-to','','','2014-08-09 21:20:22','2014-08-09 21:20:22','',0,'http://www.monicarenata.com/?p=162',0,'post','',0),(163,1,'2013-11-24 17:43:00','2013-11-24 17:43:00','And in my instance of sorrow<br />You still stand there<br />Afraid to open your mouth<br />And yet you just stare<br /><br />And I cower in the corner<br />Cause I can\'t get through to you<br />What has made this happen??<br />Why can\'t we pull through???<br /><br />I\'m pulling on rope<br />That only bruises my hand<br />You are so close<br />But you are no where near<br /><br />I want to hold you<br />I want to cry<br />But in my instance of sorrow<br />You are there yet away somehow<br /><br />I want you to hear me<br />But you can\'t hear me<br />I want you to see me<br />But you can\'t see me<br />I\'m trying to get through to you<br />Trying to open your mind<br />But you stare blankly<br />Into the night sky<br /><br />Just say something<br />Say something Please!!!<br />Don\'t make me leave<br />I want to stay in your heart<br />I don\'t want to leave<br />But what am I to do<br />When your world stands still<br />And I am erased...but yearn for you I still<br /><br />In my instance of sorrow<br />You are there<br />I see us coming to an end<br />But It\'s hard to swallow that pill<br />Just tell me something<br />Say something now!!!<br />Because I want to get through to you<br />But I just don\'t know how<br /><br /><div style=\"clear: both; text-align: center;\"><br /><object width=\"320\" height=\"266\" class codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" data-thumbnail-src=\"http://img.youtube.com/vi/-2U0Ivkn2Ds/0.jpg\"><param name=\"movie\" value=\"http://youtube.googleapis.com/v/-2U0Ivkn2Ds&source=uds\" /><param name=\"bgcolor\" value=\"#FFFFFF\" /><param name=\"allowFullScreen\" value=\"true\" /><embed width=\"320\" height=\"266\" src=\"http://youtube.googleapis.com/v/-2U0Ivkn2Ds&source=uds\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\"></embed></object></div><br /><br /><br />','I\'m trying','','publish','open','open','','im-trying','','','2014-08-09 21:20:22','2014-08-09 21:20:22','',0,'http://www.monicarenata.com/?p=163',0,'post','',0),(164,1,'2013-11-22 19:33:00','2013-11-22 19:33:00','I\'m tired of being tired<br />I\'m blind but I can see<br />I\'m hurting but I feel no pain<br />I\'m surrounded by no one but me<br /><br />Just completely empty<br />Quite frankly sick of it all<br />In my loneliness I\'m lonely<br />And when I rise I so do fall<br /><br />I\'m tired of being tired<br />Tired of sleeping but getting no sleep<br />I\'m complicated like a puzzle <br />But easy like finding \'sea\' in \'seat\'<br /><br />Exhausted yet wide awake<br />Wide awake but mentally sleep<br />I\'m tired of being tired<br />I need a bed so I can sleep<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"184\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg\" width=\"320\" /></a></div><br /><br />','Tired','','publish','open','open','','tired','','','2014-08-09 21:20:23','2014-08-09 21:20:23','',0,'http://www.monicarenata.com/?p=164',0,'post','',0),(165,1,'2013-11-22 18:55:00','2013-11-22 18:55:00','<div style=\"text-align: center;\">When evening comes</div><div style=\"text-align: center;\">And the light in the sky</div><div style=\"text-align: center;\">Slowly fades away</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You grab hold of my hand</div><div style=\"text-align: center;\">And tell me softly</div><div style=\"text-align: center;\">This is where I shall stay</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">A grip that is so tight</div><div style=\"text-align: center;\">Like a nail in a piece of wood</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You promise that you will never let go</div><div style=\"text-align: center;\">Even if you could</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Through the terrifying things</div><div style=\"text-align: center;\">I see through my life</div><div style=\"text-align: center;\">You stay by my side</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You comfort me when I am worried</div><div style=\"text-align: center;\">You tell me not try cry</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">And just when I think you will let go</div><div style=\"text-align: center;\">Because you are angered with me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You remind me of that promise</div><div style=\"text-align: center;\">That you will never leave</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I roam through countless deserts</div><div style=\"text-align: center;\">Get on ships that sail the seas</div><div style=\"text-align: center;\">And your hand still hold mines closely</div><div style=\"text-align: center;\">Keeping the promise you made to me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Through the countless blizzards</div><div style=\"text-align: center;\">Through the endless thunderstorms</div><div style=\"text-align: center;\">You are there for me each day</div><div style=\"text-align: center;\">You won\'t leave me alone</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"> When evening comes</div><div style=\"text-align: center;\">And the light in the sky</div><div style=\"text-align: center;\">Slowly fades away</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You grab hold of my hand</div><div style=\"text-align: center;\">And tell me softly</div><div style=\"text-align: center;\">This is where I shall stay</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">And although I have doubts at time</div><div style=\"text-align: center;\">You have always seen me through</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">For you have kept your promise to me</div><div style=\"text-align: center;\">And did exactly what you said you would do </div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"256\" src=\"http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div><br /><br />','You Promised','','publish','open','open','','you-promised','','','2014-08-09 21:20:24','2014-08-09 21:20:24','',0,'http://www.monicarenata.com/?p=165',0,'post','',0),(166,1,'2013-11-22 18:40:00','2013-11-22 18:40:00','<div style=\"text-align: center;\">Hey there!!</div><div style=\"text-align: center;\">How are you? </div><div style=\"text-align: center;\">You look beautiful today!</div><div style=\"text-align: center;\">I love the twinkle in your eye</div><div style=\"text-align: center;\">And that smile upon your face!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You seem so refreshed today</div><div style=\"text-align: center;\">Like I have never seen!</div><div style=\"text-align: center;\">Someone must have made you happy</div><div style=\"text-align: center;\">Or you have come to term with things!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">So tell me how life\'s going for you!?</div><div style=\"text-align: center;\">What is new in your life!!</div><div style=\"text-align: center;\">I heard things are changing for the best?</div><div style=\"text-align: center;\">I heard there are new people in your life!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Oh wait</div><div style=\"text-align: center;\">Your smile got bigger</div><div style=\"text-align: center;\">I guess I am somewhat right!!!</div><div style=\"text-align: center;\">Oh...please do tell!!!</div><div style=\"text-align: center;\">This shall be a delight!</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Aww that is so great to hear</div><div style=\"text-align: center;\">Awww look at the time</div><div style=\"text-align: center;\">I guess it is my time to go</div><div style=\"text-align: center;\">Until we meet next time</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG\" /></a></div><div style=\"text-align: center;\"><br /></div>','The Conversation','','publish','open','open','','the-conversation','','','2014-08-09 21:20:24','2014-08-09 21:20:24','',0,'http://www.monicarenata.com/?p=166',0,'post','',0),(167,1,'2013-11-22 15:44:00','2013-11-22 15:44:00','<div style=\"text-align: center;\">Is love enough? <br />Can love improve the world? <br /><br />My answer is YES......but.......<br /><br />Love must be redefined, and if that happens then love may be enough. I think what is wrong with the world is that we misconstrue the true definition of the word \'Love\'. We only think about love in the aspect of what truly benefits us. We base the concept of love on how we are feeling at the moment while neglecting the true definition of it. <br /><br />\'<b>Love</b>\' is a great feeling of affection<br />\'<b>Affection</b>\' is a feeling of fondness<br />\'<b>Fondness</b>\' is an affection of liking of something or someone<br />\'<b>Liking</b>\' is to have a feeling of regard<br /><br /><u><i><b>Regard</b></i></u> is defined as follows: \"To consider or think of (someone or something) in a specified way.\"<br /><br />And to be quite honest, we only \'<span style=\"color: red;\">REGARD</span>\' the things that affect our lives. Which is the problem. We neglect to think about others because they do not think about us. We don\'t pay attention to issues in the world that do not directly effect us. And that is what is wrong..... Love could solve so many things....However, many of us do not truly understand what love is.......This is just my opinion though. </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But I ask you this........ Is love enough for you?</div>','Writing Prompt: Is Love Enough?','','publish','open','open','','writing-prompt-is-love-enough','','','2014-08-09 21:20:24','2014-08-09 21:20:24','',0,'http://www.monicarenata.com/?p=167',0,'post','',0),(168,1,'2013-11-22 13:46:00','2013-11-22 13:46:00','Peace be still my darling<br />Do not utter a sound<br />Do not question your surroundings<br />Do not wonder why or how<br /><br />Peace be still my darling<br />Do not run away<br />For have faith in your abilities<br />And let the calmness in your heart stay<br /><br />Through the raging storms of life<br />Through the fires which burn in the seas<br />Do not lose faith in yourself<br />Always just \"believe\"<br />Life may not go your way at times<br />But it doesn\'t mean life isn\'t for you<br />Peace Be Still my darling<br />For you shall make it through<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg\" /></a></div><br /><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/peace-be-still.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/peace-be-still.jpg\" width=\"320\" /></a></div><br />','Peace Be Still','','publish','open','open','','peace-be-still','','','2014-08-09 21:20:25','2014-08-09 21:20:25','',0,'http://www.monicarenata.com/?p=168',0,'post','',0),(169,1,'2013-11-22 13:06:00','2013-11-22 13:06:00','<div style=\"text-align: center;\">Such a precious plot of land</div><div style=\"text-align: center;\">Lovely in its own right</div><div style=\"text-align: center;\">Doesn\'t really have a certain crop</div><div style=\"text-align: center;\">Doesn\'t really have a certain size</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Such a precious plot of land</div><div style=\"text-align: center;\">With soil that is so unique</div><div style=\"text-align: center;\">For it can be dry and lacking water</div><div style=\"text-align: center;\">Then very fertile the next week</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Such a precious plot of land</div><div style=\"text-align: center;\">One so chooses to keep</div><div style=\"text-align: center;\">Its greatness depends on the owner</div><div style=\"text-align: center;\">Who holds all the seeds</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Of all the things that could be harvested</div><div style=\"text-align: center;\">The owner decides that fate</div><div style=\"text-align: center;\">For they can decide to plant love</div><div style=\"text-align: center;\">Or they can decide to plant hate</div><div style=\"text-align: center;\">The beauty of the garden </div><div style=\"text-align: center;\">Which is actually your mind</div><div style=\"text-align: center;\">You can plant crops that will blossom forever</div><div style=\"text-align: center;\">Or let the weeds overtake your life </div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg\" width=\"213\" /></a></div><br />','The Garden','','publish','open','open','','the-garden','','','2014-08-09 21:20:26','2014-08-09 21:20:26','',0,'http://www.monicarenata.com/?p=169',0,'post','',0),(170,1,'2013-11-22 01:35:00','2013-11-22 01:35:00','<div style=\"text-align: center;\">How am I to trust you</div><div style=\"text-align: center;\">When you clearly don\'t trust me?</div><div style=\"text-align: center;\">How am I to understand where you are coming from</div><div style=\"text-align: center;\">If you won\'t let me see?</div><div style=\"text-align: center;\">How am I suppose to confide in you</div><div style=\"text-align: center;\">If you can\'t talk to me now?</div><div style=\"text-align: center;\">How am I suppose to make you happy</div><div style=\"text-align: center;\">When it seems like I can never make you smile?</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I\'m trying so hard to trust you</div><div style=\"text-align: center;\">But you don\'t trust me</div><div style=\"text-align: center;\">I want to see where you are coming from</div><div style=\"text-align: center;\">But you won\'t let me see</div><div style=\"text-align: center;\">I want to confide in you</div><div style=\"text-align: center;\">But you can\'t even talk to me now</div><div style=\"text-align: center;\">I want to make you happy</div><div style=\"text-align: center;\">But you won\'t let me make you smile....</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">What am I to do</div><div style=\"text-align: center;\">When I want US to be......</div><div style=\"text-align: center;\">I am now constantly wonder</div><div style=\"text-align: center;\">If there will ever be...</div><div style=\"text-align: center;\">A you and me</div>','How','','publish','open','open','','how','','','2014-08-09 21:20:26','2014-08-09 21:20:26','',0,'http://www.monicarenata.com/?p=170',0,'post','',0),(171,1,'2013-11-21 16:11:00','2013-11-21 16:11:00','Riding on your coat tails<br />Unable to pick up the slack<br />Consuming all your thoughts<br />Who knows what comes next<br /><br />I know this is hard for you<br />I know you are wondering why<br />But I promise I won\'t be a burden<br />I\'m just going to let all of this die<br /><br />Stress is through the rough right now<br />Unable to stand on two feet<br />Can\'t even hear my heart beat<br />But somehow it is pounding as we speak<br /><br />It\'s just too much for you right now<br />It\'s even too much for me<br />But I will relieve you of this burden<br />I\'m preparing as we speak<br /><br />Emotions running high<br />Days and nights I can\'t sleep<br />I gotta do what\'s best for you<br />I gotta do what\'s best for me<br /><br />I know this is hard for you<br />Because it is definitely hard for me<br />But this burden has got to go<br />So don\'t let tears fall down your cheeks <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"314\" src=\"http://emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg\" width=\"320\" /></a></div><br /><br /><br />','Getting Rid of the Burden','','publish','open','open','','getting-rid-of-the-burden','','','2014-08-09 21:20:27','2014-08-09 21:20:27','',0,'http://www.monicarenata.com/?p=171',0,'post','',0),(172,1,'2013-11-21 14:36:00','2013-11-21 14:36:00','<div style=\"text-align: center;\">There are words that float around my head</div><div style=\"text-align: center;\">But won\'t come from my lips</div><div style=\"text-align: center;\">And these words would mean so much to you</div><div style=\"text-align: center;\">But I am afraid to admit</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Admit how I feel about you</div><div style=\"text-align: center;\">Admit how you make me feel</div><div style=\"text-align: center;\">I have all these words inside my head</div><div style=\"text-align: center;\">But speaking them sounds too unreal</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Instead of speaking endlessly</div><div style=\"text-align: center;\">And being afraid to come in your sight</div><div style=\"text-align: center;\">I will write down all the words I want to say</div><div style=\"text-align: center;\">Words in which you would like</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I want you to know that I care about you</div><div style=\"text-align: center;\">That you make me so happy</div><div style=\"text-align: center;\">That every night I think about you</div><div style=\"text-align: center;\">And every time I see you it\'s like a dream</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I want you to know I love to hold your hand</div><div style=\"text-align: center;\">That feeling is so divine</div><div style=\"text-align: center;\">As my fingers slip between your fingers</div><div style=\"text-align: center;\">I know you and I are so right</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I want you to know that you make me smile</div><div style=\"text-align: center;\">More than I have ever smiled before</div><div style=\"text-align: center;\">And at times I\'m afraid of loving you</div><div style=\"text-align: center;\">Because I haven\'t loved someone like this before</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Of all the words I never speak</div><div style=\"text-align: center;\">That always float in my head</div><div style=\"text-align: center;\">The majority are very positive</div><div style=\"text-align: center;\">And I\'m just afraid to say it</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">So next time I am quite</div><div style=\"text-align: center;\">Don\'t take it as such a bad thing</div><div style=\"text-align: center;\">There are many things I want to tell you</div><div style=\"text-align: center;\">Yet I am sometimes afraid to speak</div><div style=\"text-align: center;\">And instead of speaking endlessly</div><div style=\"text-align: center;\">I think I might just continue to write</div><div style=\"text-align: center;\">I love you</div><div style=\"text-align: center;\">I love you </div><div style=\"text-align: center;\">I love you</div><div style=\"text-align: center;\">And I know that you and I are so right!!</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"207\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg\" width=\"320\" /></a></div><br />','Love Letter','','publish','open','open','','love-letter','','','2014-08-09 21:20:28','2014-08-09 21:20:28','',0,'http://www.monicarenata.com/?p=172',0,'post','',0),(173,1,'2013-11-21 14:00:00','2013-11-21 14:00:00','<div style=\"text-align: center;\">Sweeter than cake</div><div style=\"text-align: center;\">But brilliant too</div><div style=\"text-align: center;\">I lick my lips</div><div style=\"text-align: center;\">I can\'t wait to taste you</div><div style=\"text-align: center;\">So soft and yet oh so sweet</div><div style=\"text-align: center;\">Euphoric feelings take over me</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Your body I can\'t wait to taste</div><div style=\"text-align: center;\">Your warmth makes me run to you before it\'s too late</div><div style=\"text-align: center;\">I close my eyes</div><div style=\"text-align: center;\">And I swallow you</div><div style=\"text-align: center;\">I savor the moment</div><div style=\"text-align: center;\">Until breakfast is through</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Oh in the mornings how I think of you</div><div style=\"text-align: center;\">So soft, so sweet, and lightly glazed too</div><div style=\"text-align: center;\">Your bad for my health</div><div style=\"text-align: center;\">But your good for me too</div><div style=\"text-align: center;\">Oh Krispy Kreme donuts</div><div style=\"text-align: center;\">How I so love you </div><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"114\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW\" width=\"320\" /></a></div><br /><br /><br /><br />','Krispy Kreme','','publish','open','open','','krispy-kreme','','','2014-08-09 21:20:29','2014-08-09 21:20:29','',0,'http://www.monicarenata.com/?p=173',0,'post','',0),(174,1,'2013-11-21 12:21:00','2013-11-21 12:21:00','<div style=\"text-align: center;\">Who knows what tomorrow holds? </div><div style=\"text-align: center;\">Who knows where we will be? </div><div style=\"text-align: center;\">Who knows the depths of the oceans? </div><div style=\"text-align: center;\">Who knows the entire contents of the seas?</div><div style=\"text-align: center;\">No one may know these things</div><div style=\"text-align: center;\">No one may know the truth</div><div style=\"text-align: center;\">But what I do know</div><div style=\"text-align: center;\">Is how I feel for you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I don\'t know what tomorrow holds</div><div style=\"text-align: center;\">But I wish it was a future with you</div><div style=\"text-align: center;\">I don\'t know where I will be</div><div style=\"text-align: center;\">But hopefully it\'s standing next to you</div><div style=\"text-align: center;\">I don\'t know the depths of the seas</div><div style=\"text-align: center;\">But I know that I love you so deep</div><div style=\"text-align: center;\">I don\'t know the entire contents of the seas</div><div style=\"text-align: center;\">But I know within you I found me</div><div style=\"text-align: center;\">I know all of these things</div><div style=\"text-align: center;\">I know all of these are my inner truths</div><div style=\"text-align: center;\">But most importantly I know exactly</div><div style=\"text-align: center;\">How I really feel about you</div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"160\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg\" width=\"320\" /></a></div><div><br /></div>','Who Knows','','publish','open','open','','who-knows','','','2014-08-09 21:20:29','2014-08-09 21:20:29','',0,'http://www.monicarenata.com/?p=174',0,'post','',0),(175,1,'2013-11-20 20:11:00','2013-11-20 20:11:00','<div style=\"text-align: center;\">Heart beats loud</div><div style=\"text-align: center;\">I move my feet</div><div style=\"text-align: center;\">Fear overtaking me</div><div style=\"text-align: center;\">Who knows what the future holds? </div><div style=\"text-align: center;\">I think that I will never know..</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Eyes closed shut</div><div style=\"text-align: center;\">My mouth won\'t react</div><div style=\"text-align: center;\">I am lost and confused</div><div style=\"text-align: center;\">In the corner I sat</div><div style=\"text-align: center;\">Wondering what I am to do</div><div style=\"text-align: center;\">I wonder if it is them I should pursue</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">My heart beats loud</div><div style=\"text-align: center;\">I move my feet</div><div style=\"text-align: center;\">Fear then starts to overtake me</div><div style=\"text-align: center;\">But I can\'t let go of what I don\'t know</div><div style=\"text-align: center;\">So I run into my future</div><div style=\"text-align: center;\">Without my eyes closed</div><div style=\"text-align: center;\">My mouth which was shut</div><div style=\"text-align: center;\">Can now speak</div><div style=\"text-align: center;\">I am lost and confused</div><div style=\"text-align: center;\">But I can\'t let this be</div><div style=\"text-align: center;\">Move out of the corner</div><div style=\"text-align: center;\">And into the light</div><div style=\"text-align: center;\">I have to be and finally pursue</div><div style=\"text-align: center;\">The person I would like</div><div style=\"text-align: center;\">I have to stop wondering</div><div style=\"text-align: center;\">It is time to pursue</div><div style=\"text-align: center;\">\"You can\'t be the reason that you hold back YOU\"</div><div style=\"text-align: center;\">That voice in my head is definitely right</div><div style=\"text-align: center;\">I have to reach my utmost potential</div><div style=\"text-align: center;\">I have to live my LIFE</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Racing Forward','','publish','open','open','','racing-forward','','','2014-08-09 21:20:29','2014-08-09 21:20:29','',0,'http://www.monicarenata.com/?p=175',0,'post','',0),(176,1,'2013-11-20 14:24:00','2013-11-20 14:24:00','<div style=\"text-align: center;\">Short and sweet</div><div style=\"text-align: center;\">Like two words in melody</div><div style=\"text-align: center;\">The feeling when you hold my hand</div><div style=\"text-align: center;\">Joyous are the days I am with you</div><div style=\"text-align: center;\">The feeling of two kids playing in sand</div><div style=\"text-align: center;\">To know you is to love you</div><div style=\"text-align: center;\">And loved you is what I did</div><div style=\"text-align: center;\">Short and sweet</div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\">Like the two words I spoke</div><div style=\"text-align: center;\">Whenever you asked for my hand </div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"179\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div><br />','Short & Sweet','','publish','open','open','','short-sweet','','','2014-08-09 21:20:30','2014-08-09 21:20:30','',0,'http://www.monicarenata.com/?p=176',0,'post','',0),(177,1,'2013-11-19 17:34:00','2013-11-19 17:34:00','For years I used to enjoy tug-of-war<br />For I thought it was unique<br />But after growing older<br />I found out that the victory wasn\'t so sweet<br /><br />I question what is the point<br />Of bloodying your hands<br />In hopes of winning a battle<br />That just pulls you across some land<br /><br />What are you really winning?<br />It is just a coarse rope!?<br />There is no magical thing that happens!<br />It seems like all a big joke<br /><br />But now that I am older<br />Someone wants to play this game<br />And in my head I\'m thinking<br />They have to be insane<br /><br />What\'s the point of trying so hard<br />To get you on my side<br />When each time I pull harder<br />I can feel a piece of you die<br /><br />And each time that you grip tighter<br />You kill a piece of me<br />For I can\'t go any longer<br />And a sunnier tomorrow I can\'t see<br /><br />We fighting to stay together<br />Yet we are pulling so hard that we drifting apart<br />For in this game tug-of-war <br />It seems we both have lost<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"212\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg\" width=\"320\" /></a></div><br />','Tug-Of-War','','publish','open','open','','tug-of-war','','','2014-08-09 21:20:30','2014-08-09 21:20:30','',0,'http://www.monicarenata.com/?p=177',0,'post','',0),(178,1,'2013-11-19 16:50:00','2013-11-19 16:50:00','<div style=\"text-align: center;\">I followed you this morning</div><div style=\"text-align: center;\">I couldn\'t let you get away</div><div style=\"text-align: center;\">I ventured with you in the sunshine</div><div style=\"text-align: center;\">I also stood with you in the rain</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I followed you this evening</div><div style=\"text-align: center;\">As the moon made the night sky bright</div><div style=\"text-align: center;\">Even though my brain told me this was wrong</div><div style=\"text-align: center;\">I knew you would think this was right</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I will follow you to the moon and back</div><div style=\"text-align: center;\">I will follow you across the oceans and seas</div><div style=\"text-align: center;\">For I know what makes me happy</div><div style=\"text-align: center;\">And when you are happy I am pleased</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Through each unfortunate tomorrow</div><div style=\"text-align: center;\">I will follow you for all time</div><div style=\"text-align: center;\">For I rather follow my heart in life</div><div style=\"text-align: center;\">Than to question my heart \"why?\"</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg\" width=\"320\" /></a></div><br />','Follow','','publish','open','open','','follow','','','2014-08-09 21:20:33','2014-08-09 21:20:33','',0,'http://www.monicarenata.com/?p=178',0,'post','',0),(179,1,'2013-11-19 15:55:00','2013-11-19 15:55:00','<div style=\"text-align: center;\">Falling down</div><div style=\"text-align: center;\">Rolling on a hill</div><div style=\"text-align: center;\">And then finally touching </div><div style=\"text-align: center;\">The hands of a soul</div><div style=\"text-align: center;\">So broken</div><div style=\"text-align: center;\">So cold</div><div style=\"text-align: center;\">And they won\'t cease</div><div style=\"text-align: center;\">They keep falling down</div><div style=\"text-align: center;\">Continuously</div><div style=\"text-align: center;\">Creating a stain</div><div style=\"text-align: center;\">Of Emotion it reeks </div><div style=\"text-align: center;\">Surrounded by no one</div><div style=\"text-align: center;\">But pain and grief</div><div style=\"text-align: center;\">Wondering what there is to do</div><div style=\"text-align: center;\">When consumed with guilt</div><div style=\"text-align: center;\">And afraid to face the truth</div><div style=\"text-align: center;\">As these tears roll down my cheeks</div><div style=\"text-align: center;\">They fall in my hand</div><div style=\"text-align: center;\">And they just won\'t cease</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi\" width=\"278\" /></a></div><br />','The Cover Up','','publish','open','open','','the-cover-up','','','2014-08-09 21:20:33','2014-08-09 21:20:33','',0,'http://www.monicarenata.com/?p=179',0,'post','',0),(180,1,'2013-11-19 13:05:00','2013-11-19 13:05:00','For months I have been here<br />For months it was the same thing<br />Family would come to visit me<br />They would come for my birthday and sing<br /><br />To be surrounded by these white walls<br />Which have no sense of soul<br />I will lay in my bed<br />As each day I grow old<br /><br />The sun rises up each morning<br />And I wake up to watch<br />I feel the heat come through my window blinds<br />I\'m surprised that it isn\'t hot<br />To see the it shine upon my skin<br />It makes me smile a lot<br />I shall appreciate this day<br />For today means a lot <br /><br />The sun goes down<br />I watch this too<br />I then watch the moon and the stars<br />I gaze into the night sky<br />I wish I could be among the stars<br />Oh such marvelous beauty<br />I never use to appreciate<br />But its amazing how I appreciate<br />Every second of this day<br /><br />As I\'m about to take a nap<br />The nurse comes in the room<br />She says your family is coming tomorrow<br />And some are flying in too<br />I smile and then she leaves the room<br />But deep down I can see<br />That everyone is coming to see me tomorrow<br />Obviously something is happening to me<br /><br />And as that fear strikes me<br />I find myself restless and not at ease<br />and I think of all the things I wish<br />I would have appreciated then<br />The smell of fresh cut grass<br />The autumn change of leaves<br />The smile on my family faces<br />The youthful version of me<br /><br />The happiness...the tears...and the moments too<br />I took it all for granted<br />Back then I didn\'t see things through<br />For it was the little things in life<br />That I appreciated the least<br />But alas I must prepare myself<br />For my final sleep<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg\" width=\"320\" /></a></div>','As I Lay','','publish','open','open','','as-i-lay','','','2014-08-09 21:20:36','2014-08-09 21:20:36','',0,'http://www.monicarenata.com/?p=180',0,'post','',0),(181,1,'2013-11-18 19:45:00','2013-11-18 19:45:00','<br />If I could hear your voice again<br />If I could hear you speak<br />My world would turn a bit brighter<br />And I could fall asleep<br /><br />If time would stop moving forward<br />And allowed me to go back<br />I would hold you tightly in my arms<br />Then you never would have left<br /><br />I\'m waiting for something that will never come to<br />I\'m waiting for a dream that won\'t come true<br />And it\'s crazy how every little thing reminds me of you...<br /><br />If I could hear your voice again<br />That voice that\'s so unique<br />But now you are gone<br />So that will never be<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"212\" src=\"http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1\" width=\"320\" /></a></div><br />','Again','','publish','open','open','','again','','','2014-08-09 21:20:36','2014-08-09 21:20:36','',0,'http://www.monicarenata.com/?p=181',0,'post','',0),(182,1,'2013-11-18 17:10:00','2013-11-18 17:10:00','I awaken in my fortress<br />Yet nothing bothers me<br />I help myself to my breakfast<br />And wait for the others to leave<br />With Mary off to work<br />And Jim off to go play<br />I can honestly say<br />I will have the best of days<br /><br />First place is the sofa<br />And next are the shoes<br />I will feast my paws upon them<br />And this time I won\'t lose<br /><br />I will peep out the windows<br />At the dogs who are outside<br />I feel as though I am royalty<br />I feel like I\'m sitting high<br /><br />Everything is placed out<br />Just like how I like it to be<br />Oh the life of a housecat<br />I\'ll enjoy this indeed<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg\" /></a></div><br />','The Housecat','','publish','open','open','','the-housecat','','','2014-08-09 21:20:36','2014-08-09 21:20:36','',0,'http://www.monicarenata.com/?p=182',0,'post','',0),(183,1,'2013-11-18 11:50:00','2013-11-18 11:50:00','You left me in the pouring rain<br />You left me in the thunder<br />And as the rain touches down on me<br />My heart can\'t take this no longer<br /><br />Just when I think the rain is going to stop<br />Just when the thunder cease<br />I see lightning strike against me<br />And my heart skips a beat<br /><br />You left me in the pouring rain<br />You left me in the thunder<br />And I have to get away<br />For my heart can\'t take this any longer<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd\" /></a></div><br />','The Pouring Rain','','publish','open','open','','the-pouring-rain','','','2014-08-09 21:20:37','2014-08-09 21:20:37','',0,'http://www.monicarenata.com/?p=183',0,'post','',0),(184,1,'2013-11-18 01:16:00','2013-11-18 01:16:00','In your absence<br />I was able to find<br />Something else<br />That catches my eye<br />It reminds me of me<br />But yet so unique<br />It shows me a place<br />Where I would like to be<br /><br />In your absence<br />I was able to see<br />What you lacked<br />And what was your greatest feat<br />And underneath it all<br />I was shown the truth<br />The truth that showcased<br />The real you<br /><br />In your absence<br />What did I find?<br />Something so unique<br />Something so divine<br />It has caught my attention<br />It is so unique<br />And I think that it<br />Will finally get me<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"180\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg\" width=\"320\" /></a></div><br />','In Your Absence','','publish','open','open','','in-your-absence','','','2014-08-09 21:20:42','2014-08-09 21:20:42','',0,'http://www.monicarenata.com/?p=184',0,'post','',0),(185,1,'2013-11-17 15:50:00','2013-11-17 15:50:00','Lurking in the back of my mind<br />Consuming all my thoughts<br />Setting up a place to live within<br />For I have become its host<br /><br />Questioning my conscience<br />And always making me doubt<br />It feeds on my insecurities<br />It feeds on my inner thoughts<br /><br />I take one move<br />And suddenly I am scared to take the next<br />Cowering in a corner<br />And wondering what to expect<br /><br />For I have become its host<br />And it is not a delight<br />For fear has taken over<br />And fear might ruin my life<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V\" /></a></div><br /><br />','The Host','','publish','open','open','','the-host','','','2014-08-09 21:20:42','2014-08-09 21:20:42','',0,'http://www.monicarenata.com/?p=185',0,'post','',0),(186,1,'2013-11-17 00:17:00','2013-11-17 00:17:00','Going back to grandma\'s house<div>To see the wonders within</div><div>For her place is a beautiful place</div><div>That has wonders deep within</div><div><br /></div><div>I come across some photos</div><div>Of when I was but the age of 3</div><div>And also some little knick knacks</div><div>Which belonged to me</div><div><br /></div><div>Her house have so many wonders</div><div>That remind me of my past</div><div>I see pictures of my mom</div><div>And also my mom\'s dad</div><div><br /></div><div>What a place of so many memories</div><div>What a place to be</div><div>And it is beautifully surrounded</div><div>By two big oak trees</div><div><br /></div><div>There is a big oven inside</div><div>That cooked those big Sunday meals</div><div>And also a large attic</div><div>That holds the Christmas Tree</div><div><br /></div><div>Two big rockers sit on the deck</div><div>And also a swing underneath the tree</div><div>Oh I love to be at Grandma\'s house</div><div>That is the place to be</div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"248\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7-300x233.jpg\" width=\"320\" /></a></div><div><br /></div><div><br /></div>','Grandma\'s House','','publish','open','open','','grandmas-house','','','2014-08-09 21:20:43','2014-08-09 21:20:43','',0,'http://www.monicarenata.com/?p=186',0,'post','',0),(187,1,'2013-11-16 15:36:00','2013-11-16 15:36:00','Beautiful beginnings<br />And sometimes tragic ends<br />Life is a special gift<br />That everyone was given<br /><br />So many don\'t appreciate<br />So many cannot see<br />That this gift means so much to others<br />Including you and me<br /><br />The essence of the youthful spirit<br />The wise of the old<br />Different skills come with age<br />And with age you gather more<br /><br />Unwavering faith<br />The compassion to help those in need<br />So many have high hopes<br />So many want to accomplish their dreams<br /><br />Beautiful beginnings<br />And sometimes tragic ends<br />Life is a beautiful gift<br />Yet so many try to make other\'s gift end<br /><br />If only everyone appreciated<br />And respected others gift<br />The world would be a better place<br />Because senseless killing would end<br /><br /><div style=\"text-align: center;\"><i>\"Life is a gift given to each and every one of us. We have no right to take others gift away\"-Monica Renata</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><i><br /></i></div>','The Given Gift','','publish','open','open','','the-given-gift','','','2014-08-09 21:20:45','2014-08-09 21:20:45','',0,'http://www.monicarenata.com/?p=187',0,'post','',0),(188,1,'2013-11-16 15:26:00','2013-11-16 15:26:00','<div style=\"text-align: center;\">The loveliest of lovely</div><div style=\"text-align: center;\">They say it so exist</div><div style=\"text-align: center;\">But the loveliest of lovely</div><div style=\"text-align: center;\">Is never on a list</div><div style=\"text-align: center;\">Who is to say exactly what it is?</div><div style=\"text-align: center;\">Everyone seems to have their own thoughts</div><div style=\"text-align: center;\">Because the loveliest of lovely</div><div style=\"text-align: center;\">Didn\'t start off lovely from the start</div><div style=\"text-align: center;\">A piece of trash that glitters</div><div style=\"text-align: center;\">Is never considered gold</div><div style=\"text-align: center;\">However, to one they may always want it </div><div style=\"text-align: center;\">To cherish and to hold</div><div style=\"text-align: center;\">The loveliest of lovely</div><div style=\"text-align: center;\">Loved above all things</div><div style=\"text-align: center;\">Have you had your dose of lovely</div><div style=\"text-align: center;\">On this beautiful lovely day??</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/preview.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/preview.png\" width=\"238\" /></a></div><div style=\"text-align: center;\"><br /></div><div><br /></div>','The Loveliest of Lovely','','publish','open','open','','the-loveliest-of-lovely','','','2014-08-09 21:20:50','2014-08-09 21:20:50','',0,'http://www.monicarenata.com/?p=188',0,'post','',0),(189,1,'2013-11-15 15:14:00','2013-11-15 15:14:00','As the sun slowly goes down<br />And the moon begins to rise<br />There is a blanket of complete darkness<br />As soon as I close my eyes<br />And then all of a sudden<br />My world is filled with flames<br />And I am marching through it all<br />I will not be afraid<br /><br />As the path seems to keep getting longer<br />I can feel my shirt drenched with sweat<br />I still have a long way to go<br />I must face what comes next<br />And through this fiery path<br />I am thinking \"I have had enough\"<br />But then a voice resonates and says<br />I will not and can not give up<br /><br />Soon the walls around me<br />Turns into crushing waves<br />I stand upon my path<br />And watch the water extinguish the flames<br />And as soon as I start to smile<br />Water surrounds me<br />And the next thing that I know<br />Is I am drowning in a sea<br /><br />Underneath the water I go<br />Then I come back for some air<br />I want to reach land<br />But land is no where there<br />And in my instance of sorrow<br />I feel desperate and ashamed<br />But then I begin to swim forward<br />I will not be afraid<br /><br />Paddling through this endless puddle<br />No one surrounding me<br />I have to be my own motivation<br />I have to push on for me<br />And I can hear the voices in my head<br />Screaming like a crowd<br />And they are yelling and screaming<br />\"Keep going! You can\'t give up now\"<br />And with every ounce of strength I continue into the unknown<br /><br />And soon I see a glimmer of light,<br />two birds, <br />and then a tree<br />And I know that the victory<br />Is all meant for me<br /><br />As the moon begins to go down<br />And the sun begins to rise<br />There is an overwhelming light<br />As soon as I open my eyes<br />And then all of a sudden<br />My world consists of happiness and also pain<br />And I am marching through it all<br />I will not be afraid<br /><br /><div style=\"text-align: center;\"><i>Life is full of challenges, but you shouldn\'t be afraid to face them. Walk fearlessly into your future, and don\'t give up on your hopes and dreams!!! -Monica Renata </i></div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg\" width=\"320\" /></a></div><br /><br />','I Will Not Be Afraid','','publish','open','open','','i-will-not-be-afraid','','','2014-08-09 21:20:50','2014-08-09 21:20:50','',0,'http://www.monicarenata.com/?p=189',0,'post','',0),(190,1,'2013-11-15 09:24:00','2013-11-15 09:24:00','If you ever shall forget me<br />If I never ever cross your thoughts<br />Do remember that I thought about you<br />And I care about you so much<br /><br />If you ever shall forget me<br />And I am not even a memory in your dreams<br />Just know that I always wonder \"what if\"<br />When I\'m drifting into sleep<br /><br />Just like the sunrise is recurring<br />So are my thoughts of you<br />And I don\'t know if you despise me<br />But I\'m guessing that you do<br />However this constant thought<br />Has been dwelling in my head<br />But alas I must let go<br />Before I drive myself insane<br /><br />If you ever shall forget me<br />I would fully understand why<br />For I don\'t want to be the source of your pain<br />And I never want to see you cry<br />But sometimes forgetting someone<br />Is sometimes the best thing<br />But know that I will always cherish the memories<br />That you and I have made<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"224\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg\" width=\"320\" /></a></div><br /><br /><br />','If You Ever Shall Forget Me','','publish','open','open','','if-you-ever-shall-forget-me','','','2014-08-09 21:20:51','2014-08-09 21:20:51','',0,'http://www.monicarenata.com/?p=190',0,'post','',1),(191,1,'2013-11-14 19:32:00','2013-11-14 19:32:00','<div style=\"text-align: center;\">She asked to look at my hand</div><div style=\"text-align: center;\">And she could tell me then</div><div style=\"text-align: center;\">Tell me all about my future</div><div style=\"text-align: center;\">Tell me about the past back then</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I could tell she was being serious</div><div style=\"text-align: center;\">By the look within her eyes</div><div style=\"text-align: center;\">On the cold streets of New Orleans</div><div style=\"text-align: center;\">I sat amongst her side</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">She said, \"Child you have felt pain lately?\"</div><div style=\"text-align: center;\">And I said, \"No indeed\"</div><div style=\"text-align: center;\">She then asked \"Did you lose someone?\"</div><div style=\"text-align: center;\">And I said \"That is clearly news to me!\"</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">See I won\'t believe the hype about this</div><div style=\"text-align: center;\">Even though she sounds convincing too</div><div style=\"text-align: center;\">Because no one really knows my past</div><div style=\"text-align: center;\">And I feel like they can\'t know my future too</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But as I am trying to leave</div><div style=\"text-align: center;\">She pulls my hand and says \"Child stay now!\"</div><div style=\"text-align: center;\">And I look at her with a crazed look</div><div style=\"text-align: center;\">I can\'t believe what is going down</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">And then all the people on that New Orleans street</div><div style=\"text-align: center;\">Quickly fade away</div><div style=\"text-align: center;\">And the only person who remains</div><div style=\"text-align: center;\">Is a man all dressed in grey</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The old woman says, \"Be easy my child </div><div style=\"text-align: center;\">For that is the man!</div><div style=\"text-align: center;\">The man who can ruin it all\"</div><div style=\"text-align: center;\">And then she lets go of my hand</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">And soon the world returns </div><div style=\"text-align: center;\">To everything I once knew</div><div style=\"text-align: center;\">The people are there</div><div style=\"text-align: center;\">The music is there</div><div style=\"text-align: center;\">Even the psychic too</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I quickly give her a 20</div><div style=\"text-align: center;\">And then walk away</div><div style=\"text-align: center;\">I can\'t believe I wasted my hard earned cash</div><div style=\"text-align: center;\">On something not so great</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">And then as I am walking</div><div style=\"text-align: center;\">I notice a taxicab driver stop</div><div style=\"text-align: center;\">He says, \"Good day my lady, where would you like to be dropped off tonight?\" </div><div style=\"text-align: center;\">And in that very moment</div><div style=\"text-align: center;\">I feel chills all down my spine</div><div style=\"text-align: center;\">For he is the man dressed in grey</div><div style=\"text-align: center;\">Then I wonder if it is my time</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I tell him \"No Thank You\"</div><div style=\"text-align: center;\">And then I get quickly on my way</div><div style=\"text-align: center;\">And I wonder if the psychic was right</div><div style=\"text-align: center;\">Or was it all just fake</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Hours pass throughout the day</div><div style=\"text-align: center;\">Tick Tock goes the clock</div><div style=\"text-align: center;\">And then I heard on the news</div><div style=\"text-align: center;\">Passengers in a cab have been shot....... </div><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg\" /></a></div><br /><br /><br />','The Psychic','','publish','open','open','','the-psychic','','','2014-08-09 21:20:52','2014-08-09 21:20:52','',0,'http://www.monicarenata.com/?p=191',0,'post','',0),(192,1,'2013-11-14 15:49:00','2013-11-14 15:49:00','<div style=\"text-align: center;\"><span style=\"font-size: large;\"><i>Who are you?</i></span></div><div style=\"text-align: center;\"><span style=\"font-size: large;\"><i>And why do you do the things that you do?</i></span></div><br />Ever been asked those questions before? It\'s like in that instance you are utterly speechless because you feel as though you have all of the answers but yet again.. you are uncertain. What are all the itty bitty pieces that when put together form you? At the end of the day, some of us think that we know exactly who we are. We feel as though we know ever little detail, but when someone points out something about us, we say that can\'t be true....because after all \"You are the only person who knows yourself fully!!\"... or so you think.....<br /><br />It\'s amazing how much you can learn from someone else. I mean, looking at yourself you think you are the best you that you can be, but in another person\'s eyes..you aren\'t that great....I know this sounds harsh but it is true. Sometimes you need to take into consideration what others say about you. For example, your tone of voice which you think is acceptable may be deemed as cold and harsh by others. The way in which you present yourself to others may make you seem stuck up even though you are so down to earth. All criticism isn\'t bad.......<br /><br />It took me a while to realize this, but now I fully understand. I mean, I have flaws like everyone else. If someone says the way in which I speak comes off as mean, I will ask them why and then try to correct it. After all, when countless people are saying the same thing....then the accusations must be true!!!..lol<br /><br />We need to learn how to take constructive criticism. It isn\'t a bad thing and can also help with self improvement. By definition, constructive criticism is as follows: <br /><br /><div style=\"text-align: center;\"><b>Constructive criticism</b> is the process of offering valid and well-reasoned opinions about the work of others, usually involving both positive and negative comments, in a friendly manner rather than an oppositional one.</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: left;\">It isn\'t that bad..........So the next time someone says something to you about YOU, don\'t be quick to snap back. This can actually help you. After all, <i><b><span style=\"font-size: small;\"><u>You never know how you are perceived by the world unless you let the world tell you. </u></span></b></i></div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Have a great day!!! :)</div>','Constructive Criticism','','publish','open','open','','constructive-criticism','','','2014-08-09 21:20:52','2014-08-09 21:20:52','',0,'http://www.monicarenata.com/?p=192',0,'post','',0),(193,1,'2013-11-14 12:19:00','2013-11-14 12:19:00','Every morning I wake up<br />I quickly turn on the news<br />And every single morning<br />I hear of another life gone too soon<br /><br />I close my eyes and pray<br />I say, \"God please make this stop\"<br />But upon the next morning<br />I hear another person has been shot<br /><br />What kind of world do we live in?<br />Why are people so quick to take a life?<br />It seems like there is no reason to speak up<br />Because the killers always think they are right<br /><br />Each day we are losing mothers and fathers and also children too<br />But sometimes people won\'t fully understand<br />Until it happens to you<br /><br />Imagine just having a great conversation<br />With someone who wants to change their life<br />They say all of the things they are doing<br />In order to keep their children in their life<br />But then the next morning<br />You hear that they were blown away<br />And you want to cry<br />But you can\'t<br />So you get on your knees and pray<br />Why did this have to happen?<br />Another life gone too soon<br />I wish all the violence would stop<br />I wish it would stop soon<br /><br />It hurts a lot<br />But what can you do even though you have fear in your heart<br />You only have a voice<br />And with that you don\'t know where to start<br /><br />But that voice you have inside of you can be a powerful thing<br />If you decide to use it in a fight you can stop all sorts of things<br />Speak to others about violence<br />Tell them how it is wrong<br />Reach out to the kids in your community<br />So they don\'t grow up killing their own<br />Make people wake up<br />and make people see<br />It could be your mother or even your child<br />Who is next laying in the street<br /><br />We all want a better world<br />But that better world starts with you<br />Just stand up for what you believe in<br />And don\'t be afraid to speak the truth<br />We are all afraid of violence<br />That is evident to see<br />But we can\'t do anything about it<br />If you are afraid to speak<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"133\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg\" width=\"320\" /></a></div><br />','The News','','publish','open','open','','the-news','','','2014-08-09 21:20:52','2014-08-09 21:20:52','',0,'http://www.monicarenata.com/?p=193',0,'post','',0),(194,1,'2013-11-13 23:33:00','2013-11-13 23:33:00','Far into the distance<br />Past the rolling hills<br />I see a very faint figure<br />And I wonder what it is<br /><br />As the seconds turn to minutes<br />This figure approaches me<br />Is it you? Is it you?<br />My heart beats fast and I can\'t breath<br /><br />As it walks a little closer<br />I am finally able to see his face<br />I try to remain calm<br />But then a grin comes upon my face<br /><br />I can\'t hold in my emotion<br />I run the rest of the way<br />For it is my love<br />He has come back<br />And I can\'t find the words to say<br /><br />I hug him oh so tightly<br />I don\'t ever want to let go<br />For today I am a happy women<br />I\'m happy because he has come home<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"112\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg\" width=\"320\" /></a></div><br /><br />','The Homecoming','','publish','open','open','','the-homecoming','','','2014-08-09 21:20:53','2014-08-09 21:20:53','',0,'http://www.monicarenata.com/?p=194',0,'post','',0),(195,1,'2013-11-13 20:03:00','2013-11-13 20:03:00','12/13/14<br />Was going to be my special day<br />The day that ice cold wind would blow through my hair<br />That beautiful Saturday<br /><br />The day I planned for<br />Each and every day<br />Always wishing for it to come<br />And not a moment too late<br /><br />12/13/14<br />The world would feast their eyes on me<br />A girl dressed like royalty<br />Walking down the aisle all alone<br />To greet her groom to be <br /><br />A beautiful day in my memories<br />Oh how I thought this would be<br />But now as time draws near<br />I know this future isn\'t for me<br /><br />So many times we groom young girls with crazy hopes and dreams.<br />We tell them that they should be a wife above all and everything<br />We tell them this is your ultimate success<br />It will make all of their wishes come true<br />We tell these girls that if you were good<br />This would happen to you<br /><br />But what if that little girl was good<br />Her entire frickin\' life<br />And things just didn\'t work out for her<br />Things were just never right<br />But she has everything else<br />That a woman should be proud to be<br />She works hard and has a loving heart<br />Only thing is, she is not a wife to be<br /><br />Is she suppose to bow her head<br />Bow her head in constant shame<br />Or is she suppose to keep her head high<br />And have hopes that things will change<br />We groom our young girls to think<br />That being single just isn\'t right<br />They have to hurry and jump the broom<br />And do everything right<br /><br />But what about that young girl<br />Who constantly works hard<br />She has no time for dating<br />Cause she is trying to save money to buy a car<br /><br />And what about the young girl<br />Who is constantly in her books<br />She wants to have a good job<br />So each night she will have something to cook<br /><br />And what about the young girl<br />Who wants to be stable first<br />She is trying to make sure she is secure<br />So her future family will have a shot<br /><br />We forget about these young girls<br />And we look at them in disgust<br />\"Why aren\'t you married yet?\"<br />\"Your eggs will dry all up!\"<br /><br />But sometimes the loveliest flower<br />Takes a bit more time to bloom <br />These girls are just like fruit<br />And shouldn\'t be picked too soon<br />For they are waiting until they are at their peak<br />And when they feel like they can offer enough<br />They then qualify to be a \"wife-to-be\"<br /><br />12/13/14<br />Was going to be my special day<br />But I took too much time improving myself<br />And now it is too late<br />And yes I\'m disappointed<br />I\'m probably more disappointed than you<br />But I can\'t give a man a premature crop<br />When he could have ripe fruit<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"200\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg\" width=\"320\" /></a></div><br /><br /><br />','12/13/14','','publish','open','open','','121314','','','2014-08-09 21:20:55','2014-08-09 21:20:55','',0,'http://www.monicarenata.com/?p=195',0,'post','',0),(196,1,'2013-11-13 14:40:00','2013-11-13 14:40:00','Building up with pressure<br />Trying hard not to bat my eyes<br />I stare into the distance<br />I can\'t reveal the hurt inside<br /><br />Consuming myself with work<br />Each and every day<br />It helps me to relax at times<br />And takes all of my worries away<br /><br />And then it hits once again<br />Just like a blood stained knife<br />The pain is too unbearable<br />But I hide it with all my might<br /><br />I have to smile today<br />Just like I did yesterday<br />But I feel like I\'m about to erupt<br />Can I last another day?<br /><br />I\'m building up with pressure<br />Trying not to cry<br />And in my head I continually ask myself<br />Why? Why? Why?<br /><br />But yet I won\'t show any of this<br />I will continue to be me<br />Consume myself with countless work<br />And smile like I am happy<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg\" width=\"258\" /></a></div><br /><br />','Working','','publish','open','open','','working','','','2014-08-09 21:20:56','2014-08-09 21:20:56','',0,'http://www.monicarenata.com/?p=196',0,'post','',0),(197,1,'2013-11-13 11:58:00','2013-11-13 11:58:00','Peanut butter and jelly<br />Has always been my favorite treat<br />I grab my bread and knife<br />And I can\'t wait to eat<br /><br />I open the can of peanut butter<br />And take out one big glob<br />But then I put three-fourths back<br />For I might want more next time<br /><br />I take the other slice of bread<br />And place the jelly on in heaps<br />I look at the amount I placed<br />And I am happy and pleased<br /><br />I slather my bread with jelly<br />So much that the bread starts to droop<br />And then I place the two breads together<br />Of my wonderful glooby gloop<br /><br />I am marveled at my magic<br />Can\'t wait to taste these two fillings unite<br />But when I taste my sandwich<br />It just tastes like jelly delight<br /><br />Not a trace of peanut butter<br />Can even be found<br />I guess I spread it too thin<br />And I find that quite profound<br /><br />You see, they call me peanut butter<br />That is actually my nickname<br />They said I spread myself too thin<br />Among the ones I seem to entertain<br /><br />No one ever gets that much of me<br />They only get an itty bitty piece<br />Cause just like my peanut butter and jelly sandwich<br />The peanut butter is so discreet<br /><br />They call me peanut butter<br />Yep, that is my name<br />But I have to learn to stop spreading myself thin<br />And focus on just a few things<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"301\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg\" width=\"320\" /></a></div><br /><br /><br /><br />','Peanut Butter','','publish','open','open','','peanut-butter','','','2014-08-09 21:20:57','2014-08-09 21:20:57','',0,'http://www.monicarenata.com/?p=197',0,'post','',0),(198,1,'2013-11-12 19:56:00','2013-11-12 19:56:00','Shackles on my ankles<br />Shackles on my neck<br />I am weighed down by my sorrows<br />It feels like I have no one left<br /><br />No peak of sunlight<br />Not even a window to see<br />I am within my own solidarity <br />Locked up and they threw away the key<br /><br />I know that I can rise up<br />And I know how<br />But there is something deep within me<br />That will not allow<br /><br />The essence of a burning inferno<br />No one can calm this beast<br />It is called my Pride<br />And It cannot and will not be released<br /><br />Oh the countless situations<br />That I could easily walk by<br />But I won\'t allow myself the privelage<br />To admit I was wrong at times<br /><br /> The wavering relentlessness<br />The beast inside of me<br />I am blinded by my foolish pride<br />And this beast won\'t set me free<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig\" /></a></div><br /><br /><br />','Imprisoned','','publish','open','open','','imprisoned','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',0,'http://www.monicarenata.com/?p=198',0,'post','',0),(199,1,'2013-11-12 19:25:00','2013-11-12 19:25:00','<div style=\"text-align: center;\">If eternities really lasted forever</div><div style=\"text-align: center;\">And skies were always blue</div><div style=\"text-align: center;\">I would sit under the biggest tree</div><div style=\"text-align: center;\">And profess my love to you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">If the night sky always stayed still</div><div style=\"text-align: center;\">And the moon shined bright in the sky too</div><div style=\"text-align: center;\">I would lay underneath the stars</div><div style=\"text-align: center;\">And dream of me and you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">So many times I ponder</div><div style=\"text-align: center;\">On what you and I could be</div><div style=\"text-align: center;\">I reminiscence about the time together</div><div style=\"text-align: center;\">And wonder if you would ever leave</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The uncertainty of it all kills me</div><div style=\"text-align: center;\">But it doesn\'t kill my heart</div><div style=\"text-align: center;\">Which keeps beating for you every single second</div><div style=\"text-align: center;\">That you and I are apart</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">If things could be my way</div><div style=\"text-align: center;\">I would have everything including you</div><div style=\"text-align: center;\">But instead I will sit here and wait</div><div style=\"text-align: center;\">Til my dream of you and I come true</div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm-300x225.jpg\" width=\"320\" /></a></div><br /><br /><br /><br /><br />','My Dream of Me and You','','publish','open','open','','my-dream-of-me-and-you','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',0,'http://www.monicarenata.com/?p=199',0,'post','',0),(200,1,'2013-11-12 16:20:00','2013-11-12 16:20:00','Sitting in complete silence<br />Overwhelmed by thoughts<br />To have so many questions to ask<br />Yet feel completely lost<br /><br />For who is there to speak to<br />When troubles comes my way<br />I sit in complete silence<br />And I wait and I wait<br /><br />But in those little minutes<br />Which turned to hours then to days<br />I realize that this deafening silence<br />might be my only friend<br /><br />And it is screaming at me<br /><br />Leave this empty room filled with thoughts<br />Go out and make some new friends<br />Now is the time to start<br /><br />For Silence isn\'t for you my child<br />It causes too much pain indeed <br />Silence is the beginning of the end<br />And it is now your turn to leave<br /> <br /><br /><br /><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg\" width=\"213\" /></a></div><br />Many times when we experience a loss, whether in death or friendship, we begin to seclude ourselves from the world around us. But that isn\'t always the healthiest thing to do.<br /><br /><div style=\"text-align: center;\"> <b><i>Sometimes it\'s better to just give up on someone than to wait and see if things will work out. Because at the end of the day, you never really know how it will turn out and you might end up getting your feelings hurt worst than they already are. -Monica Renata </i></b></div>','Silence','','publish','open','open','','silence','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',0,'http://www.monicarenata.com/?p=200',0,'post','',0),(201,1,'2013-11-12 12:03:00','2013-11-12 12:03:00','Stumbling on forgotten sleep<br />Awaken from my slumber<br />My body moves in decrepit ways<br />But my bed I can rest in no longer<br /><br />The morning dew is beautiful out<br />Yet no birds are there to sing<br />For I had to rise before the sun<br />I do this every day<br /><br />What is my motivation?<br />It\'s called a J.O.B.<br />For I would rather lose countless slumber<br />Than wake up each morning without a place to be<br /><br />And yes I do value<br />The days that I have away<br />For when I am free from work<br />I can slumber all night and day<br /><br /><br /><br /><div style=\"text-align: center;\"><i>Work shouldn\'t consume your life. You should work to get the money that you want to live the life <b>you want to live</b>. That is its only purpose. Enjoy your life! -Monica Renata</i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg\" width=\"221\" /></a></div><br />','The Morning Hustle','','publish','open','open','','the-morning-hustle','','','2014-08-09 21:20:59','2014-08-09 21:20:59','',0,'http://www.monicarenata.com/?p=201',0,'post','',0),(202,1,'2013-11-11 13:22:00','2013-11-11 13:22:00','<div style=\"text-align: center;\">Climbing up this mountain</div><div style=\"text-align: center;\">Gripping trying not to fall</div><div style=\"text-align: center;\">I put aside all my fear</div><div style=\"text-align: center;\">I will not be overwhelmed by it all</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The sun radiates down</div><div style=\"text-align: center;\">And the wind whips across my back</div><div style=\"text-align: center;\">I feel my heart beat faster</div><div style=\"text-align: center;\">And then my body starts to react</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">My grip gets much tighter</div><div style=\"text-align: center;\">My feet lock in place too</div><div style=\"text-align: center;\">I am like a little spider</div><div style=\"text-align: center;\">Trying to climb out of a glass of juice</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But yet I cannot give up</div><div style=\"text-align: center;\">And I will not give up now</div><div style=\"text-align: center;\">I reach up ahead of me</div><div style=\"text-align: center;\">And I never look back down</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I keep going til I am almost there</div><div style=\"text-align: center;\">And then my fingers bleed</div><div style=\"text-align: center;\">But this is just one trouble</div><div style=\"text-align: center;\">I will have to suck up indeed</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Hand, Foot</div><div style=\"text-align: center;\">Hand, Hand, Foot</div><div style=\"text-align: center;\">Seems to be the pattern of the climb</div><div style=\"text-align: center;\">And then I feel a blade of grass</div><div style=\"text-align: center;\">And I know the win is mines</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Life is full of challenges</div><div style=\"text-align: center;\">Some are mountains indeed</div><div style=\"text-align: center;\">But just have faith in yourself</div><div style=\"text-align: center;\">And always believe</div><div style=\"text-align: center;\">Believe that you are capable</div><div style=\"text-align: center;\">Believe that you can accomplish all</div><div style=\"text-align: center;\">Because you will be surprised at the things you can accomplish</div><div style=\"text-align: center;\">Even though they are so tall</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They always said I couldn\'t do it</div><div style=\"text-align: center;\">They said it was too much for me</div><div style=\"text-align: center;\">But I have climbed a mountain every day</div><div style=\"text-align: center;\">And the mountain is the one who faced defeat</div><br /><i>Life is full of challenges. Some are big and some are small. Sometimes we complain about hills in life, and fear the mountains because they are so tall. But every goal can be accomplished, and it all starts within you. For you can complete any climb, if to yourself you are always true!! -Monica Renata</i><br /><i><br /></i><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg\" /></a></div><i><br /></i>','The Climb','','publish','open','open','','the-climb','','','2014-08-09 21:20:59','2014-08-09 21:20:59','',0,'http://www.monicarenata.com/?p=202',0,'post','',0),(203,1,'2013-11-11 03:26:00','2013-11-11 03:26:00','A kiss<br />Something that can mean so little<br />Yet also mean the most<br />I sit down and I wonder<br />I ponder what it would be like<br />For they are the object of my desire<br />Yet, I am afraid<br />I am afraid to make a move because I am doubtful<br />But I wonder<br />Could this be it.....<br />Could this be the first kiss that turns into the last kiss of my life<br />Could this person be the one to open my eyes to a new world I have yet to encounter<br />Hmmmm....<br /><br /><br /><div style=\"text-align: center;\">I never encountered a love like this</div><div style=\"text-align: center;\">You are the my first and my last kiss</div><div style=\"text-align: center;\">Emotion so raw and yet so true</div><div style=\"text-align: center;\">All of my emotions that I have for you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Two souls connecting </div><div style=\"text-align: center;\">Dancing lightly in air</div><div style=\"text-align: center;\">I can feel it in my heart</div><div style=\"text-align: center;\">Because in my heart you are there</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">So unbelievable </div><div style=\"text-align: center;\">I never thought it to be true</div><div style=\"text-align: center;\">Two souls intertwined </div><div style=\"text-align: center;\">As lovers do</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Flesh touches flesh</div><div style=\"text-align: center;\">And bodies unite</div><div style=\"text-align: center;\">You grab me softly</div><div style=\"text-align: center;\">I don\'t want to leave from your sight</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Kiss me so passionately </div><div style=\"text-align: center;\">Like true loves do</div><div style=\"text-align: center;\">My first</div><div style=\"text-align: center;\">My last</div><div style=\"text-align: center;\">Will always be you</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"282\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','The Last Kiss','','publish','open','open','','the-last-kiss','','','2014-08-09 21:20:59','2014-08-09 21:20:59','',0,'http://www.monicarenata.com/?p=203',0,'post','',0),(204,1,'2013-11-11 02:24:00','2013-11-11 02:24:00','<div style=\"text-align: center;\">Just like my favorite flowers</div><div style=\"text-align: center;\">So beautiful and bright</div><div style=\"text-align: center;\">Enhances the mood of the room</div><div style=\"text-align: center;\">Radiates in the light</div><div style=\"text-align: center;\">Each petal is uniquely beautiful</div><div style=\"text-align: center;\">The fragrance smells so divine</div><div style=\"text-align: center;\">You remind me of my favorite flowers</div><div style=\"text-align: center;\">Only difference is that you get better with time</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi\" /></a></div><div style=\"text-align: center;\"><br /></div><br />','My Favorite Flowers','','publish','open','open','','my-favorite-flowers','','','2014-08-09 21:21:00','2014-08-09 21:21:00','',0,'http://www.monicarenata.com/?p=204',0,'post','',0),(205,1,'2013-11-11 01:49:00','2013-11-11 01:49:00','A collection of so many pieces<br />These pieces which create a whole<br />Never truly ever seen together<br />Yet each piece continues to grow old<br /><br />A collection of beautiful pieces<br />Yet few only the eye can see<br />The owner holds on to each piece tightly<br />Rarely giving others one piece<br /><br /><i>A beautiful collection</i><br /><i>I decided to give to you</i><br /><i>Giving you the ability to piece together</i><br /><i>All of my inner truths</i><br /><i>Oh how much I have given</i><br /><i>I have given so much of me</i><br /><i>You had every piece that made me whole</i><br /><i>You had every piece of me</i><br /><br />A collection of so many pieces<br />These pieces which create a whole<br />I prayed and prayed and prayed to God<br />To find someone who could hold..<br />Hold on to every piece of me<br />Be there when I needed a friend<br />Accept me for who I am<br />Help soothe my doubts within<br />I thought I found that person..<br />That one who\'s hands were large enough to hold<br />But instead now my pieces<br />Are smaller pieces than before<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original-300x185.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"198\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original-300x185.jpg\" width=\"320\" /></a></div><br />','The Collection','','publish','open','open','','the-collection','','','2014-08-09 21:21:01','2014-08-09 21:21:01','',0,'http://www.monicarenata.com/?p=205',0,'post','',0),(206,1,'2013-11-10 16:57:00','2013-11-10 16:57:00','Pretty, Pretty, Pretty<br />That\'s what they say to me<br />Yet they take no time<br />To see what\'s underneath<br /><br />Pretty, Pretty, Pretty<br />That\'s what they seem to see<br />But what if all of this makeup<br />Quickly went away<br /><br />Pretty, oh so pretty<br />What it is like being a girl<br />Being valued by her physical appearance<br />While her insides are ignored by the world<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg\" width=\"231\" /></a></div><br /><br />','Pretty, Pretty, Pretty','','publish','open','open','','pretty-pretty-pretty','','','2014-08-09 21:21:03','2014-08-09 21:21:03','',0,'http://www.monicarenata.com/?p=206',0,'post','',0),(207,1,'2013-11-09 04:17:00','2013-11-09 04:17:00','I could say that I miss you<br />But that wouldn\'t mean a thing<br />For I don\'t think you even care<br />I don\'t think you care about me<br /><br />I could say that I miss you<br />But that wouldn\'t make sence at all<br />Because if I really missed you<br />Maybe I would pick up the phone and call<br /><br />I could say that I miss you<br />But my actions prove otherwise<br />I pretend like it doesn\'t bother me<br />But I\'m really hurting inside<br /><br />I could say I miss you<br />In fact, I really do<br />But what is the point of missing someone<br />Who doesn\'t miss you<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg\" height=\"257\" width=\"320\" /></a></div><br />','I could say I miss you','','publish','open','open','','i-could-say-i-miss-you','','','2014-08-09 21:21:04','2014-08-09 21:21:04','',0,'http://www.monicarenata.com/?p=207',0,'post','',0),(208,1,'2013-11-08 15:35:00','2013-11-08 15:35:00','<div style=\"text-align: center;\">Money, Money, Money</div><div style=\"text-align: center;\">It can buy you many things</div><div style=\"text-align: center;\">It can buy you flashy cars</div><div style=\"text-align: center;\">It can buy you diamond rings</div><div style=\"text-align: center;\">It can put food on the table</div><div style=\"text-align: center;\">And also gas in your ride</div><div style=\"text-align: center;\">Money, Money, Money</div><div style=\"text-align: center;\">We need that in our lives</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Whether it is paper or shiny copper coins</div><div style=\"text-align: center;\">We want more and we need more now!</div><div style=\"text-align: center;\">For money we can\'t avoid</div><div style=\"text-align: center;\">It is essential to our existence</div><div style=\"text-align: center;\">Or so we think somehow</div><div style=\"text-align: center;\">Money, Money, Money</div><div style=\"text-align: center;\">We need it for everything</div><div style=\"text-align: center;\">We want it all</div><div style=\"text-align: center;\">We need it all</div><div style=\"text-align: center;\">We have to have it today </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Those clothes you wear today</div><div style=\"text-align: center;\">That burger and those fries</div><div style=\"text-align: center;\">The toothpaste used to brush your teeth</div><div style=\"text-align: center;\">Each had a dollar value</div><div style=\"text-align: center;\">Each cost cash to see</div><div style=\"text-align: center;\">The house you live in</div><div style=\"text-align: center;\">Your medical care</div><div style=\"text-align: center;\">The coffin when you die</div><div style=\"text-align: center;\">Money, Money, Money</div><div style=\"text-align: center;\">It seems like it buys everything you need in your life</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But then when you get at home </div><div style=\"text-align: center;\">You finally sit around and think...</div><div style=\"text-align: center;\">And that\'s when it finally hits you</div><div style=\"text-align: center;\">You really haven\'t bought a thing </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Oh what joy it is to be surrounded</div><div style=\"text-align: center;\">By so many materialistic things</div><div style=\"text-align: center;\">I thought money bought me happiness</div><div style=\"text-align: center;\">But money didn\'t buy me a thing</div><br /><div style=\"text-align: center;\"><b><i>The best things in life have no value. Appreciate each moment and love with all your heart! -Monica Renata</i></b></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"183\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Money, Money, Money','','publish','open','open','','money-money-money','','','2014-08-09 21:21:05','2014-08-09 21:21:05','',0,'http://www.monicarenata.com/?p=208',0,'post','',0);
INSERT INTO `wp_xwml_posts` VALUES (209,1,'2013-11-08 12:58:00','2013-11-08 12:58:00','<div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Grandpa told me many things</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">I still remember what he said</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">He said treat others with kindness</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">And don\'t let success go to your head</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">He said appreciate the little things</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Because those are the things that matter the most</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Don\'t ever forget where you came from</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Because it will help you get to where you plan to go</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Oh I still remember</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">All the things that grandpa said</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">So I live life according to this</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">And I must admit life is going swell</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Who knew that those few words</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Could fit exactly into life</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">Grandpa told me many things</span></div><div style=\"text-align: center;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\">And grandpa was very right </span></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"256\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings-300x239.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div><br /><br />','Grandpa Said','','publish','open','open','','grandpa-said','','','2014-08-09 21:21:05','2014-08-09 21:21:05','',0,'http://www.monicarenata.com/?p=209',0,'post','',0),(210,1,'2013-11-07 22:08:00','2013-11-07 22:08:00','<div style=\"text-align: center;\">Head on my pillow</div><div style=\"text-align: center;\">Cool breeze through the night</div><div style=\"text-align: center;\">I feel your arms around me</div><div style=\"text-align: center;\">And I know that this is <span style=\"font-size: large;\">the life</span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The life that I wanted.......</div><div style=\"text-align: center;\">The life that I dreamed....</div><div style=\"text-align: center;\">You make me happy....</div><div style=\"text-align: center;\">You make me sing.....</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Fingers going through my hair</div><div style=\"text-align: center;\">I can feel you as you breathe</div><div style=\"text-align: center;\">You hold on to me so tightly</div><div style=\"text-align: center;\">I don\'t ever want to see you leave</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Don\'t wake up</div><div style=\"text-align: center;\">Stay in this moment forever</div><div style=\"text-align: center;\">I want you here</div><div style=\"text-align: center;\">I have to have you forever</div><div style=\"text-align: center;\">Kiss me so softly </div><div style=\"text-align: center;\">All through the night</div><div style=\"text-align: center;\">I don\'t even open my eyes</div><div style=\"text-align: center;\">As your fingers intertwine with mines</div><div style=\"text-align: center;\">I feel your arms around me</div><div style=\"text-align: center;\">And I know that this is <span style=\"font-size: large;\">the life</span></div><div style=\"text-align: center;\"><span style=\"font-size: large;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj-300x234.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"249\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj-300x234.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><span style=\"font-size: large;\"><br /></span></div><br /><br />','The Life','','publish','open','open','','the-life','','','2014-08-09 21:21:06','2014-08-09 21:21:06','',0,'http://www.monicarenata.com/?p=210',0,'post','',0),(211,1,'2013-11-07 14:04:00','2013-11-07 14:04:00','I have learned many things in life. I have learned countless things which were mistakenly learned.... I have learned so much..........And I appreciate this!<br /><br />Of all of these lessons, one has stood out the most to me.<br />This lesson has made me have the strength to get over countless situations.<br />This lesson has actually brought happiness in my life....<br />And that lesson is <span style=\"color: #cc0000;\">*drum roll please!!!!!!!!!!!!!!!*</span><br /><br /><div style=\"text-align: center;\"><span style=\"font-size: large;\"><i>Hating someone gets you NO WHERE!!!</i></span></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: left;\">I mean think about it.........where does it get you? Does it make your future brighter? Does it bring a smile to your face every single day to hate someone? The answer is no. It does nothing for you. When you hate someone you just bring unneeded stress into your life. I mean, honestly, do you think the person that you \"hate\" is taking the time and the energy out of their day to speak harsh words or consume their thoughts about you? </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">When you hate someone, you create a burden which you carry on until you actually forgive that person for his or her ways or actions. There is no point in holding on to a grudge, because quite frankly... It isn\'t worth it. Find it in your heart to forgive someone for their mistakes, or better yet, if you have wronged them in any way as well <u>APOLOGIZE</u>! So many of us are quick to point out others wrongs, but we neglect to recognize our own. </div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I use to despise others. I was treated badly and I uttered those dreadful words, \"I hate him\" or \"I hate her\" and although it may have felt nice saying them....guess what???!!! ............ They didn\'t change a damn thing..lol. Besides, I realize that at times I may treat others badly as well, even if it is not purposely.....</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">I guess what I\'m trying to say is...</div><div style=\"text-align: left;\">People are people........</div><div style=\"text-align: left;\">Everyone isn\'t a saint every day</div><div style=\"text-align: left;\">We all have done some wrong in our life</div><div style=\"text-align: left;\">And there is no reason to hate someone for it</div><div style=\"text-align: left;\">Just move on</div><div style=\"text-align: left;\">Don\'t burden yourself with hate</div><div style=\"text-align: left;\"><br /></div><div style=\"text-align: left;\">Instead of speaking harsh words about your enemy, speak kind words about your friend. Instead of posting status on social networks about things in which you H-A-T-E, talk about the things you love. Replace all of this negativity with something else. You will be surprised at how much happiness you let into your life, and into the lives of others as well!!!</div>','HATE.......An Unneccessary Burden','','publish','open','open','','hate-an-unneccessary-burden','','','2014-08-09 21:21:06','2014-08-09 21:21:06','',0,'http://www.monicarenata.com/?p=211',0,'post','',0),(212,1,'2013-11-07 12:21:00','2013-11-07 12:21:00','<span style=\"color: yellow;\"><i>This is a piece I found that I wrote in 2008. I read it this morning and surprising I kind of feel the same way today. If all the negative energy was used for something positive, then so much could be accomplished. -Monica Renata</i></span><br /><br /> <br /> Quite frankly, I have been surrounded by so many negative people that I am shame to admit that I know. It appears that everyone has a problem with EVERYONE ELSE, and they can\'t seem to get along. And then I am put into the middle of the situation, and forced to choose a side. Everyone always gives me the excuse about, \"Well who did you know for the longest?\"........Well I thought about this like for so so long. And I couldn\'t even find the correct answer to this question. What am I to say? I knew you for two years but then I know the other for about one year. WHATS THE DIFFERENCE, I have no clue......But yeah, I finally found the answer to that question, and the answer is OUT OF ALL THE PEOPLE IN THIS WHOLE WORLD, I knew ME for the longest. <br /><br />I am sick and tired of people who want to always constantly go at it with other people. It\'s like WHAT IS THE DEAL???!!!! If they took all of this time and energy they use to be mean and disrespectful to others and do something productive, just imagine the possibilities. I am also tired of people just downgrading each other for doing the right thing. I don\'t mean to call anyone out, but SO WHAT IF I GO TO CLASS EVERYDAY!!!! I am paying for it, kinda. Besides, I do not want to be a NOBODY for the rest of my life. I am on a mission and I expect to reach my ultimate goal by 2015 {I know that is a long time, but I know what I am doing}. <br /><br />I just don\'t understand.........Why does everyone have to be against each other? Why does some call others LAME just because they are doing the right thing? Why is it disregarded as nothing when someone finally achieves something that took so many long hours and dedication to obtain? Why do so many people create problems in their lives then a year or two down the road want to regret it?<br /><br />All I am saying, is that some people need to think. For a long time, I thought the problem was me. However, I realized that EVERYTHING cannot be my fault. I try to make the world a better place. I lend a helping hand to all who ask for it. I try to be a friend to almost anyone who is willing......I just don\'t know..........Maybe I am too nice, but I do not think that anyone can ever be TOO NICE.....But we need to just get our act together. Stop being against each other. And try to work together for a better future.......I know that this whole thing probably was kinda cheesy......and some may be like \"Oh, Monica needs to just shut up\"......But truth is truth....Some of us just really need to get our act together.','A New Truth {Just Something on my Mind}','','publish','open','open','','a-new-truth-just-something-on-my-mind','','','2014-08-09 21:21:06','2014-08-09 21:21:06','',0,'http://www.monicarenata.com/?p=212',0,'post','',0),(213,1,'2013-11-06 15:36:00','2013-11-06 15:36:00','When was the last time you used your ears?<br />When was the last time you used them to hear what was going on around you?<br />Do you remember?<br />Can you exactly tell me the last conversation you had that mattered?<br />Probably not...........and the reason why is because your ears were open...but you weren\'t listening.<br /><br />Throughout the day it appears as though the only voice you truly listen to is your own. You can hear your mouth moving a mile a minute. You cut others off so you can finish your elaborate sentences. You correct others as soon as they voice their opinion because it goes against what you were just speaking of. You go on and on and on and on...but you don\'t listen to anyone... anyone but yourself.<br /><br />Everyone\'s words have value. We just have to listen. Sure someone might not have the same viewpoint as you but you should respect their viewpoint and at least hear them out. For you never know.... maybe someone needed to get out how they really felt. Maybe if they expressed how they truly felt it would change so many things...but you won\'t listen... and they know this... they know you don\'t care... so they quietly keep everything to themselves.... They want you to listen. They tried to get you to listen....but you won\'t.<br /><br /><div style=\"text-align: center;\">I sit under the moon and the stars</div><div style=\"text-align: center;\">I have so much to say but I know that it doesn\'t matter</div><div style=\"text-align: center;\">Why speak when I will not be heard?</div><div style=\"text-align: center;\">The battles I am going through I must go through alone</div><div style=\"text-align: center;\">Cause no one else is there</div><div style=\"text-align: center;\">No one else will listen...</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I feel as if I am on a cloud which has no true direction</div><div style=\"text-align: center;\">I listen to so many others express themselves</div><div style=\"text-align: center;\">But when I finally say something</div><div style=\"text-align: center;\">I am reprimanded and told \"It\'s not all about you\"...</div><div style=\"text-align: center;\">But what is about me? </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I am everyone\'s shoulder to cry on</div><div style=\"text-align: center;\">But who is going to be mines?</div><div style=\"text-align: center;\">Where is my shoulder?</div><div style=\"text-align: center;\">Why must I be so strong?</div><div style=\"text-align: center;\">Strong for you... strong for them... strong for myself...</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I hold so much in to satisfy the world</div><div style=\"text-align: center;\">I smile so that I don\'t let others down</div><div style=\"text-align: center;\">I give my last just so others will not have to do without.....</div><div style=\"text-align: center;\">But who has my back?</div><div style=\"text-align: center;\">Who can I turn to when I need guidance? </div><div style=\"text-align: center;\">Who can listen to my true feelings and not judge me based upon them?</div><div style=\"text-align: center;\">Who??</div><br /><i>People let you down........ People sometimes won\'t listen to a word you say..... but what can you do about it? Sometimes you have to just get down on your knees and pray about something over and over again..People let you down, but God doesn\'t. People sometimes won\'t listen to a word you say, but God does. He knows what you are going through and he can understand it far better than any other human has. Oh the battle that some people go through in order to just be heard........</i><br /><br /><u>Is it really that hard to listen? </u><br /><br />When was the last time you used your ears to hear me?<br />When was the last time you used them to hear what was going on around you?<br />Do you remember?<br />Can you exactly tell me the last conversation you and I had that mattered?<br />What was the last thing I said?<br />Was it important to you or did you brush it off?<br />Did you even really try to listen?.......... <br />Probably not...........and the reason why is because your ears were open...but you weren\'t listening because although they were open they were actually shut. <br /><br />when you listen you learn.<br />You learn about me<br />You learn about them<br />And you can learn about you as well...<br />But first you need to learn to listen<br />In order to listen successful<br /><br /><br /><div style=\"text-align: center;\"><i><b>Sometimes we cannot grasp the true beauty of one\'s soul because we fail to listen. In failing to listen, we fail to learn the true essence of the person within. Learn to listen so that you may listen to learn. -Monica Renata</b></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"231\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg\" width=\"320\" /></a></div><br />','Learn To Listen = Listen to Learn','','publish','open','open','','learn-to-listen-listen-to-learn','','','2014-08-09 21:21:07','2014-08-09 21:21:07','',0,'http://www.monicarenata.com/?p=213',0,'post','',0),(214,1,'2013-11-06 06:19:00','2013-11-06 06:19:00','Why do you always have your guard up?<br />It\'s like you built a wall and you won\'t let anyone in!<br />Why can\'t you be normal?<br /><br />How many times have you heard those words before? How many times have others made you feel inadequate because you were afraid to reveal your true feelings about a certain topic? It\'s crazy because I\'m pretty sure we have all heard this before. We may here it once a month or even twice a day, but we hear it. So why do you have your guard up? Is it because you are use to getting hurt and you want to shield your heart from all of the pain and heartache? Is it because you know that disappointments can be unbearable at times so you try to protect yourself? Or is it because you are selfish and you feel like no one deserves to get in?<br /><br />Many times when we behave in such a manner, we are trying to protect ourselves. We are trying to protect our feelings... Protect our heart...but in the end we end up hurting ourselves because we end of being deprived of some of the basic emotions which make us happy....like the emotions we feel when we get close to someone...It\'s like everyone was write.... It\'s like you built a wall and you won\'t let anyone in. People show you love and you can\'t respond. Hate is shown to you and yet you are not affected... It\'s like you are numb to all that is around you. But you are okay... and that\'s what matters, right?<br /><br />You lose so much whenever you have your guard up, and it is up to you to determine if it is worth it. Will you always be so afraid of getting hurt that you protect your heart as if it was the King\'s castle but lose every possible ounce of happiness that someone else could introduce? Or do you let your guard down....take down that wall piece by piece.... and hand someone a few bricks which they can decide to throw at you or help build a path for the two of you to walk on...<br /><br />People build walls because at the end of the day, they know that although there is good in the world, evil still does exist. They also know that if you give up your protection, you are giving another person the opportunity to be the new protector or the one who breaks you apart. As I said before, when you take down your wall, you hand another person the bricks and they decide what they will do with them. They could decide to build a path with those bricks... a path that can open both of your paths in life... Or they can take those bricks... grasp them tightly in the palms of their hands and throw with all of their might until you are finally to the ground.... That reality scares many... that\'s what makes that wall stay intact for years upon years.... that\'s what makes someone believe that protecting themselves is more important than \"true happiness\"....because although true happiness has the greatest feeling in the world, nothing can compare to complete and total despair caused by heartache.<br /><br />So the next time you run into someone, just give it some thought before you ask those few questions.<br />Why do you always have your guard up?<br />It\'s like you built a wall and you won\'t let anyone in!<br />Why can\'t you be normal?<br /><br />Maybe there guard is up because so many have let them down.<br />Maybe they built a wall so they could no longer be hurt from the pains of everyday life..<br />Maybe this is their normal.........<br />You never really know....<br /><div style=\"clear: both; text-align: center;\"><br /></div>Guards do come down with time. But if you don\'t want to wait, then most likely you weren\'t worth the destruction of the other persons wall. <br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6\" style=\"margin-left: 1em; margin-right: 1em; text-align: center;\"><img border=\"0\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6\" /></a></div>','Let Your Guard Down','','publish','open','open','','let-your-guard-down','','','2014-08-09 21:21:07','2014-08-09 21:21:07','',0,'http://www.monicarenata.com/?p=214',0,'post','',0),(215,1,'2013-11-06 02:48:00','2013-11-06 02:48:00','<div style=\"text-align: center;\">I can\'t give up</div><div style=\"text-align: center;\">I can\'t let disappointments get the best of me</div><div style=\"text-align: center;\">Sometimes I may fall.... </div><div style=\"text-align: center;\">But I have to get back up</div><div style=\"text-align: center;\">I must get back up!!!</div><div style=\"text-align: center;\">I can\'t let the world break me. </div><div style=\"text-align: center;\">I can\'t let them break me down</div><div style=\"text-align: center;\">They can\'t</div><div style=\"text-align: center;\">And they won\'t!!</div><div style=\"text-align: center;\">I will rise up</div><div style=\"text-align: center;\">stronger than before</div><div style=\"text-align: center;\">stronger than I have ever been</div><div style=\"text-align: center;\">Today opens up a new chapter</div><div style=\"text-align: center;\">I am changing the end of my own book of life</div><div style=\"text-align: center;\">Sometimes it is great to go astray</div><div style=\"text-align: center;\">And that is what I shall do </div><div style=\"text-align: center;\">No more holding my head down</div><div style=\"text-align: center;\">No more feeling ashamed</div><div style=\"text-align: center;\">No more being untrue to myself</div><div style=\"text-align: center;\">I have to make it </div><div style=\"text-align: center;\">I want to make it</div><div style=\"text-align: center;\">And I <b><u>will not</u></b> let anyone bring me down this time</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><object class codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" data-thumbnail-src=\"http://img.youtube.com/vi/ujPxszZf9Pw/0.jpg\" height=\"266\" width=\"320\"><param name=\"movie\" value=\"http://youtube.googleapis.com/v/ujPxszZf9Pw&source=uds\" /><param name=\"bgcolor\" value=\"#FFFFFF\" /><param name=\"allowFullScreen\" value=\"true\" /><embed width=\"320\" height=\"266\" src=\"http://youtube.googleapis.com/v/ujPxszZf9Pw&source=uds\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\"></embed></object></div><div style=\"text-align: center;\"><br /></div>','Can\'t Bring Me Down','','publish','open','open','','cant-bring-me-down','','','2014-08-09 21:21:07','2014-08-09 21:21:07','',0,'http://www.monicarenata.com/?p=215',0,'post','',0),(216,1,'2013-11-06 01:44:00','2013-11-06 01:44:00','Keep in mind those feelings<br />Keep in mind the words you say<br />Keep in mind your actions<br />For these affect others each day<br /><br />Keep in mind your tone of voice<br />Keep in mind the way you slant your eyes<br />For they can make others feel as though they shouldn\'t speak to you at times<br /><br />Keep in mind the ones you care about<br />Keep in mind how you don\'t want them to go away<br />Fix your problems within your world<br />Don\'t let your problems drive others away<br /><br />Keep in mind those feelings<br />Keep in mind the words you say..<br />Because sometimes when you act recklessly<br />You make others walk away<br /><br /><br /><div style=\"text-align: center;\"><i>Don\'t let the stresses of the world push away people who actually care about you. Learn how to not exert the anger from other faucets of your life upon those who love you....for if you don\'t...they might walk away. Don\'t throw away something you always thought you would keep. -Monica Renata</i></div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"193\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg\" width=\"320\" /></a></div><br />','Keep','','publish','open','open','','keep','','','2014-08-09 21:21:09','2014-08-09 21:21:09','',0,'http://www.monicarenata.com/?p=216',0,'post','',0),(217,1,'2013-11-05 13:02:00','2013-11-05 13:02:00','Kindness....<br />Genuine Kindness...<br />What ever happened to this?<br />When was the last time you were kind to someone?<br />Not because you had to be kind...but because you wanted to be kind?<br /><br />Sometimes we are so overwhelmed with our own lives that we think that we cannot spare an ounce of kindness. After all, it seems as though no one is taking time out of their day to show you \"<b><i>genuine kindness</i></b>\", so why should you bother showing someone else that? We walk around each day and only think about me, Me, ME...but what about everyone else? <br /><br />You are having a good day..someone else is having a good day too<br />You are having a bad day....someone else is having a bad day too<br />You are upset....someone else is upset too<br />But you will never know...<br />People are hard to read at times, but kindness has a way of making people smile<br /><br />Genuine kindness...<br />That random kindness<br />That simple compliment<br />That helping hand...<br />People <u>appreciate</u> things like that..<br /><br />It is true that some people do not appreciate kindness. They abuse those who are kind to them<br />But just because people like that exist, it doesn\'t mean that you should be afraid to be kind. <span style=\"color: purple;\"><b><i><span style=\"color: red;\">You never know how your kindness can affect someone.</span></i> </b></span>Your encouraging words may give a young student the strength to finish school even though they were contemplating dropping out. Your assistance may make someone believe that it is possible to accomplish things they thought could never be reality. Your presence and support can make someone believe they are not alone.... Genuine kindness can do so much!!!<br /><br />I guess what I am trying to say is........<i><u> Be kind to others</u></i>. Others may not be kind to you, but be kind for yourself.<span style=\"color: blue;\"> <span style=\"background-color: yellow;\"><i><b>It is such a blessing to reawaken a dead soul</b></i></span></span>, and sometimes genuine kindness can do that for some people. Trust me... for kindness has done the same for me. :)<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"181\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg\" width=\"320\" /></a></div><br /><br /><br /><br /><br />','Genuine Kindness','','publish','open','open','','genuine-kindness','','','2014-08-09 21:21:10','2014-08-09 21:21:10','',0,'http://www.monicarenata.com/?p=217',0,'post','',0),(218,1,'2013-11-05 12:05:00','2013-11-05 12:05:00','<div style=\"text-align: center;\">Beauty is in the eye of the beholder</div><div style=\"text-align: center;\">But what is there to hold</div><div style=\"text-align: center;\">For life changes everyday</div><div style=\"text-align: center;\">It will continue to change until we grow old</div><div style=\"text-align: center;\">But what is the point of loving something</div><div style=\"text-align: center;\"><i><b><u>Exactly</u></b></i> as it is now</div><div style=\"text-align: center;\">For when time moves forward each second</div><div style=\"text-align: center;\">Things seem to change somehow</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Life is Beautiful','','publish','open','open','','life-is-beautiful','','','2014-08-09 21:21:11','2014-08-09 21:21:11','',0,'http://www.monicarenata.com/?p=218',0,'post','',0),(219,1,'2013-11-04 01:05:00','2013-11-04 01:05:00','<div style=\"text-align: center;\">The sunny days have past</div><div style=\"text-align: center;\">And now comes the icy wind</div><div style=\"text-align: center;\">Freezing all it comes in contact with</div><div style=\"text-align: center;\">on the outside and deep within</div><div style=\"text-align: center;\">Oh how long will this last?</div><div style=\"text-align: center;\">How long will it take the ice to thaw?</div><div style=\"text-align: center;\">For sometimes winters last forever</div><div style=\"text-align: center;\">Despite the presence of the sun</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"214\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div><br />','Winter Comes','','publish','open','open','','winter-comes','','','2014-08-09 21:21:12','2014-08-09 21:21:12','',0,'http://www.monicarenata.com/?p=219',0,'post','',0),(220,1,'2013-10-31 19:12:00','2013-10-31 19:12:00','You can\'t change other people<br />You can\'t make someone see what you see<br />And too many times we put in time and effort to try to accomplish those things<br /><br />But people are people<br />They are entitled to feel how they feel<br />And their emotions may be dependent on your actions<br />But you can\'t control how they feel<br /><br />You can\'t change someone<br />You can\'t make them see things your way<br />They have to want to change themselves<br />And observe others perspectives about things<br /><br />So stop trying to make this happen<br />Stop trying to force others to believe<br />Because they will listen when they want to listen<br />And speak when they want to speak<br />You say a thousand words and they only heard 3 <br />You can\'t change what doesn\'t want to be changed<br />You can only just wait and see<br /><br />Sometimes change takes a while in a person<br />And they need to realize that change starts with M-E <br />And even with change within yourself<br />You must realize that it always starts with YOU<br /><br />It\'s that simple....<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/holstee.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"231\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/holstee.png\" width=\"320\" /></a></div><br />','Changing Others','','publish','open','open','','changing-others','','','2014-08-09 21:21:13','2014-08-09 21:21:13','',0,'http://www.monicarenata.com/?p=220',0,'post','',0),(221,1,'2013-10-31 13:20:00','2013-10-31 13:20:00','<div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Beautifully made</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And wonderfully created</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">The greatest ship sailing the seas</span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Across many different waters</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">This ship shall continue to sail</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Even though its unknown of the path it continues to seek</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">It sails through the moon and the sunlight</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">It also sails through the rain</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Always staying strong and firm</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">So beautifully and wonderfully made</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">There is always a fear that it will sink</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But this fear holds the ship back none</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">For life is full of chances </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Positive and negative ones</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And the only time the negative things affect you</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Is when you give them a chance</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">For if you don\'t let negativity in</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">You will continue to sail</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">See people are a lot like ships</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">They change direction sometimes with the wind</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But usually when they are in a determined path</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">They do whatever it takes</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Whatever it takes to let them get there</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Whatever it takes to make sure everyone is safe</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Sailing smoothly through life</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And encountering thunderstorms along the way</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But all in all they survive it all</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Because of their will to live</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">However sometimes people let negative thoughts conjure within their head</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And these negative thoughts become a part of you</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And they open you up to the world</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And then you let the words of others flow through you like water from that sea would</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And then you become heavy</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">So heavy you begin to sink</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And at that moment you are panicking</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But you try to fix the leak</span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">For people are just like ships you know</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Beautifully and wonderfully made </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">They are constantly something negative around</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Like the water to the ship in the sea </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But an entire body of water can\'t sink a ship</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">unless water gets inside</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And when that water slowly creeps in </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">you can usually find a fix in time</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But if you don\'t fix it soon</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And let the negatives fester and swell</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">The water will continue to gather</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And your ship will soon sink instead of sail</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But at the end of the day I just want you to know</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">That no matter what you go through</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Negativity in this world can only bring you down </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">If you allow it inside of you</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Sure it can surround you at times</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">But you can and must prevail</span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Be the ship that sails the seas through the sunny days and the storms</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And don\'t let the negatives in life bother you</span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Don\'t let the wind constantly sway you too</span></div><div style=\"text-align: center;\"></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">For you are the ship that is sailing through life </span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">so to your path, always stay true</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">And don\'t dwell on all the negatives constantly coming your way</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">Just continue on with your life</span></div><div style=\"text-align: center;\"><span style=\"font-size: x-small;\">For you shall sail another day</span></div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"239\" src=\"http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp\" width=\"320\" /></a></div><br /><br /><br /><br />','The Ship','','publish','open','open','','the-ship','','','2014-08-09 21:21:13','2014-08-09 21:21:13','',0,'http://www.monicarenata.com/?p=221',0,'post','',0),(222,1,'2013-10-31 12:31:00','2013-10-31 12:31:00','You awaken from your slumber<br />And yet again you have been blessed with another day to live<br />So, the question is...<br />What do you do?<br />What will you accomplish today?<br />Something is waking you up every morning, but what is it?<br /><br />At times, we never really ask ourselves these questions<br />We feel like time is fleeting away so fast that we rush to take on the day<br />Yet we don\'t take the time to appreciate it for what it is<br />We don\'t take the time to say thank you for what we have<br />We don\'t take the time to say I love you to the many people we may love...<br />So give it some thought now<br /><br />What makes you wake up in the morning?<br />What makes you push through each and every day?<br />There is something.........<br />Someone..............<br />I don\'t know what or who it is...but you do<br />And to be honest, what you wake up for each day probably makes you so happy<br />But you don\'t really know it...<br />Because you never really took the time to think about it<br />Because you were too busy trying to make perfect use of every second within your day<br /><br />So take the time today to be thankful for what you have<br />Be thankful for the people in your life<br />Be happy with your current situation because there are people worst off than you<br />Be happy that you were blessed with another day! <br />Pick up the phone and tell someone how much you care about them<br />Express to them your true feelings without being ashamed<br />After all.....<br />Sometimes the very things that wake you up<br />Can also leave in an instant<br />So appreciate it while it is here <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw\" /></a></div><br /><br /><br />','What wakes you up in the morning?','','publish','open','open','','what-wakes-you-up-in-the-morning','','','2014-08-09 21:21:13','2014-08-09 21:21:13','',0,'http://www.monicarenata.com/?p=222',0,'post','',0),(223,1,'2013-10-31 01:08:00','2013-10-31 01:08:00','<div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"> <img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318-300x300.jpg\" /> </a> </div>','Never change for others, Only change for YOURSELF.','','publish','open','open','','never-change-for-others-only-change-for-yourself','','','2014-08-09 21:21:14','2014-08-09 21:21:14','',0,'http://www.monicarenata.com/?p=223',0,'post','',0),(224,1,'2013-10-29 22:49:00','2013-10-29 22:49:00','<div style=\"text-align: center;\">That moment</div><div style=\"text-align: center;\">That one moment </div><div style=\"text-align: center;\">That moment that you can\'t get out of your head</div><div style=\"text-align: center;\">That moment that plays over and over and over</div><div style=\"text-align: center;\">That moment you wish you could forget but yet always remember</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You know....that moment</div><div style=\"text-align: center;\">We all had that moment</div><div style=\"text-align: center;\">That moment that we relive in our heads over and over again</div><div style=\"text-align: center;\">We analyze it completely</div><div style=\"text-align: center;\">And then we question ourselves</div><div style=\"text-align: center;\">\"What if I did this?\"</div><div style=\"text-align: center;\">\"What if I did that?\"</div><div style=\"text-align: center;\">\"Was it even worth it?\"</div><div style=\"text-align: center;\">\"Could I fix it?\"</div><div style=\"text-align: center;\">\"Is it worth fixing?\"</div><div style=\"text-align: center;\">Yeah... that moment</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">That moment can consume our lives at time</div><div style=\"text-align: center;\">But what should you do? </div><div style=\"text-align: center;\">Just forget it? </div><div style=\"text-align: center;\">Forget it ever happened? </div><div style=\"text-align: center;\">I mean.. maybe it isn\'t as such of a big deal as you currently think</div><div style=\"text-align: center;\">After all, you might not even care</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But yet....</div><div style=\"text-align: center;\">You are thinking about it</div><div style=\"text-align: center;\">You constantly wonder about it</div><div style=\"text-align: center;\">.....But you still wonder if you care</div><div style=\"text-align: center;\">Should you care?</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You don\'t know...</div><div style=\"text-align: center;\">I don\'t know either...</div><div style=\"text-align: center;\">So yet that moment lives on</div><div style=\"text-align: center;\">In your head</div><div style=\"text-align: center;\">consuming your thoughts</div><div style=\"text-align: center;\">Slowing killing a little piece of you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You develop doubts</div><div style=\"text-align: center;\">You feel as though you are the problem</div><div style=\"text-align: center;\">And then you place yourself in a state of isolationism</div><div style=\"text-align: center;\">Cause that moment...</div><div style=\"text-align: center;\">That one moment.....</div><div style=\"text-align: center;\">Consumes you....</div><div style=\"text-align: center;\">Confuses you....</div><div style=\"text-align: center;\">And makes you question yourself....</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Forever you cannot move forward</div><div style=\"text-align: center;\">Frozen </div><div style=\"text-align: center;\">Confused</div><div style=\"text-align: center;\">Hurt</div><div style=\"text-align: center;\">You remain..</div><div style=\"text-align: center;\">For you are stuck in that moment</div><div style=\"text-align: center;\">But you need to move on</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"233\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div>','That Moment','','publish','open','open','','that-moment','','','2014-08-09 21:21:16','2014-08-09 21:21:16','',0,'http://www.monicarenata.com/?p=224',0,'post','',0),(225,1,'2013-10-29 17:02:00','2013-10-29 17:02:00','Perfect<br />I just want things to be perfect<br />I want my dreams to be the blueprint to my reality<br />I want everything to fit just like the 1000th piece fits on a puzzle<br />Perfectly in its place<br />Completing the puzzle<br />Beautifully perfect<br /><br />I want one plus one to equal two happy people<br />Perfectly complimenting each other<br />I don\'t want to see any hurt or pain<br />The only tears I want to see are those of joy<br />I want my world to be filled with happiness and bliss<br />Your world... My world.....<br />I want it to be perfect<br /><br />I want everything to be how I envisioned them in my dreams<br />I want it all<br />I want all things to just be perfect<br /><br />Each day you wake up<br />And you do what you can to make this all come true<br />You work hard<br />You sacrifice everything<br />Your social life, experiences, and many other things<br />Because you want to prepare yourself for the world<br />You are planning out ever single detail of your life<br />Because you want it to be PERFECT<br />Exactly how you want it<br />Exactly how it SHOULD be in your mind<br /><br />Whether it is an enhanced vision of what you had<br />Or something that you yearned for because you never had it before<br />You want it<br />You want it with your heart and soul<br />You want it with every last breathe<br />You want it so much that it brings tears to you eyes<br />You give up your own happiness sometimes because each unbearable day that you experience<br />You know that one day... Your future will be perfect....<br />You want it to be perfect........ This is at least something you feel as though you deserve...... <br /><br />And then.........reality crashes down on you and makes you realize that perfection doesn\'t exist<br />All that you wanted is there in the world but it is kinda messed up<br />It isn\'t exactly what you want but you still want it<br />It isn\'t exactly how you would want it to be packaged but you still yearn for it<br />And then all of these feelings get mixed up and you wonder if you could ever find Perfection<br />And then your quest for perfection makes you wonder if giving up something that makes you happy...<br />Really really happy.... is worth it<br />I mean, could you even find something better?<br />Was it meant for you to find \"perfection\"?<br /><br />We all want things to be perfect<br />We all have our own perfectly perfect dreams<br />But sometimes we run away from things...<br />Because they are not exactly \"perfect\" to us<br />We let perfectly flawed people walk into our lives<br />And we get upset because they are a little off....<br />They are off from the blueprint that you dreamt up<br />But other than that they are perfect<br />But we still want that \"perfect\" blueprint to come into existence<br />We can\'t give up on what we worked years and months, weeks, days, hours, minutes and every painstaking second for .......<br /><br />Our foolish pride won\'t deter us for our quest for perfection<br />We have to have it<br />We feel like we deserve it<br />We yearn for it<br />But at the end of the day....... Does perfection really exist? <br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"256\" src=\"http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA\" width=\"320\" /></a></div><br />','Perfection','','publish','open','open','','perfection','','','2014-08-09 21:21:16','2014-08-09 21:21:16','',0,'http://www.monicarenata.com/?p=225',0,'post','',0),(226,1,'2013-10-29 16:40:00','2013-10-29 16:40:00','Always being pushed to the side<br />Never really been first<br />Life is like a racing game<br />In life I want to come in first<br /><br />Pushing aside the negativity<br />Avoid being pushed back by the wind<br />Steady pace as I hold my head up<br />I have to reach the end<br /><br />I could never really get that gold<br />I could never get that win<br />So I keep trying to get in first place<br />But it seems like I won\'t win<br /><br />I know exactly what I want<br />But the question is \"How?\"<br />Seems like I can\'t ever come in first<br />Not then and not even now<br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg\" /></a></div>','1st Place','','publish','open','open','','1st-place','','','2014-08-09 21:21:17','2014-08-09 21:21:17','',0,'http://www.monicarenata.com/?p=226',0,'post','',0),(227,1,'2013-10-29 00:43:00','2013-10-29 00:43:00','She came back Thursday<br />With tears burning inside<br />Waiting to be released<br />But instead of shedding those awful tears<br />She grabbed a pen so she could release<br />Release the feelings she had inside<br />Release how hurt she was<br />She gripped the pen tightly<br />And she keep writing along and along<br /><br />\"I wish things were this way\"<br />\"I wish he felt the same \"<br />She even questioned herself on paper<br />\"Perhaps the problem is me?\"<br />On and on she continued to write<br />And wouldn\'t let those tears fall from her eyes<br />She had to be the strong one<br />She had to not cry<br /><br />Writing and writing and writing away<br />She sinks into her world<br />Excludes herself from reality<br />And wishes she was no more<br />Yet no one will ever know the pain<br />The pain that resides within she<br />She envisions that the paper is her flesh<br />And her pen cuts with each word she dare not speak<br />And the blood that trickles down<br />Makes such lovely words indeed<br />For her feelings she keeps deep inside<br />For when she hurts she does not speak<br /><br />She came home Thursday<br />with tears in her eyes<br />Waiting to be released<br />She grabbed her trusted notebook<br />And began to write a piece<br />Each word she wrote down<br />cut deep....deep into her soul<br />For she was slowly dying inside<br />But the word shall never know<br /><br />Oh trusted pen and paper<br />You are her only friend<br />You are the one she confides in<br />But when will this end?<br />She needs to open up to someone else<br />She needs a \"real\" friend<br />Because even though her pen and paper is there<br />It can\'t be her only friend<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg\" width=\"320\" /></a></div><br />','The Cut','','publish','open','open','','the-cut','','','2014-08-09 21:21:17','2014-08-09 21:21:17','',0,'http://www.monicarenata.com/?p=227',0,'post','',0),(228,1,'2013-10-28 01:52:00','2013-10-28 01:52:00','There are troubles in life<br />There are lessons to be learned<br />Sometimes it seems like a losing batter<br />Sometimes life can be hard<br /><br />Situations may not be the best<br />Our feelings may be hurt<br />But you have to decide if you will stand still<br />Or move forward....<br />Move forward and face what\'s stopping you<br /><br />At the end of the day<br />Who is stopping you?<br />Sure people can tell you that \"You can\'t\"<br />But only you can decide if that is true or not<br /><br />Look in mirror<br />That\'s the person who can hold you back<br />That is the person whose own words can imprison them within the walls of their own flesh<br />That is the person who will determine how your life will turn out<br />That person is you<br /><br />It\'s crazy how we are our own best friend<br />We are our own motivator<br />We are our own pusher<br />And yet we can be our own downfall at times<br /><br />Don\'t let your fear hold you back<br />Don\'t let your doubts prevent you from doing something<br />Don\'t let your emotions get the best of you<br />Because at the end of the day<br />You might think others were holding you back<br />But the truth is..<br />It was all you...<br /><br />You were scared<br />You were confused<br />You made an unwise decision and are trying to bounce back<br />You decided to do this<br />You decided to do that<br />It was all YOU<br />But things can get better<br />You can move forward<br />There is no one holding you back.....but you<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg\" /></a></div><br />','Who is holding you back?','','publish','open','open','','who-is-holding-you-back','','','2014-08-09 21:21:18','2014-08-09 21:21:18','',0,'http://www.monicarenata.com/?p=228',0,'post','',0),(229,1,'2013-10-18 13:46:00','2013-10-18 13:46:00','<div style=\"text-align: center;\">Hey, I\'m right here!!</div><div style=\"text-align: center;\">Can you see me!</div><div style=\"text-align: center;\">Today is another day!</div><div style=\"text-align: center;\">Today is no longer yesterday!</div><div style=\"text-align: center;\">Today is now TODAY!</div><div style=\"text-align: center;\"><br />I have come to the conclusion that yesterday was just another day</div><div style=\"text-align: center;\">But today is something different</div><div style=\"text-align: center;\">It is a day you need me to play</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Play a role in your life</div><div style=\"text-align: center;\">Be the queen that protects the king</div><div style=\"text-align: center;\">For I have value in your life today</div><div style=\"text-align: center;\">Which I didn\'t have yesterday indeed!</div><div style=\"text-align: center;\">So call me whatever you may like</div><div style=\"text-align: center;\">Because on other days I don\'t have a name</div><div style=\"text-align: center;\">but I think it is quite fitting to call me</div><div style=\"text-align: center;\">\"Ms.I Need You Today\"</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">For other times you don\'t care</div><div style=\"text-align: center;\">And other times you don\'t call</div><div style=\"text-align: center;\">But when you need me desperately </div><div style=\"text-align: center;\">You expect me to pick up your every call</div><div style=\"text-align: center;\">You expect me to listen to all you say</div><div style=\"text-align: center;\">You expect me to sympathize</div><div style=\"text-align: center;\">But I can\'t say how I feel</div><div style=\"text-align: center;\">I have to always wear a disguise </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Hi, I\'m \"Ms. I Need You Today\"</div><div style=\"text-align: center;\">It is sad but true</div><div style=\"text-align: center;\">But don\'t forget about those yesterdays</div><div style=\"text-align: center;\">When I needed you to come through</div><div style=\"text-align: center;\">And all I need was some words of advice</div><div style=\"text-align: center;\">Or even just a friend</div><div style=\"text-align: center;\">But yesterday you did not need me</div><div style=\"text-align: center;\">So you left me alone once again</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg\" width=\"279\" /></a></div><br /><br />','\"Ms. I Need You Today\"','','publish','open','open','','ms-i-need-you-today','','','2014-08-09 21:21:19','2014-08-09 21:21:19','',0,'http://www.monicarenata.com/?p=229',0,'post','',0),(230,1,'2013-10-18 13:00:00','2013-10-18 13:00:00','I\'m running, running, running<br />Trying to keep up with your pace<br />I\'m running and I\'m running<br />Trying desperately to win this race<br />I\'m trying... I\'m trying so hard<br />But I am also questioning<br />If it is about time that I finally face defeat<br /><br />You see sometimes you can go so far<br />But don\'t have that extra strength<br />That strength that will move you past this rut<br />The strength that will make you win<br />You give all of yourself<br />Every single bit<br />But still it isn\'t enough<br />And now you are doubting yourself<br />Because your best isn\'t good enough<br /><br />I\'m running, running, running<br />Trying to keep up with your pace<br />I\'m running and I\'m running<br />Trying desperately to win this race<br />I\'m trying... I\'m trying so hard<br />But I guess it won\'t ever be<br />So maybe I should let my legs rest<br />And finally face defeat<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg\" width=\"240\" /></a></div><br /><br /><br />','Running','','publish','open','open','','running','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',0,'http://www.monicarenata.com/?p=230',0,'post','',0),(231,1,'2013-10-18 11:57:00','2013-10-18 11:57:00','Mama always reminded me of you<br />She always said, \"daughter be careful because they are out there\"<br />And you know what<br />I didn\'t believe her<br />She always said that sometimes you can\'t tell by looking at the outside<br />She said sometimes words can be spoken but not meant<br />And I was naive<br />I didn\'t believe her<br />She could not possibly know better<br />But you know what.....<br />Mama was right.....<br /><br />Mama always reminded me of you<br />She said be weary of the man dressed in fine clothes<br />Who says he has an untainted heart<br />She said be weary of the man who says he loves you<br />However his body language does not show it<br />She said \"be weary my daughter\"<br /> And I thought she was old<br />I thought she didn\'t know<br />But you know what, mama did know<br /><br />And oh how I wish I would have listened to mama<br />Mama knew of your kind and she tried to warm me<br />Yet I was naive<br />I believe that no one could possibly be that bad<br />I believed that everyone at least had an ounce of kindness in their heart <br />But obviously..... I was wrong<br /><br />That man <br />The manipulator<br />The womanizer<br />The one who just doesn\'t care<br />Mama always reminded me of you<br />She said your kind existed<br />And I have finally encountered it for myself<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png\" width=\"277\" /></a></div><br />','The Man','','publish','open','open','','the-man','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',0,'http://www.monicarenata.com/?p=231',0,'post','',0),(466,1,'2014-08-09 21:21:20','2014-08-09 21:21:20','','8027223-blank-vintage-red-wove-paper-card1','','inherit','open','open','','8027223-blank-vintage-red-wove-paper-card1','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',234,'http://www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg',0,'attachment','image/jpeg',0),(232,1,'2013-10-15 03:28:00','2013-10-15 03:28:00','<div style=\"text-align: center;\"><b><u>Delete</u></b> (<i>verb</i>) – to remove or obliterate</div><div><o:p></o:p></div><div><br /></div><div>Actions speak louder than words. <o:p></o:p></div><div>That is what they always say. <o:p></o:p></div><div>So I won’t listen to a word you say, but I will pay attention carefully. <o:p></o:p></div><div><br /></div><div>I will carefully observe your actions<o:p></o:p></div><div>I will examine your response<o:p></o:p></div><div>I will have my ears wide shut<o:p></o:p></div><div>While my eyes continue to watch<o:p></o:p></div><div>I will not utter a single word<o:p></o:p></div><div>I will just continue to observe what you do<o:p></o:p></div><div>Because actions speak louder than words, they say<o:p></o:p></div><div>And your actions will reveal the truth<o:p></o:p></div><div><br /></div><div>Oh if life was so simple<o:p></o:p></div><div>If it was just like a social network or a show on tv<o:p></o:p></div><div>You could easily remove me when you wanted to<o:p></o:p></div><div>By simply pressing delete<o:p></o:p></div><div><br /></div><div>Actions speak louder than words<o:p></o:p></div><div>And what you are telling me<o:p></o:p></div><div>Is that you don’t want me in your life<o:p></o:p></div><div>You wish you could <u><b>delete </b></u>me<o:p></o:p></div><div><br /></div><div>You never really said this<o:p></o:p></div><div>But that is what your <i>actions </i>say<o:p></o:p></div><div>So I will not ignore this warning<o:p></o:p></div><div>I will just quietly go away<o:p></o:p></div><div><br /></div><div>What’s the point of staying where you aren\'t wanted? <o:p></o:p></div><div>I mean, your body language tells it all<o:p></o:p></div><div>Because even though your mouth says you care about me<o:p></o:p></div><div>Your actions don’t show this at all<o:p></o:p></div><br /><div><br /></div><div><o:p><br /></o:p></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ\" /></a></div><div><o:p><br /></o:p></div>','Delete','','publish','open','open','','delete','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',0,'http://www.monicarenata.com/?p=232',0,'post','',0),(233,1,'2013-10-11 02:01:00','2013-10-11 02:01:00','You ... stole my heart...<br />You... made me smile...<br />You ... made me believe<br />That you were different from other guys<br /><br />You.. make me weak<br />You.. kiss me so sweet<br />You... are something I can\'t<br />Go a day without thinking of...<br /><br />You...buy me flowers<br />You.. hold my hand<br />You ... make me happy<br />And I want you to understand<br /><br />That it\'s you...<br />It is you that I have dreamed of<br />It is you......<br />It is you I want forever<br /><br />You... stole my heart<br />You.. made me smile<br />You... make me believe<br />That love exists... even thought I doubted it for a while.....','The Song About You','','publish','open','open','','the-song-about-you','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',0,'http://www.monicarenata.com/?p=233',0,'post','',0),(234,1,'2013-10-10 13:17:00','2013-10-10 13:17:00','<div style=\"text-align: center;\">Heart of Solid Gold</div><div style=\"text-align: center;\">Lips that Only Utter Kindness</div><div style=\"text-align: center;\">So rare it is to find these things</div><div style=\"text-align: center;\">So rare it is to find someone honest</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">To come across someone</div><div style=\"text-align: center;\">Who places others before themself</div><div style=\"text-align: center;\">We come across it rarely</div><div style=\"text-align: center;\">But when we do</div><div style=\"text-align: center;\">we use it to our benefit</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They will strive to make you happy</div><div style=\"text-align: center;\">And you will say \"they don\'t mind\"</div><div style=\"text-align: center;\">They will give you their last so you can make it</div><div style=\"text-align: center;\">And you will think they are doing \"just fine\"</div><div style=\"text-align: center;\">They will never admit they are struggling</div><div style=\"text-align: center;\">Because at the end of the day</div><div style=\"text-align: center;\">They know that there are people worst off</div><div style=\"text-align: center;\">Than they are today</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">They have a heart of gold</div><div style=\"text-align: center;\">They have lips that utter only kindness</div><div style=\"text-align: center;\">So rare it is to find them</div><div style=\"text-align: center;\">So rare it is to find someone honest</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But be careful how you treat these people</div><div style=\"text-align: center;\">They are more fragile than we think</div><div style=\"text-align: center;\">They are more than just a \"BENEFIT\" to you</div><div style=\"text-align: center;\">They are also people like you and me</div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg\" width=\"320\" /></a></div><br />','The Benefits','','publish','open','open','','the-benefits','','','2014-08-09 21:21:21','2014-08-09 21:21:21','',0,'http://www.monicarenata.com/?p=234',0,'post','',0),(235,1,'2013-10-08 00:10:00','2013-10-08 00:10:00','<div style=\"text-align: center;\">Patience is a virtue</div><div style=\"text-align: center;\">That so many seem to lack</div><div style=\"text-align: center;\">We tap our fingers constantly</div><div style=\"text-align: center;\">Waiting for others to react</div><div style=\"text-align: center;\">But what are we gaining from this? </div><div style=\"text-align: center;\">Time will still go on the same</div><div style=\"text-align: center;\">Because despite your current actions</div><div style=\"text-align: center;\">There will always be only 24 hours in a day</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20\" /></a></div><div style=\"text-align: center;\"><br /></div>','Patience','','publish','open','open','','patience','','','2014-08-09 21:21:21','2014-08-09 21:21:21','',0,'http://www.monicarenata.com/?p=235',0,'post','',0),(236,1,'2013-09-30 15:28:00','2013-09-30 15:28:00','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:DoNotShowComments/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div>Think about all the times you have been called this in your life… </div><div>And I’m not talking about the word ‘bitch’ which was popularized by the likes of Paris Hilton and others to refer to their best friend. </div><div>I’m talking about the word Bitch</div><div><span style=\"color: red;\">B-I-T-C-H</span></div><div>You know, commonly used in the following forms: </div><div align=\"center\" style=\"text-align: center;\">“You are being a bitch!!”</div><div align=\"center\" style=\"text-align: center;\">“You have a bitchy attitude!”</div><div align=\"center\" style=\"text-align: center;\">“You Bitch!”</div><div><br /></div><div>For quite some time, I have been constantly wondering what makes someone call you such a name. I mean, according to the dictionary I find the following definitions: </div><div>Bitch (noun)</div><div style=\"mso-list: l0 level1 lfo1; text-indent: -.25in;\"><span style=\"mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin;\"><span style=\"mso-list: Ignore;\">1.<span style=\"font: 7.0pt "Times New Roman";\"> </span></span></span>The female of the dog or some other mammal</div><div style=\"mso-list: l0 level1 lfo1; text-indent: -.25in;\"><span style=\"mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin;\"><span style=\"mso-list: Ignore;\">2.<span style=\"font: 7.0pt "Times New Roman";\"> </span></span></span>A lewd or immoral woman</div><div style=\"mso-list: l0 level1 lfo1; text-indent: -.25in;\"><span style=\"mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin;\"><span style=\"mso-list: Ignore;\">3.<span style=\"font: 7.0pt "Times New Roman";\"> </span></span></span>A malicious, spiteful, or overbearing woman – sometimes used as a generalized term of abuse</div><div style=\"mso-list: l0 level1 lfo1; text-indent: -.25in;\"><span style=\"mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin;\"><span style=\"mso-list: Ignore;\">4.<span style=\"font: 7.0pt "Times New Roman";\"> </span></span></span>Something that is extremely difficult, objectionable, or unpleasant</div><div>Now let’s go back to the time someone called you a bitch. Did you fit any of these definitions? Are you a dog? Are you lewd and immoral? Are you malicious and overbearing? Are you a thing? I bet your answer is no. Congrats!!!! I feel the same way. Now if I asked you to pick a definition which fits closely to why you believe you were called a bitch, the majority would choose the third definition which is: </div><div style=\"margin-left: .75in; mso-add-space: auto; mso-list: l1 level1 lfo2; text-indent: -.25in;\"><span style=\"font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;\"><span style=\"mso-list: Ignore;\">·<span style=\"font: 7.0pt "Times New Roman";\"> </span></span></span><i style=\"mso-bidi-font-style: normal;\">Bitch (noun) - a malicious, spiteful, or overbearing woman – sometimes used as a generalized form of abuse. </i></div><div>You see that last word? <b style=\"mso-bidi-font-weight: normal;\"><u>ABUSE</u></b>? </div><div>Usually when a female is called a bitch it is usually by a person of the opposite sex. And you know what ladies, so many of us accept this because we feel that “hey, maybe I was getting on his nerves” or “maybe I was being overbearing.” But the truth of the matter is… <u>IT IS STILL ABUSE!</u></div><div>Have you ever looked further into you being called a bitch? Have you ever analyzed the entire situation? Where were you? What was going on? More than likely you two were having an argument, right? And you were taking all of his low blows he was throwing at you. You let him verbally degrade you and you didn’t say a thing. And then a light bulb went off in your head and you realized you shouldn’t be spoken to in such a manner so you decide to SPEAK UP!</div><div>You calmly speak and say how you feel and then you are quickly cut off by him saying “You are a bitch!”</div><div>At this moment, you are confused because you are standing up for yourself. I mean, isn’t that what you are supposed to do? And as this thought is going through your mind you are standing in complete silent because he is still going on about how you are a bitch and you have a bitchy attitude…. </div><div>Words have different meanings to different people. Today, I find that many define the word bitch as “A female who takes up for herself”. So if that’s the definition of the word nowadays, then Ladies I suggest that you be <b style=\"mso-bidi-font-weight: normal;\">the best</b> Bitch that you can be!!!!!</div><div>Don’t ever let a man or anyone run over you and think it is okay. Just because someone doesn’t physically hit you does not mean it is not ABUSE. Too many times we let things like this slide because we feel as though we might deserve it just a little, but <u><span style=\"font-size: 14.0pt; line-height: 115%;\">no one deserves to be verbally abused</span></u>. </div><div>I feel so sorry for the younger children who are in relationships and this happens to them. Verbal abuse can be so much for even an adult to handle. And nowadays it is worst because verbal abuse can not only happen face to face but can also transpire onto social networks. </div><div>If you see someone going through this, please help them realize their worth! If someone is calling them a bitch constantly, encourage them to address the situation and if it doesn’t get better LEAVE! If this is you going through the same thing, I suggest you do the same as well. </div><div><b style=\"mso-bidi-font-weight: normal;\">Never</b> feel bad for standing up for yourself! <b style=\"mso-bidi-font-weight: normal;\">Never</b>allow abuse of whatever form to continuously happen again and again and again. <i style=\"mso-bidi-font-style: normal;\"><span style=\"font-size: 14.0pt; line-height: 115%;\">Your life has value!! You have worth!!</span></i> And if someone can’t recognize this, then have the courage to <u>walk away</u>!</div><div>-Monica Renata </div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"302\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg\" width=\"320\" /></a></div><div><br /></div>','Bitch','','publish','open','open','','bitch','','','2014-08-09 21:21:23','2014-08-09 21:21:23','',0,'http://www.monicarenata.com/?p=236',0,'post','',0),(237,1,'2013-09-29 06:55:00','2013-09-29 06:55:00','Your house is no longer vacant<br />And I\'m standing at the door<br />Knocking so you can hear me<br />I knock til my knuckles get sore<br /><br />Your house is filled with so much joy<br />And love is in the air<br />Yet I am still sitting on the front steps<br />Because I know that you are in there<br /><br />Your house is filled with overwhelming love<br />And I can see it from the windows outside<br />Your heart is complete with what you have<br />And you need no more love from outside<br /><br />Your house is so beautiful<br />Your house is so unique<br />And I don\'t want your house to become overcrowded with me<br /><br />Your house is no longer vacant<br />And I\'m standing at the door<br />Waiting for you to let me in<br />But you won\'t answer the door<br />And the truth is I can\'t fault you at all<br />Because I think this is how it should be<br />But I think instead of standing at the door...<br />Maybe it\'s just my signal to leave<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg\" width=\"320\" /></a></div><br />','The House','','publish','open','open','','the-house','','','2014-08-09 21:21:24','2014-08-09 21:21:24','',0,'http://www.monicarenata.com/?p=237',0,'post','',0),(238,1,'2013-09-29 05:40:00','2013-09-29 05:40:00','<div style=\"text-align: center;\">Life may not go your way</div><div style=\"text-align: center;\">And all of your days may not be good days</div><div style=\"text-align: center;\">But there is one promise I will always keep</div><div style=\"text-align: center;\">And that is to never leave you lonely</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Sure sometimes life seems to go on and on</div><div style=\"text-align: center;\">And every song that is playing is a sad song</div><div style=\"text-align: center;\">But remember that promise that I shall always keep</div><div style=\"text-align: center;\">And that is to never leave you lonely</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Joys come and sometimes we don\'t realize</div><div style=\"text-align: center;\">Because we only believe what we see with our eyes</div><div style=\"text-align: center;\">But whenever you are down</div><div style=\"text-align: center;\">Just get on bended knees</div><div style=\"text-align: center;\">And remember that promise I said I would keep</div><div style=\"text-align: center;\">For when you think you have no one </div><div style=\"text-align: center;\">Just remember that you always have me </div><div style=\"text-align: center;\"><br /></div><br /><div style=\"text-align: center;\"><strong style=\"background-color: white; color: #444444; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\">Psalms 46:1</strong></div><span style=\"background-color: white; color: #444444; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\"></span><br /><div style=\"text-align: center;\"><span style=\"background-color: #e69138; color: white; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\">“God is our refuge and strength, a very present help in trouble.”</span></div><span style=\"color: #444444; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\"><span style=\"background-color: #e69138;\"></span><div style=\"text-align: center;\"><br /></div><div style=\"background-color: white; clear: both; text-align: center;\"><a href=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD\" /></a></div><div style=\"background-color: white; text-align: center;\"><br /></div></span><br /><div style=\"text-align: center;\"><span style=\"background-color: white; color: #444444; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"background-color: white; color: #444444; font-family: Georgia, serif; font-size: 12px; line-height: 21px;\"><br /></span></div>','Never Leave You Lonely','','publish','open','open','','never-leave-you-lonely','','','2014-08-09 21:21:24','2014-08-09 21:21:24','',0,'http://www.monicarenata.com/?p=238',0,'post','',0),(239,1,'2013-09-28 00:49:00','2013-09-28 00:49:00','<div style=\"text-align: center;\">Flowers never bloom in winter</div><div style=\"text-align: center;\">That\'s what mother would always say</div><div style=\"text-align: center;\">For beauty happens in the summer time</div><div style=\"text-align: center;\">When birds can once again play</div><div style=\"text-align: center;\">Nothing beautiful can come from a situation</div><div style=\"text-align: center;\">A situation which starts off so cold</div><div style=\"text-align: center;\">The flower can try its best to bloom</div><div style=\"text-align: center;\">And then stop growing because it is cold</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Flowers never bloom in winter</div><div style=\"text-align: center;\">But there are those who try</div><div style=\"text-align: center;\">They try to open up</div><div style=\"text-align: center;\">They have to try at least one time</div><div style=\"text-align: center;\">And then a miracle happens</div><div style=\"text-align: center;\">And it completes its task</div><div style=\"text-align: center;\">It finally is at its peak of beauty</div><div style=\"text-align: center;\">But how long will this beauty last?</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Mother said flowers never bloom in winter</div><div style=\"text-align: center;\">And I always believed this was true</div><div style=\"text-align: center;\">But then in the coldest situation</div><div style=\"text-align: center;\">I finally opened up to you</div><div style=\"text-align: center;\">Oh what a beautiful flower</div><div style=\"text-align: center;\">Oh the journey that it outlast</div><div style=\"text-align: center;\">The flower bloomed in the winter time</div><div style=\"text-align: center;\">But how long will its petals last</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Flowers Never Bloom','','publish','open','open','','flowers-never-bloom','','','2014-08-09 21:21:24','2014-08-09 21:21:24','',0,'http://www.monicarenata.com/?p=239',0,'post','',0),(240,1,'2013-09-22 16:19:00','2013-09-22 16:19:00','No matter how many times you say it<br />I will always disagree<br />You say that I don\'t understand<br />You say I don\'t understand because \"You were never me\"<br />But oh the ways the world turns<br />Oh the actions that you and I both partake<br />You say I don\'t understand where you are coming from<br />And yet I still disagree<br /><br />We both were on different sides of the fence<br />You were here<br />And I was there<br />You say you don\'t want a kid to feel this way<br />But I was a kid and I know how it felt<br /><br />Sometimes we take for granted<br />What others only wished they had<br />You say \"you have to think like a child\"<br />But I know cause I was there<br /><br />Just be thankful for what you have<br />Don\'t dwell on the past<br />Sometimes we say others don\'t care about us<br />But those \"others\" just have a hard time expressing how they feel<br /><br />No matter how many times you say it<br />I will always disagree<br />Because sometimes someone can love you so much<br />But can\'t express themselves openly<br />Just because they don\'t SAY \"I love you\"<br />Doesn\'t mean that they do not love you so<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"225\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500-300x211.png\" width=\"320\" /></a></div><br />','Just because they don\'t say \"I love you\" ...Doesn\'t mean they don\'t','','publish','open','open','','just-because-they-dont-say-i-love-you-doesnt-mean-they-dont','','','2014-08-09 21:21:25','2014-08-09 21:21:25','',0,'http://www.monicarenata.com/?p=240',0,'post','',0),(241,1,'2013-09-21 23:37:00','2013-09-21 23:37:00','Just because everyone else is doing it<br />Doesn\'t make it right<br />Yet sometimes we see bad things happen<br />And we kindly bat our eyes<br />We say that others do this<br />We say this is the norm<br />We neglect the morality of the issue and simply go on<br /><br />Just because everyone else is doing it<br />Doesn\'t mean that you should too<br />Yet sometimes we actually question ourselves about what we shall do<br />We say that this can\'t be wrong<br />We say \"everyone else is doing it too\"<br />We bypass the question of \"is it wrong?\"<br />Because others have done the same too<br /><br />Just because everyone else is doing it...<br />That seems to be many peoples excuse<br />But why be like everyone else<br />When you could be like YOU<br /><br />Sure it seems like everyone is doing wrong<br />Sure it seems like they are living the life<br />But always remember to do the right thing<br />No matter if you are the only one doing right<br /><br />Everyone else...<br />It seems like we are always concerned with them<br />But sometimes we lack to look at the person deep within<br />You are who you are<br />So never make any excuse<br />And always...ALWAYS...Always be you<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg\" width=\"231\" /></a></div><br />','Everyone Else','','publish','open','open','','everyone-else','','','2014-08-09 21:21:27','2014-08-09 21:21:27','',0,'http://www.monicarenata.com/?p=241',0,'post','',0),(242,1,'2013-09-18 23:18:00','2013-09-18 23:18:00','There is so much negativity in the world... This is very true, however, there is a great amount of positive things happening around you as well. Why is it that we tend to dwell so much on the negative things? We let celebrations last only a second while we let disappointments and heartbreaks last for hours...We are quick to talk down on someone rather than lift them up... You never know who is watching... and you never know who is listening to the words you say... what you do or say have an affect on others. You ever heard of \"Be the change you wish to see\" ? This is actually so true.. In order to create a better world we have to start being better people. \"Treat others the way you want to be treated\" and lend out a helping hand.... a better world doesn\'t take place overnight...but a change can start right now with you! #TheAwkwardButterfly<br />-Monica<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY-194x300.jpeg\" width=\"207\" /></a></div><br /><br /><br />','Be the Change you wish to see','','publish','open','open','','be-the-change-you-wish-to-see','','','2014-08-09 21:21:27','2014-08-09 21:21:27','',0,'http://www.monicarenata.com/?p=242',0,'post','',0),(243,1,'2013-09-13 13:22:00','2013-09-13 13:22:00','<div style=\"text-align: center;\">How do I find the words to say</div><div style=\"text-align: center;\">To let you know how I feel each day</div><div style=\"text-align: center;\">When you are near I feel complete</div><div style=\"text-align: center;\">When you are away I cannot sleep</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">How do I find the words to say</div><div style=\"text-align: center;\">To let you know I don\'t want you to go away</div><div style=\"text-align: center;\">To let you know how fast my heart beats</div><div style=\"text-align: center;\">Whenever we share an embrace and our two lips meet</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">How do I find the words to say</div><div style=\"text-align: center;\">I can\'t say I love you cause that is cliche</div><div style=\"text-align: center;\">But the thoughts float in my mind all the time</div><div style=\"text-align: center;\">And in my heart you are already mines</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">How do I find the words to say</div><div style=\"text-align: center;\">For I don\'t know how to say it any other way</div><div style=\"text-align: center;\">I know that I\'m happy when I am with you</div><div style=\"text-align: center;\">And in my heart I know you feel the same way too</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring-238x300.jpg\" width=\"254\" /></a></div><br /><br /><br />','The Words to Say','','publish','open','open','','the-words-to-say','','','2014-08-09 21:21:27','2014-08-09 21:21:27','',0,'http://www.monicarenata.com/?p=243',0,'post','',0),(244,1,'2013-09-13 02:28:00','2013-09-13 02:28:00','Hi, my name is Somebody<br />But am I somebody to you?<br />Walking around in an endless circle<br />I constantly surround you<br /><br />Shadows of faces everywhere<br />But are you closer to the truth?<br />Hi, my name is Sombody<br />But am I somebody to you?<br /><br />Reflections of the known<br />But are you sure of what you see?<br />Because to you.. you are somebody<br />But are you somebody to me?<br /><br />You are always questioned in this world<br />Questioned about who you are<br />But do you recognize the reflection that you see?<br />Do you know who you are?<br /><br />Mirror Mirror on the wall<br />Tell me what you see<br />Cause To you I am somebody<br />But am I somebody to me?<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg\" /></a></div><br /><br />','Somebody','','publish','open','open','','somebody','','','2014-08-09 21:21:28','2014-08-09 21:21:28','',0,'http://www.monicarenata.com/?p=244',0,'post','',0),(245,1,'2013-09-07 03:09:00','2013-09-07 03:09:00','<div style=\"text-align: center;\">Raindrops splatter down from the clouds above</div><div style=\"text-align: center;\">Then fall gently on my cheek</div><div style=\"text-align: center;\">And flow down to reach the grass</div><div style=\"text-align: center;\">That is underneath my feet</div><div style=\"text-align: center;\">Oh how the heavens must feel today</div><div style=\"text-align: center;\">I wonder what is next</div><div style=\"text-align: center;\">For when the sky begins to cry</div><div style=\"text-align: center;\">I know a person will be next</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif\" /></a></div><div style=\"text-align: center;\"><br /></div>','Crying in the rain','','publish','open','open','','crying-in-the-rain','','','2014-08-09 21:21:30','2014-08-09 21:21:30','',0,'http://www.monicarenata.com/?p=245',0,'post','',0),(246,1,'2013-08-30 17:47:00','2013-08-30 17:47:00','<div style=\"text-align: center;\">Looking into the neverending night sky</div><div style=\"text-align: center;\">I reminense and let life pass me by</div><div style=\"text-align: center;\">For what awaits me after this day</div><div style=\"text-align: center;\">I have no clue but I will keep my fears at bay</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Lilacs and Roses</div><div style=\"text-align: center;\">I will await the smell</div><div style=\"text-align: center;\">The birds chirping cheerfully </div><div style=\"text-align: center;\">As they sit on the rails</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">From night to day</div><div style=\"text-align: center;\">This is what I shall see</div><div style=\"text-align: center;\">As I lay under the night sky</div><div style=\"text-align: center;\">Waiting for morning to be</div><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night-300x225.jpg\" width=\"320\" /></a></div><br />','My Night Under The Stars','','publish','open','open','','my-night-under-the-stars','','','2014-08-09 21:21:30','2014-08-09 21:21:30','',0,'http://www.monicarenata.com/?p=246',0,'post','',0),(247,1,'2013-08-30 00:08:00','2013-08-30 00:08:00','It\'s been a long day<br />A very long day<br />You have so much more to do<br />And you want to do it fast<br /><br />Time is so precious<br />Our time is the most precious of them all, right?<br /><br />It\'s amazing how sometimes we get in our cars and head out to accomplish our tasks at hand, yet we forget about others. We are in a hurry, and we feel as though others should cater to us on the road.<br />We honk at the slow driver.<br />We duck in and out of traffic.<br />Just to make it to where we have to be<br />We don\'t want to waste our time....<br /><br />But what about others.......<br />Staci is trying to pick up her child who missed the bus after school<br />David is trying to get to his wife who just went into labor<br />Anthony is trying to make it to his last college class ever<br />Everyone on the road has a mission<br />But why don\'t we see this?<br /><br />Instead we put our own selfish needs ahead of others<br />We think our time is so valuable that we do careless things<br />We are reckless at the wheel and experience intense moments of rage<br />But why?<br />We are all trying to get somewhere<br />We all have things to do<br />We all want to live to see tomorrow........<br />So why possibly deny someone this?<br /><br />The majority of accidents are caused by carelessness<br />Carelessness which occurs because someone didn\'t want to waste their time<br />They care about themselves<br />They honked at the slow driver<br />Then ducked in and out of traffic<br />Then purposely got in front of another vehicle to piss them off.....<br />Is it really worth it?<br />Is jeopardizing your life and the life of someone else really worth it?<br /><br />You had a long day...<br />Someone else did too...<br />Your time is valuable<br />And others time is valuable too..<br />You want to make it home today<br />And so does everyone else<br />So please be a courteous driver<br />Don\'t just think about yourself<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg\" width=\"320\" /></a></div><br /><br /><br /><br />','On the Road','','publish','open','open','','on-the-road','','','2014-08-09 21:21:31','2014-08-09 21:21:31','',0,'http://www.monicarenata.com/?p=247',0,'post','',0),(248,1,'2013-08-28 19:50:00','2013-08-28 19:50:00','My heart<br />My heart beats for you<br />Poudning with roaring intensity<br />Almost to the point where I have to try to catch my breath<br />Because my heart<br />Is beating<br />For you<br /><br />My lungs don\'t know what to do<br />I breathe in and out<br />Out and in<br />And still I can\'t<br />I can\'t catch my breathe<br /><br />Overwhelmed by these emotions<br />I care but I say I don\'t<br />I want you to leave but also stay<br />I am lost<br />Lost in you<br /><br />Circulating these different feelings that I have<br />Making my body move<br />Giving me life<br />I want you to go out there and be better than I ever was<br />I may not know you but I want you to know that I care<br />Even if you think no one else does<br />I want you to stay with me in my thoughts but move forward in this world<br />I want you to conquer your dreams<br />I want you to pursue happiness<br /><br />For my heart<br />It beats for you<br />And I really wish you the best<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"117\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug\" width=\"320\" /></a></div><br /><br /><br />','My Heart Beats','','publish','open','open','','my-heart-beats','','','2014-08-09 21:21:31','2014-08-09 21:21:31','',0,'http://www.monicarenata.com/?p=248',0,'post','',0),(249,1,'2013-08-27 22:03:00','2013-08-27 22:03:00','I have a little secret<br />That no one else shall know<br />It tickles my insides<br />And make me smile and glow<br /><br />It\'s a secret that is so visible<br />Yet so many cannot see<br />It radiates with the brightest light<br />Like the light that peaks over the trees<br /><br />My secret is so big<br />Yet it can also be considered small<br />For many may value it slightly<br />While others may not value it at all<br /><br />I have a little secret<br />And it is that I love me<br />For the greatest gift I ever received<br />Was the gift of fully understanding me<br /><br />I love myself<br />I love my life<br />I love the people too<br />And when my skies are constantly gray<br />I know that one day it will turn back blue<br /><br />I have accepted myself for who I am<br />And I won\'t dwell on who I am not<br />And although this is unknown to others<br />To me it means a lot<br /><br />I have a little secret<br />And I\'m pretty sure that you do too<br />Because sometimes how we really feel<br />Is covered by what we do<br />We give the public what they want<br />We give them what they want to see<br />And sometimes the greatest costume we ever wear<br />Is the one that overshadows who we really should be<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg\" width=\"320\" /></a></div><br />','The Secret','','publish','open','open','','the-secret','','','2014-08-09 21:21:32','2014-08-09 21:21:32','',0,'http://www.monicarenata.com/?p=249',0,'post','',1),(250,1,'2013-08-27 21:48:00','2013-08-27 21:48:00','<div style=\"text-align: center;\"><i>Speak</i></div><div style=\"text-align: center;\"><i>That is all I need you to do</i></div><div style=\"text-align: center;\"><i>I need you to speak</i></div><div style=\"text-align: center;\"><i>I need you to let me get wrapped in your words</i></div><div style=\"text-align: center;\"><i>Let your words comfort my spirit</i></div><div style=\"text-align: center;\"><i>Let me become entangled in the mixture of letters and pauses </i></div><div style=\"text-align: center;\"><i>These letters and pauses which composes everything that you SPEAK of</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><i>Speak </i></div><div style=\"text-align: center;\"><i>Speak life into me!!!</i></div><div style=\"text-align: center;\"><i>Comfort me </i></div><div style=\"text-align: center;\"><i>Motivate me</i></div><div style=\"text-align: center;\"><i>Inspire me</i></div><div style=\"text-align: center;\"><i>Make me feel!</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><i>The power of words</i></div><div style=\"text-align: center;\"><i>Words can make you feel so many things</i></div><div style=\"text-align: center;\"><i>Feelings of happiness</i></div><div style=\"text-align: center;\"><i>Feelings of sadness </i></div><div style=\"text-align: center;\"><i>Feelings of doubt</i></div><div style=\"text-align: center;\"><i>Oh so many feelings</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><i>Cover me with a blanket of your words</i></div><div style=\"text-align: center;\"><i>Kiss me softly with the kindest hello</i></div><div style=\"text-align: center;\"><i>And tuck me in with your bittersweet goodbyes</i></div><div style=\"text-align: center;\"><i>Speak</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><i>I want you to be inspired</i></div><div style=\"text-align: center;\"><i>I want you to believe in yourself</i></div><div style=\"text-align: center;\"><i>I want you to never be afraid to speak</i></div><div style=\"text-align: center;\"><i>For your words might give life to those who believe they are dead</i></div><div style=\"text-align: center;\"><i>Speak!</i></div><div style=\"text-align: center;\"><i>Because some of the best things are often left unsaid</i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/header-300x150.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><i><img border=\"0\" height=\"160\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/header-300x150.jpg\" width=\"320\" /></i></a></div><div style=\"text-align: center;\"><i><br /></i></div><div style=\"text-align: center;\"><br /></div>','Speak Life Into Me','','publish','open','open','','speak-life-into-me','','','2014-08-09 21:21:35','2014-08-09 21:21:35','',0,'http://www.monicarenata.com/?p=250',0,'post','',0),(251,1,'2013-08-26 21:54:00','2013-08-26 21:54:00','<div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Wondering around this mystic sea</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Hopes and dreams surrounding me</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">I look up ahead and see a star</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">I follow it but it doesn\'t take me far</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">I\'m trapped underneath</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">Yet I can breathe</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">My hopes and dreams still surrounding me</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">But what I see I cannot get</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">But what can I do</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\">For I am just a fish</span></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"255\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><span style=\"font-family: Trebuchet MS, sans-serif;\"><br /></span></div>','Fish','','publish','open','open','','fish','','','2014-08-09 21:21:36','2014-08-09 21:21:36','',0,'http://www.monicarenata.com/?p=251',0,'post','',0),(252,1,'2013-08-26 11:25:00','2013-08-26 11:25:00','<div style=\"text-align: center;\">Mornings come</div><div style=\"text-align: center;\">And Mornings Go</div><div style=\"text-align: center;\">Sun Shines Bright</div><div style=\"text-align: center;\">And then goes low</div><div style=\"text-align: center;\">Day by Day that passes by</div><div style=\"text-align: center;\">I appreciate life And never ask why</div><div style=\"text-align: center;\">For today could really be my last</div><div style=\"text-align: center;\">So I won\'t dwell too much on the past</div><div style=\"text-align: center;\">I will appreciate the opportunity to live today</div><div style=\"text-align: center;\">For who knows when it\'s my turn to eternally lay</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"149\" src=\"http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','Mornings Come','','publish','open','open','','mornings-come','','','2014-08-09 21:21:36','2014-08-09 21:21:36','',0,'http://www.monicarenata.com/?p=252',0,'post','',0),(253,1,'2013-08-25 14:59:00','2013-08-25 14:59:00','<span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said I couldn\'t do it</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">I said I disagree</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said it wasn\'t worth it</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But it means so much to me</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said there is no use in trying</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">I said I should try at the very least</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said chasing dreams is foolish</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">I said, \"Well a fool I shall be\"</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">So many people try to cut you down</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">So many people don\'t believe</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">That you are capable of many things</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">You are capable of being anything you wish to be</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">So many people </span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">So many opinions</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But the only one that matters is yours</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Go out and do what you want to do </span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Set your goals and try to do so much more!</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said I couldn\'t do it</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Well I\'m doing it now</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said it wasn\'t worth it</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But I have found fulfillment somehow</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said there was no use in trying</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But I\'m happy that I at least tried</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said chasing dreams was foolish</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But I\'m living my dream right now!</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Don\'t get discouraged</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">By the negative things people say</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Just use it as motivation </span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">To push through each day</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Never shed a single tear over the doubts and thoughts of your friends </span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">For they will finally believe you</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But it will take some time</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They will believe in you when they see things happen</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Then they will bat their eyes</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">When all your dreams are reality</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">When you accomplished what you seeked</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">When they realize that because they didn\'t believe in you</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They pushed you to succeed</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">They said so many things</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">I remember this so well</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">But I now appreciate what they said</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\">Because it has helped me to excel</span><br /><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg\" width=\"316\" /></a></div><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><span style=\"font-family: Helvetica Neue, Arial, Helvetica, sans-serif;\"><br /></span><br />','They Said','','publish','open','open','','they-said','','','2014-08-09 21:21:37','2014-08-09 21:21:37','',0,'http://www.monicarenata.com/?p=253',0,'post','',0),(254,1,'2013-08-25 13:39:00','2013-08-25 13:39:00','<div style=\"text-align: center;\">Ten Fingers</div><div style=\"text-align: center;\">Ten Toes</div><div style=\"text-align: center;\">Two Eyes</div><div style=\"text-align: center;\">One Nose</div><div style=\"text-align: center;\">All a part of me</div><div style=\"text-align: center;\">Help me navigate, smell, and see</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">One mouth </div><div style=\"text-align: center;\">To voice my opinions</div><div style=\"text-align: center;\">And to finally express my self</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">One brain to give me the ability</div><div style=\"text-align: center;\">To think critically and apply myself</div><div style=\"text-align: center;\">One heart</div><div style=\"text-align: center;\">To keep me moving</div><div style=\"text-align: center;\">That\'s what composes me</div><div style=\"text-align: center;\">But subtracting these things</div><div style=\"text-align: center;\">Make me no longer be</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">One heart</div><div style=\"text-align: center;\">Broken a thousand times</div><div style=\"text-align: center;\">One brain to gather my thoughts</div><div style=\"text-align: center;\">One mouth to express how I truly feel</div><div style=\"text-align: center;\">But I won\'t say a word</div><div style=\"text-align: center;\">One nose that sniffles so much</div><div style=\"text-align: center;\">Two eyes that shed so many tears</div><div style=\"text-align: center;\">Ten toes that want to walk away</div><div style=\"text-align: center;\">Ten fingers that express how I feel</div><div style=\"text-align: center;\">Typing, Typing, Typing away</div><div style=\"text-align: center;\">Writing down my words</div><div style=\"text-align: center;\">Trying to execute how I feel </div><div style=\"text-align: center;\">Make my silent words be heard</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">The best coping mechanism</div><div style=\"text-align: center;\">The best medicine to seek</div><div style=\"text-align: center;\">For my greatest disease is withholding my emotions</div><div style=\"text-align: center;\">But the only remedy is me</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw\" /></a></div><div style=\"text-align: center;\"><br /></div>','The Remedy Is Me','','publish','open','open','','the-remedy-is-me','','','2014-08-09 21:21:38','2014-08-09 21:21:38','',0,'http://www.monicarenata.com/?p=254',0,'post','',0),(255,1,'2013-08-25 11:23:00','2013-08-25 11:23:00','<div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Mirror Mirror </span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">On the Wall</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Who is the fairest of them all?</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">They say beauty is skin deep</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">But I can\'t see</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">How beauty so great is all you see...</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Eyes dancing in the mirror </span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Wandering around</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Waiting for you to cast judgement </span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Which will make me silently doubt...</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Because if the fairest is all you see</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">I wonder if you will recognize me</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Mirror Mirror</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">On the wall</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Who is the fairest of them all? </span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Just wait and please don\'t answer me yet!</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">I move back and make sure my feet are set</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">I clinch my fist and cock back then let go</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The shards start to float around the room</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">I always thought the mirror was my friend</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">But now I realize it never saw what was within</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg\" width=\"213\" /></a></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div>','Mirror Mirror','','publish','open','open','','mirror-mirror','','','2014-08-09 21:21:38','2014-08-09 21:21:38','',0,'http://www.monicarenata.com/?p=255',0,'post','',0),(256,1,'2013-08-23 02:54:00','2013-08-23 02:54:00','<div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg\" width=\"201\" /></a></div><span style=\"font-size: large;\">Hello Everyone, </span><br /><span style=\"font-size: large;\"><br /></span><span style=\"font-size: large;\">I would like to announce that I have recently published an eBook. This eBook is available on Amazon. If you click the following link you can be directed to the book: </span><br /><br /><span style=\"font-size: large;\"><a href=\"http://www.amazon.com/dp/B00EP5A484/ref=cm_sw_r_tw_dp_B.Sfsb0N6HCRW\" target=\"_blank\">The Awkward Butterfly Available on Amazon</a></span><br /><span style=\"font-size: large;\"><br /></span><br /><div style=\"text-align: center;\"><span style=\"font-size: large;\"><u><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><b>This weekend, the book will be available for free. That is Friday August 23rd through Sunday, August 25th. </b></span></u></span></div><br /><span style=\"font-size: large;\">This book is in the kindle edition, however, you do not need a kindle to download the book. The app is available for androids, tablets, and many others. Below is the link to the kindle app download: </span><br /><span style=\"font-size: large;\"><br /></span><span style=\"font-size: large;\"><a href=\"http://www.amazon.com/gp/feature.html/ref=dig_arl_box?ie=UTF8&docId=1000493771\" target=\"_blank\">Kindle App Download</a></span><br /><span style=\"font-size: large;\"><br /></span><span style=\"font-size: large;\">I hope you enjoy the book. </span><br /><span style=\"font-size: large;\"><br /></span><span style=\"font-size: large;\"><br /></span><span style=\"font-size: large;\">Thanks, </span><br /><span style=\"font-size: large;\">Monica Renata</span>','The Awkward Butterfly','','publish','open','open','','the-awkward-butterfly','','','2014-08-09 21:21:39','2014-08-09 21:21:39','',0,'http://www.monicarenata.com/?p=256',0,'post','',0),(483,1,'2014-08-09 21:21:39','2014-08-09 21:21:39','','stats','','inherit','open','open','','stats','','','2014-08-09 21:21:39','2014-08-09 21:21:39','',257,'http://www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg',0,'attachment','image/jpeg',0),(257,1,'2013-08-16 03:42:00','2013-08-16 03:42:00','They say we will not make it<br />They say the reasons why<br />They back it up with research<br />And we believe that they don\'t lie<br /><br />But who are\"they\" to tell us this<br />Who conducted this research<br />Who placed all of this information<br />In so many distributed textbooks<br /><br />We read and read and discover things<br />We discover we are part of their ongoing tests<br />And then we start to think to yourself<br />We think we fit their current mold<br />So our future is laid out as we speak <br /><br />They say I will not make make<br />They say the reasons why<br />They back it up with research<br />And say that statistically I won\'t rise<br />But I refuse to be another number<br />I refuse to be what they think<br />I will not be a statistic<br />I won\'t be what they say<br /><br />Just because I grew up this way<br />Doesn\'t mean I won\'t succeed<br />Just because my family has these problems<br />It doesn\'t mean they will happen to me<br />Just because I am from this area of the world<br />Doesn\'t mean I\'m smarter or dumber than the rest<br />You can\'t just predict what I will do<br />I am not a number on your list<br /><br /><br />I refuse to be what you say<br />I refuse to submit<br />I am not a statistic<br />I will not be a number on your list<br /><br />I will not be a statistic<br />I will not be a statistic<br />I WILL NOT be a statistic<br /><br />They say I will not make it<br />They say the reasons why<br />They back it up with research<br />And say that statistically I won\'t rise<br />But I choose to disagree with them<br />I will not be a number on their list<br />I am more than what they believe I am<br />I am not just a statistic<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg\" height=\"225\" width=\"320\" /></a></div><br /><br /><br /><br />','Statistics','','publish','open','open','','statistics','','','2014-08-09 21:21:39','2014-08-09 21:21:39','',0,'http://www.monicarenata.com/?p=257',0,'post','',0),(258,1,'2013-08-08 23:04:00','2013-08-08 23:04:00','<div style=\"text-align: center;\">Rain Rain go away</div><div style=\"text-align: center;\">Leave this place so I can play</div><div style=\"text-align: center;\">Let those raindrops be no more</div><div style=\"text-align: center;\">And stop pounding on my windows and doors</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Stop blocking the future in front of me</div><div style=\"text-align: center;\">It is pouring so hard </div><div style=\"text-align: center;\">I can barely see</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Then I heard thunder in the background</div><div style=\"text-align: center;\">And I know you won\'t let me leave this time</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I see lightning in my head</div><div style=\"text-align: center;\">I try to back up but I can\'t</div><div style=\"text-align: center;\">I want to cry</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">But this shower is overwhelming me</div><div style=\"text-align: center;\">Just let me go</div><div style=\"text-align: center;\">Just let me be free</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Rain Rain go away</div><div style=\"text-align: center;\">Leave this place so I can play</div><div style=\"text-align: center;\">Let these tears be no more</div><div style=\"text-align: center;\">For this fighting I can\'t take it no more</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">You throw dishes around our house</div><div style=\"text-align: center;\">You tell me there is no way out</div><div style=\"text-align: center;\">In the corner I crouch in fear</div><div style=\"text-align: center;\">As your fists keep pounding against my skin</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">I don\'t know if I can survive</div><div style=\"text-align: center;\">It was always bad...but it is worst this time</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">It feels like I\'m about to be knocked out</div><div style=\"text-align: center;\">Yet the rain of your fist just won\'t stop</div><div style=\"text-align: center;\">I have to finally get the courage to leave</div><div style=\"text-align: center;\">I have to go....</div><div style=\"text-align: center;\">I have to be free</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g\" /></a></div><div style=\"text-align: center;\"><br /></div><br /><br />','Rain Rain','','publish','open','open','','rain-rain','','','2014-08-09 21:21:39','2014-08-09 21:21:39','',0,'http://www.monicarenata.com/?p=258',0,'post','',0),(259,1,'2013-08-05 05:21:00','2013-08-05 05:21:00','<span style=\"font-family: Georgia, Times New Roman, serif;\">Hello everyone!!!</span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><span style=\"font-family: Georgia, Times New Roman, serif;\">I hope you are all having a great time. I will finally start up with my weekly challenges again. :) </span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><span style=\"font-family: Georgia, Times New Roman, serif;\">This week I would like you to take the time to accomplish something. Think about something that you want to do. How long have you wanted to accomplish it? Have you ever tried to make it happen? </span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><span style=\"font-family: Georgia, Times New Roman, serif;\">At times, we say that we want to do many things, however, we do not put in the effort to make it happen. I know I have been like this many times. I said I wanted something, and I wished and prayed about it, however, I did not put in any effort. I now know that I must put in effort if I want to accomplish anything........</span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><span style=\"font-family: Georgia, Times New Roman, serif;\">And guess what!!!?? I finally accomplished it. :)</span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><span style=\"font-family: Georgia, Times New Roman, serif;\">Never be afraid to go after what you want! </span><br /><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">And remember, </span></div><div style=\"text-align: center;\"><i><b><span style=\"font-family: Courier New, Courier, monospace; font-size: large;\">Everything is impossible if you do not attempt to take the first step!!!!</span></b></i></div><i><b><span style=\"font-family: Courier New, Courier, monospace;\"><br /></span></b></i><span style=\"font-family: Georgia, Times New Roman, serif;\">-Monica Renata</span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg\" width=\"288\" /></a></div><br />','Weekly Challenge 10: Accomplish Something','','publish','open','open','','weekly-challenge-10-accomplish-something','','','2014-08-09 21:21:40','2014-08-09 21:21:40','',0,'http://www.monicarenata.com/?p=259',0,'post','',0),(260,1,'2013-08-04 15:26:00','2013-08-04 15:26:00','<br /><div style=\"text-align: center;\">Crystal clear skies</div><div style=\"text-align: center;\">No clouds to dampen my day</div><div style=\"text-align: center;\">The sun shall radiate down</div><div style=\"text-align: center;\">And a smile will be on my face</div><div style=\"text-align: center;\">To know you is to love you</div><div style=\"text-align: center;\">And love you is what I did</div><div style=\"text-align: center;\">And forever the sun will always shine</div><div style=\"text-align: center;\">Because I will always have you near</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg\" width=\"298\" /></a></div><div style=\"text-align: center;\"><br /></div>','Happiness is You','','publish','open','open','','happiness-is-you','','','2014-08-09 21:21:41','2014-08-09 21:21:41','',0,'http://www.monicarenata.com/?p=260',0,'post','',0),(261,1,'2013-07-30 00:25:00','2013-07-30 00:25:00','<div style=\"text-align: center;\">You said you would start tomorrow</div><div style=\"text-align: center;\">But tomorrow has come and gone</div><div style=\"text-align: center;\">Yet you sit in the exact same spot</div><div style=\"text-align: center;\">You sat in once before</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">No progress made at all today</div><div style=\"text-align: center;\">So you plan to make progress tomorrow</div><div style=\"text-align: center;\">But what\'s the point of pushing it off?</div><div style=\"text-align: center;\">What\'s the point in waiting til tomorrow? </div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Day by Day by Day you plan</div><div style=\"text-align: center;\">Plan to do something new</div><div style=\"text-align: center;\">Yet you plan to do this tomorrow</div><div style=\"text-align: center;\">But you never follow through</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Oh wait until the years pass you by</div><div style=\"text-align: center;\">Because by then you will finally see</div><div style=\"text-align: center;\">That saying you will start tomorrow</div><div style=\"text-align: center;\">Only hindered you indeed</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">All the things you could have accomplished</div><div style=\"text-align: center;\">But you just kept putting off</div><div style=\"text-align: center;\">You have lost your youth and soon</div><div style=\"text-align: center;\">your clock will finally stop</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"104\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg\" width=\"320\" /></a></div><div style=\"text-align: center;\"><br /></div>','You Said You would start tomorrow','','publish','open','open','','you-said-you-would-start-tomorrow','','','2014-08-09 21:21:42','2014-08-09 21:21:42','',0,'http://www.monicarenata.com/?p=261',0,'post','',0),(262,1,'2013-07-23 12:23:00','2013-07-23 12:23:00','<div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Kinda like a melody </span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">That plays over and over in my head</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The sound of the sweet music</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Could even reawaken the dead</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">It\'s kinda like the sugar</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">That is in your favorite fruit</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">It dances on your tongue awhile</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Until you swallow that juice</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">It\'s kinda just like that</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">Well that\'s what my mother said</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">That feeling that just can\'t go away</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">The feeling that you will try to get</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">over and over again</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><br /></span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">A feeling you want some much</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">And quite frankly so do I</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">But what is this feeling exactly</span></div><div style=\"text-align: center;\"><span style=\"font-family: Georgia, Times New Roman, serif;\">It\'s just kinda how I feel inside</span></div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"207\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg\" width=\"320\" /></a></div><br />','Just Kinda','','publish','open','open','','just-kinda','','','2014-08-09 21:21:44','2014-08-09 21:21:44','',0,'http://www.monicarenata.com/?p=262',0,'post','',0),(263,1,'2013-07-15 13:18:00','2013-07-15 13:18:00','An eye for an eye<br />A tooth for a tooth<br />Where does this leave us?<br />Does it bring us truth?<br /><br />You punch me<br />Then I punch you<br />Does it solve anything?<br />Some people think that it do<br /><br />But what is the purpose to act just the same?<br />Have hate in your heart<br />And then on others place the blame<br /><br />They say do on to others as they do on to you<br />But were they speaking of violence<br />Or is this statement just not true<br /><br />I slander your name<br />You slander mines<br />You break my heart<br />And you know my response<br />I will do everything that you do to me<br />It will not solve anything<br />But I will be happy.......<br /><br />But why does the world seem to think like this?<br />Violence solves violence<br />This is what they honestly think<br />Whatever happened to turning the other cheek ?<br />Being the bigger person and keeping the peace<br />We seem to retaliate<br />When given no true purpose<br />Therefore we are no better than the so called monster<br /><br />An eye for an eye<br />That\'s what they always say<br />But I don\'t understand how you can get rid of hate with hate<br />Maybe I am naive<br />Or maybe I just can\'t see<br />But my heart breaks daily<br />Because all I want to see is peace<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q\" /></a></div><br /><br /><br /><br />','Eye for an Eye','','publish','open','open','','eye-for-an-eye','','','2014-08-09 21:21:45','2014-08-09 21:21:45','',0,'http://www.monicarenata.com/?p=263',0,'post','',0),(264,1,'2013-07-15 04:05:00','2013-07-15 04:05:00','Everyone is a winner<br />Well, at least that is what they say<br />Seems like everyone deserves a trophy<br />Even if they do not play<br /><br />We are afraid to tell others the truth<br />Because we fear we may hurt their feelings<br />So everyone thinks they are the best at all times<br />Everyone thinks they are winners<br /><br />What have we taught our younger generation?<br />What are they striving for?<br />So many put down teachers when they say their child needs to try harder<br /><br />Little Timmy on the baseball team<br />Jennifer who loves to dance<br />They can\'t receive any criticism<br />Or their parents will get mad<br /><br />What has our world come to?<br />Seems like everyone needs a prize<br />No one can have their feelings hurt<br />No one can be criticized<br /><br />Everyone has to be winners<br />But in order to win you must reach a goal<br />And so few are willing to do what it takes<br />Because they feel as though it is owed<br />This sense of entitlement weakens our future as we speak<br /><br />At the end of the day<br />We all can\'t be winners<br />Because some of us will face defeat<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg\" /></a></div><br /><br /><br /><br />','Everyone Is A Winner','','publish','open','open','','everyone-is-a-winner','','','2014-08-09 21:21:46','2014-08-09 21:21:46','',0,'http://www.monicarenata.com/?p=264',0,'post','',0),(265,1,'2013-07-09 12:11:00','2013-07-09 12:11:00','<div>How nice is an untouched memory<o:p></o:p></div><div>That is just so pure<o:p></o:p></div><div>It glistens and shines greater than all<o:p></o:p></div><div>But is not accepted by most<o:p></o:p></div><div><br /></div><div>How nice is an untouched memory<o:p></o:p></div><div>That has not been tainted at all<o:p></o:p></div><div>A memory that is waiting to be released<o:p></o:p></div><div>But only to one who deserves<o:p></o:p></div><div><br /></div><div>How nice is an untouched memory<o:p></o:p></div><div>I really have no clue<o:p></o:p></div><div>Because even though I should be proud of it<o:p></o:p></div><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\">It is what distances me from you.</span><br /><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br /></span><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br /></span><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"241\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road-300x226.jpg\" width=\"320\" /></a></div><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br /></span>','An Untouched Memory','','publish','open','open','','an-untouched-memory','','','2014-08-09 21:21:46','2014-08-09 21:21:46','',0,'http://www.monicarenata.com/?p=265',0,'post','',0),(266,1,'2013-07-09 03:50:00','2013-07-09 03:50:00','<div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">Just like a star</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">On the darkest night</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">You reach out your hand to me</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">And within my realm of darkness</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">You hear my heartfelt plea </span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">I am consumed with fears</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">And one of these fears is being alone</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">So you wrap me in your warm embrace</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">To show that I always have a home</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">The light which shines within you</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">Is such a beautiful thing</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">Thanks for being my guide</span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\">Throughout my darkest of days</span></span><br /><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"262\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\" width=\"320\" /></a></span></span></div><br /><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span></div><div align=\"CENTER\" style=\"line-height: 115%;\"><span style=\"font-family: Calibri, sans-serif;\"><span style=\"font-size: 13pt;\"><br /></span></span></div>','You Light Up My Life','','publish','open','open','','you-light-up-my-life','','','2014-08-09 21:21:46','2014-08-09 21:21:46','',0,'http://www.monicarenata.com/?p=266',0,'post','',0),(267,1,'2013-06-27 15:01:00','2013-06-27 15:01:00','Fleeting joys of ecstasy<br />Time is moving too fast<br />We always think we have forever<br />But forever never lasts<br /><br />Happiness is soon replaced<br />With broken little smiles<br />Then tears trickle down your cheeks<br />And you can\'t make a sound<br /><br />Overwhelmed by this feeling<br />Yet still afraid to let go<br />You think that you will forget<br />And that feeling scares you so<br /><br />Appreciate what you have<br />Because today never stays the same<br />People may come and go<br />Even when your life still remains<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"202\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg\" width=\"320\" /></a></div><br /><br />','Forever Never Lasts','','publish','open','open','','forever-never-lasts','','','2014-08-09 21:21:47','2014-08-09 21:21:47','',0,'http://www.monicarenata.com/?p=267',0,'post','',0),(268,1,'2013-06-25 13:23:00','2013-06-25 13:23:00','<div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>In the end<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>It doesn’t matter<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>It doesn’t matter what you may think<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Because I know who I am today<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>And who I want to be<o:p></o:p></b></span></div><div><br /></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>No harsh words or discouraging faces<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Will ever stop me<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>I will keep my head up high <o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>And always have faith<o:p></o:p></b></span></div><div><br /></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Faith in myself and those who actually care<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Like my family and a few friends<o:p></o:p></b></span></div><div><br /></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>So talk all you want<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Try to ruin my name<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>Because in the end you will truly see<o:p></o:p></b></span></div><div><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>While you were spreading rumors about me<o:p></o:p></b></span></div><span style=\"font-size: 11pt; line-height: 115%;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b>I was succeeding my goals in life and being ME</b></span></span><br /><span style=\"font-size: 11pt; line-height: 115%;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b><br /></b></span></span><span style=\"font-size: 11pt; line-height: 115%;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b><br /></b></span></span><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg\" width=\"258\" /></a></div><span style=\"font-size: 11pt; line-height: 115%;\"><span style=\"font-family: Georgia, Times New Roman, serif;\"><b><br /></b></span></span>','In the end','','publish','open','open','','in-the-end','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',0,'http://www.monicarenata.com/?p=268',0,'post','',0),(269,1,'2013-06-25 13:17:00','2013-06-25 13:17:00','I can\'t fault you for being yourself<br />I can only say I understand<br />I can\'t make you understand me<br />If you don\'t try to take a chance<br />I can\'t ask you to change your ways<br />Because you will only change if you want to<br />I can\'t expect you to take the time to do what you don\'t want to do<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg\" width=\"185\" /></a></div><br /><br /><br />','I can\'t','','publish','open','open','','i-cant','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',0,'http://www.monicarenata.com/?p=269',0,'post','',0),(270,1,'2013-06-17 17:44:00','2013-06-17 17:44:00','Point your finger once again<br />Point out the things that others lack<br />Judge so harshly<br />Let them see<br />That they are not what you want them to be<br /><br />Judgment has been cast upon others again<br />Yet we do not worry until we are the ones at stake<br />Always pointing a finger<br />Playing the blame game<br />But what is the purpose<br />All these games are the same<br /><br />He said this<br />She said that<br />He did this<br />She did that<br /><br />All and all<br />It is all the same<br />Always pointing the finger<br />Always handing out blame<br /><br />He can\'t do that<br />She can\'t do this<br />He believes in this<br />She believes in that<br /><br />I thought differences is what made us unique<br />We teach children to be themselves<br />But we are afraid of the product we reap<br /><br />He married her<br />She married him<br />It is all good, but then<br />He marries him<br />And she marries her<br />And now the world seems to be in a downfall<br /><br />But who are we to judge anyone<br />At the end of the day, let people do what they love<br />And stop judging others because they do something you believe is so wrong<br />There are too many bad things happening in this world today<br />To try to take away someone\'s happiness piece by piece<br />Stop blaming others for what goes wrong<br />Stop thinking that your right is ALWAYS right<br />And there right is wrong<br />Do what makes you happy<br />And they should too<br />Cause you would feel really bad<br />If those fingers were pointing at you<br /><br />Point your finger once again<br />Point out the things that others lack<br />Judge so harshly<br />Let them see<br />That they are not what you want them to be<br />Then open your eyes and look into that mirror so true<br />Cause usually nothing is wrong with the object being judged<br />Something is wrong with you<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg\" /></a></div><br /><br /><br /><br /><br />','Finger Pointers','','publish','open','open','','finger-pointers','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',0,'http://www.monicarenata.com/?p=270',0,'post','',0),(271,1,'2013-06-12 23:35:00','2013-06-12 23:35:00','<div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Have you ever had a shadow<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Who would try to imitate what you do<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">When you speak they speak as well<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">And they think their words are of truth?<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Have you ever had a shadow<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">That tries to make you feel worst about yourself each day<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Who constantly looks you in your face<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">And makes you realize you two aren\'t the same?<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Have you ever had a shadow<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Who is so mean yet you’re a so nice<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">The look on their face tells it all<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">They want you out of sight<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Have you ever had a shadow<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">And you hated it so true<o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">But the only thing stopping you from truly hating them<o:p></o:p></span></span></b></div><br /><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Is because they are a part of you</span><span style=\"color: #d9d9d9; font-size: 20pt;\"><o:p></o:p></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\"><br /></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Our shadow is a reflection of ourselves</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Yet we judge it so unkindly</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Why are we so hard on ourselves?</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Why do we give up before we try?</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\"><br /></span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Have you ever had a shadow</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">Who wanted to reach the stars just like you</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">You think you can\'t do it</span></span></b></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\">But to your shadow, that is untrue</span></span></b></div><div><br /></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\"><br /></span></span></b></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg\" width=\"263\" /></a></div><div><b><span style=\"font-family: \'Mongolian Baiti\'; line-height: 115%;\"><span style=\"color: #444444;\"><br /></span></span></b></div>','Have you ever had a Shadow?','','publish','open','open','','have-you-ever-had-a-shadow','','','2014-08-09 21:21:51','2014-08-09 21:21:51','',0,'http://www.monicarenata.com/?p=271',0,'post','',0),(272,1,'2013-06-11 02:11:00','2013-06-11 02:11:00','What is the point of even trying?<br />I find myself questioning this each day<br />Yet, I decide to be the bigger person<br />And be cordial at the end of the day<br />But what is this all doing for me?<br />Because I am not gaining at all<br />Yet I am constantly dragging myself deeper into a hole<br />That I want no part of<br /><br />What is the point of even speaking?<br />If you don\'t listen to a word I say<br />If you say my thoughts are meaningless<br />Then yell at me when I have nothing to say<br />I am slowly starting to realize<br />That you don\'t care at all<br />And maybe this is just something<br />That I should have no part in at all...<br /><br />What is the point<br />There is no purpose.<br />What is the point.......<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA\" /></a></div><br /><br /><br />','What is the point','','publish','open','open','','what-is-the-point','','','2014-08-09 21:21:51','2014-08-09 21:21:51','',0,'http://www.monicarenata.com/?p=272',0,'post','',0),(273,1,'2013-06-10 21:37:00','2013-06-10 21:37:00','Today...<br />Take the time to notice the kind people you encounter.<br />Simple as that!!!!<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg\" width=\"320\" /></a></div><br />','Weekly Challenge 9: Take time to Notice','','publish','open','open','','weekly-challenge-9-take-time-to-notice','','','2014-08-09 21:21:52','2014-08-09 21:21:52','',0,'http://www.monicarenata.com/?p=273',0,'post','',0),(274,1,'2013-06-10 00:34:00','2013-06-10 00:34:00','The heart has a way of finding itself<br />No matter the trials it goes through<br />At one point it can be bursting with life<br />And at another point it is broken in two<br /><br />The journey of a heart is a sad one indeed<br />For it always has the possibility to get hurt<br />But usually the journey of a heart goes very far<br />Til it meets another heart and those two become one<br /><br />And then that journey seems like it was worth it<br />It seems like those tears meant something indeed<br />For the rough road the heart took sometimes countless times<br />It ended in the greatest place it could be<br /><br />To be loved is such a wonderful thing<br />That so many take for granted these days<br />Nothing ever comes easy in life<br />And love is one of those things<br /><br />And sometimes when you waited for something<br />For as long as you can think<br />When you finally get what you are looking for<br />You will appreciate it above all things<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"215\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg\" width=\"320\" /></a></div><br /><br />','The journey of the Heart','','publish','open','open','','the-journey-of-the-heart','','','2014-08-09 21:21:52','2014-08-09 21:21:52','',0,'http://www.monicarenata.com/?p=274',0,'post','',0),(275,1,'2013-06-07 15:25:00','2013-06-07 15:25:00','From love comes all life they say<br />But I shall disagree<br />For many times I have seen love uproot a tree<br />And the hate for those who love so much<br />Grows stronger indeed<br />And that hate soon encourages others to finally plant a seed<br />And from this seed sprouts a life<br />Which is a blessing we all see<br />And the battle of love and hate continues on and battles for the fate of the seed<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"239\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg\" width=\"320\" /></a></div><br />','Love vs Hate','','publish','open','open','','love-vs-hate','','','2014-08-09 21:21:52','2014-08-09 21:21:52','',0,'http://www.monicarenata.com/?p=275',0,'post','',0),(276,1,'2013-06-07 15:10:00','2013-06-07 15:10:00','Hold my hand<br />My dear friend<br />Come with me<br />And let\'s pretend<br />Pretend we are worlds apart<br />Yet still intertwined in each others hearts<br /><br />Feel my heart<br />Beat after beat<br />Your smile<br />Is one of my greatest treats<br />Now continue to hold my hand some more<br />And drift off in this other land we both adore<br /><br />Worlds of marvel<br />Streets of gold<br />A place in which we will never grow old<br />This new world is small<br />But it is all we need<br />A world just built for you and me<br />Feast of wonder<br />The city of sin<br />You will be the greatest of all your friends<br />You will have to want no more<br />Cause everything is given, and you don\'t have to work for it<br /><br />Everything you ever dreamed<br />I have for you<br />This is real, or so it seems<br /><br />So now you can let go of my hand<br />And experience all the wonders of hell<br />You got everything you ever dreamed<br />Each deadly sin you committed indeed<br />No longer do you need my guide<br />Because you are here<br />It\'s your turn to cry<br /><br />Are you scared now?<br />I bet you are<br />You are wondering around dazed<br />Looking at the stars<br />And who am I?<br />You could care the least<br />But why is it my company you wish to keep?<br /><br />Greed & Gluttony<br />You want more and more<br />You over indulge in the things you adore<br /><br />Anger & Envy<br />To say the least<br />You always have a problem when others accomplish great feats<br /><br />Lust<br />You always hunger for the flesh<br />Don\'t care about what is on the inside<br />It is only the physical that impress<br /><br />Pride<br />To afraid to admit your faults<br /><br />Sloth<br />And out of all these other things<br />You think you will success will just come<br />You are lazy but expect the most<br /><br />The way you got here<br />Is by all your doings<br />I didn\'t have to lead you<br />Because it was the things you were pursuing<br />Which made you follow this awful path<br />But I\'m not complaining because you are mine at last<br /><br />Another man to add to my den<br />No concern about others<br />And submerged in sin<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/l.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/l.jpg\" width=\"175\" /></a></div><br />','Horrific Travels','','publish','open','open','','horrific-travels','','','2014-08-09 21:21:55','2014-08-09 21:21:55','',0,'http://www.monicarenata.com/?p=276',0,'post','',0),(499,1,'2014-08-09 21:21:55','2014-08-09 21:21:55','','Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger','','inherit','open','open','','yesterday-today-tomorrow-2011-metro-manila-film-festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger','','','2014-08-09 21:21:55','2014-08-09 21:21:55','',277,'http://www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png',0,'attachment','image/png',0),(277,1,'2013-06-03 15:10:00','2013-06-03 15:10:00','Beating heart<br />The pounding drum<br />Keeps me going<br />In the blazing sun<br /><br />Overturn the shades of day<br />Keep on going<br />Trying to run away<br /><br />Ice cold sweat<br />Trickling down<br />Yet I cannot quite hear the sounds<br />Running, Running, Running away<br />Trying to get to Tomorrow<br />So today can be Yesterday<br /><br />Oh what promise Tomorrow holds<br />I must get there quickly before I turn old<br />Always running away from Today<br />Believing that what is ahead<br />Is so great<br /><br />Yet never taking the time to appreciate this day<br />Cause I am running, running, running away<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"174\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger-300x163.png\" width=\"320\" /></a></div><br />','Tomorrow','','publish','open','open','','tomorrow','','','2014-08-09 21:21:55','2014-08-09 21:21:55','',0,'http://www.monicarenata.com/?p=277',0,'post','',0),(278,1,'2013-06-03 15:04:00','2013-06-03 15:04:00','How many people allow others to treat them any type of way at times??<div><br /></div><div>I know that sometimes I allow this and it is very wrong. This weekly challenge will be short and brief, but basically I want you to know your worth!!</div><div><br /></div><div>No one deserves to be mistreated by others.</div><div>No one deserves to be disrespected. </div><div>No one deserves to be taken advantage of. </div><div>No one deserves to be treated as though they are less than someone else. </div><div><br /></div><div>If someone treats you in such away just extract them from your life. </div><div>Life is too short to drench yourself in a pool of negativity. </div><div>And at times we say that the people who do these things are our \"friends\" and they didn\'t mean it....but friends wouldn\'t treat you bad. Know your worth and stop selling yourself short!!!!</div><div><br /></div><div>Have a nice day!!!</div><div><br /></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"260\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw\" width=\"320\" /></a></div><div><br /></div>','Weekly Challenge 8: Know Your Worth','','publish','open','open','','weekly-challenge-8-know-your-worth','','','2014-08-09 21:21:55','2014-08-09 21:21:55','',0,'http://www.monicarenata.com/?p=278',0,'post','',0),(279,1,'2013-05-29 19:36:00','2013-05-29 19:36:00','Peaking over the mountain top<br />Gazing on the sea<br />Bringing warmth to all you touch<br />Making ice caps no longer freeze<br /><br />Playing on the petals of flowers<br />Lighting up so many homes<br />Reminds me of a beacon of light<br />I seen so long ago<br /><br />Slowly taking away the darkness<br />Imitating the heavens as I speak<br />A new day is beginning<br />As the sun rises to its peak<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg\" /></a></div><br />','A New Beginning','','publish','open','open','','a-new-beginning','','','2014-08-09 21:21:56','2014-08-09 21:21:56','',0,'http://www.monicarenata.com/?p=279',0,'post','',0),(280,1,'2013-05-29 17:41:00','2013-05-29 17:41:00','The weight of the world is heavy<br />So heavy that it crushes the soul<br />And soon the clouds that play in the sky<br />Begin to cry once more<br /><br />Some benefit from this happening<br />While others face defeat<br />And the the river begins to be filled with tears<br />Tears that it is afraid to release<br /><br />As the water continues to plummet down<br />The river can take no more<br />It soon releases those tears<br />It can\'t hold them in anymore<br /><br />Poor river flowing with constant tears<br />Tears it wishes were no more<br />But the weight of the world is heavy indeed<br />So heavy it crushes the soul<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif\" style=\"clear: left; float: left; margin-bottom: 1em; margin-right: 1em;\"><img border=\"0\" height=\"632\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif\" width=\"640\" /></a></div><br /><br />','River of Tears','','publish','open','open','','river-of-tears','','','2014-08-09 21:21:57','2014-08-09 21:21:57','',0,'http://www.monicarenata.com/?p=280',0,'post','',0),(281,1,'2013-05-28 16:54:00','2013-05-28 16:54:00','Tick Tock goes the clock<div>Tick and then the world is still</div><div>And I am lost in my thoughts</div><div>Trying to swallow this pill</div><div><br /></div><div>As time has given me time to catch up</div><div>I quickly move away</div><div>I can\'t fathom why I have been blessed with this opportunity</div><div>And I wonder when it will go away</div><div><br /></div><div>The world it seems so frozen</div><div>Everyone looks like porcelain dolls</div><div>Yet I slowly torment myself</div><div>With thoughts of being alone</div><div><br /></div><div>So many smiles I will not see</div><div>So many years will be missed</div><div>I won\'t even get the opportunity </div><div>To feel my very first kiss</div><div><br /></div><div>Tock goes the clock</div><div>And then the tick tocks resume</div><div>I can\'t imagine how life would be</div><div>If time would stand still for you</div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"316\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg\" width=\"320\" /></a></div><div><br /></div><div><br /></div>','Tick Tock','','publish','open','open','','tick-tock','','','2014-08-09 21:21:58','2014-08-09 21:21:58','',0,'http://www.monicarenata.com/?p=281',0,'post','',0),(282,1,'2013-05-27 16:23:00','2013-05-27 16:23:00','This week, I would like everyone to think about what inspires them in life.<br />I know that I have been inspired by my family and even friends at times. But most importantly, I love reading quotes!!! Sometimes these quotes can help me get through the toughest times. I also remember a specific song that helped me make it through a hard time in my life. I will post it for you. Have a great week!!! :)<br /><br /><br /><div style=\"clear: both; text-align: center;\"><object width=\"320\" height=\"266\" class codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" data-thumbnail-src=\"http://img.youtube.com/vi/aA9mmz508Ro/0.jpg\"><param name=\"movie\" value=\"http://youtube.googleapis.com/v/aA9mmz508Ro&source=uds\" /><param name=\"bgcolor\" value=\"#FFFFFF\" /><param name=\"allowFullScreen\" value=\"true\" /><embed width=\"320\" height=\"266\" src=\"http://youtube.googleapis.com/v/aA9mmz508Ro&source=uds\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\"></embed></object></div><br /><span style=\"font-family: Arial, Helvetica, sans-serif;\"><br /></span><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“Just know, when you truly want success, you’ll never give up on it. No matter how bad the situation may get.” - <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\">Unknown</strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><br /></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“Accept responsibility for your life. Know that it is you who will get you where you want to go, no one else.” – <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><a href=\"http://addicted2success.com/success-advice/the-legendary-les-browns-6-keys-to-self-motivation/\" style=\"-webkit-transition: color 0.2s; border: 0px; color: #286c99; margin: 0px; padding: 0px; text-decoration: none; transition: color 0.2s; vertical-align: baseline;\" target=\"_blank\" title=\"Les Brown Quotes\">Les Brown</a></strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“One of the most important keys to Success is having the discipline to do what you know you should do, even when you dont feel like doing it.” - <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\">Unknown</strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><br /></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“Good things come to those who wait… greater things come to those who get off their ass and do anything to make it happen.” - <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\">Unknown</strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><br /></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“Happiness cannot be traveled to, owned, earned, or worn. It is the spiritual experience of living every minute with love, grace & gratitude.” - <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\">Denis Waitley</strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><br /></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\">“In order to succeed, your desire for success should be greater than your <a href=\"http://addicted2success.com/success-advice/5-ways-to-destroy-the-illusion-of-fear/\" style=\"border: 0px; color: #286c99; margin: 0px; padding: 0px; text-decoration: none; vertical-align: baseline;\" target=\"_blank\" title=\"fear\">fear</a> of failure.” – <em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\">Bill Cosby</strong></em></span></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\"><em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><br /></strong></em></span></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg\" width=\"320\" /></a></div><div style=\"background-color: white; border: 0px; color: #444444; font-size: 14px; line-height: 20px; margin-bottom: 15px; padding: 0px; vertical-align: baseline;\"><span style=\"font-family: Arial, Helvetica, sans-serif;\"><em style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><strong style=\"border: 0px; margin: 0px; padding: 0px; vertical-align: baseline;\"><br /></strong></em></span></div>','Weekly Challenge 7: Find out what Inspires you','','publish','open','open','','weekly-challenge-7-find-out-what-inspires-you','','\nhttp://addicted2success.com/success-advice/the-legendary-les-browns-6-keys-to-self-motivation/','2014-08-09 21:21:59','2014-08-09 21:21:59','',0,'http://www.monicarenata.com/?p=282',0,'post','',0),(283,1,'2013-05-24 18:55:00','2013-05-24 18:55:00','<div style=\"text-align: center;\">I tell myself you don\'t qualify</div><div style=\"text-align: center;\">Because you don\'t have everything on my list</div><div style=\"text-align: center;\">I say that you are kind</div><div style=\"text-align: center;\">But you don\'t have that or this</div><div style=\"text-align: center;\">I tell you that you\'re a great person</div><div style=\"text-align: center;\">That is something we can\'t deny</div><div style=\"text-align: center;\">I say that I have standards</div><div style=\"text-align: center;\">And that is why you can\'t be my man</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Standards</div><div style=\"text-align: center;\"> we all have them</div><div style=\"text-align: center;\">But some are a little too high</div><div style=\"text-align: center;\">We walk pass the nicest people</div><div style=\"text-align: center;\">And say they don\'t qualify</div><div style=\"text-align: center;\">We have in our head this imaginary list</div><div style=\"text-align: center;\">And point out what others lack</div><div style=\"text-align: center;\">Yet if someone did the same to us</div><div style=\"text-align: center;\">We would want to break their neck</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Nice body </div><div style=\"text-align: center;\">CHECK</div><div style=\"text-align: center;\">Nice personality </div><div style=\"text-align: center;\">CHECK</div><div style=\"text-align: center;\">And a nice bright smile.....</div><div style=\"text-align: center;\">Those are things I love the most</div><div style=\"text-align: center;\">They are things that make me smile</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Respectful </div><div style=\"text-align: center;\">CHECK</div><div style=\"text-align: center;\">Goal oriented</div><div style=\"text-align: center;\">CHECK</div><div style=\"text-align: center;\">Compatible with me</div><div style=\"text-align: center;\">I notice that we get along</div><div style=\"text-align: center;\">And I have to speak with you before I go to sleep</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">As the list goes on </div><div style=\"text-align: center;\">I notice that the check marks disappear</div><div style=\"text-align: center;\">You are missing what I say I want</div><div style=\"text-align: center;\">Yet I still hold you in my heart dear</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">So should I follow my standards</div><div style=\"text-align: center;\">And get someone who meets my list so true</div><div style=\"text-align: center;\">Or should I be happy</div><div style=\"text-align: center;\">With someone like you</div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\">Standards </div><div style=\"text-align: center;\">Standards </div><div style=\"text-align: center;\">Standards</div><div style=\"text-align: center;\">You don\'t qualify</div><div style=\"text-align: center;\">But how could you ever cross the fence</div><div style=\"text-align: center;\">If my standards are too high</div><div style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png\" /></a></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div><div style=\"text-align: center;\"><br /></div>','Standards','','publish','open','open','','standards','','','2014-08-09 21:22:00','2014-08-09 21:22:00','',0,'http://www.monicarenata.com/?p=283',0,'post','',0),(284,1,'2013-05-24 15:10:00','2013-05-24 15:10:00','If I had a million wishes<br />And all of them would come true<br />I would take all of my wishes<br />And wish for things for you<br /><br />If I had a million wishes<br />And I could hold your hand<br />I would wish you could feel my love<br />And know that it is really there<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg\" width=\"320\" /></a></div><br />','If I had a million wishes','','publish','open','open','','if-i-had-a-million-wishes','','','2014-08-09 21:22:01','2014-08-09 21:22:01','',0,'http://www.monicarenata.com/?p=284',0,'post','',0),(285,1,'2013-05-22 20:52:00','2013-05-22 20:52:00','Because I have a sister<br />I shall always have a friend<br />And I didn\'t realize this<br />And I wish I would have known then<br /><br />That no matter what, I have my sister<br />Through the constant smiles and frowns<br />She is my motivation<br />When life has me feeling down<br /><br />Because I have a sister<br />I can\'t possibly be alone<br />Because even though we live in different places<br />I know her house is also my home<br /><br />In her heart I will always be<br />In my heart she will be too<br />I love my sister<br />And I know she loves me too<br /><br />No matter what ever happens<br />She will be there through thick and thin<br />And because I have a sister<br />I shall always have a friend<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg\" width=\"400\" /></a></div><br /><br />','Because I have a Sister','','publish','open','open','','because-i-have-a-sister','','','2014-08-09 21:22:02','2014-08-09 21:22:02','',0,'http://www.monicarenata.com/?p=285',0,'post','',0),(286,1,'2013-05-22 20:47:00','2013-05-22 20:47:00','Blue as the sky <div>On this lovely day</div><div>I think about you</div><div>As I lay...</div><div><br /></div><div>And what type of things come to my mind</div><div>A whirlwind of emotion is tumbling down</div><div>And then I finally catch my breath</div><div>And I tell myself \"You have to relax\"</div><div><br /></div><div>I paint a portrait only I can see</div><div>And it showcases so many memories</div><div>The happiness I felt</div><div>The disappoints too</div><div>Oh how all this revolves around you</div><div><br /></div><div>Blue as the sky </div><div>On this lovely day</div><div>I think about you </div><div>As I lay</div><div><br /></div><div><br /></div><div>-----------------------------------------------------------------------------------</div><div><br /></div><div>The Love Poem........... To be completely honest, I think that I am fairly decent at writing them. However, truth be told, I am horrible at love. I am the type of person who consumes her world with so many other things that I neglect that aspect of my life. I am the type of person who is somewhat of a perfectionist. I always have to be the best at whatever I do. And I applied that to my academic career and now I apply that to my current job......but this thing called love.... I put in no effort.............. </div><div><br /></div><div>Sorry for the random thought after writing..lol</div><div><br /></div><div><br /></div><div>------------------------------------------------------------------------------------</div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q\" width=\"400\" /></a></div><div><br /></div>','The truth about my Love Poem','','publish','open','open','','the-truth-about-my-love-poem','','','2014-08-09 21:22:03','2014-08-09 21:22:03','',0,'http://www.monicarenata.com/?p=286',0,'post','',0),(287,1,'2013-05-21 15:40:00','2013-05-21 15:40:00','The kindest heart you have ever encountered<br />Has been beating way too fast<br />It is scared of all the hurt around<br />And wonders when this pain will pass<br /><br />The kindest heart you have ever encountered<br />Has always been there for you<br />Yet you constantly neglect its feelings<br />Because they have nothing to do with you<br /><br />The kindest heart you have ever encountered<br />Has tears swelling in their eyes<br />But they will try to remain strong<br />Because they don\'t want you to see them cry<br /><br />It is always the ones that care the most<br />That seem to always get hurt<br />It is the ones who are always there for you<br />That you end up treating like dirt<br />But why should these people constantly feel alone<br />When the ones who have the kindest hearts<br />Try to help everyone they know<br /><br />The kindest heart you have ever encountered<br />May be your only true friend<br />But soon they will begin to wonder when their sadness will end<br />And the kindest heart will sometimes think and they will soon believe....<br />\"That sometimes no matter how good you are to people... they will never be good to you\"<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"293\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg\" width=\"320\" /></a></div><br />','The Kindest Heart','','publish','open','open','','the-kindest-heart','','','2014-08-09 21:22:03','2014-08-09 21:22:03','',0,'http://www.monicarenata.com/?p=287',0,'post','',0),(288,1,'2013-05-20 18:18:00','2013-05-20 18:18:00','Sweeter than a honeydew<br />Oh how I dream of you<br />Gently caress me and hold me tight<br />Never let go with all your might<br /><br />Kiss me as I pull away<br />Make me realize I want to stay<br />Oh how I am in love with you<br />I can picture it all<br />Just me and you...<br /><br />You hand me the world on a silver plate<br />You offer more<br />But I won\'t take<br />You care about me<br />More than I care about myself<br />You give me so much love<br />Until you have none left<br /><br />Forever you will be by my side<br />The love you have for me I can\'t deny<br />Sweeter than a honeydew<br />Oh how my dreams have really come true<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg\" width=\"306\" /></a></div><br /><br />','Sweet Love','','publish','open','open','','sweet-love','','','2014-08-09 21:22:04','2014-08-09 21:22:04','',0,'http://www.monicarenata.com/?p=288',0,'post','',0),(508,1,'2014-08-09 21:22:05','2014-08-09 21:22:05','','milton','','inherit','open','open','','milton','','','2014-08-09 21:22:05','2014-08-09 21:22:05','',289,'http://www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg',0,'attachment','image/jpeg',0),(289,1,'2013-05-20 17:44:00','2013-05-20 17:44:00','As the wind blows so peacefully<br />And the sun begins to set<br />I sit down and reminisce about my day<br />And enjoy what I have left<br /><br />As the sunlight slowly goes away<br />I take a deep breath in<br />Enjoying the smell of the flowers<br />That are carried by the wind<br /><br />I hear brief sounds of nature<br />I hear crickets in the grass<br />And I close my eyes and remember<br />Remember the events of my past<br /><br />As the wind gently plays with my cheeks<br />I feel so at home<br />And soon I notice<br />That the sun is no more<br /><br />Crickets in the grass<br />The smell of roses in the wind<br />A day gone by so swiftly<br />A day I can\'t get back<br />But who am I to worry<br />For I enjoyed this day<br />As I sat down and remembered<br />As the wind blew past my face<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"253\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg\" width=\"400\" /></a></div><br /><br /><br />','The Windy Night','','publish','open','open','','the-windy-night','','','2014-08-09 21:22:05','2014-08-09 21:22:05','',0,'http://www.monicarenata.com/?p=289',0,'post','',0),(290,1,'2013-05-20 14:18:00','2013-05-20 14:18:00','Creeping through the darkest night<br />Close to me<br />Yet far in sight<br />Feeding on my beating heart<br />Making my world... fall apart<br />Through the night as I sleep<br />My company you want to keep<br />But I am just so very afraid<br />Yet I can\'t close my eyes again<br /><br />Wanting to leave<br />And afraid to stay<br />I close my eyes yet once again<br />Hoping I could just leave this dream<br />Fearing this dream could be reality indeed<br /><br />Creeping through the darkest night<br />Close to me<br />yet far in sight<br />Feeding on my beating heart<br />Making my world fall apart<br />I want to leave<br />And I\'m afraid to stay<br />Yet this fear inside won\'t go away<br />Save me from this horrible thing<br />This nightmare that others would call a dream<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg\" width=\"267\" /></a></div><br /><br />','Fear','','publish','open','open','','fear','','','2014-08-09 21:22:06','2014-08-09 21:22:06','',0,'http://www.monicarenata.com/?p=290',0,'post','',0),(510,1,'2014-08-09 21:22:07','2014-08-09 21:22:07','','700263__large','','inherit','open','open','','700263__large','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',292,'http://www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg',0,'attachment','image/jpeg',0),(291,1,'2013-05-20 13:00:00','2013-05-20 13:00:00','<div>When I was a little girl, I remember one of my favorite things to do was watch cartoons. My mother would always buy these VHS tapes which had 6 hours of cartoons on them. I would sit in front of the tv all day watching classics such as Felix the Cat, Woody the Woodpecker, Popeye, and many others. I also remember watching Little Lulu and Little Audrey. They were my favorites!!!! This week I will leave you with a piece of my childhood I loved so much. I hope you enjoy. </div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><object width=\"320\" height=\"266\" class codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" data-thumbnail-src=\"http://img.youtube.com/vi/ujwV9WSVKVc/0.jpg\"><param name=\"movie\" value=\"http://youtube.googleapis.com/v/ujwV9WSVKVc&source=uds\" /><param name=\"bgcolor\" value=\"#FFFFFF\" /><param name=\"allowFullScreen\" value=\"true\" /><embed width=\"320\" height=\"266\" src=\"http://youtube.googleapis.com/v/ujwV9WSVKVc&source=uds\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\"></embed></object></div><div><br /></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><br /><object width=\"320\" height=\"266\" class codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" data-thumbnail-src=\"http://img.youtube.com/vi/zR_KWWyU5VE/0.jpg\"><param name=\"movie\" value=\"http://youtube.googleapis.com/v/zR_KWWyU5VE&source=uds\" /><param name=\"bgcolor\" value=\"#FFFFFF\" /><param name=\"allowFullScreen\" value=\"true\" /><embed width=\"320\" height=\"266\" src=\"http://youtube.googleapis.com/v/zR_KWWyU5VE&source=uds\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\"></embed></object></div><div><br /></div>','Weekly Challenge 6: Share a childhood memory','','publish','open','open','','weekly-challenge-6-share-a-childhood-memory','','','2014-08-09 21:22:06','2014-08-09 21:22:06','',0,'http://www.monicarenata.com/?p=291',0,'post','',0),(292,1,'2013-05-16 18:10:00','2013-05-16 18:10:00','<br /><h4><span style=\"color: purple; font-family: Courier New, Courier, monospace;\"><i>I would like to state that I did not write this piece. However, I remember reading it as a child. I always read the \"Chicken Soup for the Soul\" books, and this was a piece that stood out to me. I even know most of the words by heart! Whenever I am feeling down, I always read this, and it brightens my spirit and encourages me to get back up and fight. I hope you enjoy this!!! </i></span></h4><h4><span style=\"color: purple; font-family: Courier New, Courier, monospace;\"><i>- Monica Renata </i></span></h4><div style=\"background-color: white; color: #555555; font-family: \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 22px;\"><br />Quit! Give up! You\'re Beaten!<br />They shout at me and plead. <br />“There’s just too much against you now. This time you can’t succeed!”<br />And as I start to hang my head In front of failure’s face. <br />My downward fall is broken by The memory of a race.<br />And hope refills my weakened will As I recall that scene:<br />For just the thought of that short race Rejuvenates my being.<br />A children’s race-young boys, young men-how I remember well.<br />Excitement, sure! But also fear; It wasn’t hard to tell.<br />They all lined up so full of hope Each thought to win that race.<br />Or tie for first, or if not that, At least take second place.<br />And fathers watched from off the side Each cheering for his son.<br />And each boy hoped to show his dad That he would be the one.<br />The whistle blew and off they went! Young hearts and hopes afire.<br />To win and be the hero there Was each young boy’s desire.<br />And one boy in particular Whose dad was in the crowd,<br />Was running near the lead and thought: “My dad will be so proud!”<br />But as they speeded down the field Across a shallow dip,<br />The little boy who thought to win Lost his step and slipped.<br />Trying hard to catch himself His hands flew out to brace,<br />And mid the laughter of the crowd He fell flat on his face.<br />So down he fell and with him hope –He couldn’t win it now–<br />Embarrassed, sad, he only wished To disappear somehow.<br />But as he fell his dad stood up And showed his anxious face,<br />Which to the boy so clearly said: “Get up and win the race.”<br />He quickly rose, no damage done, –Behind a bit, that’s all–<br />And ran with all his mind and might To make up for his fall.<br />So anxious to restore himself –To catch up and to win–<br />His mind went faster than his legs: He slipped and fell again!<br />He wished then he had quit before With only one disgrace.<br />“I’m hopeless as a runner now; I shouldn’t try to race.”<br />But in the laughing crowd he searched And found his father’s face:<br />That steady look which said again: “Get up and win the race!”<br />So up he jumped to try again –Ten yards behind the last–<br />“If I’m to gain those yards,” he thought “I’ve got to move real fast.”<br />Exerting everything he had He regained eight or ten,<br />But trying so hard to catch the lead He slipped and fell again!<br />Defeat! He lied there silently –A tear dropped from his eye–<br />“There’s no sense running any more; Three strikes: I’m out! Why try?”<br />The will to rise had disappeared; All hope had fled away;<br />So far behind, so error prone; A loser all the way.<br />“I’ve lost, so what’s the use,” he thought. “I’ll live with my<br />disgrace.”<br />But then he thought about his dad Who soon he’d have to face.<br />“Get up,” an echo sounded low. “Get up and take your place;<br />You were not meant for failure here. Get up and win the race.”<br />“With borrowed will get up,” it said, “You haven’t lost at all.<br />For winning is no more than this: To rise each time you fall.”<br />So up he rose to run once more, And with a new commit<br />He resolved that win or lose At least he wouldn’t quit.<br />So far behind the others now, –The most he’d ever been–<br />Still he gave it all he had And ran as though to win.<br />Three times he’d fallen, stumbling; Three times he rose again;<br />Too far behind to hope to win He still ran to the end.<br />They cheered the winning runner As he crossed the line first place;<br />Head high, and proud, and happy; No falling, no disgrace.<br />But when the fallen youngster Crossed the line last place,<br />The crowd gave him the greater cheer For finishing the race.<br />And even though he came in last With head bowed low, unproud,<br />You would have thought he’d won the race, to listen to the crowd.<br />And to his dad he sadly said, “I didn’t do too well.”<br />“To me, you won,” his father said. “You rose each time you fell.”<br />Now when things seem dark and hard And difficult to face,<br />The memory of that little boy Helps me in my race.<br />For all of life is like that race, With ups and downs and all.<br />And all you have to do to win, Is rise each time you fall.<br />“Quit! Give up! You’re beaten!” They still shout in my face.<br />But another voice with me says: “GET UP AND WIN THE RACE!”<br /><em><br /></em><em><br /></em><em><br /></em><em>“A righteous man falls seven times and rises again.” Proverbs 24:16</em><em></em><br /><em>Therefore, since we are surrounded by such a great cloud of witnesses,<br />let us throw off everything that hinders and the sin that so easily entangles,<br />let us run with perseverance the race marked out for us.<br />Let us fix our eyes on Jesus, the author and perfecter of our faith.<br />Hebrews 12:1,2</em><br /><em><br /></em><em><br /></em><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg\" width=\"400\" /></a></div><em><br /></em></div>','“QUIT! GIVE UP! YOU’RE BEATEN!”','','publish','open','open','','quit-give-up-youre-beaten','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',0,'http://www.monicarenata.com/?p=292',0,'post','',0),(293,1,'2013-05-14 15:46:00','2013-05-14 15:46:00','It has been months since I have seen your face<div>And I have told myself I would let go</div><div>But every time my mind wanders</div><div>You become the topic of all things I wish to know</div><div><br /></div><div>I told myself I would forget you</div><div>And let you live your life</div><div>But it seems that I let go prematurely</div><div>And I didn\'t even put up a fight</div><div><br /></div><div>I think about all the times I was afraid</div><div>To tell you how I felt</div><div>I turned away when emotions came near</div><div>I refused to tell you how I felt</div><div><br /></div><div>And now I find my mind wandering</div><div>And I pretend that I don\'t know why</div><div>But I believe it is because of the feelings</div><div>I so desperately kept inside</div><div><br /></div><div>It has been months since I have seen your face</div><div>And I have told myself I would let go</div><div>But every time my mind wanders</div><div>You become the topic of all things I wish to know</div><div><br /></div><div>I hope you are very happy</div><div>I hope you are living a great life</div><div>I love you so much!!!</div><div>I just want you to be happy!</div><div>Even if I am not by your side</div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large-300x225.jpg\" width=\"320\" /></a></div><div><br /></div>','To You','','publish','open','open','','to-you','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',0,'http://www.monicarenata.com/?p=293',0,'post','',0),(294,1,'2013-05-14 14:54:00','2013-05-14 14:54:00','<br /><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">When I look at you from head to toe<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">My eyes start high and then go low<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">I pause to see if you smile back<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">And then I may look for things you lack<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Do you treat others with respect?<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Are you a nice guy?<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Would you comfort someone if you saw them cry?<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Do you have plans in life?<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Do you know what you want?<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Do you have a certain \"good\" quality of heart?<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">When I look at you from head to toe<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">My eyes start high and then go low<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">I slowly take those steps forward <o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">bracing myself for the few words shared<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Hello<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">How are you<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Can I get your name<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">I look at you and you are quite tamed<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">No slang in your talk<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Just confidence in your walk<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Because you know you are a great man<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">You speak of yourself and your goals in life<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">And not brag about what you have<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">And when I take my final look<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">I know that you are my kind of man<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">So to all guys out there<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Who think that you are classified by your \"things\"<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Just remember there are some women out there <o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Who appreciate more than just material things you have<o:p></o:p></span></span></b></div><div><br /></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Be a GREAT version of yourself<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Stop trying to be who you can\'t<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">I will respect you if you come at me real<o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\">Then if you would come at me with fallacies and material \"things\"</span><span style=\"color: #d9d9d9; font-family: \'One Stroke Script LET\'; font-size: 14pt;\"><o:p></o:p></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\"><br /></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\"><br /></span></span></b></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\"><br /></span></span></b></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"200\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg\" width=\"320\" /></a></div><div><b><span style=\"line-height: 115%;\"><span style=\"color: #444444; font-family: Georgia, Times New Roman, serif;\"><br /></span></span></b></div>','From Head to Toe','','publish','open','open','','from-head-to-toe','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',0,'http://www.monicarenata.com/?p=294',0,'post','',0),(513,1,'2014-08-09 21:22:07','2014-08-09 21:22:07','','juice_tray_2','','inherit','open','open','','juice_tray_2','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',295,'http://www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png',0,'attachment','image/png',0),(295,1,'2013-05-13 13:51:00','2013-05-13 13:51:00','As I was walking to my car today<br />I heard a woman scream<br />I looked at her house and walked away<br />And then I finally thought to myself<br />I\'m glad that wasn\'t me<br /><br />As I began my morning drive to work<br />I heard a loud crash behind me<br />I looked in my rearview as I continued pass<br />And then a car raced beside me<br />I continued to move along until I could no longer see<br />And then I finally thought to myself<br />I\'m glad that wasn\'t me<br /><br />As I sat at my desk<br />I overhead a conversation about a coworker I know<br />She is in the division of the company which will shut down<br />And today she found out she has to go<br />I see her as I leave that day and I don\'t say a peep<br /><br />And then I finally thought to myself<br />I\'m glad that wasn\'t me<br /><br />On the drive home I feel so accomplished<br />I have done so much work today<br />When I get home I am surrounded by luxuries<br />That I worked so hard to get<br />I turn on the local news<br />And then I hear people in the background cry<br />It seems a woman was beaten badly<br />And then hours later she died<br />No one heard her cry that day<br />And her husband didn\'t care about her plea<br />And then they showed the house<br />And it was the house across the street<br /><br />The next story was about an accident<br />That ended up closing 3 lanes<br />There were four people involved<br />And all had passed away<br />The cause of the accident was a driver<br />A driver who was filled with rage<br />He threw a metal object at the driver and then quickly drove away<br />The object hit the driver<br />And caused her to lose control<br />And her and her 3 children hit the barricade on the side of the road<br />They say they are looking for the driver<br />Who quickly drove away<br />They say to call a number<br />But I flip the channel instead<br /><br />------------------------------------------------------------<br /><br />The world is filled with misery<br />So why should I even care<br />Why should I look out for others<br />When I know the others don\'t care<br />This is the mindset so many have<br />So not in touch with how humans feel<br />We have turned into a selfish society<br />And say \"If you don\'t care, then I don\'t care\"<br /><br />Why don\'t we help each other out?<br />Why are we so insensitive to others?<br />Compassion for others is somewhat lost...<br />Why don\'t we care about others??<br /><br />Help your fellow man out<br />Because together we can all rise high<br />Peace starts within yourself<br />And your willingness to try<br /><br />The world can be an ugly place<br />Full of selfish people indeed<br />But I realize that improving the world<br />Starts with M-E<br />I vow to help those who are in need<br />And always offer kind words<br />Cause everyone is fighting a battle<br />And everyone wants to be heard<br /><br />Today I saw a homeless man<br />as I walked down the street<br />I looked at him and shook my head<br /><br />And then I finally thought to myself<br />I\'m glad that wasn\'t me<br />But instead of turning my head and walking the other way<br />I asked him about his story<br />And listened to what he had to say<br />He told me his times of happiness and told me his hardships in life<br />Then I gave him the cash in my pockets and told him I hope everything turns out right<br />As I walked away I thought to myself<br />\"He is human just like me\"<br /><br /><br />So be careful how you treat people<br />Be careful about what you say<br />Cause everyone goes through situations<br />And you never know if you will be there one day<br /><br />Sometimes a string of bad luck<br />Can really bring you down<br />So never turn your nose up at someone<br />Just help them out and smile<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"213\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png\" width=\"320\" /></a></div><br /><br /><br /><br /><br />','I\'m Glad It wasn\'t me','','publish','open','open','','im-glad-it-wasnt-me','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',0,'http://www.monicarenata.com/?p=295',0,'post','',0),(296,1,'2013-05-13 12:49:00','2013-05-13 12:49:00','Hello all,<br /><br />One week I challenged everyone to get to know themselves. However, this week I want you to write down 25 truths about yourself. This is basically telling 25 things about yourself that others may not know. I will start with mines:<br /><br /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">1. At times I find myself to be overcritical. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">2. I think that I have some of the best friends in the world. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">3. I rarely give people the opportunity to get to know me..........like really</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">4. Many nights I stay up till about 2 in the morning to just write poems and stuff. I have hundreds of pages of stuff I have written.</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">5. I had a secret that I should have been proud of, yet it was the one thing that I felt made me feel ashamed. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">6. I really don\'t like talking about myself so like 25 things to come up with is really really hard......</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">7. I always like to be surrounded by people.........I am just a people person, plus I hate to be alone.</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">8. I absolutely despise when people use profanity....It is just so classless and pointless....some people just use certain words TOO much. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">9. I love love love Ludacris and all of his music. Ask me about something and I probably know the lyrics..lol</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">10. I hate going out on Friday nights. So when my sister would go out with her friends I would just sit in my room finding instrumentals on youtube and sing in the mirror..........lame I know</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">11. I love to shop at New York & Company and when I found out that my rewards card was registered under my twins email address I wanted to die!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">12. Whenever someone sends me a text and I reply with the statement \"ok..............\" or \"I guess.......\" I am really disappointed, so don\'t text me back with \"what\'s wrong? \" because I am so upset that I will just say \"nothing\"</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">13. I have a hard time trying to say what I really want to say at times..........</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">14. I love love songs.........I just don\'t know why</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">15. I hate confrontations.......</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">16. I do not like loud people. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">17. If I say I am playing the game I do not want any interruptions. Don\'t call me and ask me what I am doing and get made when I rarely speak back.</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">18. If I get quite and shake my head, YOU ALREADY KNOW...LOL. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">19. I sometimes wish I had more girlfriends.</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">20.One of the greatest friends I ever met was actually my myspace buddy who I met in real life. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">21. I love my job. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">22. I love the outdoors very very much. </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">23.2008.....well the second half of it, was the best time in my life thus far. I found out so much about myself and what I like and dislike. But most importantly, I realized that sometimes making myself happy is most important!</span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">24. When I was little my twin pulled the fire alarm in Winn-Dixie and everyone ran out of the store.....My mom fussed and whipped me because she said only I would do something crazy like that.sad huh? </span><br style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\" /><span style=\"background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; line-height: 19.49652862548828px;\">25. I really like to go to the park and feed the ducks. I know its lame, and I know that so many people think that only old people do it.......but I absolutely love doing it. I like seeing the little ducks fight over one piece of bread...yep yep.</span>','Weekly Challenge 5: List 25 Truths About Yourself','','publish','open','open','','weekly-challenge-5-list-25-truths-about-yourself','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',0,'http://www.monicarenata.com/?p=296',0,'post','',0),(297,1,'2013-05-08 01:09:00','2013-05-08 01:09:00','There is a choice you have to make<br />There is a lesson to be learned<br />But first you must embrace yourself<br />And come into your own<br /><br />You have to decide what path to take<br />You have to decide when<br />But think about this very carefully<br />And remember there is no turning back again<br /><br />We all are going somewhere<br />We all have things to do<br />But we have to realize what is important<br />And make our dreams come true<br /><br />Follow your path in life<br />And make other people see<br />See the person that you have made of yourself<br />Be the person you want to be<br /><br />Don\'t let others deter you from your path<br />Be unique and make it your own<br />Followers don\'t go far in life<br />So don\'t be one all along<br /><br />There is a choice I have to make<br />There is a lesson to be learned<br />So I decide to face my fears<br />And walk into the unknown<br /><br />I have to decide what path to take<br />I have to decide when<br />North I will go to face my fears<br />And I will start today<br /><br />I am going somewhere<br />I have things to do<br />First I will start by improving myself<br />And then I will go back to being true<br /><br />True to my passion<br />True to my dreams<br />Live once again for me!<br />Reach my level of success<br />That I want oh so badly<br /><br />Sacrifice things in life<br />And strive to be the best once more<br />I am not only walking this time<br />This time.. I will soar<br /><br />There is a choice I have to make<br />There is a lesson I have to learn<br />And I will finally take these steps myself<br />And live for me once more<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"337\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg\" width=\"400\" /></a></div><br /><br /><br /><br />','A Choice','','publish','open','open','','a-choice','','','2014-08-09 21:22:08','2014-08-09 21:22:08','',0,'http://www.monicarenata.com/?p=297',0,'post','',0),(298,1,'2013-05-06 12:35:00','2013-05-06 12:35:00','As the night sky finally fades to day<br />I find myself running out of words to say<br />Lost in my thoughts yet still captured in my dreams<br />I hold on to a reality but can\'t fathom what that means<br /><br />Lost in my thoughts and drifting away<br />As if I am on a boat and sailing the sea<br />So much to think about<br />So much consumes me<br />Yet still I can\'t figure out the words to say<br /><br />I should have said how I felt<br />Or is it too late<br />I find myself questioning this over and over again<br />It is really what I want?<br />But is it really what I need?<br />Should my happiness come before others when dealing with this thing?<br /><br />As the night sky finally fades to day<br />I find myself running out of words to say<br />Lost in my thoughts yet still captured in my dreams<br />Thinking of the reality between you and me<br /><br />Sailing far away in the middle of the sea<br />So much to think about<br />So much consumes me<br />I either have to work it out<br />Or let things be<br />But I still wonder about you and me<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"488\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg\" width=\"640\" /></a></div><br />','Drifting Away','','publish','open','open','','drifting-away','','','2014-08-09 21:22:08','2014-08-09 21:22:08','',0,'http://www.monicarenata.com/?p=298',0,'post','',0),(299,1,'2013-05-06 12:35:00','2013-05-06 12:35:00','Hello,<br /><br />This week I would like everyone to think about how they allow situations to affect their lives. How do you let minor or even major conflicts change you. This week I won\'t say much at all. We all have problems, but it depends on how we handle these situations. I will leave you with a story that I find very helpful to me as well.<br /><br /><span style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: grey; display: inline !important; float: none; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 11.111111640930176px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 15.555556297302246px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\">A young woman went to her grandmother and told her about her life and how things were so hard for her. She did not know how she was going to make it and wanted<span> </span></span><span style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: grey; display: inline; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 11.111111640930176px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 15.555556297302246px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\">to give up. She was tired of fighting and struggling. It seemed that as one problem was solved, a new one arose.<span> </span><br /><br />Her grandmother took her to the kitchen. She filled three pots with water and placed each on a high fire. Soon the pots came to a boil. In the first, she placed carrots, in the second she placed eggs, and the last she placed ground coffee beans. She let them sit and boil, without saying a word.<span> </span><br /><br />In about twenty minutes she turned off the burners. She fished the carrots out and placed them in a bowl. She then pulled the eggs out and placed them in a bowl. Then she ladled the coffee out and placed it in a bowl.<span> </span><br /><br />Turning to her granddaughter, she asked, \"Tell me, what do you see?\"<span> </span><br /><br />\"Carrots, eggs, and coffee,\" she replied.<span> </span><br /><br />She brought her closer and asked her to feel the carrots. She did and noted that they were soft. She then asked her to take an egg and break it. After pulling off the shell, she observed the hard-boiled egg. Finally, she asked her to sip the coffee. The daughter smiled as she tasted its rich aroma.<span> </span><br /><br />The granddaughter then asked, \"What does it mean, Grandmother?\"<span> </span><br /><br />Her grandmother explained that each of these objects had faced the same adversity -- boiling water -- but each reacted differently. The carrot went in strong, hard and unrelenting. However, after being subjected to the boiling water, it softened and became weak. The egg had been fragile. Its thin outer shell had protected its liquid interior. But, after sitting through the boiling water, its inside became hardened. The ground coffee beans were unique, however. After they were in the boiling water, they had changed the water.<span> </span><br /><br />\"Which are you?\" she asked her granddaughter. \"When adversity knocks on your door, how do you respond? Are you a carrot, an egg, or a coffee bean?\"<span> </span><br /><br />Think of this: Which am I? Am I the carrot that seems strong, but with pain and adversity? Do I wilt and become soft and lose my strength?<span> </span><br /><br />Am I the egg that starts with a malleable heart, but changes with the heat? Did I have a fluid spirit, but after a death, a breakup, a financial hardship or some other trial, have I become hardened and stiff? Does my shell look the same, but on the inside am I bitter and tough with a stiff spirit and a hardened heart?<span> </span><br /><br />Or am I like the coffee bean? The bean actually changes the hot water, the very circumstance that brings the pain. When the water gets hot, it releases the fragrance and flavor of your life. If you are like the bean, when things are at their worst, you get better and change the situation around you. When the hours are the darkest and trials are their greatest, do you elevate to another level?<span> </span><br /><br />How do you handle adversity? Are you changed by your surroundings or do you bring life, flavor, to them?<span> </span><br /><br />ARE YOU A CARROT, AN EGG, OR A COFFEE BEAN?</span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"210\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy\" width=\"400\" /></a></div>','Weekly Challenge 4: Determine how you want situations to affect you','','publish','open','open','','weekly-challenge-4-determine-how-you-want-situations-to-affect-you','','','2014-08-09 21:22:09','2014-08-09 21:22:09','',0,'http://www.monicarenata.com/?p=299',0,'post','',0),(300,1,'2013-05-03 15:58:00','2013-05-03 15:58:00','No words<br />Just actions<br />That is all that I need<br />The way you interact with me<br />Tells me so many things<br /><br />The look in your eyes<br />That glimmer of hope<br />I see it so often<br />You want so much more<br /><br />The way that you embrace me<br />You show me that you care<br />And if I were ever taken away<br />It would seem like you are losing your air<br /><br />The way your mouth opens<br />When you are about to smile<br />The way that you giggle<br />The way you put your hands up and smile<br />The way you stand there and look<br />That stance that you have<br />I know how you are feeling<br />You didn\'t even have to tell<br /><br />I love the way we interact<br />The way we interact without words<br />A form of language that is foreign to others<br />And also misunderstood<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"135\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg\" width=\"400\" /></a></div><br /><br />','Without Words','','publish','open','open','','without-words','','','2014-08-09 21:22:09','2014-08-09 21:22:09','',0,'http://www.monicarenata.com/?p=300',0,'post','',0),(301,1,'2013-05-03 15:51:00','2013-05-03 15:51:00','A few words come forth<div>And then I choke</div><div>I can\'t speak anymore</div><div>I can\'t speak what I wrote</div><div>But I have to say much more</div><div><br /></div><div>I am too afraid</div><div>I feel so much pressure</div><div>I am usually great with my words</div><div>I am usually so clever</div><div>I am lost in my thoughts </div><div>floating like a windswept feather</div><div><br /></div><div>This time I\'m stuck</div><div>I am lost in my speech</div><div>The reality of what is happening</div><div>Is finally getting to me</div><div>My words may hurt you</div><div>Yet my words may make you smile</div><div>But the uncertainty of this</div><div>Makes me want to cry</div><div><br /></div><div>A few words come forth </div><div>And then I choke again</div><div>I want to tell you how I feel</div><div>I really want to let you in</div><div>But fear is consuming my soul</div><div>This fear of the unknown</div><div>Will my words mean anything to you? </div><div>That.... I do not know</div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg\" width=\"303\" /></a></div><div><br /></div><div><br /></div><div><br /></div>','Speak','','publish','open','open','','speak','','','2014-08-09 21:22:10','2014-08-09 21:22:10','',0,'http://www.monicarenata.com/?p=301',0,'post','',0),(302,1,'2013-05-02 16:30:00','2013-05-02 16:30:00','The world is such a beautiful place<br />Yet we can\'t really see<br />What the world has in store for us<br />What we really want to be<br /><br />Constantly pushed down by others<br />Refusing to get up after the fall<br />We continue to beat ourselves up constantly<br />We can\'t see that there is a tomorrow<br /><br />Overwhelmed by constant guilt<br />Guilt of attempts that were not taken<br />Yet this cycle repeats itself<br />And who are we constantly blaming?<br /><br />We blame the world for everything<br />We blame it for what is bad<br />But the world is made up of many things<br />And you hold your world in your hands<br /><br />Don\'t blame the world for your problems<br />Don\'t blame the world for your falls<br />At the end of the day you control what happens<br />Just rise up when you fall<br /><br />The world is a beautiful place<br />The world is where it all happens<br />And you make up your own little world<br />so don\'t blame the world for your actions<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"https://si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"252\" src=\"https://si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg\" width=\"400\" /></a></div><br />','The world','','publish','open','open','','the-world','','','2014-08-09 21:22:10','2014-08-09 21:22:10','',0,'http://www.monicarenata.com/?p=302',0,'post','',0),(303,1,'2013-04-29 16:47:00','2013-04-29 16:47:00','<div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I can see the camera</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">It is right there in my face</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Paying attention to my every movement</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Always recording what I say</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I\'m here for your entertainment</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">For you to love or for you to hate</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I am a walking spectical</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">And you tune in every week</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">some say I am self absorbed </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Others say I am weak</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">But I just like to share my world</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I want everyone to see</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">See how I live each day and night</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">See how my relationships unfold</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">See my attitude towards humanity</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">See how I am a staple in your household</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">You know my name</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">You know my face</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">My story and my family</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">And I make you believe my reality means more</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">than other minor things</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What\'s going on in the world around you? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What\'s Korea\'s leader name? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">When was the last time a soldier died? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">When was the last time one was praised? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What\'s going on in your community? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What is your mayor\'s name? </span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">It\'s amazing how you don\'t know these things</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Yet you know everything about me!</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What\'s my date of birth? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Who was the last person I tried to date? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Why am I jealous of my cousin? </span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Why did I slap her in her face?</span></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">You are addicted t my lifestyle</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">But yet you can\'t see...</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I am a reality...but not your reality</span></div><div style=\"clear: both; text-align: center;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I AM Reality TV </span> </div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"></div><div style=\"clear: both; text-align: center;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918-300x187.jpg\" height=\"248\" width=\"400\" /></div><br />','Reality TV','','publish','open','open','','reality-tv','','','2014-08-09 21:22:11','2014-08-09 21:22:11','',0,'http://www.monicarenata.com/?p=303',0,'post','',0),(304,1,'2013-04-29 12:58:00','2013-04-29 12:58:00','Hello,<br /><br />I hope everyone\'s week is off to a fantastic start!! This week the weekly challenge is to appreciate what you have. At times we believe we don\'t have much. However, we actually have more than what you think. Think about the people in your life. Your mother, your father, your siblings, aunts and uncles, friends, and even people in your community. Have they impacted your life?<br /><br />I remember a few teachers I had in grade school. They always encouraged me and believed in me even when I didn\'t believe in myself. At that time, I never really thought that much about it. But now, I appreciate their kind words so much. Along with my family, they have helped propel me to the current position I am at in life.<br /><br />I look at my sisters. I can honestly say I love spending time with them. I love having random conversations about nothing and just laughing for no particular reason. This is something so small....yet I appreciate it.<br /><br />Take the time to think about all the blessings you have in your life. Some might not be that big but please just appreciate it. Even the smallest things in life can bring upon the brightest smile. Remember that!!! <span style=\"color: purple;\"><i><u>Because one day instead of appreciating what you have, you will find yourself appreciating what you have had!!</u></i></span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg\" height=\"242\" width=\"400\" /></a></div><br />','Weekly Challenge 3: Appreciate What You Have','','publish','open','open','','weekly-challenge-3-appreciate-what-you-have','','','2014-08-09 21:22:12','2014-08-09 21:22:12','',0,'http://www.monicarenata.com/?p=304',0,'post','',0),(520,1,'2014-08-09 21:22:13','2014-08-09 21:22:13','','warren_25271_2','','inherit','open','open','','warren_25271_2','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',306,'http://www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg',0,'attachment','image/jpeg',0),(305,1,'2013-04-26 18:38:00','2013-04-26 18:38:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">At the end of the day… </span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am a person</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Just like the others who roam around the world each day</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I have feelings….. I have a heart…..</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am more than what others think I am</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am a person…</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Just like you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Just like everyone else</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\"> </span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am someone who can let words consume my soul at times</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I cry… I shed tears… I even bleed…. Just like you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am a person</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Countless times my emotions are neglected and it is believed that I feel nothing…</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I do</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I feel everything….</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Just like you feel…. I feel….</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I can’t fathom why others disregard me as what I really am</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">It’s as though I have to be something different</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Something unique</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\"></span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I am not</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am just a person</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Everyone has hard times</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Everyone has bursts of happiness that erupt in their lives</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Everyone has feelings</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">So who are we to think that someone doesn\'t??</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Do you really think that there are emotionless shells walking around?</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Sure people do evil things</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Sure people do sweet things</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Sure people act like they don\'t care</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But these are all feelings....emotions.....</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You know... they are what make others like you</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am just like you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You are just like me</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Yet we say \"differences\" separate one from the other </span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I am a person.... just like you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">We all come in different shapes, sizes, and shades</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But </span></b>.....</div><br /><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">We all cry… We all shed tears… We all even bleed…. Just like you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am a person</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And so are you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\"><br /></span></b></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"391\" src=\"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A\" width=\"400\" /></a></div><div><br /></div>','I am just like you','','publish','open','open','','i-am-just-like-you','','','2014-08-09 21:22:12','2014-08-09 21:22:12','',0,'http://www.monicarenata.com/?p=305',0,'post','',0),(306,1,'2013-04-26 18:17:00','2013-04-26 18:17:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">As I walk in my dreams</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Dreams of which will never come true</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Shadowing paths revealing themselves</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But nothing guides me to the truth</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">As I walk in my dreams</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I see feelings of love</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Overpowering my every movement</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But that love isn’t for me</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">As I walk in my dreams</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And realize I am so confused</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I want to stay in my dreams</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But that wish will never come true</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I walk in my dreams</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because it is a happy place</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But when I open my eyes all I see is heartache……</span></b></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg\" height=\"400\" width=\"340\" /></a></div><div><br /></div>','As I walk in My Dreams','','publish','open','open','','as-i-walk-in-my-dreams','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',0,'http://www.monicarenata.com/?p=306',0,'post','',0),(307,1,'2013-04-26 17:35:00','2013-04-26 17:35:00','<span style=\"font-family: "Trebuchet MS",sans-serif;\">Kiss me ever so softly</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Play with my hair</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Your presence means a lot to me</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">I need it like I need air</span><br /><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Hold my hand even tighter</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Don\'t ever let me go</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">As our souls become intertwined </span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">I can feel our love grow</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\"><br /></span><span style=\"font-family: "Trebuchet MS",sans-serif;\">Hold me closer to you</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">So tightly that I can barely breathe</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Feel my heart beat faster</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">As you are standing next to me</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\"><br /></span><span style=\"font-family: "Trebuchet MS",sans-serif;\">Stay with me forever</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">You are all I need</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">I love you today and will love you tomorrow</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Let our love run free</span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg\" height=\"300\" width=\"400\" /></a></div><br />','Love Run Free','','publish','open','open','','love-run-free','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',0,'http://www.monicarenata.com/?p=307',0,'post','',0),(522,1,'2014-08-09 21:22:13','2014-08-09 21:22:13','','eyes','','inherit','open','open','','eyes','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',308,'http://www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg',0,'attachment','image/jpeg',0),(308,1,'2013-04-26 14:53:00','2013-04-26 14:53:00','<i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Brown, Blue, Green, and Hazel</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">colors that come from an angel</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">revealing all there is inside</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">revealing love</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">revealing surprise</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span></i><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Brown, Blue, Green, and Hazel</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">They see the truth</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">They see forever</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">revealing hurt</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">revealing pain</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">These eyes</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">These eyes</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Watching me as I lay</span></i><br /><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Brown, Blue, Green, and Hazel</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Casting judgements</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Believing they are able</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">Eyes open wide but they can\'t see</span></i><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">That those eyes are wide shut when watching me </span></i><br /><br /><i><span style=\"font-family: Georgia,"Times New Roman",serif;\">-Monica Renata</span></i><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg\" height=\"266\" width=\"400\" /></a></div><i><span style=\"font-family: Georgia,"Times New Roman",serif;\"> </span></i><br /><br /><span style=\"color: purple;\">You can never judge a book by its cover. Sight is just one sense we possess. You cannot fully know someone by just looking at them...... We all know this.... but why do we judge others by what we see??</span><br /><br /><span style=\"color: purple;\">Everyone goes through different struggles in life. And who are we to judge them? Sometimes we look at the way a person dresses and believe that we know what they are about. And that is wrong! You can\'t truly know someone by just looking at them......Yet, many think that they can.... This is sad, but a part of life. I hope one day people will learn how to open their eyes which are wide shut. </span>','Brown, Blue, Green, and Hazel','','publish','open','open','','brown-blue-green-and-hazel','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',0,'http://www.monicarenata.com/?p=308',0,'post','',0),(523,1,'2014-08-09 21:22:14','2014-08-09 21:22:14','','the_snow_storm_by_anugerah_ilahi','','inherit','open','open','','the_snow_storm_by_anugerah_ilahi','','','2014-08-09 21:22:14','2014-08-09 21:22:14','',309,'http://www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg',0,'attachment','image/jpeg',0),(309,1,'2013-04-24 15:03:00','2013-04-24 15:03:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remember when the snow fell light</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And it landed on the ground</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">This rarely happened in my neighborhood</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">So I was happy and I smiled</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remember when that snow turned to hail</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And then feel upon my face</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">It wasn’t as soft as the snow was</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I was still happy it came</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remember when that hail turned to hail stones</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I finally had to run for cover</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I watched in amazement while in my house</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because I had never seen this before</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Soon the snow came harder</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And the stones continued to fall</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I watched myself get blocked in</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I no longer could do anything at all</span></span></div><div><br /></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remember when he said he loved me</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I was happy and I smiled</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I remember when he cheated</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But he came back </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I was happy he came, so I smiled</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But now it is just a storm </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I have tried to run but cannot hide</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I can be honest with him and tell him how I feel</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But it seems like he doesn’t get it inside</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Why would someone want something</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">That they decided to throw away</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Why would someone hold on to something</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">In hopes of having it one day</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Why say you love someone</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">When you look in their face and constantly lie</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And why shed a single tear </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">When I tell you I am tired of trying. </span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remembered when it snowed that day. </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I remember how I felt. </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I was in love and I was blinded by some petty things</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I was blinded by how I felt</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">When it began to hail I still watched in amazement</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because I wanted to believe it couldn’t be that bad</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And when the hail stones started to drop</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I ran for cover but I still was there</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I eventually became trapped, and I was alone</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I was hiding from the truth</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And we all know the truth can open scary doors</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">It opened the door to the real you</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">As time went on my heart grew cold</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I could say this is because of you</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But now I treat you, </span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">How you always treated me</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And now you tell me you feel used</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And now you show emotion</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But my heart is cold and your tears don’t faze me</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">For now I am frozen</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And you are a distant memory</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I run into you time from time</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And you are but a stranger to me</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You give me a hug</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\"> you buy a gift</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But it doesn’t mean anything to me</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You call me and I pick up</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And you just hear me breathe on the phone</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You want me to show an ounce of feeling</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I packed those up long ago</span></span></div><div><br /></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But the moral of the story is</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Don’t take advantage of a real love</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Cause if a woman really loves you</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">She loves with her heart and soul</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And yeah they say the first wound</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Is always the one that cuts deep</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But never throw away something</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">That you always thought you would keep</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because women get fed up at times</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And yes, they do move on</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But when a woman loses all emotion for you</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You basically do not exist in her world</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">So treat your women right</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And hold on to what you got</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Cause a woman can only take so much</span></span></div><div><span style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Until she decides to shut you completely out</span></span></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg\" height=\"300\" width=\"400\" /></a></div><div><br /></div>','Winter','','publish','open','open','','winter','','','2014-08-09 21:22:14','2014-08-09 21:22:14','',0,'http://www.monicarenata.com/?p=309',0,'post','',0),(524,1,'2014-08-09 21:22:14','2014-08-09 21:22:14','','chivalry2','','inherit','open','open','','chivalry2','','','2014-08-09 21:22:14','2014-08-09 21:22:14','',310,'http://www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png',0,'attachment','image/png',0),(310,1,'2013-04-24 14:52:00','2013-04-24 14:52:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Chivalry is dead......</span></span></span></div><div><br /></div><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Sometimes a girl walks around</span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">And claims to know her worth</span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Her parents taught her she was special</span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">And worth more than gold</span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">She was taught that respect should always be given </span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">And also received</span></span></span></span></div><span style=\"color: #e69138;\"> </span><div><span style=\"color: #e69138;\"><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">But when she got older those lessons seemed to leave</span></span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">The other day I had a conversation with friends and the topic which was brought up was chivalry. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">I mean, what do women necessarily want<span style=\"font-size: small;\">?</span> I have heard that chivalry is dead, yet men still end up with women. Sometimes even multiple women<span style=\"font-size: small;\">! </span></span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span style=\"font-size: small;\"> </span></span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">My grandmother always said that you should date a guy that wants to court you. By definition this means: </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> \"</span><i>When a man is courting a woman he is seeking her affection\"</i></span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">In my opinion, this is seeking an emotional bond. In modern America, a courtship may include activities in which the man and the woman participate in activities which can draw them together. This may be attending poetry readings together, watching movies/plays, conversation over a meal, and other things. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Now back to the topic about Chivalry. </span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">We as women must realize that the situations we put ourselves in are because of us. </span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Many so called “relationships” I have witnessed has started as the following: </span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> </span> </span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"> Boy meets girl</span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> </span>They exchange numbers</span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> </span>Visit each other at their homes</span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> </span>After doing this countless times they decide to be intimate</span></span></span></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\"><span> </span>After being intimate they are “in a relationship” or “friends”</span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">This continues on and then one day the girl gets upset and says her man doesn’t treat her right and all this other stuff and then she says the statement, “Chivalry is dead.”</span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">In my opinion, it isn’t dead. Well not just yet…… we have too many women who settle for the bare minimum and then they offer the guy their heart and body for just a simple “I love you” and a value meal from Mickey D’s. When women settles for less, men will feel (or basically know) that they don’t have to try hard to obtain a woman’s “all”. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">I have many friends and I talked to countless people. And to be honest, I believe men really want to treat women right. There are times when I see men open a door for a women and she will complain and say “I can do this myself”. There are times when men are genuinely interested in a woman, and that woman will say such things as “All I want from you is sex.”</span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">I mean you get what you ask for and then say men are dogs and they are no good because you came into a situation and decided to be “Ms. I don’t need a man for anything but <span style=\"font-size: small;\">sex</span>” and get upset when they start to actually catch feelings for the guy and he has decided to withdraw his. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Women will tell men they only want them as a “f&%k buddy” and get upset when their “buddy” is taking another woman out on dates when they only see the ceiling of their buddy’s bedroom. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">So yeah, I know I am rambling but chivalry is not dead. And men are not no good trifling dogs. Women are just messing up really bad. Many of us were taught self-respect from our parents but we seem to be pressured by some of our peers that our parents views are old fashioned. In order to get <u>ANY WOMAN</u> a man has to put in effort and as women we control how much effort a man should put in. However, since so many women have lowered the amount of effort needed, men notice this and realize they don’t need to put much work in the pursuit. </span></span></span></div><div><br /></div><div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">In addition, I would like to add this. </span></span></span></div><div><br /></div><div><b><i><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"line-height: 115%;\">Women you attract the type of man that is a reflection of yourself. If you want a good man be a good woman. </span></span></span></i></b></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png\" height=\"220\" width=\"400\" /></a></div><div><br /></div>','Why do women say Chilvalry is dead?','','publish','open','open','','why-do-women-say-chilvalry-is-dead','','','2014-08-09 21:22:14','2014-08-09 21:22:14','',0,'http://www.monicarenata.com/?p=310',0,'post','',0),(525,1,'2014-08-09 21:22:14','2014-08-09 21:22:14','','45047192-end-relationship','','inherit','open','open','','45047192-end-relationship','','','2014-08-09 21:22:14','2014-08-09 21:22:14','',311,'http://www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg',0,'attachment','image/jpeg',0),(311,1,'2013-04-23 13:39:00','2013-04-23 13:39:00','We are together<br />Together we are one<br />But what is the point<br />When one doesn\'t trust the other one<br />One fears the worst<br />While one hopes for the best<br />And in my head<br />I\'m hoping we past the test<br /><br />You don\'t trust me<br />But I trust you<br />What have I ever done<br />To ever hurt you<br />You fear the unimaginable<br />I see light far ahead<br />But it doesn\'t matter<br />Cause you believe what\'s in your head<br /><br />I show you the real me<br />You think there is more<br />You tell me I\'m hiding<br />But what do I have to hide for<br />The days go on<br />And time begins to past<br />But I wonder how long this will last <br /><br />We are together<br />Together we are one<br />But what is the point<br />When one doesn\'t trust the other one<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg\" height=\"315\" width=\"400\" /></a></div><br />','We are together','','publish','open','open','','we-are-together','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',0,'http://www.monicarenata.com/?p=311',0,'post','',0),(526,1,'2014-08-09 21:22:15','2014-08-09 21:22:15','','know_thyself','','inherit','open','open','','know_thyself','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',312,'http://www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg',0,'attachment','image/jpeg',0),(312,1,'2013-04-22 13:18:00','2013-04-22 13:18:00','<span style=\"font-family: Georgia,"Times New Roman",serif;\">Hello, </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">Once again it is time to think. Think about the many things in life. Think about what is going on around you. And most importantly, it is time to think about yourself!</span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">Can you describe yourself to someone? If someone asked you what were your best qualities, could you do it? </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">Many of us freeze up when someone asks us to describe our self, but why? Out of everyone in the entire world we should be able to describe our self better than anyone else could. But the truth is.... many times we simply can\'t. </span><br /><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\">This week I want you sit down and think about who you are as a person. Think about what you have to offer the world. After all, everyone is special and means something to someone. At times we are so hard on ourselves and believe that we have nothing to offer, but that is not the truth. Are you a caring person? Are you a great listener? Do you have a talent that you can use to help others? Just think about yourself. Take time to write down everything. I\'m pretty sure that once you see everything written down you will finally realize that you are more than what you thought you were. And if you don\'t like something, do something about it! In the words of a great friend of mines, \"If you don\'t like something about yourself change it!\" You control who you are, and you can make yourself into who YOU want to be. </span><br /><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\">Have a great day, </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\">Monica</span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg\" height=\"400\" width=\"397\" /></a></div><br /><br />','Weekly Challenge 2: Know Thyself!!','','publish','open','open','','weekly-challenge-2-know-thyself','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',0,'http://www.monicarenata.com/?p=312',0,'post','',0),(527,1,'2014-08-09 21:22:15','2014-08-09 21:22:15','','KingdomOfHeaven','','inherit','open','open','','kingdomofheaven','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',313,'http://www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg',0,'attachment','image/jpeg',0),(313,1,'2013-04-22 12:59:00','2013-04-22 12:59:00','As I begin to float<br />On the winds of forever<br />I wonder if this is a dream<br />Or if this is heaven<br />I can feel the embrace<br />The embrace that contains so much love<br />Yet I continue to float<br />I float high above<br /><br />As I begin to float<br />On the winds of forever<br />I clinch my fists<br />And my heart beats faster<br />I go round and round<br />And it seems like it will never stop<br />I feel a pressure within<br />It feels like I am going to pop <br /><br />I float high<br />higher than I have ever been<br />I take a deep breath<br />And I exhale again<br />This can\'t be real<br />This just can\'t be<br />I am floating right now<br />Over the land and the seas<br /><br />As I begin to flat<br />On the winds of forever<br />I see everything<br />I even see heaven<br />Put just as I see<br />Those I have missed for so long<br />My eyes begin to open<br />And I am back home<br /><br /><br />\"Sometimes when people die..... We can\'t see them physically but they are always in our minds and in our hearts\" -Monica R. Williams<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg\" height=\"300\" width=\"400\" /></a></div><br />','Floating','','publish','open','open','','floating','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',0,'http://www.monicarenata.com/?p=313',0,'post','',0),(528,1,'2014-08-09 21:22:15','2014-08-09 21:22:15','','lilies','','inherit','open','open','','lilies','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',314,'http://www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg',0,'attachment','image/jpeg',0),(314,1,'2013-04-18 16:35:00','2013-04-18 16:35:00','<span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What happened to giving a lady flowers? </span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">What happened to kisses at the door? </span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I constantly find myself wondering why</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">I rarely see this anymore</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Those small little gestures</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">So small yet so sweet</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Yet none of these have ever been bestowed upon me..</span></span><br /><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Life is filled with many things</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">Yet life is so simple</span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">But we complicate life with <span style=\"font-size: small;\">extravagant</span> thin<span style=\"font-size: small;\">gs </span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\">When in actuality many would be happy with little</span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\">A walk <span style=\"font-size: small;\">underneath the moonlit sky</span></span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\"><span style=\"font-size: small;\">A long walk in the park</span></span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\"><span style=\"font-size: small;\">A gesture...</span></span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\"><span style=\"font-size: small;\">So small... Yet so sweet</span></span></span></span><br /><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\"><span style=\"font-size: small;\">A gesture I seem to yearn for in my deepest sleep</span></span></span></span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg\" height=\"400\" width=\"356\" /></a></div><span style=\"font-size: small;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\"><span style=\"font-size: small;\"><span style=\"font-size: small;\"> </span> </span> </span></span>','Small But Sweet','','publish','open','open','','small-but-sweet','','','2014-08-09 21:22:15','2014-08-09 21:22:15','',0,'http://www.monicarenata.com/?p=314',0,'post','',0),(529,1,'2014-08-09 21:22:16','2014-08-09 21:22:16','','truth','','inherit','open','open','','truth','','','2014-08-09 21:22:16','2014-08-09 21:22:16','',315,'http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg',0,'attachment','image/jpeg',0),(315,1,'2013-04-18 15:58:00','2013-04-18 15:58:00','<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Within yourself</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are holding in secrets</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">In which you hope no one will find</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The fear of \"them\" knowing</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Is something that makes you want to die</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth isn\'t the truth to you</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">It is a reality you don\'t seek</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But the truth..... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth shall set you free</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">\r\n</span><span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Walking around in this made up world</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">A reality you created</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Not doubting your decisions at all</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">but hoping to never relive it</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You hold in a secret so dark inside</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are bursting at the seams</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But the truth.... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth shall set you free</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">\r\n</span><span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Look into the eyes of those you constantly feed</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Feed them nothing but deceit</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">I wonder how they would feel</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">When they realize their reality isn\'t as real as it should be</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Picture how their face will be</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Picture how they will feel</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are denying something to them... something that is so real</span>\r\n\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are holding in secrets </span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">In which you hope no one will find</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The fear of \"them\" knowing</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Is something that makes you want to die</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth isn\'t the truth to you</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">It is a reality you don\'t seek</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But what if \"that\" reality is something others need</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are hiding something that others wish they knew</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are hiding information.... withholding the truth</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But my dear friend, I hope you soon see</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">That the truth.... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">the truth shall set you free </span>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg\" alt=\"\" width=\"400\" height=\"266\" border=\"0\" /></a></div>\r\n ','The Truth Shall Set You Free!!!','','publish','open','open','','the-truth-shall-set-you-free','','','2015-12-22 21:27:56','2015-12-23 03:27:56','',0,'http://www.monicarenata.com/?p=315',0,'post','',1),(1179,1,'2015-12-22 21:27:56','2015-12-23 03:27:56','<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Within yourself</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are holding in secrets</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">In which you hope no one will find</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The fear of \"them\" knowing</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Is something that makes you want to die</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth isn\'t the truth to you</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">It is a reality you don\'t seek</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But the truth..... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth shall set you free</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">\r\n</span><span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Walking around in this made up world</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">A reality you created</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Not doubting your decisions at all</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">but hoping to never relive it</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You hold in a secret so dark inside</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are bursting at the seams</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But the truth.... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth shall set you free</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">\r\n</span><span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Look into the eyes of those you constantly feed</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Feed them nothing but deceit</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">I wonder how they would feel</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">When they realize their reality isn\'t as real as it should be</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Picture how their face will be</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Picture how they will feel</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are denying something to them... something that is so real</span>\r\n\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are holding in secrets </span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">In which you hope no one will find</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The fear of \"them\" knowing</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">Is something that makes you want to die</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">The truth isn\'t the truth to you</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">It is a reality you don\'t seek</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But what if \"that\" reality is something others need</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are hiding something that others wish they knew</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">You are hiding information.... withholding the truth</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">But my dear friend, I hope you soon see</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">That the truth.... the truth my friend</span>\r\n<span style=\"font-family: Georgia,\'Times New Roman\',serif;\">the truth shall set you free </span>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg\" alt=\"\" width=\"400\" height=\"266\" border=\"0\" /></a></div>\r\n ','The Truth Shall Set You Free!!!','','inherit','closed','closed','','315-revision-v1','','','2015-12-22 21:27:56','2015-12-23 03:27:56','',315,'http://www.monicarenata.com/315-revision-v1/',0,'revision','',0),(316,1,'2013-04-17 14:30:00','2013-04-17 14:30:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Sometimes my mind wanders</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And then I begin to cry</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And my mind is consumed with thoughts</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And I end up asking why</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">My heart starts to beat faster</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And then my breath seems to go slow</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">My palms get sweaty</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And then I walk out the door</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I look at all the trees</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I feel the cool air on my skin</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But I cannot escape one thing</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That is the wrath deep within</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">My skin starts to get hot</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">My stomach begins to cramp</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I am doing so much thinking</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That I feel like I am killing myself</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I look forward and see everything</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Yet I cannot take everything in</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Something is happening within my mind</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And I keep reliving a moment again and again</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I love you……..</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I think to myself</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But I know it doesn’t matter</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I always stuck by your side</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">No matter what happened</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But what is love when you feel so bad</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">What is a feeling that isn’t returned?</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I work myself up for disappointment</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Yet I always return</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I would say you have me hooked on you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But I haven’t a clue</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I know I care about you</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But do I care about myself too?</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">The air seems so calm out side</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And I sit under the tree</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I feel something wet on my face</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Something I thought came from the tree</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But how can this be??</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">It is sunny outside</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Rain can’t come today</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But the weeping willow is crying</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And I think it is crying for me</span></b></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg\" height=\"400\" width=\"306\" /></a></div><div><br /></div>','Beneath the Willow Tree','','publish','open','open','','beneath-the-willow-tree','','','2014-08-09 21:22:16','2014-08-09 21:22:16','',0,'http://www.monicarenata.com/?p=316',0,'post','',1),(317,1,'2013-04-16 15:05:00','2013-04-16 15:05:00','<span style=\"font-family: Georgia,"Times New Roman",serif;\"><i>\"Many times in life you will come across a puzzle that is missing the very last piece. No matter how long and hard you search for it, you will never find that piece. However, it is up to you to realize that your efforts were in vain and to pick up the pieces and move on..... Besides, why waste time stressing about it? Sometimes when you finally find that missing piece you realize that it wasn\'t even worth the effort and you did not care about the puzzle as much as you thought. \" -Monica R. Williams</i></span><br /><br /><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\">So many of us hold on to toxic relationships for far too long. We believe that everything will get better if we fix one aspect of the relationship. However, we don\'t know what aspect that is....</span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">Why are we so afraid of being alone? I see so many men and women stay with someone who mistreats and does not appreciate them. I have seen many hold on to the hope that if they fix \"one thing\" then everything will get better....but as time moves forward the situation doesn\'t improve. I mean, is it that bad to be single? </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">At times, we find ourselves holding on to someone because we are afraid to be alone. But why? You were single before you met your partner. So therefore, being single is something you have experienced before. In addition, being single DOES NOT mean that you are alone!!</span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">At the end of the day, you have to love yourself. You have to feel comfortable being surrounded by you. Take this time to get to know yourself. Sometimes we lose ourselves in another person and we forget who we really are. </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">So don\'t ever lose yourself in someone else. Always remember what you deserve and never settle for anything less than that. </span><br /><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span><span style=\"font-family: Georgia,"Times New Roman",serif;\">And remember this: <i>People were not created to be mistreated. </i></span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg\" height=\"266\" width=\"400\" /></a></div><br />','The Fear of Being Single','','publish','open','open','','the-fear-of-being-single','','','2014-08-09 21:22:16','2014-08-09 21:22:16','',0,'http://www.monicarenata.com/?p=317',0,'post','',2),(318,1,'2013-04-16 14:45:00','2013-04-16 14:45:00','<span style=\"font-family: "Trebuchet MS",sans-serif;\">As I grab my pen and paper</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">I slowly begin to write again</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">This is my sanctuary</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Where I will not be judged for my sins</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">My pen digs deep</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">As my emotions are so raw</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">I want to express how I feel</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">But I don\'t want to reveal them to none</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">My true friends are my pen and paper</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">They have always been there for me</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Through good times and bad times</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">They never tried to leave</span><br /><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg\" height=\"265\" width=\"400\" /></a></div><br />','Pen and Paper','','publish','open','open','','pen-and-paper','','','2014-08-09 21:22:17','2014-08-09 21:22:17','',0,'http://www.monicarenata.com/?p=318',0,'post','',0),(533,1,'2014-08-09 21:22:17','2014-08-09 21:22:17','','Eye-in-the-Sky-1680x1050','','inherit','open','open','','eye-in-the-sky-1680x1050','','','2014-08-09 21:22:17','2014-08-09 21:22:17','',319,'http://www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg',0,'attachment','image/jpeg',0),(319,1,'2013-04-15 16:25:00','2013-04-15 16:25:00','<span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">When was the last time you took the time out of your day to view the world around you? Like really take a look at it? </span></span><br /><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span></span><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">Many have not, and although they may constantly say they have... the truth is.... they have not. Think about it......ask yourself these few questions. </span></span><br /><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><br /></span></span><ul><li><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">When was the last time you seen the moon emerge from the daytime sky? </span></span></li><li><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">When was the last time you heard nature speak?</span></span></li></ul><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">Too many of us are so consumed with our everyday lives that we forget about the things that are constantly around us. <b>And that is a problem!!</b></span></span><br /><br /><span style=\"font-size: large;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\">So I challenge you to take a look!! Appreciate the world around you. Take a minute to escape the constant chatters of people and the hustle and bustle of automobiles on your local streets. Take time to gaze into the sky! Touch the soft grass that is beneath your feet. Smell the flowers that are blooming... You might be surprised with what you discover!!</span></span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg\" height=\"250\" width=\"400\" /></a></div><br />','Weekly Challenge 1: Take the Time To Experience the World Around You','','publish','open','open','','weekly-challenge-1-take-the-time-to-experience-the-world-around-you','','','2014-08-09 21:22:17','2014-08-09 21:22:17','',0,'http://www.monicarenata.com/?p=319',0,'post','',2),(320,1,'2013-04-12 19:33:00','2013-04-12 19:33:00','You were born alone........<br />I hate when people tell me this<br />It\'s like people say this in order to make you fell lower than you already feel<br />They say it to make you see that you have no one in the world but yourself<br /><br />And the truth is........<br />No one came into this world alone<br />You had someone who was present at your birth<br />I mean, you didn\'t just magically pop out of the sky and landed on Earth<br />You came from another creature<br />Many of us call this creature Mom<br /><br />As we grow older, some of us distance ourselves from \'Mom\'<br />We dislike the fact that she gives us all of this advice that we never use<br />We dislike her for saying \"When I was your age\" because we can never imagine her as us<br />We just think that \'Mom\' isn\'t hip with our times<br />but what we fail to realize is that usually this is one person in our life who is there with us from day one.<br />This is the one person who probably wiped your first tear and told you to be strong.<br />This is the one person who probably taught you that no matter what life throws at you... you can make it.<br /><br />So now you sit here thinking about all of the mean things others tell you<br />And you say to yourself<br />\"Well.. I was born alone\"<br />And the weird thing about it is that you actually believe this statement now<br />But I ask you this........... Why? Why do you feel this way?<br />No one comes into this world alone, and even if you feel alone at this very moment. I want you to know that you aren\'t. <br /><br />There have been times when I have hit the lowest of the low!<br />And trust me, I believed I was alone too.<br />I felt as though I had no one.<br />I felt like no one cared about me.<br />I felt like an orphan....<br />But then I finally expressed how I felt<br />I opened up and let my lips speak what my mind always though<br />And at that moment, I seen tears fall from those who I thought didn\'t care for me<br />I saw tears from the people I thought I didn\'t even have in my life...<br /><br />The point I am trying to make is.. You aren\'t alone.<br />And trust me, there are many people who care about you<br />You probably just don\'t see it because you are stuck behind a thick cloud of sadness<br />But once you express how you feel<br />You might be surprised at who actually cares<br />You will be surprised by the many who don\'t want you to be consumed with sadness.<br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png\" height=\"320\" width=\"317\" /></a></div><br /><br /><br />','Just a Random Thought','','publish','open','open','','just-a-random-thought','','','2014-08-09 21:22:18','2014-08-09 21:22:18','',0,'http://www.monicarenata.com/?p=320',0,'post','',2),(321,1,'2013-04-12 18:28:00','2013-04-12 18:28:00','Yeah I see you looking back at me<br />And you are not making a sound<br />You think you won<br />But I won\'t accept defeat<br />I have to get through this somehow<br /><br />I look at the door<br />and it is far away<br />But I have to complete this mission<br />I know my arms will be tired<br />But I have to fight<br />In order for me to make it<br /><br />As I grind my teeth<br />And prepare for this struggle<br />I hear the crowd in my head scream \"Come On\"<br />I have to make my decision soon<br />So I begin to ready my arms<br /><br />I grab the culprits one by one<br />And hold them in the air<br />And then I take them to their resting spot<br />Which is up two flights of stairs<br /><br />I won!! I won!! I say to myself!<br />And then I look at the wounds of the war.<br />I have whelps and it has grown redder with time<br />But then again <br />The battle ....I have won!!<br /><br />So what if you say I am foolish<br />Because I don\'t think so at all<br />Cause who would like to make two or three trips<br />When they can only make one<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png\" height=\"320\" width=\"320\" /></a></div><br /><br /><br /><br /><br /><br />','The Battle','','publish','open','open','','the-battle','','','2014-08-09 21:22:19','2014-08-09 21:22:19','',0,'http://www.monicarenata.com/?p=321',0,'post','',1),(322,1,'2014-08-09 21:22:19','0000-00-00 00:00:00','I remember the days when some were glad to be single. It was like being single was a life that many seen depicted in the movies. Your young, hot, and everyone wants you. You go to the club and get drinks and then it is followed by wild random sex.','Why are we afraid to be alone?','','draft','open','open','','','','','2014-08-09 21:22:19','2014-08-09 21:22:19','',0,'http://www.monicarenata.com/?p=322',0,'post','',0),(323,1,'2013-04-11 15:03:00','2013-04-11 15:03:00','<span style=\"font-family: Georgia, "Times New Roman", serif;\">Comfort me with the words</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">That are flowing from your lips</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">Tell me your deepest thoughts</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">And reveal to me your secrets</span><br /><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">If looks could kill</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">We would just die in each others arms</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">I can tell you love me so</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">And you have missed me for far too long</span><br /><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">Squeeze me in your deepest embrace</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">Whisper once more in my ear</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">I finally see what I have been missing</span><br /><span style=\"font-family: Georgia, "Times New Roman", serif;\">And I can\'t deny that this is real</span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"241\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA-300x181.jpg\" width=\"400\" /></a></div><span style=\"font-family: Georgia, "Times New Roman", serif;\"> </span>','You','','publish','open','open','','you','','','2014-08-09 21:22:19','2014-08-09 21:22:19','',0,'http://www.monicarenata.com/?p=323',0,'post','',2),(324,1,'2013-04-11 13:00:00','2013-04-11 13:00:00','Today I woke up, and I was grateful. I got out of my bed and then continued to get ready for my day. Of course, I felt like I need more sleep and I dreaded the fact that I had to go to work as I was staggering to the restroom to get ready. I looked at my tired eyes and just wished I could have had a little more sleep....but I have to go to work. As I prepared to leave my apartment, I ate a quick breakfast and then I hit the road to go to work. Doesn\'t it sound a lot like the morning of many people??..lol.<br /><br />I have noticed lately that many say they wish their lives were better. I won\'t lie, at times, I say this as well. But then I put things into perspective. I think about all of the things I should be happy for. I have a job, a roof over my head, and I have my life! Some people are struggling to find a job, some are homeless, and some did not wake up this morning. Be grateful!!!<br /><br />So today, I would like to challenge you to think of all the things you are grateful for. So I ask you this: <span style=\"color: #351c75;\"><span style=\"background-color: white;\"><u><span style=\"font-size: x-large;\">What are you thankful for? </span></u></span></span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"238\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_-300x179.jpg\" width=\"400\" /></a></div><br />','What are you Thankful for?','','publish','open','open','','what-are-you-thankful-for','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',0,'http://www.monicarenata.com/?p=324',0,'post','',1),(325,1,'2013-04-11 12:47:00','2013-04-11 12:47:00','<i><span style=\"color: #741b47;\"><span style=\"font-family: "Trebuchet MS", sans-serif;\">A smile... A smile is a universal sign of happiness. It implies that everything is going right and life is a breeze. But sometimes a smile can hide the true feelings of a person.... -Monica R. Williams </span></span></i><br /><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">A simple smirk</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">It comes across your face</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And then I hear a giggle</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You are amused by what you see</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Who knew happiness could come from so little</span><br /><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Your lips open up </span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And revel those teeth</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">and your eyes grow larger</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You are entertained by my words</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You wish this day would never be over</span><br /><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">The world is a beautiful place</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You have to open your eyes to see</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">There is no need for you to pout</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You can be all that you can be!</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Take the time to analyze yourself</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Come up with some goals</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You have so much life in you right now</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Don\'t regret wasting it when you get old</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Smile and enjoy your life</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Don\'t let rainy days get you down</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Just try to be like the little seed</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">That attempts to grow from the ground</span><br /><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Sometimes reaching your sunniest days</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Takes a lot of work</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You have to sometimes start at the darkest place</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And continually work your way up</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And sometimes those above you</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Won\'t shed a tear at all</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">They will see you struggle</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And then your tear drops will fall</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">but those tears will make you stronger</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And then you will continue to grow</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And you have to remember to keep pushing</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Cause you still have a way to go</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Even in the good times</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">You can\'t lose sight of where you want to be</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">Keep pushing for the sunshine</span><br /><span style=\"font-family: "Trebuchet MS", sans-serif;\">And eventually you will be as tall as a tree </span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"400\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n-264x300.jpg\" width=\"352\" /></a></div><br />','The Seed','','publish','open','open','','the-seed','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',0,'http://www.monicarenata.com/?p=325',0,'post','',1),(326,1,'2013-04-10 09:54:00','2013-04-10 09:54:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\"><i><span style=\"font-family: "Courier New",Courier,monospace;\">This is a realization I came to long ago. I truly believe others need to realize this as well. -Monica</span></i> </span></b></div><div><br /></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">So, I have come to a realization</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">Money cannot grant anyone true happiness</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">True happiness is only obtained when one realizes that the reflection in the mirror is to be loved</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">Once you can love that reflection, then you are able to love others</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">For quite some time I despised the reflection in the mirror</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">The shape of her nose, the color of her skin, she seemed to have so many imperfections</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">I really hated her, but now I realize that in doing so I only hated myself</span></b></div><div><br /></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">My reflection makes me happy</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">And although it may sound conceited</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">It is truly not indeed</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">My reflection not only shows the remnants of physical beauty</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">But inside lies a person who has purpose in this world</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">A person who will change the world</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">A person who has the ability to evoke a positive change</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">I see me</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">I love me</span></b></div><div><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Monotype Corsiva"; font-size: 18pt; line-height: 115%;\">And no one can ever change that again</span></b></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg\" height=\"256\" width=\"320\" /></a></div><div><br /></div>','The Realization','','publish','open','open','','the-realization','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',0,'http://www.monicarenata.com/?p=326',0,'post','',1),(327,1,'2013-04-08 19:43:00','2013-04-08 19:43:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\"><br /></span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">If love was meant for me</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">I wouldn’t be sitting here alone</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">I would have someone to cuddle up to</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">Or talk to on the phone</span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">If love was meant for me</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">I would have someone who actually cares</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">Shows he loves me everyday</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">Not just pass me like he doesn’t care</span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">If love was meant for me</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">I would be able to feel it in my heart</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">It would overwhelm my whole being from to the start</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">If I love was meant for me</span></div><div align=\"center\" style=\"text-align: center;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14.0pt;\">If love was meant for me</span></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg\" height=\"266\" width=\"400\" /></a></div><div align=\"center\" style=\"text-align: center;\"><br /></div>','If Love Was Meant For Me','','publish','open','open','','if-love-was-meant-for-me','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',0,'http://www.monicarenata.com/?p=327',0,'post','',1),(328,1,'2013-04-07 15:10:00','2013-04-07 15:10:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Give me a drink dear friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Let me drink my tears away</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I can’t stand my life today</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I can’t stand how people hate</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Hand me a drink dear friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Your cash is flowing</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And your pockets are deep</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You can always buy your bestest friend the bar’s finest drink</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I demand a drink dear friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You have the money</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Get it now!</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Damn, I hate being that friend, and I will stop now</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You don’t need a drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You want a drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And I am trying to help you</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Do you know what happened last time</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">When you consumed that substance and nightmares came true </span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Do you remember how you woke up</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Do you remember how you felt</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I will no longer assists you in your ventures, friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You really need some help</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Every weekend it is the same thing for you</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You need a drink and more</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">It always starts off as one drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Then you consume more and more</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">So you want a drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Well hell no this time</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">But I will stay by your side</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Because I know when the night is over</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You will have the courage to drive</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">But remember that last time you wanted a drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And when I decided to be your friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I know you don’t</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">But I will always remember</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">The night you killed our friend</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I know you noticed that she was gone</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">But you didn’t seem to care</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You decided to drive that night</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And you knew you could call me</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Cause I am always here</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Why, why, why play games</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Play games with others lives</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Your killing yourself and others</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And then you turn your eyes</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">So why don’t you give me a drink dear friend</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Let me wash my tears away</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Because it tears me up inside to know that things would be different</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">If I would have been driving that day</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">You say you drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">And drink your worries away</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">and I always sit there silently and refuse to drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I hold back because I know you</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I don\'t want you to die</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">So I come and sit by your side</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">So I can take your wheel and drive</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">But it seems that you don\'t get it</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">I don\'t think you ever will</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">and I will never understand how you decide to drink</span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\">Then get behind the wheel</span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg\" height=\"400\" width=\"400\" /></a></div><div style=\"line-height: normal;\"><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><span style=\"font-size: 14pt;\"> </span></span></div>','The Drink','','publish','open','open','','the-drink','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',0,'http://www.monicarenata.com/?p=328',0,'post','',1),(329,1,'2013-04-07 14:51:00','2013-04-07 14:51:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--> <div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I can do this!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I can do this!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">All I have to do is try!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">You could look into this little girls</span><span style=\"font-family: "Times New Roman","serif"; font-size: 14.0pt;\">’</span><span style=\"font-family: Andy; font-size: 14.0pt;\"> eyes</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And tell she wanted a prize</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Can you see this?</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I can do this!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">All I have to do is try!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She was really passionate about her work</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And no one could deny</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Give me the chance!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And I will prove that I can!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Just give me one chance please!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Yet every time she begged for it</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She would never get the chance</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Please Please Please!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Let me try!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Just Give me one chance!</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She always seemed to be adamant about her views</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She only wanted a chance</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Give me a chance</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">That is all I wanted</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I wanted someone to see</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">That if given the opportunity</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I could be all that I could be</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Everything I have ever earned</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I had to work two times five times</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Because even the ones who believed in me</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Always had to deny</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Deny my willpower</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Deny my energy</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">They said I was wasting my time</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">They questioned why I was trying to be</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Someone who I was not</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">But the funny thing is</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">If I was given the chance</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I could work towards a better me</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And then I could prove to them</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I could be who I wanted to be</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I could have developed as a person early on</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And not put down on the spot</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I would have been better at speaking</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I would have had experience doing what I love</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I would have experienced a lot</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Instead they didn</span><span style=\"font-family: "Times New Roman","serif"; font-size: 14.0pt;\">’</span><span style=\"font-family: Andy; font-size: 14.0pt;\">t believe in me</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And I moving on</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I can</span><span style=\"font-family: "Times New Roman","serif"; font-size: 14.0pt;\">’</span><span style=\"font-family: Andy; font-size: 14.0pt;\">t fault them for what they have done</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Because now I am strong</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I have grown up to realize</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">That I could be anyone I want to be</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And if I am never given the opportunity</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I can open the door myself for me</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I will find my true calling</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">I will rise over the word NO</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Because I know that I can prosper</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">And I can do things on my own</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">That little girl who believed</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Still resides in me</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">But now instead of believing</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She can now fully see</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She opened up her eyes</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">She helps all in need</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">Because she believes that one day</span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Andy; font-size: 14.0pt;\">There will be people who help those who too believe</span></div><br /><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><br /><br /><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg\" height=\"300\" width=\"400\" /></a></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><br /><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"text-align: center;\"><br /></div><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]-->','The Little Girl Who Believed','','publish','open','open','','the-little-girl-who-believed','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',0,'http://www.monicarenata.com/?p=329',0,'post','',1),(330,1,'2013-04-07 14:25:00','2013-04-07 14:25:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">It’s when my heart starts to beat fast</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">And when eternity lasts forever</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">When I realize my true love for you</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">And how I hide it so clever</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">From the top of a mountain </span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">I’ll confess my feelings</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">Because only I can hear</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">At the bottom of the sea</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">I’ll write your name in sand</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">Because only I can see</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">It’s when my heart starts to beat fast</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">And when time moves on so slow</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">That I think to myself, just maybe</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">I really don’t like you so</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">Was it your smile that caught my eye?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">Or the quality of your heart?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"color: #444444;\"><span style=\"font-family: "Lucida Handwriting"; font-size: 14pt;\">Or maybe it was I, who fooled myself from the start</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg\" height=\"240\" width=\"320\" /></a></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div>','These Feelings','','publish','open','open','','these-feelings','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',0,'http://www.monicarenata.com/?p=330',0,'post','',1),(331,1,'2013-04-07 14:14:00','2013-04-07 14:14:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Are you sure about what you say to me?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Did you think about it before it came from your mouth?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Are you sure you know what you’re going to do</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">When you are the only man out</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Are you sure that you were the best thing</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">That you ever thought you could be</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Are you sure there was even a future</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">For the man you are and who you hope to be</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Be strong, have pride, don’t downgrade yourself</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">For a few smiles and giggles your way</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Don’t belittle yourself by your actions</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Because a few years from now it won’t be the same</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Are you sure that you are even sure at times</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Do you understand what you’re doing with your life?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Do you understand the consequences of your actions?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Can you understand dark from light?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">But all I am asking is that are you sure</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><span style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: 14pt;\">Is this what you want for your life?</span></span></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg\" height=\"220\" width=\"320\" /></a></div><div align=\"center\" style=\"line-height: normal; text-align: center;\"><br /></div>','Are You Sure?','','publish','open','open','','are-you-sure','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',0,'http://www.monicarenata.com/?p=331',0,'post','',1),(332,1,'2013-04-07 13:48:00','2013-04-07 13:48:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Two days ago while I was downtown</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Just watching the flashing lights</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">I decided to start building a wall</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">That no one could get by</span></span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">I envisioned where it would begin</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">And also where it would end</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">And when I got home that night </span></span></span></div><div style=\"line-height: 200%;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt; line-height: 200%;\">My work started to begin</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">I started at the most vulnerable part</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\"><span style=\"mso-spacerun: yes;\"> </span>then built more and more</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Soon I noticed that the wall was finished</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">And I forgot the door</span></span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">I forgot to build the door to this fortress</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Now no one can come in</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">No matter how hard they try</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Or how sweet they are to me</span></span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">No one can ever reach my heart</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">Because everyone is shut out but me</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">But at least I won’t be hurt anymore</span></span></span></div><div style=\"line-height: normal;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"color: #444444;\"><span style=\"font-size: 14pt;\">But I will also never be happy</span></span></span></div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg\" height=\"400\" width=\"400\" /></a></div><div style=\"line-height: normal;\"><br /></div>','The Wall','','publish','open','open','','the-wall','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',0,'http://www.monicarenata.com/?p=332',0,'post','',1),(333,1,'2013-04-06 13:02:00','2013-04-06 13:02:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\">A shiny thing that is in my chest<br />beating with passion and desire<br />If it\'s sweet nectar was taken away<br />It would mean death within an hour<br /><br />It is all I have<br />And all that I possess<br />That contains my deepest truths<br /><br />It contains all of my wishes and dreams<br />the ones I shed tears for to come true<br /><br />It bled so many times<br />Just wishing for YOU to hear its beat<br />The bloody tears trickled down<br />Yet not even me could see<br /><br />It isn\'t much<br />It is not that special<br />but it is all I have<br /><br />And I really do not appreciate<br />when someone wants to break it in half<br /><br />Would I take a dollar from your wallet<br />If the dollar was all you owned<br />Would I take your home away from you <br />if its the only place you call home<br /><br />The answer to these two questions<br />Is quite frankly NO INDEED<br /><br />So tell me, why would you take my heart from me<br />When it is something that I might need..........<br /><br />It\'s not much, but it\'s all I have<br />Please do not forget<br />because a person is not ANYONE without their heart intact</span><br /><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br /></span><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n-254x300.jpg\" height=\"400\" width=\"338\" /></a></div><span style=\"font-family: "Calibri","sans-serif"; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-ascii-theme-font: minor-latin; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin;\"><br /></span>','It\'s Not Much, but its all I have','','publish','open','open','','its-not-much-but-its-all-i-have','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',0,'http://www.monicarenata.com/?p=333',0,'post','',1),(334,1,'2013-04-05 12:33:00','2013-04-05 12:33:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><span style=\"font-family: "Alfredo\0027s Dance"; font-size: 14.0pt; line-height: 115%;\">If I didn\'t have to wake up<br />Or dream another day<br />I could be at peace with myself<br />And all the sorrows would wash away<br /><br />I could live each day forever<br />And never have to bat my eyes<br />Sleepiness will never come<br />And I wouldn\'t have to ask why<br />Cause I could live in that moment forever<br />And not wake up and realize it\'s a lie<br /><br />If I didn\'t have to wake up<br />Or dream another day<br />My heart would still be intact<br />And wouldn\'t break anymore from pain<br /><br />I would never have to go to sleep lonely<br />And wake up the next day<br />Wondering is this is the life laid out for me<br />And if it is ever going to change<br /><br />If I didn\'t have to wake up<br />Your arms would still be holding me tight<br />Making me believe that I am your EVERYTHING<br />Even though I know that is a lie<br />I would rather lay there happy<br />Then wake up disappointed the next day......<br /><br />If I didn\'t have to wake up<br />Or dream another day<br />Then my heart would be at peace<br />Living in the moment of that day<br />How I had thoughts that you would be here forever<br />And how you would always be by my side<br />But that moment remains a dream that plays inside my mind......<br /><br />Over,<br />and Over,<br />and Over Again each night<br /><br />So if I didn\'t have to wake<br />Or dream another day<br />I wouldn\'t wake up to disappointments<br />of the memories you and I have made<br />I would stay in your arms forever<br />Til light turns dark then light<br />And I will know the idea of you and I together always<br />Just might be right.........</span></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg\" height=\"371\" width=\"400\" /></a></div><div style=\"clear: both; text-align: center;\"></div><div><br /></div><span style=\"font-family: "Alfredo\0027s Dance"; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: "Times New Roman"; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-fareast-theme-font: minor-latin;\"><br clear=\"all\" style=\"mso-special-character: line-break; page-break-before: always;\" /></span> <br /><div><br /></div>','The Reality of a Loss','','publish','open','open','','the-reality-of-a-loss','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',0,'http://www.monicarenata.com/?p=334',0,'post','',1),(335,1,'2013-04-04 12:48:00','2013-04-04 12:48:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><span style=\"font-family: "Maiandra GD","sans-serif";\">If a fish came out of water</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">To proclaim its love to you</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Would you even give it a second look?</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Would you believe its love was true?</span><br /><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Would you appreciate this gesture?</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Would you at least show a little smile?</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Or would you huff and puff and get upset</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Because this fish didn’t bring you a crown</span><br /><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I love you so much </span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">And I never want to let you go</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">No matter how much you may put me through pain</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Whether I go out of my way</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Or above mountain tops</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">It seems like you will never change</span><br /><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">But maybe one day you will take a deep look</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">And see the person that I am to you</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Caring, Respectful, and Hardworking</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">But yet consumed with so much pain caused by my love for you</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">It hurts to love at times</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">But I continue my pursuit</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">My heart aches for the one I love</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">And the one I love is you</span><br /><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Please look a little deeper </span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">And see what I do</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">Because even though sometimes I can’t say it</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I am really in love with you</span><br /><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I want all your dreams </span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">And all of your wishes</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">To come true for you</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">But I want you to also remember these three words</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I love you </span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I love you</span><br /><span style=\"font-family: "Maiandra GD","sans-serif";\">I love you!</span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg\" height=\"248\" width=\"320\" /></a></div><br />','My Heart In Words','','publish','open','open','','my-heart-in-words','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',0,'http://www.monicarenata.com/?p=335',0,'post','',1),(336,1,'2013-04-03 15:38:00','2013-04-03 15:38:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><span style=\"font-family: "Buxton Sketch";\">Why are we so afraid to fall? </span></div><div><span style=\"font-family: "Buxton Sketch";\">Is it because we fear that we may fall so hard that we won’t be able to get back up? </span></div><div><span style=\"font-family: "Buxton Sketch";\">Are mistakes really such a horrible thing to make? </span></div><div><span style=\"font-family: "Buxton Sketch";\">I mean, we can learn from them…… right? </span></div><div><br /></div><div><span style=\"font-family: "Buxton Sketch";\">As a child we scraped our knees yet we were not ashamed. We<span style=\"mso-spacerun: yes;\"> </span>just got back up and carried on with our task. </span></div><div><br /></div><div><span style=\"font-family: "Buxton Sketch";\">As I think about it now, I wish I had as much courage as I did when I was younger. The fear of failure was not there at all. Instead, I always kept the mindset of “At least I tried”. </span></div><div><br /></div><div><span style=\"font-family: "Buxton Sketch";\">Just think about the things we could accomplish if we still had that mindset. </span></div><div><span style=\"font-family: "Buxton Sketch";\">If we did not let fear hold us back</span></div><div><span style=\"font-family: "Buxton Sketch";\">If we at least tried to go after what we truly wanted…..</span></div><div><br /></div><div><span style=\"font-family: "Buxton Sketch";\">Just a little food for thought</span></div><div><br /></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg\" height=\"400\" width=\"640\" /></a></div><div><br /></div>','Why are we afraid to fall??','','publish','open','open','','why-are-we-afraid-to-fall','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',0,'http://www.monicarenata.com/?p=336',0,'post','',1),(337,1,'2013-04-03 12:56:00','2013-04-03 12:56:00','<span style=\"font-family: "Trebuchet MS",sans-serif;\">Beauty is skin deep </span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">No matter what others say</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">The glistening of your heart</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Lets your beauty radiate</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\"><br /></span><span style=\"font-family: "Trebuchet MS",sans-serif;\">The kindness of your actions</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">The thoughtfulness of your heart</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">You are a beauty!!!</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Don\'t let others tear you apart</span><br /><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">It isn\'t your body that makes you</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Nor is it your hair or your eyes</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">It\'s something that EVERYONE can see</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Even the blind</span><br /><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Your beauty is TRUE BEAUTY</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Don\'t be deceived by TV and Magazines</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Just look in the mirror</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">And close your eyes</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">And you will see what I see</span><br /><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Beauty comes from within</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">And you have to recognize this yourself</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Don\'t let the world tear you apart</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">And say beauty is dictated by your skin</span><br /><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Just remember</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">YOU ARE BEAUTIFUL!!</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Everyone is in their own way</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">But your beauty is unparallelled</span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">Because it is unique to you </span><br /><span style=\"font-family: "Trebuchet MS",sans-serif;\">And ready for the world to see</span><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg\" height=\"640\" width=\"640\" /></a></div> <br /><br />','True Beauty','','publish','open','open','','true-beauty','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',0,'http://www.monicarenata.com/?p=337',0,'post','',1),(338,1,'2013-04-03 12:39:00','2013-04-03 12:39:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><br /><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">No matter how you say it</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">It all means the same thing</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You judge me by not what you know</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But by what others say</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I really have no chance</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">It’s like I’m climbing a brick wall that touches the sky</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">No matter what I can’t do it</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I won’t get to the other side</span></b></span></div><div><br /></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I can show emotion</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But your mind is made up as I speak</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">So I realize that what I say</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Really doesn’t mean anything to you or me</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Yes it is my feelings</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But in the end they do not matter</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I’m climbing up a wall</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Yet my effort doesn’t even matter</span></b></span></div><div><br /></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">My arms are so tired</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">My legs want to give out</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But I want to reach the other side</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But you have shut me out</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because of opinions formulated</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">By those who don’t know me at all</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">I am slowly falling apart again</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But where is my hero???</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Must I drown from these tears in my eyes</span></b></span></div><div><br /></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">My chest is so tight</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">My heart is beating faster</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">My breathes are really short</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">And I can’t find any laughter</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">But you won’t see any of this</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">Because your mind is all made up</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You not going by what you know</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You going by who said what</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">So that means you didn\'t give me a chance</span></b></span></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\">You made your mind up at the start</span></b></span></div><div><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg\" height=\"400\" width=\"342\" /></a></div><div><span style=\"color: #741b47;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Comic Sans MS"; font-size: 14pt; line-height: 115%;\"> </span></b></span></div>','Gossip','','publish','open','open','','gossip','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',0,'http://www.monicarenata.com/?p=338',0,'post','',1),(339,1,'2013-04-02 17:55:00','2013-04-02 17:55:00','The innocence of a child<br />Oh how we use to think<br />We we were but 3 years old<br />And questioned everything<br /><br />When love was overflowing<br />And no one knew the definition of hate<br />The innocence of a child<br />Is such a wonderful thing<br /><br />Why do we begin to forget Lessons<br />As we continue to get old<br />The kindness that was once in our hearts<br />Is slowly replaced with ice so cold<br /><br />Soon we forget about \"THE GOLDEN RULE\"<br />And treat people any way<br />We slowly forget the true concept of love<br />And we learn how to hate<br /><br />The innocence of a child<br />Oh how we use to think<br />If only we kept that innocence<br />The world would be a better place<br /><br />Everyone would attempt to get along<br />Everyone would care much more<br />But it seems as we get older<br />We learn to love less and hate more....<br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"395\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original-300x297.jpg\" width=\"400\" /></a></div>','Kindness','','publish','open','open','','kindness','','','2014-08-09 21:22:24','2014-08-09 21:22:24','',0,'http://www.monicarenata.com/?p=339',0,'post','',1),(340,1,'2013-04-02 12:25:00','2013-04-02 12:25:00','<div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><i>Sometimes the world can seem so tough, and it seems as though you are losing your way. I didn\'t write this but reading this always helps me out on my toughest days. Maybe it Could help you out too. </i></div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><br /></div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><i>-Monica </i></div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"> </div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">We’ve all struggled at times – with loss and grief, illness, financial difficulties, broken relationships and so much more. Often those moments of struggle turn slowly and painfully into days and weeks and months and years. We get tired. We get depressed. We want the pain to end.</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">We forget the promises of God. We cry out to Him and ask him how much He expects us to take. Or we just walk away or run away from Him, angry or hurt thinking that He has abandoned us. I know. I’ve done it too.</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">I was talking with someone recently who felt abandoned by God because of life circumstances. And who was feeling guilty for feeling that way. What could I say to encourage and support that individual trying to hold on to a wavering faith?</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">I thought of the words of Jesus on the cross, “My God, my God, why have you forsaken Me?” (Matthew 27:46, King James Version) “My God, my God, why have you abandoned me?” (New Living Translation)</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">Jesus crying out to His Father? Why? He felt abandoned too, just like me and you. He felt like God had turned His back on His Son. So where was His Father? Why wasn’t He there?</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">But He was. He was in the darkness beside His Son Jesus. Aching to take Him off the cross. Aching to take away the pain. Aching to take Him down from the cross. Aching to let Him feel hope again. But God the Father couldn’t do it. If He had done those things and given Jesus hope, then there’d be no hope for us.</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">And then I thought about the walk to the cross. God was with His Son Jesus when He was trying to drag that heavy cross up the hill to Gethsemane. When Jesus collapsed on the way, His cross was given to someone else to carry. Jesus, beaten and tortured, could hardly lift His head, let alone His aching body to continue that death walk.</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">How did He get to the top of the hill? He didn’t call upon superhuman strength, which He could have done. Instead, He called upon His Father and His Father carried Him. And, I believe too that when Jesus called out and asked God why He had abandoned Him that He heard a quiet voice in the darkness surrounding the cross, “Remember, I will never leave You or forsake You. I haven’t abandoned You. I am carrying you, My Son.”</div><div style=\"background-color: white; color: #351c75; font-family: "Trebuchet MS",sans-serif; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.8889px; margin: 10px 0px 0px; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;\">We are all God’s sons and daughters. We may not believe it. We may feel like we don’t deserve to be sons and daughters. We may not want to be sons and daughters. But we are. We may choose to leave Him. But no matter what we do He will never leave us or abandon us.</div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><br /></div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"432\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone-300x202.jpg\" width=\"640\" /></a></div><div style=\"clear: both; text-align: center;\"><a href=\"http://1.bp.blogspot.com/-YJVIWpOxN5Q/UVrMTy2ihaI/AAAAAAAAAEI/5xjSI2ztdR4/s1600/you_are_never_alone.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><br /></a></div><div style=\"-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #333333; font-family: \'lucida grande\', tahoma, verdana, arial, sans-serif; font-size: 13.333333969116211px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18.88888931274414px; margin: 10px 0px 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;\"><br /></div>','Feeling Alone??','','publish','open','open','','feeling-alone','','','2014-08-09 21:22:24','2014-08-09 21:22:24','',0,'http://www.monicarenata.com/?p=340',0,'post','',2),(341,1,'2013-04-01 18:45:00','2013-04-01 18:45:00','<div style=\"color: #0b5394;\"><!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> </div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">What more can I say</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">What more can I do</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">To get the feelings I have for you to you</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Find me in a sea</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That is the deepest shade of blue</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">For the water that surrounds me</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Is because of unhappiness from you</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Find me in this sea</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That I tried to hold in for so long</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And suddenly one teardrop fell </span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And it was followed by thousands more</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I sit surrounded by all of this emotion</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">The emotion that I held deep inside</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I always hid it </span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Because I never wanted you to see me cry</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I didn’t want you to know the true unhappiness</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That you brought to me each day</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Instead I pretended like everything was okay</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">So you would feel my hurt inside.. so you would be okay</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I smile yet I am dying inside</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I smile yet you can’t see</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">All the sadness in my eyes </span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">That are caused by the decisions you make</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Your actions which you take part in</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Thinking I won’t know</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But the truth always comes to the light</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And that is something I think you don’t know</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">My smile holds me together</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Even when I am falling apart</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Because what makes me happy is to see you happy</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">But now that doesn’t seem to work</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Sadness so much sadness</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Has been around me all this time</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">Yet when I let go of you</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">I see sadness in your eyes</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">A never ending circle</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And I cannot escape</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">As I sit in the middle of the sea</span></b></div><div style=\"color: #0b5394;\"><b style=\"mso-bidi-font-weight: normal;\"><span style=\"font-family: "Maiandra GD","sans-serif"; font-size: 14pt; line-height: 115%;\">And comfort seems so far away</span></b></div><div style=\"color: #0b5394;\"><br /></div><div style=\"color: #0b5394;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"200\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n-300x187.jpg\" width=\"320\" /></a></div><div style=\"color: #0b5394;\"><br /></div>','The Endless Circle','','publish','open','open','','the-endless-circle','','','2014-08-09 21:22:25','2014-08-09 21:22:25','',0,'http://www.monicarenata.com/?p=341',0,'post','',1),(342,1,'2013-04-01 18:32:00','2013-04-01 18:32:00','<div style=\"color: #666666;\"><!-- [if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><!-- [if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!-- [if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!-- [if gte mso 10]><![endif]--></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\">\r\n\r\nDraft me a portrait\r\n\r\nThat I could only dream\r\n\r\nCapture my imagination\r\n\r\nMake my thoughts remain\r\n\r\nA picture that imitates life and death\r\n\r\nThat goes against my morals\r\n\r\nAnd show me what I lack\r\n\r\n \r\n\r\nDraft me a portrait\r\n\r\nThat will make me think\r\n\r\nReminisce about the past\r\n\r\nAnd make me realize the future exists\r\n\r\nA picture that shows the true meaning of life\r\n\r\nThat makes me realize my potential\r\n\r\nAnd separate dark from light\r\n\r\n \r\n\r\nDraft me a portrait\r\n\r\nThat I can see so deep\r\n\r\nCaptures my soul\r\n\r\nMakes me want to speak\r\n\r\nA picture that shows the beauty beneath\r\n\r\nThat makes me happy\r\n\r\nAnd defines the real me\r\n\r\n</div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n-300x170.jpg\" alt=\"\" width=\"320\" height=\"181\" border=\"0\" /></a></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>','Draft me a Portrait','','publish','open','open','','draft-me-a-portrait','','','2015-02-13 10:30:02','2015-02-13 16:30:02','',0,'http://www.monicarenata.com/?p=342',0,'post','',1),(930,1,'2015-02-13 10:29:21','2015-02-13 16:29:21','<div style=\"color: #666666;\"><!-- [if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><!-- [if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!-- [if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!-- [if gte mso 10]><![endif]--></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\">\r\n\r\nDraft me a portrait\r\n\r\nThat I could only dream\r\n\r\nCapture my imagination\r\n\r\nMake my thoughts remain\r\n\r\nA picture that imitates life and death\r\n\r\nThat goes against my morals\r\n\r\nAnd show me what I lack\r\n\r\n \r\n\r\nDraft me a portrait\r\n\r\nThat will make me think\r\n\r\nReminisce about the past\r\n\r\nAnd make me realize the future exists\r\n\r\nA picture that shows the true meaning of life\r\n\r\nThat makes me realize my potential\r\n\r\nAnd separate dark from light\r\n\r\n \r\n\r\nDraft me a portrait\r\n\r\nThat I can see so deep\r\n\r\nCaptures my soul\r\n\r\nMakes me want to speak\r\n\r\nA picture that shows the beauty beneath\r\n\r\nThat makes me happy\r\n\r\nAnd defines the real me\r\n\r\n</div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n-300x170.jpg\" alt=\"\" width=\"320\" height=\"181\" border=\"0\" /></a></div>\r\n<div style=\"color: #666666; line-height: normal; text-align: center;\" align=\"center\"></div>','Draft me a Portrait','','inherit','open','open','','342-revision-v1','','','2015-02-13 10:29:21','2015-02-13 16:29:21','',342,'http://www.monicarenata.com/342-revision-v1/',0,'revision','',0),(343,1,'2013-04-01 18:30:00','2013-04-01 18:30:00','<!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Version>14.00</o:Version> </o:DocumentProperties> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInval>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles></xml><![endif]--><!--[if gte mso 10]><![endif]--> <br /><div style=\"line-height: normal;\">It rained Tuesday <br />but no one noticed<br />only she could see<br /><br />It was pouring outside <br />yet no one was drenched<br />no one but she<br /><br />When it rains, it pours<br />and clouds turn dark<br />as dark as the snow is white<br /><br />her whirlwind of emotions circle endlessly<br />until it finally travels out of sight<br /><br />The sun seems to shine briefly<br />yet it quickly goes away<br /><br />Because the sunshine represents happiness<br />And happy she really ain\'t<br /><br />Just make her smile a little<br />and the sun will come out and play<br />However make her unhappy<br />and it will storm all day<br /><br />Give her a reason to smile<br />Give her a reason to sing<br /><br />Because she hates this never ending storm<br />And she wishes she could see<br /><br />See the better part of the world<br />See the part You claim to see<br /><br />But all she sees is the person<br />everyone wants her to be<br /><br />She is such a FAKE <br />she is such a LIAR<br /><br />This is plain to see<br />But can anyone see her invisible cries<br />which seem to overwhelm she</div><div style=\"line-height: normal;\"><br /></div><div style=\"line-height: normal;\"><br /></div><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"266\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove-300x250.jpg\" width=\"320\" /></a></div><div style=\"line-height: normal;\"><br /></div>','The Rain','','publish','open','open','','the-rain','','','2014-08-09 21:22:26','2014-08-09 21:22:26','',0,'http://www.monicarenata.com/?p=343',0,'post','',1),(344,1,'2013-04-01 15:58:00','2013-04-01 15:58:00','I remember all the people\r\nWho clowned me for Little Things\r\nThey never wanted me to Enjoy My Life\r\nThey never wanted me to see\r\nSee me reach my Full Potential\r\nSee me Sore into the Realms of GREAT!!!\r\nThey put me down for no reason\r\nAnd I always wondered what was wrong with me..........\r\n\r\nNow I don\'t remember all the People\r\nBut most remember me\r\nAnd I must say that I am grateful\r\nFor the Way they treated me\r\nAlthough they created obstacles\r\nThat I had to overcome\r\nIt made me who I am today\r\nAnd Now I am the Happy One!\r\n\r\nSo next time someone tears you down\r\nRemember to be Strong\r\nBecause pain is only temporary\r\nWhich means it won\'t last long\r\nAnd as you are chasing your dreams\r\nSomeone will always try to tear you down!!!\r\nBut just keep on moving forward\r\nBecause there is always light after even the darkest clouds!\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500-300x228.jpg\" alt=\"\" width=\"320\" height=\"243\" border=\"0\" /></a></div>\r\n ','It\'s Only Temporary','','publish','open','open','','its-only-temporary','','','2015-01-25 20:46:00','2015-01-26 02:46:00','',0,'http://www.monicarenata.com/?p=344',0,'post','',1),(856,1,'2015-01-25 20:46:00','2015-01-26 02:46:00','I remember all the people\r\nWho clowned me for Little Things\r\nThey never wanted me to Enjoy My Life\r\nThey never wanted me to see\r\nSee me reach my Full Potential\r\nSee me Sore into the Realms of GREAT!!!\r\nThey put me down for no reason\r\nAnd I always wondered what was wrong with me..........\r\n\r\nNow I don\'t remember all the People\r\nBut most remember me\r\nAnd I must say that I am grateful\r\nFor the Way they treated me\r\nAlthough they created obstacles\r\nThat I had to overcome\r\nIt made me who I am today\r\nAnd Now I am the Happy One!\r\n\r\nSo next time someone tears you down\r\nRemember to be Strong\r\nBecause pain is only temporary\r\nWhich means it won\'t last long\r\nAnd as you are chasing your dreams\r\nSomeone will always try to tear you down!!!\r\nBut just keep on moving forward\r\nBecause there is always light after even the darkest clouds!\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500-300x228.jpg\" alt=\"\" width=\"320\" height=\"243\" border=\"0\" /></a></div>\r\n ','It\'s Only Temporary','','inherit','open','open','','344-revision-v1','','','2015-01-25 20:46:00','2015-01-26 02:46:00','',344,'http://www.monicarenata.com/344-revision-v1/',0,'revision','',0),(345,1,'2013-04-01 15:30:00','2013-04-01 15:30:00','For the Love I have<br />For you in my Heart<br />Glistens Like the Dew<br />That Lands on the Leaf<br />After the Morning Fog<br />Oh how I think of You<br /><br /><br />The Life that I Live<br />Is Dictated By your Past<br />For how You Treated me has Hurt<br />And I can\'t get Over The ways you Scared Me<br />For it Has Left This Mark<br /><br />I\'m afraid to Love<br />I\'m afraid to Hurt<br />And it\'s all because of You<br />So I built up a wall<br />That will Never crumble or Fall<br />And not Even I can Get Through<br /><br />The Love I have<br />For You in My Heart<br />I can feel that it is still there<br />But despite the constant \"I\'m Sorry\" you give me<br />I convince Myself that I Don\'t Care....<br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"249\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n-300x233.jpg\" width=\"320\" /></a></div><br />','No Love Lost.....No Love Found','','publish','open','open','','no-love-lost-no-love-found','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',0,'http://www.monicarenata.com/?p=345',0,'post','',1),(346,1,'2013-04-01 15:14:00','2013-04-01 15:14:00','Society dictates what they want to see<br />However we have the control to be who WE WANT to be<br />You can rise up alone<br />Or hold someone\'s hand<br />But at the end of the day<br />You must understand<br /><br />People want to see you fail at times<br />And that is okay<br />Because with each fall comes strength<br />Which you will use someday<br /><br />Friends can be there one minute<br />Then gone the next<br />Just because someone is by your side now<br />Doesn\'t mean that will last<br /><br />Have faith in yourself<br />And chase your dreams<br />Cause you will always have YOURSELF<br />No matter how many obstacles you face<br />You can never abandon yourself<br /><br />There are many things in life<br />That you must understand<br />But I can\'t tell you about every one<br />Because sometimes you have to <u><i>experience </i></u>to understand<br />And by experiencing... half of your battle is already won. <br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"228\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n-300x213.jpg\" width=\"320\" /></a></div><br />','Who Are You To The World?','','publish','open','open','','who-are-you-to-the-world','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',0,'http://www.monicarenata.com/?p=346',0,'post','',1),(347,1,'2013-04-01 15:04:00','2013-04-01 15:04:00','<div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Thoughts......</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Sometimes you have to let things stop consuming you world.....</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">And just LIVE!!!!</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><br /></div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Of course others have it easy...</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Or so you think</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">At the end of the day</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">You just have to worry about yourself</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><br /></div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Not Mark, Sally, Sue, or James but YOU!!!!</div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\"><br /></div><div style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">Until you begin to put yourself first, you will always forget to make that special person happy. </div><span style=\"font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;\">YOURSELF!!!</span><br /><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"240\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768-300x225.jpg\" width=\"320\" /></a></div><br />','Just LIVE!!!','','publish','open','open','','just-live','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=347',0,'post','',1),(348,1,'2013-04-01 13:38:00','2013-04-01 13:38:00','<div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">The look </span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Of Love</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Is In </span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Your Eyes</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">But that Look</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Tells All</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">About how you feel</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Inside.............</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">You look at me </span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">And see something</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">That causes you to want for more</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">So you tell me that it is love</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Love at first sight is what you tell me</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">But it is Love for my body</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">And clearly not me</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">But you know the way to what you Love</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Is through my mind</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">So you tell me sweet things</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">And wine and Dine me...</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">The Look of Love</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Is in Your Eyes</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">As my Heart beats Loud</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">For you...</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">But do you care</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Or are you just</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Trying to Reach what you love</span></div><div style=\"font-family: Georgia,"Times New Roman",serif;\"><span style=\"font-size: small;\">Then bid me Adieu.....</span></div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"242\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n-300x227.jpg\" width=\"320\" /></a></div><br />','Is this Really Love?','','publish','open','open','','is-this-really-love','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=348',0,'post','',1),(349,1,'2013-04-01 13:17:00','2013-04-01 13:17:00','<div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\">Hello, </span></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\">My name is Monica and I am a 24 years old.... I know, I seem a little old right..lol. Who would have thought that at this age, I would be doing what I only dreamed of doing. Well I am close anyways..lol. At this age, I feel like I have accomplished a lot. I went to college and earned my degree. I even went back to obtain my MBA... and earned that as well by the age of 24. It seems like I am so young yet so old........ Do you ever feel this way? Do your accomplishments make you feel older than what you really are??</span></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\"><br /></span></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\">Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection recently and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt. But I guess we have to get over fears sooner or later, right? <u>Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive</u>.......Just a random thought..lol. </span></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><br /></div><div style=\"font-family: "Trebuchet MS",sans-serif;\"><span style=\"font-size: small;\">Well anyways, this is a reflection of my world! Welcome!!!</span></div><br /><br /><div style=\"clear: both; text-align: center;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"320\" src=\"http://www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2-300x300.jpg\" width=\"320\" /></a></div><br />','Hello','','publish','open','open','','hello','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',0,'http://www.monicarenata.com/?p=349',0,'post','',1),(555,1,'2014-08-09 21:22:25','2014-08-09 21:22:25','','421080_10151275110125175_123597668_n','','inherit','open','open','','421080_10151275110125175_123597668_n','','','2014-08-09 21:22:25','2014-08-09 21:22:25','',342,'http://www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg',0,'attachment','image/jpeg',0),(535,1,'2014-08-09 21:22:19','2014-08-09 21:22:19','','5952_487083678013555_248729212_n','','inherit','open','open','','5952_487083678013555_248729212_n','','','2014-08-09 21:22:19','2014-08-09 21:22:19','',321,'http://www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png',0,'attachment','image/png',0),(537,1,'2014-08-09 21:22:20','2014-08-09 21:22:20','','be_grateful_photo_-_Copy_1_','','inherit','open','open','','be_grateful_photo_-_copy_1_','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',324,'http://www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg',0,'attachment','image/jpeg',0),(538,1,'2014-08-09 21:22:20','2014-08-09 21:22:20','','602231_558494810842339_1711658822_n','','inherit','open','open','','602231_558494810842339_1711658822_n','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',325,'http://www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg',0,'attachment','image/jpeg',0),(539,1,'2014-08-09 21:22:20','2014-08-09 21:22:20','','428867_505088056192781_1051053758_n','','inherit','open','open','','428867_505088056192781_1051053758_n','','','2014-08-09 21:22:20','2014-08-09 21:22:20','',326,'http://www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg',0,'attachment','image/jpeg',0),(540,1,'2014-08-09 21:22:21','2014-08-09 21:22:21','','543065_392334884174531_1404445749_n','','inherit','open','open','','543065_392334884174531_1404445749_n','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',327,'http://www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg',0,'attachment','image/jpeg',0),(541,1,'2014-08-09 21:22:21','2014-08-09 21:22:21','','peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512','','inherit','open','open','','peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',328,'http://www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg',0,'attachment','image/jpeg',0),(542,1,'2014-08-09 21:22:21','2014-08-09 21:22:21','','Life','','inherit','open','open','','life','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',329,'http://www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg',0,'attachment','image/jpeg',0),(543,1,'2014-08-09 21:22:21','2014-08-09 21:22:21','','tumblr_lmlpfjgfsM1qiufayo1_500','','inherit','open','open','','tumblr_lmlpfjgfsm1qiufayo1_500','','','2014-08-09 21:22:21','2014-08-09 21:22:21','',330,'http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg',0,'attachment','image/jpeg',0),(544,1,'2014-08-09 21:22:22','2014-08-09 21:22:22','','Are-You-Sure-480x330','','inherit','open','open','','are-you-sure-480x330','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',331,'http://www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg',0,'attachment','image/jpeg',0),(545,1,'2014-08-09 21:22:22','2014-08-09 21:22:22','','WallAroundHeart','','inherit','open','open','','wallaroundheart','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',332,'http://www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg',0,'attachment','image/jpeg',0),(546,1,'2014-08-09 21:22:22','2014-08-09 21:22:22','','392901_564629153562238_1402092232_n','','inherit','open','open','','392901_564629153562238_1402092232_n','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',333,'http://www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg',0,'attachment','image/jpeg',0),(547,1,'2014-08-09 21:22:22','2014-08-09 21:22:22','','543331_410098002366361_1352242046_n_large','','inherit','open','open','','543331_410098002366361_1352242046_n_large','','','2014-08-09 21:22:22','2014-08-09 21:22:22','',334,'http://www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg',0,'attachment','image/jpeg',0),(548,1,'2014-08-09 21:22:23','2014-08-09 21:22:23','','484520_483796694965628_2032429780_n','','inherit','open','open','','484520_483796694965628_2032429780_n','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',335,'http://www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg',0,'attachment','image/jpeg',0),(549,1,'2014-08-09 21:22:23','2014-08-09 21:22:23','','Afraid-of-Falling.001-001','','inherit','open','open','','afraid-of-falling-001-001','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',336,'http://www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg',0,'attachment','image/jpeg',0),(550,1,'2014-08-09 21:22:23','2014-08-09 21:22:23','','True-Beauty','','inherit','open','open','','true-beauty-2','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',337,'http://www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg',5,'attachment','image/jpeg',0),(551,1,'2014-08-09 21:22:23','2014-08-09 21:22:23','','Gossip','','inherit','open','open','','gossip-2','','','2014-08-09 21:22:23','2014-08-09 21:22:23','',338,'http://www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg',0,'attachment','image/jpeg',0),(552,1,'2014-08-09 21:22:24','2014-08-09 21:22:24','','KO028-Art-of-Kindness-front_original','','inherit','open','open','','ko028-art-of-kindness-front_original','','','2014-08-09 21:22:24','2014-08-09 21:22:24','',339,'http://www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg',0,'attachment','image/jpeg',0),(553,1,'2014-08-09 21:22:24','2014-08-09 21:22:24','','you_are_never_alone','','inherit','open','open','','you_are_never_alone','','','2014-08-09 21:22:24','2014-08-09 21:22:24','',340,'http://www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg',0,'attachment','image/jpeg',0),(554,1,'2014-08-09 21:22:25','2014-08-09 21:22:25','','561037_10151144389162272_1077131149_n','','inherit','open','open','','561037_10151144389162272_1077131149_n','','','2014-08-09 21:22:25','2014-08-09 21:22:25','',341,'http://www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg',0,'attachment','image/jpeg',0),(556,1,'2014-08-09 21:22:25','2014-08-09 21:22:25','','Rain_Storm_by_horrormove','','inherit','open','open','','rain_storm_by_horrormove','','','2014-08-09 21:22:25','2014-08-09 21:22:25','',343,'http://www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg',0,'attachment','image/jpeg',0),(557,1,'2014-08-09 21:22:27','2014-08-09 21:22:27','','tumblr_lxvr63Li3b1qa9u6ko1_500','','inherit','open','open','','tumblr_lxvr63li3b1qa9u6ko1_500','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',344,'http://www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg',0,'attachment','image/jpeg',0),(558,1,'2014-08-09 21:22:27','2014-08-09 21:22:27','','60523_376512035770051_2081392546_n','','inherit','open','open','','60523_376512035770051_2081392546_n','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',345,'http://www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg',0,'attachment','image/jpeg',0),(559,1,'2014-08-09 21:22:27','2014-08-09 21:22:27','','72842_10151383688619366_997576769_n','','inherit','open','open','','72842_10151383688619366_997576769_n','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',346,'http://www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg',0,'attachment','image/jpeg',0),(560,1,'2014-08-09 21:22:27','2014-08-09 21:22:27','','ACQYR-Wallpaper-016_Nijmeh-1024x768','','inherit','open','open','','acqyr-wallpaper-016_nijmeh-1024x768','','','2014-08-09 21:22:27','2014-08-09 21:22:27','',347,'http://www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg',0,'attachment','image/jpeg',0),(561,1,'2014-08-09 21:22:28','2014-08-09 21:22:28','','394362_493303287348302_895782065_n','','inherit','open','open','','394362_493303287348302_895782065_n','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',348,'http://www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg',0,'attachment','image/jpeg',0),(562,1,'2014-08-09 21:22:28','2014-08-09 21:22:28','','wall-pops-life-is-beautiful-quote-2','','inherit','open','open','','wall-pops-life-is-beautiful-quote-2','','','2014-08-09 21:22:28','2014-08-09 21:22:28','',349,'http://www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg',3,'attachment','image/jpeg',0),(534,1,'2014-08-09 21:22:18','2014-08-09 21:22:18','','21024_496618720393384_1028522588_n','','inherit','open','open','','21024_496618720393384_1028522588_n','','','2014-08-09 21:22:18','2014-08-09 21:22:18','',320,'http://www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png',0,'attachment','image/png',0),(532,1,'2014-08-09 21:22:17','2014-08-09 21:22:17','','pen-and-paper','','inherit','open','open','','pen-and-paper-2','','','2014-08-09 21:22:17','2014-08-09 21:22:17','',318,'http://www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg',0,'attachment','image/jpeg',0),(531,1,'2014-08-09 21:22:16','2014-08-09 21:22:16','','Learning-to-Love-Yourself','','inherit','open','open','','learning-to-love-yourself','','','2014-08-09 21:22:16','2014-08-09 21:22:16','',317,'http://www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg',0,'attachment','image/jpeg',0),(530,1,'2014-08-09 21:22:16','2014-08-09 21:22:16','','flat-550x550-075-f.u2','','inherit','open','open','','flat-550x550-075-f-u2','','','2014-08-09 21:22:16','2014-08-09 21:22:16','',316,'http://www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg',0,'attachment','image/jpeg',0),(350,1,'2014-08-09 21:16:05','2014-08-09 21:16:05','','weepingwillow-jpg','','inherit','open','open','','weepingwillow-jpg','','','2014-08-09 21:16:05','2014-08-09 21:16:05','',14,'http://www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg',0,'attachment','image/jpeg',0),(352,1,'2014-08-09 21:16:09','2014-08-09 21:16:09','','tumblr_mde3v9UaLP1qf01fko1_500','','inherit','open','open','','tumblr_mde3v9ualp1qf01fko1_500','','','2014-08-09 21:16:09','2014-08-09 21:16:09','',28,'http://www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg',0,'attachment','image/jpeg',0),(353,1,'2014-08-09 21:16:10','2014-08-09 21:16:10','','1038','','inherit','open','open','','1038','','','2014-08-09 21:16:10','2014-08-09 21:16:10','',29,'http://www.monicarenata.com/wp-content/uploads/2014/05/1038.png',0,'attachment','image/png',0),(354,1,'2014-08-09 21:16:14','2014-08-09 21:16:14','','stormy-day-carol-mclagan','','inherit','open','open','','stormy-day-carol-mclagan','','','2014-08-09 21:16:14','2014-08-09 21:16:14','',30,'http://www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg',0,'attachment','image/jpeg',0),(355,1,'2014-08-09 21:16:16','2014-08-09 21:16:16','','hear-me-now','','inherit','open','open','','hear-me-now','','','2014-08-09 21:16:16','2014-08-09 21:16:16','',31,'http://www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg',0,'attachment','image/jpeg',0),(356,1,'2014-08-09 21:16:20','2014-08-09 21:16:20','','Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net','','inherit','open','open','','sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net','','','2014-08-09 21:16:20','2014-08-09 21:16:20','',32,'http://www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg',0,'attachment','image/jpeg',0),(357,1,'2014-08-09 21:16:23','2014-08-09 21:16:23','','Love-Wallpapers-love-33002134-1920-1200','','inherit','open','open','','love-wallpapers-love-33002134-1920-1200','','','2014-08-09 21:16:23','2014-08-09 21:16:23','',33,'http://www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg',0,'attachment','image/jpeg',0),(358,1,'2014-08-09 21:16:24','2014-08-09 21:16:24','','03bbe07ed579a83b7865d23ab1768fe4','','inherit','open','open','','03bbe07ed579a83b7865d23ab1768fe4','','','2014-08-09 21:16:24','2014-08-09 21:16:24','',34,'http://www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg',0,'attachment','image/jpeg',0),(359,1,'2014-08-09 21:16:25','2014-08-09 21:16:25','','sand-2','','inherit','open','open','','sand-2','','','2014-08-09 21:16:25','2014-08-09 21:16:25','',37,'http://www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg',0,'attachment','image/jpeg',0),(360,1,'2014-08-09 21:16:25','2014-08-09 21:16:25','','flipflops__1282149259_0040','','inherit','open','open','','flipflops__1282149259_0040','','','2014-08-09 21:16:25','2014-08-09 21:16:25','',39,'http://www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg',0,'attachment','image/jpeg',0),(361,1,'2014-08-09 21:16:39','2014-08-09 21:16:39','','When-There-Are-Footprints-On-The-Moon','','inherit','open','open','','when-there-are-footprints-on-the-moon','','','2014-08-09 21:16:39','2014-08-09 21:16:39','',44,'http://www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg',0,'attachment','image/jpeg',0),(362,1,'2014-08-09 21:16:40','2014-08-09 21:16:40','','e505355f36634704486fae0eebaba121','','inherit','open','open','','e505355f36634704486fae0eebaba121','','','2014-08-09 21:16:40','2014-08-09 21:16:40','',44,'http://www.monicarenata.com/wp-content/uploads/2014/04/e505355f36634704486fae0eebaba121.jpg',0,'attachment','image/jpeg',0),(363,1,'2014-08-09 21:16:42','2014-08-09 21:16:42','','beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk','','inherit','open','open','','beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk','','','2014-08-09 21:16:42','2014-08-09 21:16:42','',46,'http://www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg',0,'attachment','image/jpeg',0),(364,1,'2014-08-09 21:16:43','2014-08-09 21:16:43','','after-the-storm','','inherit','open','open','','after-the-storm','','','2014-08-09 21:16:43','2014-08-09 21:16:43','',48,'http://www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg',0,'attachment','image/jpeg',0),(366,1,'2014-08-09 21:16:44','2014-08-09 21:16:44','','holding-on-letting-go','','inherit','open','open','','holding-on-letting-go','','','2014-08-09 21:16:44','2014-08-09 21:16:44','',50,'http://www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg',0,'attachment','image/jpeg',0),(367,1,'2014-08-09 21:16:47','2014-08-09 21:16:47','','feathers-in-the-wind','','inherit','open','open','','feathers-in-the-wind','','','2014-08-09 21:16:47','2014-08-09 21:16:47','',53,'http://www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg',0,'attachment','image/jpeg',0),(368,1,'2014-08-09 21:16:48','2014-08-09 21:16:48','','10838428-256-k757623','','inherit','open','open','','10838428-256-k757623','','','2014-08-09 21:16:48','2014-08-09 21:16:48','',55,'http://www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg',0,'attachment','image/jpeg',0),(369,1,'2014-08-09 21:16:48','2014-08-09 21:16:48','','lonely-warrior','','inherit','open','open','','lonely-warrior','','','2014-08-09 21:16:48','2014-08-09 21:16:48','',57,'http://www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg',0,'attachment','image/jpeg',0),(371,1,'2014-08-09 21:16:51','2014-08-09 21:16:51','','6493303807_a057536651_z','','inherit','open','open','','6493303807_a057536651_z','','','2014-08-09 21:16:51','2014-08-09 21:16:51','',60,'http://www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg',0,'attachment','image/jpeg',0),(372,1,'2014-08-09 21:16:51','2014-08-09 21:16:51','','35','','inherit','open','open','','35','','','2014-08-09 21:16:51','2014-08-09 21:16:51','',61,'http://www.monicarenata.com/wp-content/uploads/2014/03/35.jpg',0,'attachment','image/jpeg',0),(375,1,'2014-08-09 21:16:58','2014-08-09 21:16:58','','quote-about-dont-make-me-wait-just-because-you-know-i-will','','inherit','open','open','','quote-about-dont-make-me-wait-just-because-you-know-i-will','','','2014-08-09 21:16:58','2014-08-09 21:16:58','',68,'http://www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png',0,'attachment','image/png',0),(377,1,'2014-08-09 21:17:00','2014-08-09 21:17:00','','winter-to-spring','','inherit','open','open','','winter-to-spring-2','','','2014-08-09 21:17:00','2014-08-09 21:17:00','',73,'http://www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg',0,'attachment','image/jpeg',0),(378,1,'2014-08-09 21:17:02','2014-08-09 21:17:02','','Personal-PAC-10-2-12-No-Exceptions-back-1','','inherit','open','open','','personal-pac-10-2-12-no-exceptions-back-1','','','2014-08-09 21:17:02','2014-08-09 21:17:02','',74,'http://www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png',0,'attachment','image/png',0),(379,1,'2014-08-09 21:17:05','2014-08-09 21:17:05','','You-Are-Beautiful','','inherit','open','open','','you-are-beautiful','','','2014-08-09 21:17:05','2014-08-09 21:17:05','',79,'http://www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg',0,'attachment','image/jpeg',0),(380,1,'2014-08-09 21:17:06','2014-08-09 21:17:06','','hanging-252520cliff','','inherit','open','open','','hanging-252520cliff','','','2014-08-09 21:17:06','2014-08-09 21:17:06','',80,'http://www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg',0,'attachment','image/jpeg',0),(382,1,'2014-08-09 21:19:28','2014-08-09 21:19:28','','Valentine-s-Freebie','','inherit','open','open','','valentine-s-freebie','','','2014-08-09 21:19:28','2014-08-09 21:19:28','',86,'http://www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg',0,'attachment','image/jpeg',0),(383,1,'2014-08-09 21:19:28','2014-08-09 21:19:28','','41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_','','inherit','open','open','','41r1vrrkkzl-_sy344_pjlook-inside-v2-topright-1-0_sh20_bo1-204-203-200_','','','2014-08-09 21:19:28','2014-08-09 21:19:28','',86,'http://www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',0,'attachment','image/jpeg',0),(384,1,'2014-08-09 21:19:28','2014-08-09 21:19:28','','51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_','Keyword: Love','inherit','open','open','','51pse380rjl-_sy344_pjlook-inside-v2-topright-1-0_sh20_bo1-204-203-200_','','','2016-07-10 10:47:39','2016-07-10 15:47:39','',86,'http://www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',2,'attachment','image/jpeg',0),(385,1,'2014-08-09 21:19:29','2014-08-09 21:19:29','','41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_','Keyword: Inner Strength','inherit','open','open','','41slwxn1xvl-_sy344_pjlook-inside-v2-topright-1-0_sh20_bo1-204-203-200_','','','2014-08-09 21:19:29','2014-08-09 21:19:29','',86,'http://www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',4,'attachment','image/jpeg',0),(386,1,'2014-08-09 21:19:29','2014-08-09 21:19:29','','cb_couple_bed_070601_ms','','inherit','open','open','','cb_couple_bed_070601_ms','','','2014-08-09 21:19:29','2014-08-09 21:19:29','',88,'http://www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg',0,'attachment','image/jpeg',0),(388,1,'2014-08-09 21:19:31','2014-08-09 21:19:31','','broken-heart','','inherit','open','open','','broken-heart','','','2014-08-09 21:19:31','2014-08-09 21:19:31','',93,'http://www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg',0,'attachment','image/jpeg',0),(389,1,'2014-08-09 21:19:33','2014-08-09 21:19:33','','Handeling-sticky-situations-illustrations','','inherit','open','open','','handeling-sticky-situations-illustrations','','','2014-08-09 21:19:33','2014-08-09 21:19:33','',95,'http://www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg',0,'attachment','image/jpeg',0),(390,1,'2014-08-09 21:19:35','2014-08-09 21:19:35','','claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa','','inherit','open','open','','claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa','','','2014-08-09 21:19:35','2014-08-09 21:19:35','',96,'http://www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg',0,'attachment','image/jpeg',0),(391,1,'2014-08-09 21:19:36','2014-08-09 21:19:36','','sneaky','','inherit','open','open','','sneaky','','','2014-08-09 21:19:36','2014-08-09 21:19:36','',98,'http://www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg',0,'attachment','image/jpeg',0),(393,1,'2014-08-09 21:19:38','2014-08-09 21:19:38','','17','','inherit','open','open','','17','','','2014-08-09 21:19:38','2014-08-09 21:19:38','',101,'http://www.monicarenata.com/wp-content/uploads/2014/01/17.jpg',0,'attachment','image/jpeg',0),(395,1,'2014-08-09 21:19:41','2014-08-09 21:19:41','','overcoming-inadequacy-21473584','','inherit','open','open','','overcoming-inadequacy-21473584','','','2014-08-09 21:19:41','2014-08-09 21:19:41','',103,'http://www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg',0,'attachment','image/jpeg',0),(396,1,'2014-08-09 21:19:42','2014-08-09 21:19:42','','wve-white-flag-260','','inherit','open','open','','wve-white-flag-260','','','2014-08-09 21:19:42','2014-08-09 21:19:42','',104,'http://www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg',0,'attachment','image/jpeg',0),(397,1,'2014-08-09 21:19:46','2014-08-09 21:19:46','','Ready','','inherit','open','open','','ready','','','2014-08-09 21:19:46','2014-08-09 21:19:46','',114,'http://www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg',0,'attachment','image/jpeg',0),(398,1,'2014-08-09 21:19:47','2014-08-09 21:19:47','','Nap-20time-20ready-20to-20post','','inherit','open','open','','nap-20time-20ready-20to-20post','','','2014-08-09 21:19:47','2014-08-09 21:19:47','',116,'http://www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg',0,'attachment','image/jpeg',0),(400,1,'2014-08-09 21:19:51','2014-08-09 21:19:51','','31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario','','inherit','open','open','','31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario','','','2014-08-09 21:19:51','2014-08-09 21:19:51','',118,'http://www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg',0,'attachment','image/jpeg',0),(401,1,'2014-08-09 21:19:52','2014-08-09 21:19:52','','Can_tSleep','','inherit','open','open','','can_tsleep','','','2014-08-09 21:19:52','2014-08-09 21:19:52','',119,'http://www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg',0,'attachment','image/jpeg',0),(402,1,'2014-08-09 21:19:54','2014-08-09 21:19:54','','fog-in-dark-forest','','inherit','open','open','','fog-in-dark-forest','','','2014-08-09 21:19:54','2014-08-09 21:19:54','',120,'http://www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg',0,'attachment','image/jpeg',0),(403,1,'2014-08-09 21:19:54','2014-08-09 21:19:54','','438906496_640','','inherit','open','open','','438906496_640','','','2014-08-09 21:19:54','2014-08-09 21:19:54','',122,'http://www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg',0,'attachment','image/jpeg',0),(404,1,'2014-08-09 21:20:00','2014-08-09 21:20:00','','walls','','inherit','open','open','','walls','','','2014-08-09 21:20:00','2014-08-09 21:20:00','',124,'http://www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg',0,'attachment','image/jpeg',0),(405,1,'2014-08-09 21:20:02','2014-08-09 21:20:02','','the-giving-tree-jerry-kirk','','inherit','open','open','','the-giving-tree-jerry-kirk','','','2016-07-10 10:46:14','2016-07-10 15:46:14','',125,'http://www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg',0,'attachment','image/jpeg',0),(406,1,'2014-08-09 21:20:03','2014-08-09 21:20:03','','tumblr_mlc6c1b6Hl1qf5qxco1_250','','inherit','open','open','','tumblr_mlc6c1b6hl1qf5qxco1_250','','','2014-08-09 21:20:03','2014-08-09 21:20:03','',126,'http://www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg',0,'attachment','image/jpeg',0),(407,1,'2014-08-09 21:20:04','2014-08-09 21:20:04','','stock-photo-9544716-man-coming-home-from-work-lovers-kissing','','inherit','open','open','','stock-photo-9544716-man-coming-home-from-work-lovers-kissing','','','2014-08-09 21:20:04','2014-08-09 21:20:04','',128,'http://www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg',0,'attachment','image/jpeg',0),(408,1,'2014-08-09 21:20:06','2014-08-09 21:20:06','','k4660629','','inherit','open','open','','k4660629','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',130,'http://www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg',0,'attachment','image/jpeg',0),(409,1,'2014-08-09 21:20:06','2014-08-09 21:20:06','','200903-flokot-art7','','inherit','open','open','','200903-flokot-art7','','','2014-08-09 21:20:06','2014-08-09 21:20:06','',137,'http://www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg',0,'attachment','image/jpeg',0),(410,1,'2014-08-09 21:20:07','2014-08-09 21:20:07','','Screenshot_2013-11-21-07-18-40','','inherit','open','open','','screenshot_2013-11-21-07-18-40','','','2014-08-09 21:20:07','2014-08-09 21:20:07','',142,'http://www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png',0,'attachment','image/png',0),(411,1,'2014-08-09 21:20:08','2014-08-09 21:20:08','','when-i-grow-up','','inherit','open','open','','when-i-grow-up','','','2014-08-09 21:20:08','2014-08-09 21:20:08','',143,'http://www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg',0,'attachment','image/jpeg',0),(412,1,'2014-08-09 21:20:11','2014-08-09 21:20:11','Ambitious male executive sitting in his office in a company','Ambitious male executive sitting in his office','','inherit','open','open','','ambitious-male-executive-sitting-in-his-office','','','2014-08-09 21:20:11','2014-08-09 21:20:11','',144,'http://www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg',0,'attachment','image/jpeg',0),(413,1,'2014-08-09 21:20:13','2014-08-09 21:20:13','','IMG_756-761828','','inherit','open','open','','img_756-761828','','','2014-08-09 21:20:13','2014-08-09 21:20:13','',150,'http://www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg',0,'attachment','image/jpeg',0),(414,1,'2014-08-09 21:20:14','2014-08-09 21:20:14','','6486319-cup-of-coffee','','inherit','open','open','','6486319-cup-of-coffee','','','2014-08-09 21:20:14','2014-08-09 21:20:14','',152,'http://www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg',0,'attachment','image/jpeg',0),(415,1,'2014-08-09 21:20:16','2014-08-09 21:20:16','','BuildIt','','inherit','open','open','','buildit','','','2014-08-09 21:20:16','2014-08-09 21:20:16','',155,'http://www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg',0,'attachment','image/jpeg',0),(416,1,'2014-08-09 21:20:16','2014-08-09 21:20:16','','Heart-shaped confetti','','inherit','open','open','','heart-shaped-confetti','','','2014-08-09 21:20:16','2014-08-09 21:20:16','',156,'http://www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg',0,'attachment','image/jpeg',0),(418,1,'2014-08-09 21:20:19','2014-08-09 21:20:19','','8059730530_6d699e4c0e_z','','inherit','open','open','','8059730530_6d699e4c0e_z','','','2014-08-09 21:20:19','2014-08-09 21:20:19','',159,'http://www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg',0,'attachment','image/jpeg',0),(419,1,'2014-08-09 21:20:20','2014-08-09 21:20:20','','ar129451792772434','','inherit','open','open','','ar129451792772434','','','2014-08-09 21:20:20','2014-08-09 21:20:20','',160,'http://www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg',0,'attachment','image/jpeg',0),(420,1,'2014-08-09 21:20:22','2014-08-09 21:20:22','','african-american-boy-looking-in-mirror-F214-22-605','','inherit','open','open','','african-american-boy-looking-in-mirror-f214-22-605','','','2014-08-09 21:20:22','2014-08-09 21:20:22','',161,'http://www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg',0,'attachment','image/jpeg',0),(421,1,'2014-08-09 21:20:22','2014-08-09 21:20:22','','stranger-704x300','','inherit','open','open','','stranger-704x300','','','2014-08-09 21:20:22','2014-08-09 21:20:22','',162,'http://www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg',0,'attachment','image/jpeg',0),(422,1,'2014-08-09 21:20:23','2014-08-09 21:20:23','','tumblr_lfq206KzzK1qdg8qwo1_500','','inherit','open','open','','tumblr_lfq206kzzk1qdg8qwo1_500','','','2014-08-09 21:20:23','2014-08-09 21:20:23','',164,'http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg',0,'attachment','image/jpeg',0),(423,1,'2014-08-09 21:20:24','2014-08-09 21:20:24','','7c434ee253bebfe9bb22487f8b31ba16','','inherit','open','open','','7c434ee253bebfe9bb22487f8b31ba16','','','2014-08-09 21:20:24','2014-08-09 21:20:24','',168,'http://www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg',0,'attachment','image/jpeg',0),(424,1,'2014-08-09 21:20:25','2014-08-09 21:20:25','','peace-be-still','','inherit','open','open','','peace-be-still-2','','','2014-08-09 21:20:25','2014-08-09 21:20:25','',168,'http://www.monicarenata.com/wp-content/uploads/2013/11/peace-be-still.jpg',0,'attachment','image/jpeg',0),(425,1,'2014-08-09 21:20:26','2014-08-09 21:20:26','','thoughts-are-seeds-640x960','','inherit','open','open','','thoughts-are-seeds-640x960','','','2014-08-09 21:20:26','2014-08-09 21:20:26','',169,'http://www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg',0,'attachment','image/jpeg',0),(426,1,'2014-08-09 21:20:28','2014-08-09 21:20:28','','love-heart-writing-letter','','inherit','open','open','','love-heart-writing-letter','','','2014-08-09 21:20:28','2014-08-09 21:20:28','',172,'http://www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg',0,'attachment','image/jpeg',0),(427,1,'2014-08-09 21:20:29','2014-08-09 21:20:29','','just-friends-01','','inherit','open','open','','just-friends-01','','','2014-08-09 21:20:29','2014-08-09 21:20:29','',174,'http://www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg',0,'attachment','image/jpeg',0),(428,1,'2014-08-09 21:20:29','2014-08-09 21:20:29','','your-thoughts-create-your-futre-crop','','inherit','open','open','','your-thoughts-create-your-futre-crop','','','2014-08-09 21:20:29','2014-08-09 21:20:29','',175,'http://www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png',0,'attachment','image/png',0),(429,1,'2014-08-09 21:20:30','2014-08-09 21:20:30','','67370957_swan','','inherit','open','open','','67370957_swan','','','2014-08-09 21:20:30','2014-08-09 21:20:30','',176,'http://www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg',0,'attachment','image/jpeg',0),(430,1,'2014-08-09 21:20:30','2014-08-09 21:20:30','','man_woman_tug-of-war','','inherit','open','open','','man_woman_tug-of-war','','','2014-08-09 21:20:30','2014-08-09 21:20:30','',177,'http://www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg',0,'attachment','image/jpeg',0),(431,1,'2014-08-09 21:20:36','2014-08-09 21:20:36','','dexstarr-300x250','','inherit','open','open','','dexstarr-300x250','','','2014-08-09 21:20:36','2014-08-09 21:20:36','',182,'http://www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg',0,'attachment','image/jpeg',0),(432,1,'2014-08-09 21:20:41','2014-08-09 21:20:41','','Lujuria_Lust_Pecado_Original_-3969921829-','','inherit','open','open','','lujuria_lust_pecado_original_-3969921829','','','2014-08-09 21:20:41','2014-08-09 21:20:41','',184,'http://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg',0,'attachment','image/jpeg',0),(433,1,'2014-08-09 21:20:43','2014-08-09 21:20:43','','Fairhope_Swing-under-the-tree-9x7','','inherit','open','open','','fairhope_swing-under-the-tree-9x7','','','2014-08-09 21:20:43','2014-08-09 21:20:43','',186,'http://www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg',0,'attachment','image/jpeg',0),(434,1,'2014-08-09 21:20:44','2014-08-09 21:20:44','','img_0414','','inherit','open','open','','img_0414','','','2014-08-09 21:20:44','2014-08-09 21:20:44','',187,'http://www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg',0,'attachment','image/jpeg',0),(435,1,'2014-08-09 21:20:49','2014-08-09 21:20:49','','preview','','inherit','open','open','','preview','','','2014-08-09 21:20:49','2014-08-09 21:20:49','',188,'http://www.monicarenata.com/wp-content/uploads/2013/11/preview.png',0,'attachment','image/png',0),(436,1,'2014-08-09 21:20:50','2014-08-09 21:20:50','','walking_on_hell_by_Emersonpriest','','inherit','open','open','','walking_on_hell_by_emersonpriest','','','2014-08-09 21:20:50','2014-08-09 21:20:50','',189,'http://www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg',0,'attachment','image/jpeg',0),(437,1,'2014-08-09 21:20:51','2014-08-09 21:20:51','','tumblr_lrr4b41G5S1qixa13o1_r1_500_large','','inherit','open','open','','tumblr_lrr4b41g5s1qixa13o1_r1_500_large','','','2014-08-09 21:20:51','2014-08-09 21:20:51','',190,'http://www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg',0,'attachment','image/jpeg',0),(438,1,'2014-08-09 21:20:52','2014-08-09 21:20:52','','img_endtheviolence_logo','','inherit','open','open','','img_endtheviolence_logo','','','2014-08-09 21:20:52','2014-08-09 21:20:52','',193,'http://www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg',0,'attachment','image/jpeg',0),(439,1,'2014-08-09 21:20:53','2014-08-09 21:20:53','','soldier-sunset-570x200','','inherit','open','open','','soldier-sunset-570x200','','','2014-08-09 21:20:53','2014-08-09 21:20:53','',194,'http://www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg',0,'attachment','image/jpeg',0),(440,1,'2014-08-09 21:20:54','2014-08-09 21:20:54','','wedding-ring-83876','','inherit','open','open','','wedding-ring-83876','','','2014-08-09 21:20:54','2014-08-09 21:20:54','',195,'http://www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg',0,'attachment','image/jpeg',0),(441,1,'2014-08-09 21:20:56','2014-08-09 21:20:56','','1204-20121002-WORK-WORK','','inherit','open','open','','1204-20121002-work-work','','','2014-08-09 21:20:56','2014-08-09 21:20:56','',196,'http://www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg',0,'attachment','image/jpeg',0),(442,1,'2014-08-09 21:20:57','2014-08-09 21:20:57','','POV_PeanutButter','','inherit','open','open','','pov_peanutbutter','','','2014-08-09 21:20:57','2014-08-09 21:20:57','',197,'http://www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg',0,'attachment','image/jpeg',0),(443,1,'2014-08-09 21:20:58','2014-08-09 21:20:58','','Photoshop-Fantasy-Dreaming-art-mrm','','inherit','open','open','','photoshop-fantasy-dreaming-art-mrm','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',199,'http://www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg',0,'attachment','image/jpeg',0),(444,1,'2014-08-09 21:20:58','2014-08-09 21:20:58','','Silence-Deafens1','','inherit','open','open','','silence-deafens1','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',200,'http://www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg',0,'attachment','image/jpeg',0),(445,1,'2014-08-09 21:20:58','2014-08-09 21:20:58','','feeling-tired-woozy','','inherit','open','open','','feeling-tired-woozy','','','2014-08-09 21:20:58','2014-08-09 21:20:58','',201,'http://www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg',0,'attachment','image/jpeg',0),(446,1,'2014-08-09 21:20:59','2014-08-09 21:20:59','','Kissing-in-the-rain-in-black','','inherit','open','open','','kissing-in-the-rain-in-black','','','2014-08-09 21:20:59','2014-08-09 21:20:59','',203,'http://www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg',0,'attachment','image/jpeg',0),(447,1,'2014-08-09 21:21:01','2014-08-09 21:21:01','','artworks-000005112734-mgtev5-original','','inherit','open','open','','artworks-000005112734-mgtev5-original','','','2014-08-09 21:21:01','2014-08-09 21:21:01','',205,'http://www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg',0,'attachment','image/jpeg',0),(448,1,'2014-08-09 21:21:02','2014-08-09 21:21:02','','the_girl_in_the_mirror__by_pretty_as_a_picture','','inherit','open','open','','the_girl_in_the_mirror__by_pretty_as_a_picture','','','2014-08-09 21:21:02','2014-08-09 21:21:02','',206,'http://www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg',0,'attachment','image/jpeg',0),(449,1,'2014-08-09 21:21:04','2014-08-09 21:21:04','','miss-you-056','','inherit','open','open','','miss-you-056','','','2014-08-09 21:21:04','2014-08-09 21:21:04','',207,'http://www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg',0,'attachment','image/jpeg',0),(450,1,'2014-08-09 21:21:05','2014-08-09 21:21:05','','inline-you-are-rich-now-what-lonely-guy','','inherit','open','open','','inline-you-are-rich-now-what-lonely-guy','','','2014-08-09 21:21:05','2014-08-09 21:21:05','',208,'http://www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg',0,'attachment','image/jpeg',0),(451,1,'2014-08-09 21:21:05','2014-08-09 21:21:05','','angel-blue-Heart-With-Wings','','inherit','open','open','','angel-blue-heart-with-wings','','','2014-08-09 21:21:05','2014-08-09 21:21:05','',209,'http://www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg',0,'attachment','image/jpeg',0),(452,1,'2014-08-09 21:21:06','2014-08-09 21:21:06','','il_fullxfull.366659127_c1vj','','inherit','open','open','','il_fullxfull-366659127_c1vj','','','2014-08-09 21:21:06','2014-08-09 21:21:06','',210,'http://www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg',0,'attachment','image/jpeg',0),(453,1,'2014-08-09 21:21:07','2014-08-09 21:21:07','','listening','','inherit','open','open','','listening','','','2014-08-09 21:21:07','2014-08-09 21:21:07','',213,'http://www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg',1,'attachment','image/jpeg',0),(454,1,'2014-08-09 21:21:09','2014-08-09 21:21:09','','man-walking-away','','inherit','open','open','','man-walking-away','','','2014-08-09 21:21:09','2014-08-09 21:21:09','',216,'http://www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg',0,'attachment','image/jpeg',0),(455,1,'2014-08-09 21:21:10','2014-08-09 21:21:10','','full_1328574703kindness','','inherit','open','open','','full_1328574703kindness','','','2014-08-09 21:21:10','2014-08-09 21:21:10','',217,'http://www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg',0,'attachment','image/jpeg',0),(456,1,'2014-08-09 21:21:11','2014-08-09 21:21:11','','1394408_545552508859652_2056967876_n','','inherit','open','open','','1394408_545552508859652_2056967876_n','','','2014-08-09 21:21:11','2014-08-09 21:21:11','',218,'http://www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg',0,'attachment','image/jpeg',0),(457,1,'2014-08-09 21:21:12','2014-08-09 21:21:12','','Cold-Cold-Heart','','inherit','open','open','','cold-cold-heart','','','2014-08-09 21:21:12','2014-08-09 21:21:12','',219,'http://www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg',0,'attachment','image/jpeg',0),(458,1,'2014-08-09 21:21:13','2014-08-09 21:21:13','','holstee','','inherit','open','open','','holstee','','','2014-08-09 21:21:13','2014-08-09 21:21:13','',220,'http://www.monicarenata.com/wp-content/uploads/2013/10/holstee.png',0,'attachment','image/png',0),(459,1,'2014-08-09 21:21:14','2014-08-09 21:21:14','','7951852050_f243c5a318','','inherit','open','open','','7951852050_f243c5a318','','','2014-08-09 21:21:14','2014-08-09 21:21:14','',223,'http://www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg',0,'attachment','image/jpeg',0),(460,1,'2014-08-09 21:21:16','2014-08-09 21:21:16','','Frozen-in-Time-by-StinaBG','','inherit','open','open','','frozen-in-time-by-stinabg','','','2014-08-09 21:21:16','2014-08-09 21:21:16','',224,'http://www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg',0,'attachment','image/jpeg',0),(461,1,'2014-08-09 21:21:17','2014-08-09 21:21:17','','3853962_300','','inherit','open','open','','3853962_300','','','2014-08-09 21:21:17','2014-08-09 21:21:17','',226,'http://www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg',0,'attachment','image/jpeg',0),(462,1,'2014-08-09 21:21:18','2014-08-09 21:21:18','','6a00d83455f11369e20177432f5723970d-320wi','','inherit','open','open','','6a00d83455f11369e20177432f5723970d-320wi','','','2014-08-09 21:21:18','2014-08-09 21:21:18','',228,'http://www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg',0,'attachment','image/jpeg',0),(463,1,'2014-08-09 21:21:19','2014-08-09 21:21:19','','Crying_by_zero_rider','','inherit','open','open','','crying_by_zero_rider','','','2014-08-09 21:21:19','2014-08-09 21:21:19','',229,'http://www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg',0,'attachment','image/jpeg',0),(464,1,'2014-08-09 21:21:20','2014-08-09 21:21:20','','fashion3-ck-0409-lg','','inherit','open','open','','fashion3-ck-0409-lg','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',230,'http://www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg',0,'attachment','image/jpeg',0),(465,1,'2014-08-09 21:21:20','2014-08-09 21:21:20','','shadow-man','','inherit','open','open','','shadow-man','','','2014-08-09 21:21:20','2014-08-09 21:21:20','',231,'http://www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png',0,'attachment','image/png',0),(467,1,'2014-08-09 21:21:22','2014-08-09 21:21:22','','DVAM','','inherit','open','open','','dvam','','','2014-08-09 21:21:22','2014-08-09 21:21:22','',236,'http://www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg',0,'attachment','image/jpeg',0),(468,1,'2014-08-09 21:21:24','2014-08-09 21:21:24','','11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport','','inherit','open','open','','11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport','','','2014-08-09 21:21:24','2014-08-09 21:21:24','',237,'http://www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg',0,'attachment','image/jpeg',0),(469,1,'2014-08-09 21:21:25','2014-08-09 21:21:25','','tumblr_l88fdy9OUW1qargqko1_500','','inherit','open','open','','tumblr_l88fdy9ouw1qargqko1_500','','','2014-08-09 21:21:25','2014-08-09 21:21:25','',240,'http://www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png',0,'attachment','image/png',0),(470,1,'2014-08-09 21:21:26','2014-08-09 21:21:26','','Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing','','inherit','open','open','','sometimes-i-have-to-remind-myself-that-i-dont-have-to-do-what-everyone-else-is-doing','','','2014-08-09 21:21:26','2014-08-09 21:21:26','',241,'http://www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg',0,'attachment','image/jpeg',0),(471,1,'2014-08-09 21:21:27','2014-08-09 21:21:27','','THE-AWKWARD-BUTTERFLY','','inherit','open','open','','the-awkward-butterfly-2','','','2014-08-09 21:21:27','2014-08-09 21:21:27','',242,'http://www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg',0,'attachment','image/jpeg',0),(472,1,'2014-08-09 21:21:27','2014-08-09 21:21:27','','two-hearts-tied-together-with-a-ring','','inherit','open','open','','two-hearts-tied-together-with-a-ring','','','2014-08-09 21:21:27','2014-08-09 21:21:27','',243,'http://www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg',0,'attachment','image/jpeg',0),(473,1,'2014-08-09 21:21:28','2014-08-09 21:21:28','','1708966_300','','inherit','open','open','','1708966_300','','','2014-08-09 21:21:28','2014-08-09 21:21:28','',244,'http://www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg',0,'attachment','image/jpeg',0),(474,1,'2014-08-09 21:21:30','2014-08-09 21:21:30','','woman-20on-20bench-20in-20rain','','inherit','open','open','','woman-20on-20bench-20in-20rain','','','2014-08-09 21:21:30','2014-08-09 21:21:30','',245,'http://www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif',0,'attachment','image/gif',0),(475,1,'2014-08-09 21:21:30','2014-08-09 21:21:30','','moon-13-sky-night','','inherit','open','open','','moon-13-sky-night','','','2014-08-09 21:21:30','2014-08-09 21:21:30','',246,'http://www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg',0,'attachment','image/jpeg',0),(476,1,'2014-08-09 21:21:31','2014-08-09 21:21:31','','1477297469_1b3567a865','','inherit','open','open','','1477297469_1b3567a865','','','2014-08-09 21:21:31','2014-08-09 21:21:31','',247,'http://www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg',0,'attachment','image/jpeg',0),(477,1,'2014-08-09 21:21:32','2014-08-09 21:21:32','','LET-THE-SECRET-GET-OUT4','','inherit','open','open','','let-the-secret-get-out4','','','2014-08-09 21:21:32','2014-08-09 21:21:32','',249,'http://www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg',0,'attachment','image/jpeg',0),(478,1,'2014-08-09 21:21:35','2014-08-09 21:21:35','','header','','inherit','open','open','','header','','','2014-08-09 21:21:35','2014-08-09 21:21:35','',250,'http://www.monicarenata.com/wp-content/uploads/2013/08/header.jpg',0,'attachment','image/jpeg',0),(479,1,'2014-08-09 21:21:36','2014-08-09 21:21:36','','under_the_sea-11','','inherit','open','open','','under_the_sea-11','','','2014-08-09 21:21:36','2014-08-09 21:21:36','',251,'http://www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg',0,'attachment','image/jpeg',0),(480,1,'2014-08-09 21:21:37','2014-08-09 21:21:37','','believe-in-yourself','','inherit','open','open','','believe-in-yourself','','','2014-08-09 21:21:37','2014-08-09 21:21:37','',253,'http://www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg',0,'attachment','image/jpeg',0),(481,1,'2014-08-09 21:21:38','2014-08-09 21:21:38','','Mirror_mirror_on_the_wall____by_iKink','','inherit','open','open','','mirror_mirror_on_the_wall____by_ikink','','','2014-08-09 21:21:38','2014-08-09 21:21:38','',255,'http://www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg',0,'attachment','image/jpeg',0),(482,1,'2014-08-09 21:21:38','2014-08-09 21:21:38','','The-Awkward-Butterfly','The Awkward Butterfly','inherit','open','open','','the-awkward-butterfly-3','','','2016-07-10 10:47:49','2016-07-10 15:47:49','',256,'http://www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg',0,'attachment','image/jpeg',0),(484,1,'2014-08-09 21:21:40','2014-08-09 21:21:40','','1443','','inherit','open','open','','1443','','','2014-08-09 21:21:40','2014-08-09 21:21:40','',259,'http://www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg',0,'attachment','image/jpeg',0),(485,1,'2014-08-09 21:21:41','2014-08-09 21:21:41','','2762d1356802014-happiness-now-photo-buterfly-sun','','inherit','open','open','','2762d1356802014-happiness-now-photo-buterfly-sun','','','2014-08-09 21:21:41','2014-08-09 21:21:41','',260,'http://www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg',0,'attachment','image/jpeg',0),(486,1,'2014-08-09 21:21:42','2014-08-09 21:21:42','','TP-151_1-young-to-old','','inherit','open','open','','tp-151_1-young-to-old','','','2014-08-09 21:21:42','2014-08-09 21:21:42','',261,'http://www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg',0,'attachment','image/jpeg',0),(487,1,'2014-08-09 21:21:44','2014-08-09 21:21:44','','word_cloud.91113326','','inherit','open','open','','word_cloud-91113326','','','2014-08-09 21:21:44','2014-08-09 21:21:44','',262,'http://www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg',0,'attachment','image/jpeg',0),(488,1,'2014-08-09 21:21:46','2014-08-09 21:21:46','','everyone-wins','','inherit','open','open','','everyone-wins','','','2014-08-09 21:21:46','2014-08-09 21:21:46','',264,'http://www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg',0,'attachment','image/jpeg',0),(489,1,'2014-08-09 21:21:46','2014-08-09 21:21:46','','Dusty-road','','inherit','open','open','','dusty-road','','','2014-08-09 21:21:46','2014-08-09 21:21:46','',265,'http://www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg',0,'attachment','image/jpeg',0),(490,1,'2014-08-09 21:21:47','2014-08-09 21:21:47','','NeverWasteAnOpportunity','','inherit','open','open','','neverwasteanopportunity','','','2014-08-09 21:21:47','2014-08-09 21:21:47','',267,'http://www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg',0,'attachment','image/jpeg',0),(491,1,'2014-08-09 21:21:49','2014-08-09 21:21:49','','too-cute-','','inherit','open','open','','too-cute','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',268,'http://www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg',0,'attachment','image/jpeg',0),(492,1,'2014-08-09 21:21:49','2014-08-09 21:21:49','','Kristian-D_crpd','','inherit','open','open','','kristian-d_crpd','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',269,'http://www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg',0,'attachment','image/jpeg',0),(493,1,'2014-08-09 21:21:49','2014-08-09 21:21:49','','the-blame-game','','inherit','open','open','','the-blame-game','','','2014-08-09 21:21:49','2014-08-09 21:21:49','',270,'http://www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg',0,'attachment','image/jpeg',0),(494,1,'2014-08-09 21:21:51','2014-08-09 21:21:51','','huge.6.34562','','inherit','open','open','','huge-6-34562','','','2014-08-09 21:21:51','2014-08-09 21:21:51','',271,'http://www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg',0,'attachment','image/jpeg',0),(495,1,'2014-08-09 21:21:51','2014-08-09 21:21:51','','kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel','','inherit','open','open','','kindness-quotes-when-i-was-young-i-admired-clever-people-now-that-i-am-old-i-admire-kind-people-abraham-joshua-heschel','','','2014-08-09 21:21:51','2014-08-09 21:21:51','',273,'http://www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg',0,'attachment','image/jpeg',0),(496,1,'2014-08-09 21:21:52','2014-08-09 21:21:52','','tumblr_m8p6573Flv1qmqzv9o1_500','','inherit','open','open','','tumblr_m8p6573flv1qmqzv9o1_500','','','2014-08-09 21:21:52','2014-08-09 21:21:52','',274,'http://www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg',0,'attachment','image/jpeg',0),(497,1,'2014-08-09 21:21:52','2014-08-09 21:21:52','','124033426424151544895_1','','inherit','open','open','','124033426424151544895_1','','','2014-08-09 21:21:52','2014-08-09 21:21:52','',275,'http://www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg',0,'attachment','image/jpeg',0),(498,1,'2014-08-09 21:21:54','2014-08-09 21:21:54','','l','','inherit','open','open','','l','','','2014-08-09 21:21:54','2014-08-09 21:21:54','',276,'http://www.monicarenata.com/wp-content/uploads/2013/06/l.jpg',0,'attachment','image/jpeg',0),(500,1,'2014-08-09 21:21:55','2014-08-09 21:21:55','','river_of_tears','','inherit','open','open','','river_of_tears','','','2014-08-09 21:21:55','2014-08-09 21:21:55','',279,'http://www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg',0,'attachment','image/jpeg',0),(501,1,'2014-08-09 21:21:57','2014-08-09 21:21:57','','river-tears','','inherit','open','open','','river-tears','','','2014-08-09 21:21:57','2014-08-09 21:21:57','',280,'http://www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif',0,'attachment','image/gif',0),(502,1,'2014-08-09 21:21:57','2014-08-09 21:21:57','','tick-tock','','inherit','open','open','','tick-tock-2','','','2014-08-09 21:21:57','2014-08-09 21:21:57','',281,'http://www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg',0,'attachment','image/jpeg',0),(503,1,'2014-08-09 21:21:59','2014-08-09 21:21:59','','inspire','','inherit','open','open','','inspire','','','2014-08-09 21:21:59','2014-08-09 21:21:59','',282,'http://www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg',0,'attachment','image/jpeg',0),(504,1,'2014-08-09 21:22:00','2014-08-09 21:22:00','','high_standards','','inherit','open','open','','high_standards','','','2014-08-09 21:22:00','2014-08-09 21:22:00','',283,'http://www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png',0,'attachment','image/png',0),(505,1,'2014-08-09 21:22:02','2014-08-09 21:22:02','','il_fullxfull.252045308','','inherit','open','open','','il_fullxfull-252045308','','','2014-08-09 21:22:02','2014-08-09 21:22:02','',285,'http://www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg',0,'attachment','image/jpeg',0),(506,1,'2014-08-09 21:22:03','2014-08-09 21:22:03','','419080_360032497361934_1044775627_n','','inherit','open','open','','419080_360032497361934_1044775627_n','','','2014-08-09 21:22:03','2014-08-09 21:22:03','',287,'http://www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg',0,'attachment','image/jpeg',0),(507,1,'2014-08-09 21:22:03','2014-08-09 21:22:03','','stock-vector-sweet-love-bird-card-92235451','','inherit','open','open','','stock-vector-sweet-love-bird-card-92235451','','','2014-08-09 21:22:03','2014-08-09 21:22:03','',288,'http://www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg',0,'attachment','image/jpeg',0),(509,1,'2014-08-09 21:22:06','2014-08-09 21:22:06','','night_terrors_ii_by_ani_r','','inherit','open','open','','night_terrors_ii_by_ani_r','','','2014-08-09 21:22:06','2014-08-09 21:22:06','',290,'http://www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg',0,'attachment','image/jpeg',0),(511,1,'2014-08-09 21:22:07','2014-08-09 21:22:07','','broken-heart-lost-love-paper-Favim.com-262226_large','','inherit','open','open','','broken-heart-lost-love-paper-favim-com-262226_large','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',293,'http://www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg',0,'attachment','image/jpeg',0),(512,1,'2014-08-09 21:22:07','2014-08-09 21:22:07','','550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3','','inherit','open','open','','550px-get-a-boy-in-middle-school-to-like-you-step-1-version-3','','','2014-08-09 21:22:07','2014-08-09 21:22:07','',294,'http://www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg',0,'attachment','image/jpeg',0),(514,1,'2014-08-09 21:22:08','2014-08-09 21:22:08','','creating_yourself','','inherit','open','open','','creating_yourself','','','2014-08-09 21:22:08','2014-08-09 21:22:08','',297,'http://www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg',0,'attachment','image/jpeg',0),(515,1,'2014-08-09 21:22:08','2014-08-09 21:22:08','','I_still_think_about_you_by_AnkyShpanky','','inherit','open','open','','i_still_think_about_you_by_ankyshpanky','','','2014-08-09 21:22:08','2014-08-09 21:22:08','',298,'http://www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg',0,'attachment','image/jpeg',0),(516,1,'2014-08-09 21:22:09','2014-08-09 21:22:09','','Communicating-Without-Words','','inherit','open','open','','communicating-without-words','','','2014-08-09 21:22:09','2014-08-09 21:22:09','',300,'http://www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg',0,'attachment','image/jpeg',0),(517,1,'2014-08-09 21:22:10','2014-08-09 21:22:10','','OLYMPUS DIGITAL CAMERA','','inherit','open','open','','olympus-digital-camera','','','2014-08-09 21:22:10','2014-08-09 21:22:10','',301,'http://www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg',0,'attachment','image/jpeg',0),(518,1,'2014-08-09 21:22:11','2014-08-09 21:22:11','','bigstock-Reality-TV-7107918','','inherit','open','open','','bigstock-reality-tv-7107918','','','2014-08-09 21:22:11','2014-08-09 21:22:11','',303,'http://www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg',0,'attachment','image/jpeg',0),(519,1,'2014-08-09 21:22:12','2014-08-09 21:22:12','','stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch','','inherit','open','open','','stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch','','','2014-08-09 21:22:12','2014-08-09 21:22:12','',304,'http://www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg',0,'attachment','image/jpeg',0),(521,1,'2014-08-09 21:22:13','2014-08-09 21:22:13','','love2012','','inherit','open','open','','love2012','','','2014-08-09 21:22:13','2014-08-09 21:22:13','',307,'http://www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg',0,'attachment','image/jpeg',0),(536,1,'2014-08-09 21:22:19','2014-08-09 21:22:19','','3061826565_1_3_eiVVN9cA','','inherit','open','open','','3061826565_1_3_eivvn9ca','','','2014-08-09 21:22:19','2014-08-09 21:22:19','',323,'http://www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg',0,'attachment','image/jpeg',0),(1266,1,'2016-04-04 09:45:22','2016-04-04 14:45:22','On Wednesdays I get question\r\n\r\nAs if I have to pass a test\r\n\r\nI used to get so nervous\r\n\r\nBut now I’m quite relaxed\r\n\r\n \r\n\r\nBecause the questions are so mind-numbing\r\n\r\nAnd they really don’t mean a thing\r\n\r\nThey stem from someone’s insecurities\r\n\r\nAnd the answer exist in their head\r\n\r\n \r\n\r\nOn Wednesdays I get questions\r\n\r\nI now realize that each time my answers will be incorrect\r\n\r\nSo what’s the point in trying to pass\r\n\r\nA mindless unpassable test','Wednesday\'s Test','','publish','open','open','','wednesdays-test','','','2016-04-04 11:41:40','2016-04-04 16:41:40','',0,'http://www.monicarenata.com/wednesdays-test/',0,'post','',0),(566,1,'2014-08-10 23:20:12','2014-08-10 23:20:12','','Home','','publish','open','open','','home','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=566',1,'nav_menu_item','',0),(581,1,'2014-08-19 16:37:32','2014-08-19 16:37:32','','Connect With Me','','publish','open','open','','connect-with-me','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=581',3,'nav_menu_item','',0),(568,1,'2014-08-10 23:20:13','2014-08-10 23:20:13','','The Awkward Butterfly','','publish','open','open','','the-awkward-butterfly','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=568',4,'nav_menu_item','',0),(569,1,'2014-08-12 19:17:19','2014-08-12 19:17:19','','Media','','private','closed','closed','','media','','','2014-08-12 19:17:19','2014-08-12 19:17:19','',0,'http://www.monicarenata.com/?option-tree=media',0,'option-tree','',0),(570,1,'2014-08-13 13:52:39','2014-08-13 13:52:39','','Follow On Facebook','','publish','open','open','','follow-on-facebook','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=570',5,'nav_menu_item','',0),(571,1,'2014-08-13 13:52:40','2014-08-13 13:52:40','','Buy The Book','','publish','open','open','','buy-the-book','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=571',6,'nav_menu_item','',0),(572,1,'2014-08-13 14:24:59','2014-08-13 14:24:59','','New Slider','','publish','open','open','','new-slider','','','2014-08-20 14:23:19','2014-08-20 14:23:19','',0,'http://www.monicarenata.com/?post_type=ml-slider&p=572',0,'ml-slider','',0),(573,1,'2014-08-19 16:14:22','2014-08-19 16:14:22','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n<hr />\r\n<p> </p>\r\n</blockquote>\r\n<p style=\"text-align: left;\">My name is Monica Renata. Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt even when it came to certain issues. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n<p> </p>\r\n','About Me','','publish','open','open','','about-me','','','2017-02-12 13:22:00','2017-02-12 19:22:00','',0,'http://www.monicarenata.com/?page_id=573',0,'page','',2),(1482,1,'2017-02-12 13:22:00','2017-02-12 19:22:00','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n<hr />\r\n<p> </p>\r\n</blockquote>\r\n<p style=\"text-align: left;\">My name is Monica Renata. Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt even when it came to certain issues. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n<p> </p>\r\n','About Me','','inherit','closed','closed','','573-revision-v1','','','2017-02-12 13:22:00','2017-02-12 19:22:00','',573,'http://www.monicarenata.com/573-revision-v1/',0,'revision','',0),(575,1,'2014-08-16 14:19:57','2014-08-16 14:19:57','','Always Believe','','inherit','open','open','','always-believe','','','2016-07-10 10:42:47','2016-07-10 15:42:47','',0,'http://www.monicarenata.com/wp-content/uploads/2014/08/Always-Believe.png',5,'attachment','image/png',0),(578,1,'2014-08-19 16:13:37','2014-08-19 16:13:37','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n\r\n\r\n<hr />\r\n\r\n </blockquote>\r\n<p style=\"text-align: left;\">My name is Monica and I am a 26 years old.... I know, I seem a little old right..lol. Who would have thought that at this age, I would be doing what I only dreamed of doing. Well I am close anyways..Lol. At this age, I feel like I have accomplished a lot. I went to college and earned my degree. I even went back to obtain my MBA... and earned that as well by the age of 24. It seems like I am so young yet so old........ Do you ever feel this way? Do your accomplishments make you feel older than what you really are??</p>\r\n<p style=\"text-align: left;\"> Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection recently and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n ','About Me','','inherit','open','open','','573-revision-v1','','','2014-08-19 16:13:37','2014-08-19 16:13:37','',573,'http://www.monicarenata.com/573-revision-v1/',0,'revision','',0),(591,1,'2017-02-12 13:21:44','2017-02-12 19:21:44','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n<hr />\r\n<p> </p>\r\n</blockquote>\r\n<p style=\"text-align: left;\">My name is Monica Renata. Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt even when it came to certain issues. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n<p> </p>\r\n','About Me','','inherit','open','open','','573-autosave-v1','','','2017-02-12 13:21:44','2017-02-12 19:21:44','',573,'http://www.monicarenata.com/573-autosave-v1/',0,'revision','',0),(580,1,'2014-08-19 16:35:59','2014-08-19 16:35:59',' ','','','publish','open','open','','580','','','2014-08-22 18:59:47','2014-08-22 18:59:47','',0,'http://www.monicarenata.com/?p=580',2,'nav_menu_item','',0),(582,1,'2014-08-20 13:52:34','2014-08-20 13:52:34','Hello,\r\n\r\n \r\n\r\nFirst off, I would like to apologize for not making any posts lately. I have been in the process of taking my blogspot blog (<a title=\"Monica Renata: A Collection of Poetry and Random Thoughts\" href=\"http://monicarenata.blogspot.com\" target=\"_blank\">monicarenata.blogspot.com</a>) and moving it to my very own domain name. Welcome to <a title=\"Monica Renata: A Collection of Poems and Random Thoughts\" href=\"http://www.monicarenata.com\">MONICARENATA.COM</a>. I should be able to post all of my poems and other writings on here with ease. Also, I plan to bring much more to my audience. I hope you enjoy! And if you have any feedback or suggestions, please inform me.\r\n\r\n \r\n\r\nThanks,\r\n\r\nMonica Renata','Welcome To My Site','','inherit','open','open','','1-autosave-v1','','','2014-08-20 13:52:34','2014-08-20 13:52:34','',1,'http://www.monicarenata.com/1-autosave-v1/',0,'revision','',0),(583,1,'2014-08-20 13:50:53','2014-08-20 13:50:53','Hello,\r\n\r\n \r\n\r\nFirst off, I would like to apologize for not making any posts lately. I have been in the process of taking my blogspot blog (<a title=\"Monica Renata: A Collection of Poetry and Random Thoughts\" href=\"http://monicarenata.blogspot.com\" target=\"_blank\">monicarenata.blogspot.com</a>) and moving it to my very own domain name. Welcome to <a title=\"Monica Renata: A Collection of Poems and Random Thoughts\" href=\"http://www.monicarenata.com\">MONICARENATA.COM</a>. I should be able to post all of my poems and other writings on here with ease. Also, I plan to bring much more to my audience. I hope you enjoy! And if you have any feedback or suggestions, please inform me.\r\n\r\n \r\n\r\nThanks,\r\n\r\nMonica Renata','Welcome To My Site','','inherit','open','open','','1-revision-v1','','','2014-08-20 13:50:53','2014-08-20 13:50:53','',1,'http://www.monicarenata.com/1-revision-v1/',0,'revision','',0),(585,1,'2014-08-20 16:28:56','2014-08-20 16:28:56','<p>Partial clouds in the sky</p>\r\n<p>The light still cannot come through</p>\r\n<p> </p>\r\n<p>Distracted by thoughts</p>\r\n<p>In which I thought I knew</p>\r\n<p> </p>\r\n<p>Time goes by so slowly</p>\r\n<p>But the seconds pass with a rapid speed</p>\r\n<p> </p>\r\n<p>Contemplating my own purpose</p>\r\n<p>A task which seems to take an eternity</p>\r\n<p> </p>\r\n<p>Gazing at the beautiful sky</p>\r\n<p>Until that sky is filled with stars</p>\r\n<p> </p>\r\n<p>Wondering when my time will come</p>\r\n<p>And if that time is far</p>\r\n<p> </p>\r\n<p> </p>\r\n','My Moment ','','publish','open','open','','my-moment','','','2014-08-20 16:28:56','2014-08-20 16:28:56','',0,'http://www.monicarenata.com/?p=585',0,'post','',3),(586,1,'2014-08-20 16:06:50','2014-08-20 16:06:50','Partial clouds in the sky\r\n\r\nThe light still cannot come through\r\n\r\n \r\n\r\nDistracted by thoughts\r\n\r\nIn which I thought I knew\r\n\r\n \r\n\r\nTime goes by so slowly\r\n\r\nBut the seconds pass with a rapid speed\r\n\r\n \r\n\r\nContemplating my own purpose\r\n\r\nA task which seems to take an eternity\r\n\r\n \r\n\r\nGazing at the beautiful sky\r\n\r\nUntil that sky is filled with stars\r\n\r\n \r\n\r\nWondering when my time will come\r\n\r\nAnd if that time is far\r\n\r\n \r\n\r\n ','My Moment ','','inherit','open','open','','585-revision-v1','','','2014-08-20 16:06:50','2014-08-20 16:06:50','',585,'http://www.monicarenata.com/585-revision-v1/',0,'revision','',0),(587,1,'2014-08-20 16:24:24','2014-08-20 16:24:24','','Road and Sky','','inherit','open','open','','road-and-sky','','','2014-08-20 16:24:24','2014-08-20 16:24:24','',585,'http://www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg',0,'attachment','image/jpeg',0),(592,1,'2014-08-22 18:53:33','2014-08-22 18:53:33','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n<hr />\r\n<p> </p></blockquote>\r\n<p style=\"text-align: left;\">My name is Monica and I am a 26 years old.... I know, I seem a little old right..lol. Who would have thought that at this age, I would be doing what I only dreamed of doing. Well I am close anyways..Lol. At this age, I feel like I have accomplished a lot. I went to college and earned my degree. I even went back to obtain my MBA... and earned that as well by the age of 24. It seems like I am so young yet so old........ Do you ever feel this way? Do your accomplishments make you feel older than what you really are??</p>\r\n<p style=\"text-align: left;\"> Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection recently and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n<p> </p>\r\n','About Me','','inherit','open','open','','573-revision-v1','','','2014-08-22 18:53:33','2014-08-22 18:53:33','',573,'http://www.monicarenata.com/573-revision-v1/',0,'revision','',0),(588,1,'2014-08-20 16:24:37','2014-08-20 16:24:37','<dl id=\"foter-photo-figure\" class=\"wp-caption foter-photo aligncenter\" style=\"width: 600px; color: #888; position: relative; font-size: 11px; font-family: Arial, Helvetica, sans-serif; overflow: hidden; zoom: 1;padding:4px;border: 1px solid #DDDDDD;border-radius: 3px 3px 3px 3px;\"><dt class=\"wp-caption-dt\"><img class=\"foter-photo mceItem\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg\" alt=\"Road and Sky\" title=\"Road and Sky\" style=\"border:none;padding:0;display:block; width:100%;\"></dt><dd class=\"wp-caption-dd\" style=\"padding:0;margin:0;\"><span style=\"display: block; float: right;\"><a href=\"https://www.flickr.com/photos/dotdoubledot/1434514771/\">sandy.redding</a> / <a href=\"http://foter.com\">Foter</a> / <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)</a></span></dd></dl><p>Partial clouds in the sky</p>\r\n<p>The light still cannot come through</p>\r\n<p> </p>\r\n<p>Distracted by thoughts</p>\r\n<p>In which I thought I knew</p>\r\n<p> </p>\r\n<p>Time goes by so slowly</p>\r\n<p>But the seconds pass with a rapid speed</p>\r\n<p> </p>\r\n<p>Contemplating my own purpose</p>\r\n<p>A task which seems to take an eternity</p>\r\n<p> </p>\r\n<p>Gazing at the beautiful sky</p>\r\n<p>Until that sky is filled with stars</p>\r\n<p> </p>\r\n<p>Wondering when my time will come</p>\r\n<p>And if that time is far</p>\r\n<p> </p>\r\n<p> </p>\r\n','My Moment ','','inherit','open','open','','585-revision-v1','','','2014-08-20 16:24:37','2014-08-20 16:24:37','',585,'http://www.monicarenata.com/585-revision-v1/',0,'revision','',0),(590,1,'2014-08-20 16:28:17','2014-08-20 16:28:17','\r\n<p>Partial clouds in the sky</p>\r\n<p>The light still cannot come through</p>\r\n<p> </p>\r\n<p>Distracted by thoughts</p>\r\n<p>In which I thought I knew</p>\r\n<p> </p>\r\n<p>Time goes by so slowly</p>\r\n<p>But the seconds pass with a rapid speed</p>\r\n<p> </p>\r\n<p>Contemplating my own purpose</p>\r\n<p>A task which seems to take an eternity</p>\r\n<p> </p>\r\n<p>Gazing at the beautiful sky</p>\r\n<p>Until that sky is filled with stars</p>\r\n<p> </p>\r\n<p>Wondering when my time will come</p>\r\n<p>And if that time is far</p>\r\n<p> </p>\r\n<p> </p>\r\n','My Moment ','','inherit','open','open','','585-revision-v1','','','2014-08-20 16:28:17','2014-08-20 16:28:17','',585,'http://www.monicarenata.com/585-revision-v1/',0,'revision','',0),(589,1,'2014-08-20 16:24:46','2014-08-20 16:24:46','<dl id=\"foter-photo-figure\" class=\"wp-caption foter-photo aligncenter\" style=\"width: 600px; color: #888; position: relative; font-size: 11px; font-family: Arial, Helvetica, sans-serif; overflow: hidden; zoom: 1;padding:4px;border: 1px solid #DDDDDD;border-radius: 3px 3px 3px 3px;\">\r\n<dt class=\"wp-caption-dt\"><img class=\"foter-photo mceItem\" src=\"http://www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg\" alt=\"Road and Sky\" title=\"Road and Sky\" style=\"border:none;padding:0;display:block; width:100%;\"></dt>\r\n<dd class=\"wp-caption-dd\" style=\"padding:0;margin:0;\"><span style=\"display: block; float: right;\"><a href=\"https://www.flickr.com/photos/dotdoubledot/1434514771/\">sandy.redding</a> / <a href=\"http://foter.com\">Foter</a> / <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)</a></span></dd>\r\n</dl>\r\n<p>Partial clouds in the sky</p>\r\n<p>The light still cannot come through</p>\r\n<p> </p>\r\n<p>Distracted by thoughts</p>\r\n<p>In which I thought I knew</p>\r\n<p> </p>\r\n<p>Time goes by so slowly</p>\r\n<p>But the seconds pass with a rapid speed</p>\r\n<p> </p>\r\n<p>Contemplating my own purpose</p>\r\n<p>A task which seems to take an eternity</p>\r\n<p> </p>\r\n<p>Gazing at the beautiful sky</p>\r\n<p>Until that sky is filled with stars</p>\r\n<p> </p>\r\n<p>Wondering when my time will come</p>\r\n<p>And if that time is far</p>\r\n<p> </p>\r\n<p> </p>\r\n','My Moment ','','inherit','open','open','','585-revision-v1','','','2014-08-20 16:24:46','2014-08-20 16:24:46','',585,'http://www.monicarenata.com/585-revision-v1/',0,'revision','',0),(593,1,'2014-08-22 18:54:36','2014-08-22 18:54:36','<blockquote>\r\n<p style=\"text-align: center;\"><em>I may not be the best at everything, but I will certainly put my best foot forward every time. An adamant believer of daily self-improvement, I strive for excellence in all that I do. Whether it is in my current profession or the writing world, I try to give everything my all. </em></p>\r\n<hr />\r\n<p> </p>\r\n</blockquote>\r\n<p style=\"text-align: left;\">My name is Monica and I am a 26 years old.... I know, I seem a little old right..lol. Who would have thought that at this age, I would be doing what I only dreamed of doing. Well I am close anyways..Lol. At this age, I feel like I have accomplished a lot. I went to college and earned my degree. I even went back to obtain my MBA... and earned that as well by the age of 24. It seems like I am so young yet so old........ Do you ever feel this way? Do your accomplishments make you feel older than what you really are??</p>\r\n<p style=\"text-align: left;\"> Throughout the course of this Blog, I will try to post very frequently. I will post poems, thoughts, or whatever crosses my mind. I am the type of person who holds back when it comes to my feelings but I write everything down. A friend of mines went through my poetry collection recently and asked me why I never shared. Truth is, I was always afraid to do so. I was always afraid to tell others how I felt. But I guess we have to get over fears sooner or later, right? Sometimes we dwell so much on the negative in life.... and forget to appreciate the positive.......Just a random thought..Lol.</p>\r\n<p style=\"text-align: left;\"> Well anyways, this is a reflection of my world! Welcome!!!</p>\r\n<p style=\"text-align: left;\"><em><strong>Monica Renata </strong></em></p>\r\n<p> </p>\r\n','About Me','','inherit','open','open','','573-revision-v1','','','2014-08-22 18:54:36','2014-08-22 18:54:36','',573,'http://www.monicarenata.com/573-revision-v1/',0,'revision','',0),(596,1,'2014-08-26 13:56:27','2014-08-26 13:56:27','<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<p class=\"text\">A book about making a difference in the world by starting with yourself. A must read.. </p> <a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-title\"> <h4>Keyword: Love</h4> </a>\n<p class=\"text\">A collection of love poems and thoughts. </p> <a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-title\"> <h4>Keyword: Inner Strength </h4> </a>\n<p class=\"text\">A collection of motivation poems and thoughts. </p> <a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"more-button\">Buy the Book </a>','The Rose\'s Thorn','','publish','open','open','','the-roses-thorn','','','2014-08-26 14:28:25','2014-08-26 14:28:25','',0,'http://www.monicarenata.com/?p=596',0,'post','',2),(600,1,'2014-08-26 13:55:07','2014-08-26 13:55:07','<h4>The Awkward Butterfly</h4>\n<a href=\"#\" class=\"more-button\">Start Editing </a>\n\n<h4>Loads of Icons</h4>\n<p class=\"text\">This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.</p> <a href=\"#\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<h1>The Rose's Thorn</h1>\n\n<h3></h3>\n<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','','','inherit','open','open','','596-revision-v1','','','2014-08-26 13:55:07','2014-08-26 13:55:07','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(599,1,'2014-08-26 13:51:57','2014-08-26 13:51:57','<h4>Editable Home Page</h4>\n<p class=\"text\">You can edit this home page using our free, drag and drop Page Builder, or simply disable it to fall back to a standard blog. It\'s a powerful page building experience.</p> <a href=\"#\" class=\"more-button\">Start Editing </a>\n\n<h4>Loads of Icons</h4>\n<p class=\"text\">This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.</p> <a href=\"#\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<h1>This Is A Headline Widget</h1>\n\n<h3>You can customize it and put it where ever you want</h3>\n<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','','','inherit','open','open','','596-revision-v1','','','2014-08-26 13:51:57','2014-08-26 13:51:57','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(598,1,'2014-08-26 13:49:57','2014-08-26 13:49:57','<h3 class=\"widget-title\">The Rose’s Thorn</h3> A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms\nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n<a href=\"http://www.monicarenata.com/my-moment/\" title=\"My Moment \" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg?resize=200%2C200\" alt=\"My Moment \" /></a>\n\n<a href=\"http://www.monicarenata.com/about-me/\" title=\"About Me\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"About Me\" /></a>\n\n<a href=\"http://www.monicarenata.com/time-how-much-do-you-really-have/\" title=\"Time: How much do you really have?\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"Time: How much do you really have?\" /></a>\n\n<a href=\"http://www.monicarenata.com/sadness-is-born/\" title=\"Sadness is Born\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"Sadness is Born\" /></a>','','','inherit','open','open','','596-revision-v1','','','2014-08-26 13:49:57','2014-08-26 13:49:57','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(597,1,'2014-08-26 13:49:47','2014-08-26 13:49:47','<h3 class=\"widget-title\">The Rose’s Thorn</h3> A flower that blooms\nSo beautifully red\nSo catching to the eye\n\nTo reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes\n\nPricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget\n\nIn beauty there is so much pain\nPain which so many others can\'t see\n\nA flower blooms\nIt catches our eyes\nYet we are too blind to see\n\nThe world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do\n\n<h3 class=\"widget-title\">Top Posts & Pages</h3>\n\n<a href=\"http://www.monicarenata.com/my-moment/\" title=\"My Moment \" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://i2.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg?resize=200%2C200\" alt=\"My Moment \" /></a>\n\n<a href=\"http://www.monicarenata.com/about-me/\" title=\"About Me\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"About Me\" /></a>\n\n<a href=\"http://www.monicarenata.com/time-how-much-do-you-really-have/\" title=\"Time: How much do you really have?\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"Time: How much do you really have?\" /></a>\n\n<a href=\"http://www.monicarenata.com/sadness-is-born/\" title=\"Sadness is Born\" class=\"bump-view\" data-bump-view=\"tp\"><img src=\"http://1.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=96&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&r=G\" alt=\"Sadness is Born\" /></a>','','','inherit','open','open','','596-revision-v1','','','2014-08-26 13:49:47','2014-08-26 13:49:47','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(601,1,'2014-08-26 13:55:57','2014-08-26 13:55:57','<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Start Editing </a>\n\n<h4>Loads of Icons</h4>\n<p class=\"text\">This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.</p> <a href=\"#\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<h1>The Rose's Thorn</h1>\n\n<h3></h3>\n<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','','','inherit','open','open','','596-revision-v1','','','2014-08-26 13:55:57','2014-08-26 13:55:57','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(602,1,'2014-08-26 14:00:09','2014-08-26 14:00:09','<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Start Editing </a>\n\n<h4>Loads of Icons</h4>\n<p class=\"text\">This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.</p> <a href=\"#\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<h1>The Rose's Thorn</h1>\n\n<h3></h3>\n<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','The Rose\'s Thorn','','inherit','open','open','','596-revision-v1','','','2014-08-26 14:00:09','2014-08-26 14:00:09','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(603,1,'2014-08-26 14:01:00','2014-08-26 14:01:00','<h1>The Rose's Thorn</h1>\n\n<h3></h3>\n<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Start Editing </a>\n\n<h4>Loads of Icons</h4>\n<p class=\"text\">This widget uses FontAwesome - giving you hundreds of icons. Or you could disable the icon and use your own image image. Great for testimonials.</p> <a href=\"#\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','The Rose\'s Thorn','','inherit','open','open','','596-revision-v1','','','2014-08-26 14:01:00','2014-08-26 14:01:00','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(604,1,'2014-08-26 14:02:51','2014-08-26 14:02:51','<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Start Editing </a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-title\"> <h4>Keyword: Love</h4> </a>\n<p class=\"text\">Read More</p> <a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"more-button\">Example Button </a>\n\n<h4>Saves You Time</h4>\n<p class=\"text\">Building your pages using a drag and drop page builder is a great experience that will save you time. Time is valuable. Don\'t waste it.</p> <a href=\"#\" class=\"more-button\">Test Button </a>\n\n<p>There are a lot of widgets bundled with Page Builder. You can use them to bring your pages to life.</p>','The Rose\'s Thorn','','inherit','open','open','','596-revision-v1','','','2014-08-26 14:02:51','2014-08-26 14:02:51','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(605,1,'2014-08-26 14:05:34','2014-08-26 14:05:34','<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-title\"> <h4>Keyword: Love</h4> </a>\n<p class=\"text\">Read More</p> <a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-title\"> <h4>Keyword: Inner Strength </h4> </a>\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"more-button\">Buy the Book </a>','The Rose\'s Thorn','','inherit','open','open','','596-revision-v1','','','2014-08-26 14:05:34','2014-08-26 14:05:34','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(606,1,'2014-08-26 14:07:13','2014-08-26 14:07:13','<h3 class=\"widget-title\">The Rose’s Thorn</h3> <p>A flower that blooms\nSo beautifully red\nSo catching to the eye</p>\n<p>To reach to grasp this natural wonder\nWhich is protected by what we forget to see with our eyes</p>\n<p>Pricked and pain goes flowing through each ounce of our flesh\nForgotten beauty replaced with pain\nBlood touches the dirt and now our minds cannot forget</p>\n<p>In beauty there is so much pain\nPain which so many others can\'t see</p>\n<p>A flower blooms\nIt catches our eyes\nYet we are too blind to see</p>\n<p>The world is indeed a beautiful place\nAnd beautiful you are too\nBut sometimes you have to protect yourself\nFrom what others may one day do</p>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"link-title\"> <h4>The Awkward Butterfly</h4> </a>\n<p class=\"text\">A book about making a difference in the world by starting with yourself. A must read.. </p> <a href=\"http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"link-title\"> <h4>Keyword: Love</h4> </a>\n<p class=\"text\">A collection of love poems and thoughts. </p> <a href=\"http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211\" class=\"more-button\">Buy The Book </a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-icon\">\n\n</a>\n\n<a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"link-title\"> <h4>Keyword: Inner Strength </h4> </a>\n<p class=\"text\">A collection of motivation poems and thoughts. </p> <a href=\"http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2\" class=\"more-button\">Buy the Book </a>','The Rose\'s Thorn','','inherit','open','open','','596-revision-v1','','','2014-08-26 14:07:13','2014-08-26 14:07:13','',596,'http://www.monicarenata.com/596-revision-v1/',0,'revision','',0),(607,1,'2014-08-26 18:48:33','0000-00-00 00:00:00','<h3 class=\"widget-title\">Example!!</h3><a href=\'http://www.monicarenata.com/category/accomplishments/\' class=\'tag-link-9\' title=\'1 topic\' style=\'font-size: 8pt;\'>accomplishments</a>\n<a href=\'http://www.monicarenata.com/category/appreciation/\' class=\'tag-link-23\' title=\'4 topics\' style=\'font-size: 10.533936651584pt;\'>appreciation</a>\n<a href=\'http://www.monicarenata.com/category/beautiful/\' class=\'tag-link-18\' title=\'4 topics\' style=\'font-size: 10.533936651584pt;\'>beautiful</a>\n<a href=\'http://www.monicarenata.com/category/beauty/\' class=\'tag-link-26\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>beauty</a>\n<a href=\'http://www.monicarenata.com/category/beauty-is-skin-deep/\' class=\'tag-link-32\' title=\'1 topic\' style=\'font-size: 8pt;\'>beauty is skin deep</a>\n<a href=\'http://www.monicarenata.com/category/believing/\' class=\'tag-link-41\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>believing</a>\n<a href=\'http://www.monicarenata.com/category/chance/\' class=\'tag-link-47\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>chance</a>\n<a href=\'http://www.monicarenata.com/category/disappointments/\' class=\'tag-link-42\' title=\'1 topic\' style=\'font-size: 8pt;\'>disappointments</a>\n<a href=\'http://www.monicarenata.com/category/dont-give-up/\' class=\'tag-link-14\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>don\'t give up</a>\n<a href=\'http://www.monicarenata.com/category/emotion/\' class=\'tag-link-40\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>emotion</a>\n<a href=\'http://www.monicarenata.com/category/emotions/\' class=\'tag-link-24\' title=\'1 topic\' style=\'font-size: 8pt;\'>emotions</a>\n<a href=\'http://www.monicarenata.com/category/feelings/\' class=\'tag-link-15\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>feelings</a>\n<a href=\'http://www.monicarenata.com/category/flowers/\' class=\'tag-link-22\' title=\'1 topic\' style=\'font-size: 8pt;\'>flowers</a>\n<a href=\'http://www.monicarenata.com/category/future/\' class=\'tag-link-48\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>future</a>\n<a href=\'http://www.monicarenata.com/category/girls/\' class=\'tag-link-34\' title=\'1 topic\' style=\'font-size: 8pt;\'>girls</a>\n<a href=\'http://www.monicarenata.com/category/grandpa/\' class=\'tag-link-36\' title=\'1 topic\' style=\'font-size: 8pt;\'>grandpa</a>\n<a href=\'http://www.monicarenata.com/category/grandparents/\' class=\'tag-link-38\' title=\'1 topic\' style=\'font-size: 8pt;\'>grandparents</a>\n<a href=\'http://www.monicarenata.com/category/growth/\' class=\'tag-link-2\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>growth</a>\n<a href=\'http://www.monicarenata.com/category/heart/\' class=\'tag-link-19\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>heart</a>\n<a href=\'http://www.monicarenata.com/category/heartbreak/\' class=\'tag-link-25\' title=\'1 topic\' style=\'font-size: 8pt;\'>heartbreak</a>\n<a href=\'http://www.monicarenata.com/category/inside/\' class=\'tag-link-33\' title=\'1 topic\' style=\'font-size: 8pt;\'>inside</a>\n<a href=\'http://www.monicarenata.com/category/inspiration/\' class=\'tag-link-12\' title=\'1 topic\' style=\'font-size: 8pt;\'>inspiration</a>\n<a href=\'http://www.monicarenata.com/category/kindness/\' class=\'tag-link-39\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>kindness</a>\n<a href=\'http://www.monicarenata.com/category/kiss/\' class=\'tag-link-17\' title=\'1 topic\' style=\'font-size: 8pt;\'>kiss</a>\n<a href=\'http://www.monicarenata.com/category/learning/\' class=\'tag-link-21\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>learning</a>\n<a href=\'http://www.monicarenata.com/category/life/\' class=\'tag-link-27\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>life</a>\n<a href=\'http://www.monicarenata.com/category/live/\' class=\'tag-link-46\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>Live</a>\n<a href=\'http://www.monicarenata.com/category/living/\' class=\'tag-link-28\' title=\'1 topic\' style=\'font-size: 8pt;\'>living</a>\n<a href=\'http://www.monicarenata.com/category/looking-within/\' class=\'tag-link-31\' title=\'1 topic\' style=\'font-size: 8pt;\'>looking within</a>\n<a href=\'http://www.monicarenata.com/category/love/\' class=\'tag-link-3\' title=\'11 topics\' style=\'font-size: 12.941176470588pt;\'>love</a>\n<a href=\'http://www.monicarenata.com/category/monicarenata/\' class=\'tag-link-5\' title=\'13 topics\' style=\'font-size: 13.384615384615pt;\'>MonicaRenata</a>\n<a href=\'http://www.monicarenata.com/category/motivation/\' class=\'tag-link-13\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>motivation</a>\n<a href=\'http://www.monicarenata.com/category/never-give-up/\' class=\'tag-link-10\' title=\'1 topic\' style=\'font-size: 8pt;\'>never give up</a>\n<a href=\'http://www.monicarenata.com/category/poem/\' class=\'tag-link-11\' title=\'7 topics\' style=\'font-size: 11.800904977376pt;\'>poem</a>\n<a href=\'http://www.monicarenata.com/category/poems/\' class=\'tag-link-7\' title=\'1 topic\' style=\'font-size: 8pt;\'>poems</a>\n<a href=\'http://www.monicarenata.com/category/poetry/\' class=\'tag-link-6\' title=\'11 topics\' style=\'font-size: 12.941176470588pt;\'>poetry</a>\n<a href=\'http://www.monicarenata.com/category/pretty/\' class=\'tag-link-20\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>pretty</a>\n<a href=\'http://www.monicarenata.com/category/redefined/\' class=\'tag-link-35\' title=\'1 topic\' style=\'font-size: 8pt;\'>redefined</a>\n<a href=\'http://www.monicarenata.com/category/relationships/\' class=\'tag-link-16\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>relationships</a>\n<a href=\'http://www.monicarenata.com/category/revenge/\' class=\'tag-link-4\' title=\'1 topic\' style=\'font-size: 8pt;\'>Revenge</a>\n<a href=\'http://www.monicarenata.com/category/success/\' class=\'tag-link-37\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>success</a>\n<a href=\'http://www.monicarenata.com/category/try/\' class=\'tag-link-30\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>try</a>\n<a href=\'http://www.monicarenata.com/category/uncategorized/\' class=\'tag-link-1\' title=\'326 topics\' style=\'font-size: 22pt;\'>Uncategorized</a>\n<a href=\'http://www.monicarenata.com/category/work/\' class=\'tag-link-8\' title=\'1 topic\' style=\'font-size: 8pt;\'>work</a>\n<a href=\'http://www.monicarenata.com/category/writing/\' class=\'tag-link-29\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>writing</a>','','','draft','open','open','','','','','2014-08-26 18:48:35','2014-08-26 18:48:35','',0,'http://www.monicarenata.com/?page_id=607',0,'page','',0),(608,1,'2014-08-26 18:48:35','2014-08-26 18:48:35','<h3 class=\"widget-title\">Example!!</h3><a href=\'http://www.monicarenata.com/category/accomplishments/\' class=\'tag-link-9\' title=\'1 topic\' style=\'font-size: 8pt;\'>accomplishments</a>\n<a href=\'http://www.monicarenata.com/category/appreciation/\' class=\'tag-link-23\' title=\'4 topics\' style=\'font-size: 10.533936651584pt;\'>appreciation</a>\n<a href=\'http://www.monicarenata.com/category/beautiful/\' class=\'tag-link-18\' title=\'4 topics\' style=\'font-size: 10.533936651584pt;\'>beautiful</a>\n<a href=\'http://www.monicarenata.com/category/beauty/\' class=\'tag-link-26\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>beauty</a>\n<a href=\'http://www.monicarenata.com/category/beauty-is-skin-deep/\' class=\'tag-link-32\' title=\'1 topic\' style=\'font-size: 8pt;\'>beauty is skin deep</a>\n<a href=\'http://www.monicarenata.com/category/believing/\' class=\'tag-link-41\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>believing</a>\n<a href=\'http://www.monicarenata.com/category/chance/\' class=\'tag-link-47\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>chance</a>\n<a href=\'http://www.monicarenata.com/category/disappointments/\' class=\'tag-link-42\' title=\'1 topic\' style=\'font-size: 8pt;\'>disappointments</a>\n<a href=\'http://www.monicarenata.com/category/dont-give-up/\' class=\'tag-link-14\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>don\'t give up</a>\n<a href=\'http://www.monicarenata.com/category/emotion/\' class=\'tag-link-40\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>emotion</a>\n<a href=\'http://www.monicarenata.com/category/emotions/\' class=\'tag-link-24\' title=\'1 topic\' style=\'font-size: 8pt;\'>emotions</a>\n<a href=\'http://www.monicarenata.com/category/feelings/\' class=\'tag-link-15\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>feelings</a>\n<a href=\'http://www.monicarenata.com/category/flowers/\' class=\'tag-link-22\' title=\'1 topic\' style=\'font-size: 8pt;\'>flowers</a>\n<a href=\'http://www.monicarenata.com/category/future/\' class=\'tag-link-48\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>future</a>\n<a href=\'http://www.monicarenata.com/category/girls/\' class=\'tag-link-34\' title=\'1 topic\' style=\'font-size: 8pt;\'>girls</a>\n<a href=\'http://www.monicarenata.com/category/grandpa/\' class=\'tag-link-36\' title=\'1 topic\' style=\'font-size: 8pt;\'>grandpa</a>\n<a href=\'http://www.monicarenata.com/category/grandparents/\' class=\'tag-link-38\' title=\'1 topic\' style=\'font-size: 8pt;\'>grandparents</a>\n<a href=\'http://www.monicarenata.com/category/growth/\' class=\'tag-link-2\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>growth</a>\n<a href=\'http://www.monicarenata.com/category/heart/\' class=\'tag-link-19\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>heart</a>\n<a href=\'http://www.monicarenata.com/category/heartbreak/\' class=\'tag-link-25\' title=\'1 topic\' style=\'font-size: 8pt;\'>heartbreak</a>\n<a href=\'http://www.monicarenata.com/category/inside/\' class=\'tag-link-33\' title=\'1 topic\' style=\'font-size: 8pt;\'>inside</a>\n<a href=\'http://www.monicarenata.com/category/inspiration/\' class=\'tag-link-12\' title=\'1 topic\' style=\'font-size: 8pt;\'>inspiration</a>\n<a href=\'http://www.monicarenata.com/category/kindness/\' class=\'tag-link-39\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>kindness</a>\n<a href=\'http://www.monicarenata.com/category/kiss/\' class=\'tag-link-17\' title=\'1 topic\' style=\'font-size: 8pt;\'>kiss</a>\n<a href=\'http://www.monicarenata.com/category/learning/\' class=\'tag-link-21\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>learning</a>\n<a href=\'http://www.monicarenata.com/category/life/\' class=\'tag-link-27\' title=\'3 topics\' style=\'font-size: 9.9004524886878pt;\'>life</a>\n<a href=\'http://www.monicarenata.com/category/live/\' class=\'tag-link-46\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>Live</a>\n<a href=\'http://www.monicarenata.com/category/living/\' class=\'tag-link-28\' title=\'1 topic\' style=\'font-size: 8pt;\'>living</a>\n<a href=\'http://www.monicarenata.com/category/looking-within/\' class=\'tag-link-31\' title=\'1 topic\' style=\'font-size: 8pt;\'>looking within</a>\n<a href=\'http://www.monicarenata.com/category/love/\' class=\'tag-link-3\' title=\'11 topics\' style=\'font-size: 12.941176470588pt;\'>love</a>\n<a href=\'http://www.monicarenata.com/category/monicarenata/\' class=\'tag-link-5\' title=\'13 topics\' style=\'font-size: 13.384615384615pt;\'>MonicaRenata</a>\n<a href=\'http://www.monicarenata.com/category/motivation/\' class=\'tag-link-13\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>motivation</a>\n<a href=\'http://www.monicarenata.com/category/never-give-up/\' class=\'tag-link-10\' title=\'1 topic\' style=\'font-size: 8pt;\'>never give up</a>\n<a href=\'http://www.monicarenata.com/category/poem/\' class=\'tag-link-11\' title=\'7 topics\' style=\'font-size: 11.800904977376pt;\'>poem</a>\n<a href=\'http://www.monicarenata.com/category/poems/\' class=\'tag-link-7\' title=\'1 topic\' style=\'font-size: 8pt;\'>poems</a>\n<a href=\'http://www.monicarenata.com/category/poetry/\' class=\'tag-link-6\' title=\'11 topics\' style=\'font-size: 12.941176470588pt;\'>poetry</a>\n<a href=\'http://www.monicarenata.com/category/pretty/\' class=\'tag-link-20\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>pretty</a>\n<a href=\'http://www.monicarenata.com/category/redefined/\' class=\'tag-link-35\' title=\'1 topic\' style=\'font-size: 8pt;\'>redefined</a>\n<a href=\'http://www.monicarenata.com/category/relationships/\' class=\'tag-link-16\' title=\'2 topics\' style=\'font-size: 9.1402714932127pt;\'>relationships</a>\n<a href=\'http://www.monicarenata.com/category/revenge/\' class=\'tag-link-4\' title=\'1 topic\' style=\'font-size: 8pt;\'>Revenge</a>\n<a href=\'http://www.monicarenata.com/category/success/\' class=\'tag-link-37\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>success</a>\n<a href=\'http://www.monicarenata.com/category/try/\' class=\'tag-link-30\' title=\'5 topics\' style=\'font-size: 11.0407239819pt;\'>try</a>\n<a href=\'http://www.monicarenata.com/category/uncategorized/\' class=\'tag-link-1\' title=\'326 topics\' style=\'font-size: 22pt;\'>Uncategorized</a>\n<a href=\'http://www.monicarenata.com/category/work/\' class=\'tag-link-8\' title=\'1 topic\' style=\'font-size: 8pt;\'>work</a>\n<a href=\'http://www.monicarenata.com/category/writing/\' class=\'tag-link-29\' title=\'6 topics\' style=\'font-size: 11.484162895928pt;\'>writing</a>','','','inherit','open','open','','607-revision-v1','','','2014-08-26 18:48:35','2014-08-26 18:48:35','',607,'http://www.monicarenata.com/607-revision-v1/',0,'revision','',0),(611,1,'2014-08-28 13:50:10','2014-08-28 13:50:10','<p>Bubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies</p>\n<p>Oh how it is to feed you\nA lovely dish of distortion soup\nThat puts your mind at ease and your heart at bay\nThat’s tart and sweet and takes your doubts away</p>\n<p>Bubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies</p>\n<p>Poisoning the soul with every spoon\nYou watch your loved one consume till their belly is full\nKilling them slowly but you won’t speak\nBecause there are lies you wish to keep</p>','The Cauldron of Deceit','','publish','open','open','','the-cauldron-of-deceit','','','2014-08-28 13:50:11','2014-08-28 13:50:11','',0,'http://www.monicarenata.com/?p=611',0,'post','',4),(612,1,'2014-08-28 13:49:49','2014-08-28 13:49:49','<p>Bubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies</p>\n<p>Oh how it is to feed you\nA lovely dish of distortion soup\nThat puts your mind at ease and your heart at bay\nThat’s tart and sweet and takes your doubts away</p>\n<p>Bubbling cauldron of Devil’s brew\nEmotions stirred in with entangled truths\nServed on a dish that looks so divine\nA lovely dinner of truth mixed with lies</p>\n<p>Poisoning the soul with every spoon\nYou watch your loved one consume till their belly is full\nKilling them slowly but you won’t speak\nBecause there are lies you wish to keep</p>','The Cauldron of Deceit','','inherit','open','open','','611-revision-v1','','','2014-08-28 13:49:49','2014-08-28 13:49:49','',611,'http://www.monicarenata.com/611-revision-v1/',0,'revision','',0),(613,1,'2014-08-31 18:29:51','2014-08-31 18:29:51','<p>I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue</p>\n<p>Tears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died</p>\n<p>I try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears</p>\n<p>The sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste</p>\n<p>I try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears</p>','I Try To Write a Happy Poem','','publish','open','open','','i-try-to-write-a-happy-poem','','','2014-08-31 18:29:51','2014-08-31 18:29:51','',0,'http://www.monicarenata.com/?p=613',0,'post','',0),(614,1,'2014-08-31 18:28:55','2014-08-31 18:28:55','','crying-writer','','inherit','open','open','','crying-writer','','','2014-08-31 18:28:55','2014-08-31 18:28:55','',613,'http://www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg',0,'attachment','image/jpeg',0),(615,1,'2014-08-31 18:29:10','2014-08-31 18:29:10','I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue\n\nTears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died\n\nI try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears\n\nThe sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste\n\nI try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears','I Try To Write a Happy Poem','','inherit','open','open','','613-revision-v1','','','2014-08-31 18:29:10','2014-08-31 18:29:10','',613,'http://www.monicarenata.com/613-revision-v1/',0,'revision','',0),(616,1,'2014-08-31 18:29:29','2014-08-31 18:29:29','<p>I try to write a happy poem\nDespite all that I\'ve been through\nI try to write of the good times\nBut yet I feel so blue</p>\n<p>Tears are rolling down my cheeks\nYet I’m trying so hard not to cry\nI’m trying to put a smile on my face\nBut it feels like my heart has died</p>\n<p>I try to write a happy poem\nI think of things that made me laugh\nBut all those laughs were lies\nAnd that laughter is now replaced with tears</p>\n<p>The sun doesn\'t seem to shine\nThe rain won’t go away\nI’m a mold of my former self\nFood and drink I can no longer taste</p>\n<p>I try to write a happy poem\nBut I cannot write what I don’t feel\nSo instead I’ll write this little poem\nWhile I continue to drown in my tears</p>','I Try To Write a Happy Poem','','inherit','open','open','','613-revision-v1','','','2014-08-31 18:29:29','2014-08-31 18:29:29','',613,'http://www.monicarenata.com/613-revision-v1/',0,'revision','',0),(618,1,'2014-09-19 13:25:30','2014-09-19 13:25:30','Full Circle\r\nBy: Monica Renata\r\n\r\nBricks thrown\r\nHouse was built\r\n\r\nHeart shattered\r\nBut it beats still\r\n\r\nTaken advantage of\r\nA lesson learned\r\n\r\nHarsh words said\r\nBut never returned\r\n\r\nNegativity launched\r\nCatcher’s mitt full \r\n\r\nPasses by\r\nBut presence still known\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n\r\nNegativity thrown\r\nThen made into something great\r\n\r\nReplaced with positivity\r\nNow whose heart aches?\r\n\r\nSitting in a house\r\nWhile you sit alone\r\n\r\nLost everything\r\nWhile you were being so cold\r\n\r\nBricks thrown\r\nHouse was built\r\nBricks from your house that your hands built\r\n\r\nHeart shattered\r\nBut it beats still\r\nNo longer for you, it only beats for me as it forever will\r\n\r\nTaken advantage of\r\nA lesson learned\r\nCan’t even be mad because for my foolishness this I earned\r\n\r\nHarsh words said\r\nBut never returned\r\nSilence is better because I owe you no words\r\n\r\nPlease be Careful of what is thrown\r\nIt comes full circle\r\nThis we know\r\n','Full Circle','','inherit','open','open','','52-autosave-v1','','','2014-09-19 13:25:30','2014-09-19 13:25:30','',52,'http://www.monicarenata.com/52-autosave-v1/',0,'revision','',0),(621,1,'2014-10-01 14:00:33','2014-10-01 14:00:33','Holding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nTo wallow in hatred\r\nI decided to do no more\r\nInstead I put aside all my ill feelings\r\nAnd let love grow inside me once more\r\n \r\nEach morning I am sick\r\nAnd I think that the pain I cannot let go\r\nBut I remind myself of the life\r\nI want my secret to explore\r\n \r\nBeautiful beginnings\r\nA world not full of sin\r\nI want the best for my secret\r\nWhen it finally shows its face\r\n \r\nHolding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nSo instead I shall walk away\r\nAnd let hate be no more\r\nI shall let love grow inside of me\r\nAnd continue to grow as life goes on\r\n\r\n\r\n\"Let happiness consume your entire being and grow with each breath you take....\" - Monica Renata ','Secret','','publish','open','open','','secret','','','2014-10-01 14:00:33','2014-10-01 14:00:33','',0,'http://www.monicarenata.com/?p=621',0,'post','',3),(622,1,'2014-10-01 14:00:16','2014-10-01 14:00:16','Holding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nTo wallow in hatred\r\nI decided to do no more\r\nInstead I put aside all my ill feelings\r\nAnd let love grow inside me once more\r\n \r\nEach morning I am sick\r\nAnd I think that the pain I cannot let go\r\nBut I remind myself of the life\r\nI want my secret to explore\r\n \r\nBeautiful beginnings\r\nA world not full of sin\r\nI want the best for my secret\r\nWhen it finally shows its face\r\n \r\nHolding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nSo instead I shall walk away\r\nAnd let hate be no more\r\nI shall let love grow inside of me\r\nAnd continue to grow as life goes on\r\n\r\n\r\n\"Let happiness consume your entire being and grow with each breath you take....\" - Monica Renata ','Secret','','inherit','open','open','','621-revision-v1','','','2014-10-01 14:00:16','2014-10-01 14:00:16','',621,'http://www.monicarenata.com/621-revision-v1/',0,'revision','',0),(623,1,'2014-10-01 14:03:16','2014-10-01 14:03:16','Holding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nTo wallow in hatred\r\nI decided to do no more\r\nInstead I put aside all my ill feelings\r\nAnd let love grow inside me once more\r\n \r\nEach morning I am sick\r\nAnd I think that the pain I cannot let go\r\nBut I remind myself of the life\r\nI want my secret to explore\r\n \r\nBeautiful beginnings\r\nA world not full of sin\r\nI want the best for my secret\r\nWhen it finally shows its face\r\n \r\nHolding in a secret\r\nAfraid to testify\r\nFor my secret is a blessing\r\nBut not in your eyes\r\n \r\nSo instead I shall walk away\r\nAnd let hate be no more\r\nI shall let love grow inside of me\r\nAnd continue to grow as life goes on\r\n\r\n\r\n\"Let happiness consume your entire being and grow with each breath you take....\" - Monica Renata ','Secret','','inherit','open','open','','621-autosave-v1','','','2014-10-01 14:03:16','2014-10-01 14:03:16','',621,'http://www.monicarenata.com/621-autosave-v1/',0,'revision','',0),(625,1,'2014-10-01 14:15:15','2014-10-01 14:15:15','I write when I am happy...I write when I am sad. At the end of the day I enjoy writing and also encouraging others. We all go through rough patches in life, and that is okay. \r\n\r\nBut Welcome to my site, I hope you enjoy it. Access to my social sites are available on my main page. In addition, if you would like me to write about a certain topic, please tell me and I can try to make it happen. After all, the purpose of this site is to encourage others and also help them through hard times... I know that writing has helped me through hard times as well...But yeah......\r\n\r\n\r\n<blockquote> Fill yourself with happiness with each breath you take. Don\'t let the past determine what your future shall be. Smile throughout the stormiest weather and laugh even when you are in pain. Life is too beautiful to stress over things that last mere seconds in our lifetime....................Life is too short to be anything but happy.-Monica Renata </blockquote>\r\n\r\n...and if you are having a bad day remember this:\r\n\r\n<blockquote> At some point amidst your tears, you have to decide if these tears are worth anything. Are you crying a river just to cry a river? Or are you crying a river so you can travel further along into your future? - Monica Renata </blockquote>\r\n\r\n\r\n\r\nI really hope this page helps others. Feel free to contact me via comments or via email. I am a staunch believe in \"You never know who your words can touch\".\r\n\r\n-Monica Renata ','Connect With Me','','inherit','open','open','','2-revision-v1','','','2014-10-01 14:15:15','2014-10-01 14:15:15','',2,'http://www.monicarenata.com/2-revision-v1/',0,'revision','',0),(626,1,'2014-10-02 17:37:57','2014-10-02 17:37:57','Be Kind\r\nBy: Monica Renata\r\n\r\nWhen things aren’t going your way\r\nAnd when times are really hard\r\nThank God for the blessings you have received\r\nFor in due time there will be more\r\n\r\nWhen negativity surrounds you daily\r\nAnd it feels like you can’t get away\r\nDon’t let this day consume you\r\nFor tomorrow is another day\r\n\r\nHarsh words spoken\r\nMean gestures ensue\r\nIt seems like everyone wants to keep you from happiness\r\nBut you\r\n\r\nPunches thrown \r\nKicked when you are down\r\nJust get back up\r\nAnd don’t let them see you frown\r\n\r\nFor the world can be so many things\r\nIt can be full of good or full of bad\r\nBut the one thing that is reliant on you\r\nIs the behavior in which you had\r\n\r\nFor when life isn’t going your way\r\nThere are so many things you can do\r\nHowever if you act on genuine kindness\r\nYou’ll be surprised where that leads you to\r\n\r\nSo be kind to the mean spirited child\r\nBe kind to the angry friend\r\nBe kind to the girl who holds a grudge against you\r\nBe kind to those who’ve caused hurt and cloud your thoughts with sin\r\n\r\nFor life Is too short\r\nTo let hate consume your soul so deep\r\nSo instead be kind to others\r\nDespite their actions or words they speak\r\n','Be Kind','','publish','open','open','','be-kind','','','2014-10-02 17:37:57','2014-10-02 17:37:57','',0,'http://www.monicarenata.com/?p=626',0,'post','',2),(627,1,'2014-10-02 17:37:44','2014-10-02 17:37:44','Be Kind\r\nBy: Monica Renata\r\n\r\nWhen things aren’t going your way\r\nAnd when times are really hard\r\nThank God for the blessings you have received\r\nFor in due time there will be more\r\n\r\nWhen negativity surrounds you daily\r\nAnd it feels like you can’t get away\r\nDon’t let this day consume you\r\nFor tomorrow is another day\r\n\r\nHarsh words spoken\r\nMean gestures ensue\r\nIt seems like everyone wants to keep you from happiness\r\nBut you\r\n\r\nPunches thrown \r\nKicked when you are down\r\nJust get back up\r\nAnd don’t let them see you frown\r\n\r\nFor the world can be so many things\r\nIt can be full of good or full of bad\r\nBut the one thing that is reliant on you\r\nIs the behavior in which you had\r\n\r\nFor when life isn’t going your way\r\nThere are so many things you can do\r\nHowever if you act on genuine kindness\r\nYou’ll be surprised where that leads you to\r\n\r\nSo be kind to the mean spirited child\r\nBe kind to the angry friend\r\nBe kind to the girl who holds a grudge against you\r\nBe kind to those who’ve caused hurt and cloud your thoughts with sin\r\n\r\nFor life Is too short\r\nTo let hate consume your soul so deep\r\nSo instead be kind to others\r\nDespite their actions or words they speak\r\n','Be Kind','','inherit','open','open','','626-revision-v1','','','2014-10-02 17:37:44','2014-10-02 17:37:44','',626,'http://www.monicarenata.com/626-revision-v1/',0,'revision','',0),(628,1,'2014-10-03 14:15:09','2014-10-03 14:15:09','Just in Case\r\nBy: Monica Renata\r\n \r\nJust in case your sky isn\'t blue\r\nAnd a tear is rolling down from your eye\r\nI want you to know that I value you\r\nAnd you are really a good guy\r\n \r\nJust in case you think no one has your back\r\nAnd in the world you are so alone\r\nI want you to know you have a friend in me\r\nAnd I will be here through disagreements whether I’m right or wrong\r\n \r\nTo know you is a blessing\r\nA blessing which I don’t usually say\r\nBut I admire who you are as a person\r\nYou help me grow each day\r\n \r\nAnd despite the times we speak sparsely\r\nI hope you too agree\r\nThat we are great friends\r\nAnd I’m happy we were able to meet\r\n \r\nSo Just in case you feeling down today\r\nAnd you need a pick-me-up\r\nI want you to know I value your friendship\r\nAnd I couldn\'t have asked God for better luck\r\n \r\nTo know you Is to love you\r\nAnd I love you oh so well\r\nThanks for being a great friend\r\nFor I will forever be your great friend as well','Just In Case','','publish','open','open','','just-in-case','','','2014-10-03 14:15:09','2014-10-03 14:15:09','',0,'http://www.monicarenata.com/?p=628',0,'post','',1),(629,1,'2014-10-03 14:14:58','2014-10-03 14:14:58','Just in Case\r\nBy: Monica Renata\r\n \r\nJust in case your sky isn\'t blue\r\nAnd a tear is rolling down from your eye\r\nI want you to know that I value you\r\nAnd you are really a good guy\r\n \r\nJust in case you think no one has your back\r\nAnd in the world you are so alone\r\nI want you to know you have a friend in me\r\nAnd I will be here through disagreements whether I’m right or wrong\r\n \r\nTo know you is a blessing\r\nA blessing which I don’t usually say\r\nBut I admire who you are as a person\r\nYou help me grow each day\r\n \r\nAnd despite the times we speak sparsely\r\nI hope you too agree\r\nThat we are great friends\r\nAnd I’m happy we were able to meet\r\n \r\nSo Just in case you feeling down today\r\nAnd you need a pick-me-up\r\nI want you to know I value your friendship\r\nAnd I couldn\'t have asked God for better luck\r\n \r\nTo know you Is to love you\r\nAnd I love you oh so well\r\nThanks for being a great friend\r\nFor I will forever be your great friend as well','Just In Case','','inherit','open','open','','628-revision-v1','','','2014-10-03 14:14:58','2014-10-03 14:14:58','',628,'http://www.monicarenata.com/628-revision-v1/',0,'revision','',0),(630,1,'2014-10-06 14:40:25','2014-10-06 14:40:25','Day comes and goes and so does night\r\nYet you sit wondering why\r\nYou ponder on forgotten thoughts\r\nAnd search for clues with your eyes\r\n\r\nThinking you will find something\r\nThat is marvelously unique\r\nThinking that you will piece together the puzzle\r\nThat shows who I am and who I wish to be\r\n\r\nDay comes and goes and so does night\r\nYet I won’t leave your mind\r\nSeems like someone has a problem with me\r\nAnd it is not I\r\n\r\nSo look deep down\r\nAnd reevaluate yourself\r\nBecause the problem isn’t me\r\nMaybe, just maybe there is something you can’t seem to see...\r\n\r\nHate is a waste of time and effort\r\nIt does nothing for us both\r\nThat’s why I decided to let it go\r\nAnd let the love inside me grow\r\n\r\nFor life is too short for silly games\r\nIt is too short to not enjoy the laughs\r\nWhy waste time dwelling on something\r\nThat is so long ago in the past\r\n\r\nDay comes and goes and so does night\r\nYet I never wonder why\r\nI just keep moving forward in life\r\nBecause I refuse to let my happiness die\r\n\r\nTo be bothered I won’t let that be\r\nFor it is just a waste of time\r\nInstead I shall remain unbothered\r\nInstead of letting bitterness leave me blind\r\n\r\n<em>“Of all the things I have learned in life, I realized that hating someone does nothing. It only decreases your quality of life and fills your soul with rage…. And what does this solve?.... Just live life and love unconditionally. Don’t let pain eat away at you. Practice forgiveness and burdens will be lifted from your shoulders..”</em> –Monica Renata \r\n','Unbothered','','publish','open','open','','unbothered','','','2014-10-06 14:40:25','2014-10-06 14:40:25','',0,'http://www.monicarenata.com/?p=630',0,'post','',2),(631,1,'2014-10-06 14:39:43','2014-10-06 14:39:43','Day comes and goes and so does night\r\nYet you sit wondering why\r\nYou ponder on forgotten thoughts\r\nAnd search for clues with your eyes\r\n\r\nThinking you will find something\r\nThat is marvelously unique\r\nThinking that you will piece together the puzzle\r\nThat shows who I am and who I wish to be\r\n\r\nDay comes and goes and so does night\r\nYet I won’t leave your mind\r\nSeems like someone has a problem with me\r\nAnd it is not I\r\n\r\nSo look deep down\r\nAnd reevaluate yourself\r\nBecause the problem isn’t me\r\nMaybe, just maybe there is something you can’t seem to see...\r\n\r\nHate is a waste of time and effort\r\nIt does nothing for us both\r\nThat’s why I decided to let it go\r\nAnd let the love inside me grow\r\n\r\nFor life is too short for silly games\r\nIt is too short to not enjoy the laughs\r\nWhy waste time dwelling on something\r\nThat is so long ago in the past\r\n\r\nDay comes and goes and so does night\r\nYet I never wonder why\r\nI just keep moving forward in life\r\nBecause I refuse to let my happiness die\r\n\r\nTo be bothered I won’t let that be\r\nFor it is just a waste of time\r\nInstead I shall remain unbothered\r\nInstead of letting bitterness leave me blind\r\n\r\n<em>“Of all the things I have learned in life, I realized that hating someone does nothing. It only decreases your quality of life and fills your soul with rage…. And what does this solve?.... Just live life and love unconditionally. Don’t let pain eat away at you. Practice forgiveness and burdens will be lifted from your shoulders..”</em> –Monica Renata \r\n','','','inherit','open','open','','630-revision-v1','','','2014-10-06 14:39:43','2014-10-06 14:39:43','',630,'http://www.monicarenata.com/630-revision-v1/',0,'revision','',0),(632,1,'2014-10-06 14:40:15','2014-10-06 14:40:15','Day comes and goes and so does night\r\nYet you sit wondering why\r\nYou ponder on forgotten thoughts\r\nAnd search for clues with your eyes\r\n\r\nThinking you will find something\r\nThat is marvelously unique\r\nThinking that you will piece together the puzzle\r\nThat shows who I am and who I wish to be\r\n\r\nDay comes and goes and so does night\r\nYet I won’t leave your mind\r\nSeems like someone has a problem with me\r\nAnd it is not I\r\n\r\nSo look deep down\r\nAnd reevaluate yourself\r\nBecause the problem isn’t me\r\nMaybe, just maybe there is something you can’t seem to see...\r\n\r\nHate is a waste of time and effort\r\nIt does nothing for us both\r\nThat’s why I decided to let it go\r\nAnd let the love inside me grow\r\n\r\nFor life is too short for silly games\r\nIt is too short to not enjoy the laughs\r\nWhy waste time dwelling on something\r\nThat is so long ago in the past\r\n\r\nDay comes and goes and so does night\r\nYet I never wonder why\r\nI just keep moving forward in life\r\nBecause I refuse to let my happiness die\r\n\r\nTo be bothered I won’t let that be\r\nFor it is just a waste of time\r\nInstead I shall remain unbothered\r\nInstead of letting bitterness leave me blind\r\n\r\n<em>“Of all the things I have learned in life, I realized that hating someone does nothing. It only decreases your quality of life and fills your soul with rage…. And what does this solve?.... Just live life and love unconditionally. Don’t let pain eat away at you. Practice forgiveness and burdens will be lifted from your shoulders..”</em> –Monica Renata \r\n','Unbothered','','inherit','open','open','','630-revision-v1','','','2014-10-06 14:40:15','2014-10-06 14:40:15','',630,'http://www.monicarenata.com/630-revision-v1/',0,'revision','',0),(633,1,'2014-10-07 18:58:48','2014-10-07 18:58:48','I screamed it to the wind last night\r\nIt was carried on to you\r\nThree words that described every ounce of feeling\r\nI ever had for you\r\n\r\nThey left my lips so slowly\r\nAnd once they left me I was so cold\r\nBut I can’t deny the truth I feel\r\nFor those three words come from my soul\r\n\r\nA feeling that I never knew\r\nAnd wonder if I will feel again\r\nThree words I thought I would never utter\r\nYet now I say them silently in my head\r\n\r\nStarts with “I” \r\nAnd ends with “you”\r\nThose two I won’t deny\r\nBut the missing word is complicated and leaves my emotions tied\r\n\r\nI screamed it to the wind last night\r\nIt was carried on to you\r\nBut did you listen carefully?\r\nDid the words mean anything to you?\r\n\r\nThree words that came from my soul\r\nCame from my soul so deep\r\nTwo of the words are “I” and “you”\r\nAnd it describes the true feelings that before I could not see\r\n','Three Words','','publish','open','open','','three-words','','','2014-10-07 18:58:48','2014-10-07 18:58:48','',0,'http://www.monicarenata.com/?p=633',0,'post','',1),(634,1,'2014-10-07 18:58:48','2014-10-07 18:58:48','I screamed it to the wind last night\r\nIt was carried on to you\r\nThree words that described every ounce of feeling\r\nI ever had for you\r\n\r\nThey left my lips so slowly\r\nAnd once they left me I was so cold\r\nBut I can’t deny the truth I feel\r\nFor those three words come from my soul\r\n\r\nA feeling that I never knew\r\nAnd wonder if I will feel again\r\nThree words I thought I would never utter\r\nYet now I say them silently in my head\r\n\r\nStarts with “I” \r\nAnd ends with “you”\r\nThose two I won’t deny\r\nBut the missing word is complicated and leaves my emotions tied\r\n\r\nI screamed it to the wind last night\r\nIt was carried on to you\r\nBut did you listen carefully?\r\nDid the words mean anything to you?\r\n\r\nThree words that came from my soul\r\nCame from my soul so deep\r\nTwo of the words are “I” and “you”\r\nAnd it describes the true feelings that before I could not see\r\n','Three Words','','inherit','open','open','','633-revision-v1','','','2014-10-07 18:58:48','2014-10-07 18:58:48','',633,'http://www.monicarenata.com/633-revision-v1/',0,'revision','',0),(636,1,'2014-10-09 10:53:13','2014-10-09 10:53:13','To say it doesn’t bother me\r\nIs just a big plain lie\r\nFor when I sleep alone some nights\r\nI wake up soaked by tears I cried\r\n\r\nTo say it doesn’t bother me\r\nHelps me to cope\r\nSo I walk around smiling beautifully\r\nAnd cover my emotions with a cloak\r\n\r\nTo say it doesn’t bother me\r\nI wish that was the case\r\nBut instead I’ll fill my world with happiness\r\nAnd from this heartache I’ll try to escape\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<em>“At some point amidst your tears, you have to decide if these tears are worth anything. Are you crying a river just to cry a river? Or are you crying a river so you can travel further along into your future?\"</em> –Monica Renata\r\n','To Say It Doesn\'t Bother Me','','publish','open','open','','to-say-it-doesnt-bother-me','','','2014-10-09 10:53:13','2014-10-09 10:53:13','',0,'http://www.monicarenata.com/?p=636',0,'post','',0),(637,1,'2014-10-09 10:52:15','2014-10-09 10:52:15','To say it doesn’t bother me\r\nIs just a big plain lie\r\nFor when I sleep alone some nights\r\nI wake up soaked by tears I cried\r\n\r\nTo say it doesn’t bother me\r\nHelps me to cope\r\nSo I walk around smiling beautifully\r\nAnd cover my emotions with a cloak\r\n\r\nTo say it doesn’t bother me\r\nI wish that was the case\r\nBut instead I’ll fill my world with happiness\r\nAnd from this heartache I’ll try to escape\r\n\r\n\r\n\r\n<blockquote>“At some point amidst your tears, you have to decide if these tears are worth anything. Are you crying a river just to cry a river? Or are you crying a river so you can travel further along into your future?”</blockquote>\r\n\r\n –Monica Renata\r\n','To Say It Doesn\'t Bother Me','','inherit','open','open','','636-revision-v1','','','2014-10-09 10:52:15','2014-10-09 10:52:15','',636,'http://www.monicarenata.com/636-revision-v1/',0,'revision','',0),(638,1,'2014-10-09 10:52:56','2014-10-09 10:52:56','To say it doesn’t bother me\r\nIs just a big plain lie\r\nFor when I sleep alone some nights\r\nI wake up soaked by tears I cried\r\n\r\nTo say it doesn’t bother me\r\nHelps me to cope\r\nSo I walk around smiling beautifully\r\nAnd cover my emotions with a cloak\r\n\r\nTo say it doesn’t bother me\r\nI wish that was the case\r\nBut instead I’ll fill my world with happiness\r\nAnd from this heartache I’ll try to escape\r\n\r\n\r\n\r\n<em>“At some point amidst your tears, you have to decide if these tears are worth anything. Are you crying a river just to cry a river? Or are you crying a river so you can travel further along into your future?\"</em> –Monica Renata\r\n','To Say It Doesn\'t Bother Me','','inherit','open','open','','636-revision-v1','','','2014-10-09 10:52:56','2014-10-09 10:52:56','',636,'http://www.monicarenata.com/636-revision-v1/',0,'revision','',0),(639,1,'2014-10-09 14:32:45','2014-10-09 14:32:45','Every ounce of feeling\r\nGone\r\nNo quiver in my chest\r\n\r\nThe genuine smile I had\r\nGone\r\nThese days I tend to smile less\r\n\r\nTo be a human and not feel a thing\r\nAn empty little soul\r\n\r\nTo walk around and not believe a thing\r\nBecause of lies you were once told\r\n\r\nThe trust I had for others \r\nGone\r\nWhat is there to believe?\r\n\r\nThe person who I was before\r\nGone\r\nFor I am no longer who I use to be\r\n\r\n<em>“Sometimes life has a way of changing you for the good or the bad…….”</em> – Monica Renata \r\n','Gone','','publish','open','open','','gone','','','2014-10-09 14:32:45','2014-10-09 14:32:45','',0,'http://www.monicarenata.com/?p=639',0,'post','',0),(640,1,'2014-10-09 14:32:45','2014-10-09 14:32:45','Every ounce of feeling\r\nGone\r\nNo quiver in my chest\r\n\r\nThe genuine smile I had\r\nGone\r\nThese days I tend to smile less\r\n\r\nTo be a human and not feel a thing\r\nAn empty little soul\r\n\r\nTo walk around and not believe a thing\r\nBecause of lies you were once told\r\n\r\nThe trust I had for others \r\nGone\r\nWhat is there to believe?\r\n\r\nThe person who I was before\r\nGone\r\nFor I am no longer who I use to be\r\n\r\n<em>“Sometimes life has a way of changing you for the good or the bad…….”</em> – Monica Renata \r\n','Gone','','inherit','open','open','','639-revision-v1','','','2014-10-09 14:32:45','2014-10-09 14:32:45','',639,'http://www.monicarenata.com/639-revision-v1/',0,'revision','',0),(641,1,'2014-10-09 14:33:12','2014-10-09 14:33:12','Every ounce of feeling\r\nGone\r\nNo quiver in my chest\r\n\r\nThe genuine smile I had\r\nGone\r\nThese days I tend to smile less\r\n\r\nTo be a human and not feel a thing\r\nAn empty little soul\r\n\r\nTo walk around and not believe a thing\r\nBecause of lies you were once told\r\n\r\nThe trust I had for others \r\nGone\r\nWhat is there to believe?\r\n\r\nThe person who I was before\r\nGone\r\nFor I am no longer who I use to be\r\n\r\n<em>“Sometimes life has a way of changing you for the good or the bad…….”</em> – Monica Renata \r\n','Gone','','inherit','open','open','','639-autosave-v1','','','2014-10-09 14:33:12','2014-10-09 14:33:12','',639,'http://www.monicarenata.com/639-autosave-v1/',0,'revision','',0),(643,1,'2014-10-10 14:33:40','2014-10-10 14:33:40','Lessons of Past Yesterdays\r\nBy: Monica Renata \r\n\r\n\r\nI have loved\r\nI have laughed\r\nI have befriended\r\n\r\n\r\nI held love in the palm of my hand before\r\nI had the ability to crush it but I decided to let it grow\r\nLet it flourish and develop into something unimaginable\r\nSomething that would span decades and probably kiss eternity\r\n\r\n\r\nI nurtured it\r\nI valued it\r\nI spoke highly of it to others\r\n\r\n\r\nBut…..I never told IT how I truly felt\r\n\r\n\r\nI have lied\r\nI have doubted myself\r\nI have frowned\r\n\r\n\r\nI hid the love that was in the palm of my hands\r\nI was too embarrassed to let others and I see it\r\nInstead I let the love grow immensely inside \r\nYet I did not voice a word of my true feelings\r\n\r\n\r\nBut…… I wish I would have\r\n\r\n\r\nI have cried\r\nI have thought\r\nI have wished\r\n\r\n\r\nBut the truth is…\r\nSometimes no matter how much you want things to change they never will\r\nNever regret any part of your life\r\nNever be afraid to voice how you truly feel\r\n\r\n\r\nForgive freely \r\nAnd love fiercely \r\nNever neglect your heart\r\nNever miss a chance to tell someone you love them\r\n\r\n\r\nI have healed\r\nI have learned\r\nI am now better\r\n\r\n\r\nBut…At times I wish it wouldn\'t have taken this long to learn the lessons of my yesterdays….\r\n\r\n\r\n\r\n<em>“Sometimes the best lessons in life are those which have hurt you deeply.”</em> –Monica Renata\r\n','Lessons of Past Yesterdays','','publish','open','open','','lessons-of-past-yesterdays','','','2014-10-10 14:33:40','2014-10-10 14:33:40','',0,'http://www.monicarenata.com/?p=643',0,'post','',0),(644,1,'2014-10-10 14:33:02','2014-10-10 14:33:02','Lessons of Past Yesterdays\r\nBy: Monica Renata \r\n\r\n\r\nI have loved\r\nI have laughed\r\nI have befriended\r\n\r\nI held love in the palm of my hand before\r\nI had the ability to crush it but I decided to let it grow\r\nLet it flourish and develop into something unimaginable\r\nSomething that would span decades and probably kiss eternity\r\n\r\nI nurtured it\r\nI valued it\r\nI spoke highly of it to others\r\n\r\nBut…..I never told IT how I truly felt\r\n\r\nI have lied\r\nI have doubted myself\r\nI have frowned\r\n\r\nI hid the love that was in the palm of my hands\r\nI was too embarrassed to let others and I see it\r\nInstead I let the love grow immensely inside \r\nYet I did not voice a word of my true feelings\r\n\r\nBut…… I wish I would have\r\n\r\nI have cried\r\nI have thought\r\nI have wished\r\n\r\nBut the truth is…\r\nSometimes no matter how much you want things to change they never will\r\nNever regret any part of your life\r\nNever be afraid to voice how you truly feel\r\n\r\nForgive freely \r\nAnd love fiercely \r\nNever neglect your heart\r\nNever miss a chance to tell someone you love them\r\n\r\nI have healed\r\nI have learned\r\nI am now better\r\n\r\nBut…At times I wish it wouldn\'t have taken this long to learn the lessons of my yesterdays….\r\n\r\n<em>“Sometimes the best lessons in life are those which have hurt you deeply.”</em> –Monica Renata\r\n','Lessons of Past Yesterdays','','inherit','open','open','','643-revision-v1','','','2014-10-10 14:33:02','2014-10-10 14:33:02','',643,'http://www.monicarenata.com/643-revision-v1/',0,'revision','',0),(668,1,'2014-10-20 12:49:27','2014-10-20 17:49:27','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\n<br> \r\n<br>\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n<br>\r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n<br> \r\n<br>\r\n\r\n\r\n<strong><em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em></strong> –Monica Renata ','Spoken Words','','publish','open','open','','spoken-words','','','2014-10-20 12:49:27','2014-10-20 17:49:27','',0,'http://www.monicarenata.com/?p=668',0,'post','',2),(646,1,'2014-10-10 18:06:23','2014-10-10 18:06:23','Today may seem like the many days that you have seen before\r\nBut it doesn\'t have to be that way\r\nToday can be a day you soar\r\n\r\nFor life is dependent on many things\r\nAnd much is dependent on you\r\n\r\nSo stop doubting yourself and LIVE\r\nAnd you will see all that you can do\r\n\r\nToday may seem like yesterday\r\nBut it isn’t quite the same\r\nFor yesterday is forgotten and today is another day\r\n\r\nThe struggles you had in the past\r\nCan mold you into a better person today\r\n\r\nThe tears of your frustration\r\nCan turn into that sea of confidence you need\r\n\r\nToday may seem like so many days\r\nBut the choice is up to you\r\nJust believe in yourself fully and I shall continue to believe in you\r\n\r\n<em>“The only thing separating today from yesterday is the YOU! Venture into life freely and adapt to each new day..”</em> - Monica Renata \r\n','Todays and Yesterdays','','publish','open','open','','todays-and-yesterdays','','','2014-10-10 18:06:23','2014-10-10 18:06:23','',0,'http://www.monicarenata.com/?p=646',0,'post','',0),(647,1,'2014-10-10 18:06:10','2014-10-10 18:06:10','Today may seem like the many days that you have seen before\r\nBut it doesn\'t have to be that way\r\nToday can be a day you soar\r\n\r\nFor life is dependent on many things\r\nAnd much is dependent on you\r\n\r\nSo stop doubting yourself and LIVE\r\nAnd you will see all that you can do\r\n\r\nToday may seem like yesterday\r\nBut it isn’t quite the same\r\nFor yesterday is forgotten and today is another day\r\n\r\nThe struggles you had in the past\r\nCan mold you into a better person today\r\n\r\nThe tears of your frustration\r\nCan turn into that sea of confidence you need\r\n\r\nToday may seem like so many days\r\nBut the choice is up to you\r\nJust believe in yourself fully and I shall continue to believe in you\r\n\r\n<em>“The only thing separating today from yesterday is the YOU! Venture into life freely and adapt to each new day..”</em> - Monica Renata \r\n','Todays and Yesterdays','','inherit','open','open','','646-revision-v1','','','2014-10-10 18:06:10','2014-10-10 18:06:10','',646,'http://www.monicarenata.com/646-revision-v1/',0,'revision','',0),(648,1,'2014-10-13 13:24:56','2014-10-13 13:24:56','Sunday morning\r\nOn my knees\r\nPraying for forgiveness\r\nAsking for clarity\r\nWondering, “Why me?”\r\nThinking I can’t do this anymore\r\nLooking up to God\r\nAs my knees become soar\r\n\r\nSunday morning\r\nTears in my eyes\r\nI pray for my family\r\nI pray for my life\r\nHoping things get better\r\nFor I hope they do\r\nKnowing deep down that God\r\nHe will pull me through\r\n\r\nSunday morning\r\nI let my tears dry\r\nI accept the reality of my life\r\nAs time slowly passes by\r\nFor I hope things get better\r\nBut I won’t complain\r\nFor this is the life\r\nThat for me God has laid\r\n\r\n<em>“I am a firm believer that if God didn’t think you could handle the situation, he never would have put you through it. Maybe some situations need to occur so that you can grow and learn new lessons in life.”</em> –Monica Renata\r\n','Sunday Morning','','publish','open','open','','sunday-morning','','','2014-10-13 13:24:56','2014-10-13 13:24:56','',0,'http://www.monicarenata.com/?p=648',0,'post','',0),(649,1,'2014-10-13 13:24:56','2014-10-13 13:24:56','Sunday morning\r\nOn my knees\r\nPraying for forgiveness\r\nAsking for clarity\r\nWondering, “Why me?”\r\nThinking I can’t do this anymore\r\nLooking up to God\r\nAs my knees become soar\r\n\r\nSunday morning\r\nTears in my eyes\r\nI pray for my family\r\nI pray for my life\r\nHoping things get better\r\nFor I hope they do\r\nKnowing deep down that God\r\nHe will pull me through\r\n\r\nSunday morning\r\nI let my tears dry\r\nI accept the reality of my life\r\nAs time slowly passes by\r\nFor I hope things get better\r\nBut I won’t complain\r\nFor this is the life\r\nThat for me God has laid\r\n\r\n<em>“I am a firm believer that if God didn’t think you could handle the situation, he never would have put you through it. Maybe some situations need to occur so that you can grow and learn new lessons in life.”</em> –Monica Renata\r\n','Sunday Morning','','inherit','open','open','','648-revision-v1','','','2014-10-13 13:24:56','2014-10-13 13:24:56','',648,'http://www.monicarenata.com/648-revision-v1/',0,'revision','',0);
INSERT INTO `wp_xwml_posts` VALUES (682,1,'2014-10-22 20:19:49','2014-10-23 01:19:49','As I see you laying in my lap\r\nI ponder thoughts while time elapse\r\n\r\n<br> <br>\r\n\r\nAn individual who doesn’t know the joy he brings\r\nThe one who I would say “yes” if he gave me a ring\r\n\r\n<br> <br>\r\n\r\nAs I see you laying in my lap\r\nI thank the Lord that here is where you are at\r\n\r\n<br> <br>\r\n\r\nFor the past didn’t allow us to see\r\nWhat we both were destined to be\r\n\r\n<br> <br>\r\n\r\nLike a boomerang on a lovely day\r\nLike the ying to my yang\r\nHonest from day one\r\nRespected situations despite the love your heart sang\r\n\r\n<br> <br>\r\n\r\nAs I see you laying in my lap\r\nI know that you have my back\r\n\r\n<br> <br>\r\n\r\nI thank you for loving me\r\nAnd I shall love you even in your sleep\r\n\r\n<br> <br>\r\n\r\n<strong><em>“The best moments are those in which words are not said and the other’s presence can be appreciated.”</em></strong> –Monica Renata\r\n','In Your Sleep','','publish','open','open','','in-your-sleep','','','2014-10-22 20:19:49','2014-10-23 01:19:49','',0,'http://www.monicarenata.com/?p=682',0,'post','',0),(651,1,'2014-10-15 13:46:28','0000-00-00 00:00:00','<p>Princess<br />\nQueen<br />\nPrince<br />\nKing<br />\nOf all the fine and glorious things<br />\nBorn into royalty<br />\nYet many don’t see<br />\nBut the difference starts with you and me</p>\n<p>Kindness is free<br />\nIt doesn’t cost a thing<br />\nYet we forget to hand it out<br />\nWe forget the happiness it brings</p>\n<p>We treat others like they are peasants<br />\nWe ignore those who value us dear<br />\nWe point up our noises<br />\nWhen someone needs a helping hand</p>\n<p>To be raised in a castle<br />\nYet not play our roles<br />\nTeaching the youth that follows<br />\nHow to be so cold</p>\n<p>A prince is a son<br />\nAnd a son looks up to his King<br />\nA King is a father<br />\nThat the son aspires to be</p>\n<p>A princess is a daughter<br />\nAnd a daughter looks up to her Queen<br />\nA Queen is a mother<br />\nThat the daughter aspires to be</p>\n<p>To be raised in a castle<br />\nYet not play our roles<br />\nTeaching the youth that follows<br />\nHow to be so cold</p>\n<p>Sometimes in different households<br />\nBut the titles are still to be had<br />\nLove your child’s father<br />\nFor he is their dad</p>\n<p>A boy hopes to be a man<br />\nBut he cannot be<br />\nIf his King isn’t allowed to teach him<br />\nHow to be</p>\n<p>How to love a woman<br />\nHow to treat others with respect<br />\nHow to live his life with dignity<br />\nAnd his past to never forget</p>\n<p>A prince is a son<br />\nAnd a father is a King<br />\nYet lessons can’t be learned<br />\nIf you won’t let this bond be</p>\n<p>Miles away the Queen may reside<br />\nShe is a queen in her very own right<br />\nSometimes in different households<br />\nBut the titles are still to be had<br />\nLove your child’s mother<br />\nFor she their mum</p>\n<p>A girl hopes to be a woman<br />\nBut she cannot be<br />\nIf her Queen isn’t allowed to teach her<br />\nHow to be</p>\n<p>How to love a man<br />\nHow to treat others with respect<br />\nHow to live his life with dignity<br />\nAnd how to always have respect<br />\nA princess is a daughter<br />\nAnd a mother is a Queen<br />\nYet lessons can’t be learned<br />\nIf you won’t let this bond be</p>\n<p>So love your son’s mother<br />\nLove your son’s dad<br />\nLove your daughter’s mother<br />\nLove your daughter’s dad</p>\n<p>For each is royalty<br />\nAnd the child is too<br />\nDespite the different residences<br />\nThat separates the two</p>\n<p>Kindness is free<br />\nIt doesn’t cost a thing<br />\nYet we forget to hand it out<br />\nWe forget the happiness it brings</p>\n<p>To be raised in a castle<br />\nYet not play our roles<br />\nTeaching the youth that follows<br />\nHow to be so cold</p>\n<p>Princess<br />\nQueen<br />\nPrince<br />\nKing<br />\nOf all the fine and glorious things<br />\nBorn into royalty<br />\nYet many don’t see<br />\nBut the difference starts with you and me</p>\n<p>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata</p>\n','','','draft','open','open','','','','','2014-10-15 13:46:28','2014-10-15 18:46:28','',0,'http://www.monicarenata.com/?p=651',0,'post','',0),(652,1,'2014-10-15 13:55:08','2014-10-15 18:55:08','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noses\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live her life with dignity\r\nAnd how to always have respect\r\n\r\n\r\n<br /><br />\r\n\r\n\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat may separate the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','publish','open','open','','raising-royalty-princess-queen-prince-king','','','2014-10-15 18:39:22','2014-10-15 23:39:22','',0,'http://www.monicarenata.com/?p=652',0,'post','',2),(653,1,'2014-10-15 13:48:35','2014-10-15 18:48:35','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:48:35','2014-10-15 18:48:35','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(654,1,'2014-10-15 13:51:02','2014-10-15 18:51:02','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<p> <p> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:51:02','2014-10-15 18:51:02','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(655,1,'2014-10-15 13:51:14','2014-10-15 18:51:14','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<p> </p> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:51:14','2014-10-15 18:51:14','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(657,1,'2014-10-15 13:51:57','2014-10-15 18:51:57','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br/> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:51:57','2014-10-15 18:51:57','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(656,1,'2014-10-15 13:51:34','2014-10-15 18:51:34','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<ln> <ln> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:51:34','2014-10-15 18:51:34','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(658,1,'2014-10-15 13:52:19','2014-10-15 18:52:19','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n\r\n\r\n\r\n\r\n\r\n“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way” –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:52:19','2014-10-15 18:52:19','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(659,1,'2014-10-15 13:53:43','2014-10-15 18:53:43','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:53:43','2014-10-15 18:53:43','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(660,1,'2014-10-15 13:54:10','2014-10-15 18:54:10','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:54:10','2014-10-15 18:54:10','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(662,1,'2014-10-15 13:54:53','2014-10-15 18:54:53','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:54:53','2014-10-15 18:54:53','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(661,1,'2014-10-15 13:54:38','2014-10-15 18:54:38','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> <br /> <br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 13:54:38','2014-10-15 18:54:38','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(663,1,'2014-10-15 14:13:49','2014-10-15 19:13:49','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noises\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\n\r\n\r\n<br /><br />\r\n\r\n\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 14:13:49','2014-10-15 19:13:49','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(664,1,'2014-10-15 18:31:55','2014-10-15 23:31:55','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noses\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd how to always have respect\r\n\r\n\r\n<br /><br />\r\n\r\n\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat separates the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 18:31:55','2014-10-15 23:31:55','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(665,1,'2014-10-15 18:35:14','2014-10-15 23:35:14','<center> \n\nPrincess\nQueen\nPrince\nKing\nOf all the fine and glorious things\nBorn into royalty\nYet many don’t see\nBut the difference starts with you and me\n\n<br /> \n\n\nKindness is free\nIt doesn’t cost a thing\nYet we forget to hand it out\nWe forget the happiness it brings\n\n<br /><br />\n\n\nWe treat others like they are peasants\nWe ignore those who value us dear\nWe point up our noses\nWhen someone needs a helping hand\n\n\n<br /><br />\n\nTo be raised in a castle\nYet not play our roles\nTeaching the youth that follows\nHow to be so cold\n\n\n<br /><br />\n\nA prince is a son\nAnd a son looks up to his King\nA King is a father\nThat the son aspires to be\n\n\n<br /><br />\n\nA princess is a daughter\nAnd a daughter looks up to her Queen\nA Queen is a mother\nThat the daughter aspires to be\n\n<br /><br />\n\nTo be raised in a castle\nYet not play our roles\nTeaching the youth that follows\nHow to be so cold\n\n\n<br /><br />\n\nSometimes in different households\nBut the titles are still to be had\nLove your child’s father\nFor he is their dad\n\n\n<br /><br />\n\nA boy hopes to be a man\nBut he cannot be\nIf his King isn’t allowed to teach him\nHow to be\n\n<br /><br />\n\n\nHow to love a woman\nHow to treat others with respect\nHow to live his life with dignity\nAnd his past to never forget\n\n\n<br /><br />\n\nA prince is a son\nAnd a father is a King\nYet lessons can’t be learned\nIf you won’t let this bond be\n\n<br /><br />\n\n\nMiles away the Queen may reside\nShe is a queen in her very own right\nSometimes in different households\nBut the titles are still to be had\nLove your child’s mother\nFor she their mum\n\n<br /><br />\n\n\nA girl hopes to be a woman\nBut she cannot be\nIf her Queen isn’t allowed to teach her\nHow to be\n\n<br /><br />\n\n\nHow to love a man\nHow to treat others with respect\nHow to live her life with dignity\nAnd how to always have respect\n\n\n<br /><br />\n\n\nA princess is a daughter\nAnd a mother is a Queen\nYet lessons can’t be learned\nIf you won’t let this bond be\n\n\n<br /><br />\n\nSo love your son’s mother\nLove your son’s dad\nLove your daughter’s mother\nLove your daughter’s dad\n\n\n<br /><br />\n\nFor each is royalty\nAnd the child is too\nDespite the different residences\nThat may separate the two\n\n\n<br /><br />\n\nKindness is free\nIt doesn’t cost a thing\nYet we forget to hand it out\nWe forget the happiness it brings\n\n<br /><br />\n\n\nTo be raised in a castle\nYet not play our roles\nTeaching the youth that follows\nHow to be so cold\n\n<br /><br />\n\n\nPrincess\nQueen\nPrince\nKing\nOf all the fine and glorious things\nBorn into royalty\nYet many don’t see\nBut the difference starts with you and me\n\n<br /><br /><br />\n\n\n\n\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\n\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-autosave-v1','','','2014-10-15 18:35:14','2014-10-15 23:35:14','',652,'http://www.monicarenata.com/652-autosave-v1/',0,'revision','',0),(666,1,'2014-10-15 18:35:41','2014-10-15 23:35:41','<center> \r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /> \r\n\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nWe treat others like they are peasants\r\nWe ignore those who value us dear\r\nWe point up our noses\r\nWhen someone needs a helping hand\r\n\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a son looks up to his King\r\nA King is a father\r\nThat the son aspires to be\r\n\r\n\r\n<br /><br />\r\n\r\nA princess is a daughter\r\nAnd a daughter looks up to her Queen\r\nA Queen is a mother\r\nThat the daughter aspires to be\r\n\r\n<br /><br />\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n\r\n<br /><br />\r\n\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s father\r\nFor he is their dad\r\n\r\n\r\n<br /><br />\r\n\r\nA boy hopes to be a man\r\nBut he cannot be\r\nIf his King isn’t allowed to teach him\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a woman\r\nHow to treat others with respect\r\nHow to live his life with dignity\r\nAnd his past to never forget\r\n\r\n\r\n<br /><br />\r\n\r\nA prince is a son\r\nAnd a father is a King\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n<br /><br />\r\n\r\n\r\nMiles away the Queen may reside\r\nShe is a queen in her very own right\r\nSometimes in different households\r\nBut the titles are still to be had\r\nLove your child’s mother\r\nFor she their mum\r\n\r\n<br /><br />\r\n\r\n\r\nA girl hopes to be a woman\r\nBut she cannot be\r\nIf her Queen isn’t allowed to teach her\r\nHow to be\r\n\r\n<br /><br />\r\n\r\n\r\nHow to love a man\r\nHow to treat others with respect\r\nHow to live her life with dignity\r\nAnd how to always have respect\r\n\r\n\r\n<br /><br />\r\n\r\n\r\nA princess is a daughter\r\nAnd a mother is a Queen\r\nYet lessons can’t be learned\r\nIf you won’t let this bond be\r\n\r\n\r\n<br /><br />\r\n\r\nSo love your son’s mother\r\nLove your son’s dad\r\nLove your daughter’s mother\r\nLove your daughter’s dad\r\n\r\n\r\n<br /><br />\r\n\r\nFor each is royalty\r\nAnd the child is too\r\nDespite the different residences\r\nThat may separate the two\r\n\r\n\r\n<br /><br />\r\n\r\nKindness is free\r\nIt doesn’t cost a thing\r\nYet we forget to hand it out\r\nWe forget the happiness it brings\r\n\r\n<br /><br />\r\n\r\n\r\nTo be raised in a castle\r\nYet not play our roles\r\nTeaching the youth that follows\r\nHow to be so cold\r\n\r\n<br /><br />\r\n\r\n\r\nPrincess\r\nQueen\r\nPrince\r\nKing\r\nOf all the fine and glorious things\r\nBorn into royalty\r\nYet many don’t see\r\nBut the difference starts with you and me\r\n\r\n<br /><br /><br />\r\n\r\n\r\n\r\n\r\n<strong><em>“Raise your children as if they are royalty. Treat each parent with the utmost respect, and they will learn how to treat others the same way”</em></strong> –Monica Renata\r\n\r\n</center>','Raising Royalty: Princess, Queen, Prince, King','','inherit','open','open','','652-revision-v1','','','2014-10-15 18:35:41','2014-10-15 23:35:41','',652,'http://www.monicarenata.com/652-revision-v1/',0,'revision','',0),(669,1,'2014-10-20 12:46:51','2014-10-20 17:46:51','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n\r\n <li>\r\n\r\n\r\n<em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em> –Monica Renata \r\n','','','inherit','open','open','','668-revision-v1','','','2014-10-20 12:46:51','2014-10-20 17:46:51','',668,'http://www.monicarenata.com/668-revision-v1/',0,'revision','',0),(670,1,'2014-10-20 12:47:24','2014-10-20 17:47:24','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\n<br> \r\n<br>\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n<br>\r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n\r\n\r\n\r\n<em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em> –Monica Renata ','','','inherit','open','open','','668-revision-v1','','','2014-10-20 12:47:24','2014-10-20 17:47:24','',668,'http://www.monicarenata.com/668-revision-v1/',0,'revision','',0),(671,1,'2014-10-20 12:47:53','2014-10-20 17:47:53','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\n<br> \r\n<br>\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n<br>\r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n\r\n\r\n\r\n<em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em> –Monica Renata ','Spoken Words','','inherit','open','open','','668-revision-v1','','','2014-10-20 12:47:53','2014-10-20 17:47:53','',668,'http://www.monicarenata.com/668-revision-v1/',0,'revision','',0),(672,1,'2014-10-20 12:48:34','2014-10-20 17:48:34','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\n<br> \r\n<br>\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n<br>\r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n\r\n\r\n\r\n<strong><em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em></strong> –Monica Renata ','Spoken Words','','inherit','open','open','','668-revision-v1','','','2014-10-20 12:48:34','2014-10-20 17:48:34','',668,'http://www.monicarenata.com/668-revision-v1/',0,'revision','',0),(673,1,'2014-10-20 12:49:27','2014-10-20 17:49:27','Piercing through the soul so deep\r\nLike a knife that hides in shadows and remains unseen\r\nSeems so innocent, but they are not\r\nBacked by rage and not honest thoughts\r\n\r\n<br> \r\n<br>\r\n\r\nCarelessly spoken\r\nTime continues to move\r\nFew are loving\r\nBut so many are cruel\r\n\r\n\r\n<br> \r\n<br>\r\n\r\nWords….\r\nThey truly hurt others deep\r\nSo please be mindful\r\nOf the words that you speak\r\n\r\n<br> \r\n<br>\r\n\r\n\r\n<strong><em>“Words are powerful…careless words may cause a strife, harsh words can ruin a life, encouraging words can lesson stress, while loving words may heal and bless….Of all the words you use today, just think if they really reflect what you want to say…”</em></strong> –Monica Renata ','Spoken Words','','inherit','open','open','','668-revision-v1','','','2014-10-20 12:49:27','2014-10-20 17:49:27','',668,'http://www.monicarenata.com/668-revision-v1/',0,'revision','',0),(710,1,'2014-11-05 00:16:22','2014-11-05 06:16:22','One soul plus one soul reunites\r\nSoon there is three\r\n\r\nLove was overflowing\r\nFruit is finally on the tree\r\n\r\nWaiting til that fruit is ripe\r\nA blessing it is indeed\r\n\r\nTwo souls colliding lovingly\r\nA creation from you and me\r\n','Fruit','','publish','open','open','','fruit','','','2014-11-05 00:16:22','2014-11-05 06:16:22','',0,'http://www.monicarenata.com/?p=710',0,'post','',2),(675,1,'2014-10-20 13:12:07','2014-10-20 18:12:07','I’m working on a project\r\nAnd I’m working all alone\r\nPaperwork is piling up\r\nIt touches the ceiling and starts on the floor\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd this project is very unique\r\nHowever it seems that no matter how much time I put in\r\nI am always at 0% complete\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd I’m working all alone\r\nI am working very diligently \r\nBut I am also wishing to go home\r\n\r\n<br> <br> \r\n\r\nI have no choice but to do it\r\nThis task I must complete\r\nI’m working on a project\r\nAnd my group members are nowhere to be seen\r\n\r\n<br> <br> \r\n\r\n<em>“Sometimes group projects can turn into one man shows….. That’s alright, just do what you can and sooner or later you will find out that you were able to complete the task at hand without others…”</em><strong> – Monica Renata \r\n','Working on A Project','','publish','open','open','','working-on-a-project','','','2014-10-20 13:12:07','2014-10-20 18:12:07','',0,'http://www.monicarenata.com/?p=675',0,'post','',3),(676,1,'2014-10-20 13:11:20','2014-10-20 18:11:20','I’m working on a project\r\nAnd I’m working all alone\r\nPaperwork is piling up\r\nIt touches the ceiling and starts on the floor\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd this project is very unique\r\nIt seems that no matter how much time I put in\r\nI am always at 0% complete\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd I’m working all alone\r\nI am working very diligently \r\nBut I am also wishing to go home\r\n\r\n<br> <br> \r\n\r\nI have no choice but to do it\r\nThis task I must complete\r\nI’m working on a project\r\nAnd my group members are nowhere to be seen\r\n\r\n<br> <br> \r\n\r\n<em>“Sometimes group projects can turn into one man shows….. That’s alright, just do what you can and sooner or later you will find out that you were able to complete the task at hand without others…”</em><strong> – Monica Renata \r\n','Working on A Project','','inherit','open','open','','675-revision-v1','','','2014-10-20 13:11:20','2014-10-20 18:11:20','',675,'http://www.monicarenata.com/675-revision-v1/',0,'revision','',0),(677,1,'2014-10-20 13:12:07','2014-10-20 18:12:07','I’m working on a project\r\nAnd I’m working all alone\r\nPaperwork is piling up\r\nIt touches the ceiling and starts on the floor\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd this project is very unique\r\nHowever it seems that no matter how much time I put in\r\nI am always at 0% complete\r\n\r\n<br> <br> \r\n\r\nI’m working on a project\r\nAnd I’m working all alone\r\nI am working very diligently \r\nBut I am also wishing to go home\r\n\r\n<br> <br> \r\n\r\nI have no choice but to do it\r\nThis task I must complete\r\nI’m working on a project\r\nAnd my group members are nowhere to be seen\r\n\r\n<br> <br> \r\n\r\n<em>“Sometimes group projects can turn into one man shows….. That’s alright, just do what you can and sooner or later you will find out that you were able to complete the task at hand without others…”</em><strong> – Monica Renata \r\n','Working on A Project','','inherit','open','open','','675-revision-v1','','','2014-10-20 13:12:07','2014-10-20 18:12:07','',675,'http://www.monicarenata.com/675-revision-v1/',0,'revision','',0),(678,1,'2014-10-21 09:34:15','2014-10-21 14:34:15','In my mind \r\nThere you were\r\nLocked up in a cage\r\n\r\n<br> <br>\r\n\r\nThe key remained hidden for so long\r\nBecause of the rage that still remained\r\n\r\n<br> <br>\r\n\r\nForever just a prison\r\nIn my very own mind\r\nA prison that is invisible and so hard to find\r\n\r\n<br> <br>\r\n\r\nThe bars are made of the strongest material\r\nSo much stronger than iron\r\n\r\n<br> <br>\r\n\r\nThe floors are not made of cement\r\nBut they shall hold together for all time\r\n\r\n<br> <br>\r\n\r\nA prisoner in my very own mind\r\nI threw away the key\r\nBut what is the point of being a prisoner \r\nIf the only one this hinders is me\r\n\r\n<br> <br>\r\n\r\nIn my mind \r\nThere you were\r\nLocked up in a cage\r\n\r\n<br> <br>\r\n\r\nFor I couldn’t think of forgiving you\r\nMy soul was filled with rage\r\n\r\n\r\n<br> <br>\r\n\r\nForever just a prisoner\r\nIn my very own mind\r\nYour prison was invisible and so hard to find\r\n\r\n<br> <br>\r\n\r\nThe bars which enclosed you were mental\r\nSo strong to break for you and for me\r\n\r\n<br> <br>\r\n\r\nThe floors were practically endless\r\nLike the hole you made in me\r\n\r\n<br> <br>\r\n\r\nYou were a prisoner in my very own mind\r\nI threw away the key\r\nBut I finally must forgive you\r\nI shall finally set you free\r\n\r\n<br> <br>\r\n\r\n<em><strong>“When you don’t forgive someone you rob your soul of its freedom….Forever they will be a prisoner in your mind and this will only hinder you. Free them, and you will free yourself… Forgive freely and let things go…”</strong></em> – Monica Renata ','Set You Free','','publish','open','open','','set-you-free','','','2014-10-21 09:34:15','2014-10-21 14:34:15','',0,'http://www.monicarenata.com/?p=678',0,'post','',1),(679,1,'2014-10-21 09:33:39','2014-10-21 14:33:39','In my mind \r\nThere you were\r\nLocked up in a cage\r\n\r\n<br> <br>\r\n\r\nThe key remained hidden for so long\r\nBecause of the rage that still remained\r\n\r\n<br> <br>\r\n\r\nForever just a prison\r\nIn my very own mind\r\nA prison that is invisible and so hard to find\r\n\r\n<br> <br>\r\n\r\nThe bars are made of the strongest material\r\nSo much stronger than iron\r\n\r\n<br> <br>\r\n\r\nThe floors are not made of cement\r\nBut they shall hold together for all time\r\n\r\n<br> <br>\r\n\r\nA prisoner in my very own mind\r\nI threw away the key\r\nBut what is the point of being a prisoner \r\nIf the only one this hinders is me\r\n\r\n<br> <br>\r\n\r\nIn my mind \r\nThere you were\r\nLocked up in a cage\r\n\r\n<br> <br>\r\n\r\nFor I couldn’t think of forgiving you\r\nMy soul was filled with rage\r\n\r\n\r\n<br> <br>\r\n\r\nForever just a prisoner\r\nIn my very own mind\r\nYour prison was invisible and so hard to find\r\n\r\n<br> <br>\r\n\r\nThe bars which enclosed you were mental\r\nSo strong to break for you and for me\r\n\r\n<br> <br>\r\n\r\nThe floors were practically endless\r\nLike the hole you made in me\r\n\r\n<br> <br>\r\n\r\nYou were a prisoner in my very own mind\r\nI threw away the key\r\nBut I finally must forgive you\r\nI shall finally set you free\r\n\r\n<br> <br>\r\n\r\n<em><strong>“When you don’t forgive someone you rob your soul of its freedom….Forever they will be a prisoner in your mind and this will only hinder you. Free them, and you will free yourself… Forgive freely and let things go…”</strong></em> – Monica Renata ','Set You Free','','inherit','open','open','','678-revision-v1','','','2014-10-21 09:33:39','2014-10-21 14:33:39','',678,'http://www.monicarenata.com/678-revision-v1/',0,'revision','',0),(680,1,'2014-10-22 09:24:20','2014-10-22 14:24:20','<center> \r\n\r\nPlease don’t fall in love with me\r\nFor I don’t have a heart\r\nI had one so very long ago \r\nAnd now it is torn apart\r\n\r\n<br> <br> \r\n\r\nPlease don’t fall in love with me\r\nThat is possibly the worst thing you could do\r\nFor if you care so much about me\r\nThere is a possibility I won’t care for you\r\n\r\n<br> <br> \r\n\r\nTo love someone is a blessing\r\nTo love someone is pure and true\r\nBut my mind is not in the right place\r\nThere are issues I am still trying to get through\r\n\r\n<br> <br> \r\n\r\nSo please don’t fall in love with me\r\nPlease, I beg of you\r\nFor all the love that you bestow on me\r\nRight now I can’t bestow that on you\r\n\r\n<br> <br> \r\n\r\n<strong><em>“Sometimes you need to give someone’s heart time to heal before you expect them to love you with every ounce of their heart..”</em></strong> –Monica Renata \r\n\r\n</center> \r\n','Please Don\'t Fall In Love','','publish','open','open','','please-dont-fall-in-love','','','2014-10-22 09:24:20','2014-10-22 14:24:20','',0,'http://www.monicarenata.com/?p=680',0,'post','',1),(681,1,'2014-10-22 09:23:44','2014-10-22 14:23:44','<center> \r\n\r\nPlease don’t fall in love with me\r\nFor I don’t have a heart\r\nI had one so very long ago \r\nAnd now it is torn apart\r\n\r\n<br> <br> \r\n\r\nPlease don’t fall in love with me\r\nThat is possibly the worst thing you could do\r\nFor if you care so much about me\r\nThere is a possibility I won’t care for you\r\n\r\n<br> <br> \r\n\r\nTo love someone is a blessing\r\nTo love someone is pure and true\r\nBut my mind is not in the right place\r\nThere are issues I am still trying to get through\r\n\r\n<br> <br> \r\n\r\nSo please don’t fall in love with me\r\nPlease, I beg of you\r\nFor all the love that you bestow on me\r\nRight now I can’t bestow that on you\r\n\r\n<br> <br> \r\n\r\n<strong><em>“Sometimes you need to give someone’s heart time to heal before you expect them to love you with every ounce of their heart..”</em></strong> –Monica Renata \r\n\r\n</center> \r\n','Please Don\'t Fall In Love','','inherit','open','open','','680-revision-v1','','','2014-10-22 09:23:44','2014-10-22 14:23:44','',680,'http://www.monicarenata.com/680-revision-v1/',0,'revision','',0),(683,1,'2014-10-22 20:19:32','2014-10-23 01:19:32','As I see you laying in my lap\r\nI ponder thoughts while time elapse\r\n\r\n<br> <br>\r\n\r\nAn individual who doesn’t know the joy he brings\r\nThe one who I would say “yes” if he gave me a ring\r\n\r\n<br> <br>\r\n\r\nAs I see you laying in my lap\r\nI thank the Lord that here is where you are at\r\n\r\n<br> <br>\r\n\r\nFor the past didn’t allow us to see\r\nWhat we both were destined to be\r\n\r\n<br> <br>\r\n\r\nLike a boomerang on a lovely day\r\nLike the ying to my yang\r\nHonest from day one\r\nRespected situations despite the love your heart sang\r\n\r\n<br> <br>\r\n\r\nAs I see you laying in my lap\r\nI know that you have my back\r\n\r\n<br> <br>\r\n\r\nI thank you for loving me\r\nAnd I shall love you even in your sleep\r\n\r\n<br> <br>\r\n\r\n<strong><em>“The best moments are those in which words are not said and the other’s presence can be appreciated.”</em></strong> –Monica Renata\r\n','In Your Sleep','','inherit','open','open','','682-revision-v1','','','2014-10-22 20:19:32','2014-10-23 01:19:32','',682,'http://www.monicarenata.com/682-revision-v1/',0,'revision','',0),(684,1,'2014-10-24 08:37:11','2014-10-24 13:37:11','<center>\r\nToday I woke up mighty swell\r\nOr perhaps that is what I think\r\nFor now I’m tossing and turning in my chair\r\nWishing comfort would take over me\r\n\r\n<br> <br> \r\n\r\nMy head is constantly spinning\r\nYet I’m standing very still\r\nMy stomach is just churning\r\nI am feeling very ill\r\n\r\n<br> <br> \r\n\r\nSharp pains in my legs and arms\r\nCramping in my back\r\nI want all of this to go away\r\nI really want to relax\r\n\r\n<br> <br> \r\n\r\nPills and potions I have none of\r\nBut I crave for some relief\r\nCandy is what I am yearning for\r\nIt might cure this pain in me\r\n\r\n<br> <br> \r\n\r\nQueasy \r\nAchy\r\nSick as a dog\r\nThat is how I feel today\r\n\r\n<br> <br> \r\n\r\nPain at the top\r\nIn the middle\r\nAnd down to my feet\r\nI am very ill today\r\n\r\n<br> <br> \r\n</center>\r\n\r\n<em>\"Being sick sucks....but that doesn\'t mean you have to have a sucky day!\"</em> -Monica Renata ','Ill Today','','publish','open','open','','ill-today','','','2014-10-24 08:37:11','2014-10-24 13:37:11','',0,'http://www.monicarenata.com/?p=684',0,'post','',1),(685,1,'2014-10-24 08:36:24','2014-10-24 13:36:24','<center>\r\nToday I woke up mighty swell\r\nOr perhaps that is what I think\r\nFor now I’m tossing and turning in my chair\r\nWishing comfort would take over me\r\n\r\n<br> <br> \r\n\r\nMy head is constantly spinning\r\nYet I’m standing very still\r\nMy stomach is just churning\r\nI am feeling very ill\r\n\r\n<br> <br> \r\n\r\nSharp pains in my legs and arms\r\nCramping in my back\r\nI want all of this to go away\r\nI really want to relax\r\n\r\n<br> <br> \r\n\r\nPills and potions I have none of\r\nBut I crave for some relief\r\nCandy is what I am yearning for\r\nIt might cure this pain in me\r\n\r\n<br> <br> \r\n\r\nQueasy \r\nAchy\r\nSick as a dog\r\nThat is how I feel today\r\n\r\n<br> <br> \r\n\r\nPain at the top\r\nIn the middle\r\nAnd down to my feet\r\nI am very ill today\r\n\r\n<br> <br> \r\n</center>\r\n\r\n<em>\"Being sick sucks....but that doesn\'t mean you have to have a sucky day!\"</em> -Monica Renata ','Ill Today','','inherit','open','open','','684-revision-v1','','','2014-10-24 08:36:24','2014-10-24 13:36:24','',684,'http://www.monicarenata.com/684-revision-v1/',0,'revision','',0),(686,1,'2014-11-02 00:39:06','2014-11-02 05:39:06','I just want something real\r\nSomething that is so unique\r\nA love like no other\r\nA love that I can feel in my knees\r\n\r\nI just want something real \r\nI want each kiss to feel brand new\r\nI want love to overflow daily\r\nAnd I’m hoping you feel the same way too\r\n\r\nI don’t just want a partner\r\nBut I also want a friend\r\nWho we may have disagreements\r\nBut together we remain\r\n\r\nI want someone who values me\r\nAnd never make tears fall from my eyes\r\nI want someone to build a family with\r\nOr conjoin our families like one big melting pot\r\n\r\nI just want something real\r\nSomething that ends up with an “I do”\r\nI want the love and companionship\r\nI want someone I can trust too\r\n\r\n\r\nI want someone that I can cater too\r\nAnd someone who also caters me\r\nI want someone to cook breakfast for\r\nAnd massage their aching feet\r\n\r\nI want someone who makes me smile\r\nJust as much as I make them do\r\nI want someone who I can build with\r\nAnd can survive a struggle if we have to\r\n\r\nI just want something real\r\nThis is very true\r\nBut sometimes you have to wait\r\nAnd let that something come to you\r\n\r\n<strong><em>“The perfect person for you is out there…sometimes it just takes time for life to reveal who that person is…”</em></strong> –Monica Renata\r\n','Something Real','','publish','open','open','','something-real','','','2014-11-02 00:39:06','2014-11-02 05:39:06','',0,'http://www.monicarenata.com/?p=686',0,'post','',1),(688,1,'2014-10-27 19:49:55','2014-10-28 00:49:55','In the midst of fog before us\r\nBefore the clouds let go pouring rain\r\nI thought I saw your shadow\r\nAnd I reached for your hand once again\r\n\r\n<br> <br>\r\n\r\nIn the darkness of my night\r\nOn the back of my closing lids\r\nI thought I saw your smile again\r\nAnd you told me to be still\r\n\r\n<br> <br> \r\n\r\nThrough the joys and tears of happiness\r\nThrough the tears and cries of doom\r\nI wish you were still here\r\nSitting with me in this room\r\n\r\n<br> <br> \r\n\r\nIt’s not the same as it used to be\r\nI can’t seem to smile the same\r\nSo many things remind me of you\r\nThat I think I’m going insane\r\n\r\n<br> <br>\r\n\r\nIn the ray of light that shines below\r\nAnd touches me on my cheek\r\nI can feel your warmth around me\r\nI can hear you say that joy still resides in me\r\n\r\n<br> <br>\r\n\r\nIn the chaos of my lonely days\r\nIn the silence that won’t go away\r\nI can still hear you whisper in my ear\r\nAnd tell me everything will be okay\r\n\r\n<br> <br> \r\n\r\nThrough sadness there is so much pain\r\nBut in pain there are always breakthroughs\r\nAnd breakthroughs help you grow through life\r\nThey help to mold you\r\n\r\n<br> <br>\r\n\r\nSo in your world of pain and happiness\r\nDon’t forget to see\r\nThat good comes around so often in life\r\nAnd just like it may come, it may leave\r\n\r\n<br> <br>\r\n\r\nCherish every relationship\r\nCherish every thought\r\nFor memories live on forever\r\nThey are never truly lost\r\n\r\n<br> <br>\r\n\r\n\r\n<strong><em>“Cherish all interactions with others. For those memories will help you get through the toughest days. Remember the good memories, and those memories will help you remember that despite all the negativity that surrounds you, there is truly good in the world..”</em></strong> –Monica Renata\r\n','Reminders','','publish','open','open','','reminders','','','2014-10-27 19:49:55','2014-10-28 00:49:55','',0,'http://www.monicarenata.com/?p=688',0,'post','',0),(689,1,'2014-10-27 19:49:29','2014-10-28 00:49:29','In the midst of fog before us\r\nBefore the clouds let go pouring rain\r\nI thought I saw your shadow\r\nAnd I reached for your hand once again\r\n\r\n<br> <br>\r\n\r\nIn the darkness of my night\r\nOn the back of my closing lids\r\nI thought I saw your smile again\r\nAnd you told me to be still\r\n\r\n<br> <br> \r\n\r\nThrough the joys and tears of happiness\r\nThrough the tears and cries of doom\r\nI wish you were still here\r\nSitting with me in this room\r\n\r\n<br> <br> \r\n\r\nIt’s not the same as it used to be\r\nI can’t seem to smile the same\r\nSo many things remind me of you\r\nThat I think I’m going insane\r\n\r\n<br> <br>\r\n\r\nIn the ray of light that shines below\r\nAnd touches me on my cheek\r\nI can feel your warmth around me\r\nI can hear you say that joy still resides in me\r\n\r\n<br> <br>\r\n\r\nIn the chaos of my lonely days\r\nIn the silence that won’t go away\r\nI can still hear you whisper in my ear\r\nAnd tell me everything will be okay\r\n\r\n<br> <br> \r\n\r\nThrough sadness there is so much pain\r\nBut in pain there are always breakthroughs\r\nAnd breakthroughs help you grow through life\r\nThey help to mold you\r\n\r\n<br> <br>\r\n\r\nSo in your world of pain and happiness\r\nDon’t forget to see\r\nThat good comes around so often in life\r\nAnd just like it may come, it may leave\r\n\r\n<br> <br>\r\n\r\nCherish every relationship\r\nCherish every thought\r\nFor memories live on forever\r\nThey are never truly lost\r\n\r\n<br> <br>\r\n\r\n\r\n<strong><em>“Cherish all interactions with others. For those memories will help you get through the toughest days. Remember the good memories, and those memories will help you remember that despite all the negativity that surrounds you, there is truly good in the world..”</em></strong> –Monica Renata\r\n','Reminders','','inherit','open','open','','688-revision-v1','','','2014-10-27 19:49:29','2014-10-28 00:49:29','',688,'http://www.monicarenata.com/688-revision-v1/',0,'revision','',0),(690,1,'2014-10-27 20:18:33','2014-10-28 01:18:33','Make me smile forever\r\nNever whisper any lies\r\nDance like there is no tomorrow\r\nLet our love never die\r\n\r\n<br> <br> \r\n\r\nOf all the things I love in life\r\nI love you with me\r\nThanks for being my everlasting\r\nForever just you and me\r\n','Forever Just You and Me','','publish','open','open','','forever-just-you-and-me','','','2014-10-27 20:18:33','2014-10-28 01:18:33','',0,'http://www.monicarenata.com/?p=690',0,'post','',0),(691,1,'2014-10-27 20:18:08','2014-10-28 01:18:08','Make me smile forever\r\nNever whisper any lies\r\nDance like there is no tomorrow\r\nLet our love never die\r\n\r\n<br> <br> \r\n\r\nOf all the things I love in life\r\nI love you with me\r\nThanks for being my everlasting\r\nForever just you and me\r\n','Forever Just You and Me','','inherit','open','open','','690-revision-v1','','','2014-10-27 20:18:08','2014-10-28 01:18:08','',690,'http://www.monicarenata.com/690-revision-v1/',0,'revision','',0),(692,1,'2014-10-28 13:28:29','2014-10-28 18:28:29','As I sit among the flowerbed\r\nSurrounded by flowers and weeds\r\nWaiting for my breakthrough\r\nAs I feel that warm gentle breeze\r\n\r\n<br> <br> \r\n\r\nWaiting on my moment\r\nThe moment I waited on for far too long\r\nTo do what the flowers do\r\nAnd open up on my own\r\n\r\n<br> <br> \r\n\r\nNo longer do I wish to be a hermit in a shell\r\nNo longer do I desire to hold in the real me\r\nI have to blossom into who I am \r\nAnd who I am destined to be\r\n\r\n<br> <br> \r\n\r\nAs I sit among the flowerbed\r\n There is so much to learn and see\r\nI wish to be like a flower \r\nAnd open up while others sleep\r\n\r\n<br> <br> \r\n\r\nSitting among the flowerbed\r\nSurrounded by flowers and weeds\r\nI think of what I want to say to you\r\nI think of how I wish I could be\r\n\r\n<br> <br> \r\n\r\nTo open up and express myself\r\nLet the beauty within me free\r\nI have to stop closing myself off\r\nI have to not be afraid to show the real me\r\n \r\n<br> <br> \r\n\r\n<strong><em>\"Flowers are beautiful, but their true beauty is revealed when they finally open up............Never be afraid to show the real you to others....\"</em></strong> - Monica Renata ','Sitting Among Flowers','','publish','open','open','','sitting-among-flowers','','','2014-10-28 13:28:29','2014-10-28 18:28:29','',0,'http://www.monicarenata.com/?p=692',0,'post','',1),(693,1,'2014-10-28 13:28:29','2014-10-28 18:28:29','As I sit among the flowerbed\r\nSurrounded by flowers and weeds\r\nWaiting for my breakthrough\r\nAs I feel that warm gentle breeze\r\n\r\n<br> <br> \r\n\r\nWaiting on my moment\r\nThe moment I waited on for far too long\r\nTo do what the flowers do\r\nAnd open up on my own\r\n\r\n<br> <br> \r\n\r\nNo longer do I wish to be a hermit in a shell\r\nNo longer do I desire to hold in the real me\r\nI have to blossom into who I am \r\nAnd who I am destined to be\r\n\r\n<br> <br> \r\n\r\nAs I sit among the flowerbed\r\n There is so much to learn and see\r\nI wish to be like a flower \r\nAnd open up while others sleep\r\n\r\n<br> <br> \r\n\r\nSitting among the flowerbed\r\nSurrounded by flowers and weeds\r\nI think of what I want to say to you\r\nI think of how I wish I could be\r\n\r\n<br> <br> \r\n\r\nTo open up and express myself\r\nLet the beauty within me free\r\nI have to stop closing myself off\r\nI have to not be afraid to show the real me\r\n \r\n<br> <br> \r\n\r\n<strong><em>\"Flowers are beautiful, but their true beauty is revealed when they finally open up............Never be afraid to show the real you to others....\"</em></strong> - Monica Renata ','Sitting Among Flowers','','inherit','open','open','','692-revision-v1','','','2014-10-28 13:28:29','2014-10-28 18:28:29','',692,'http://www.monicarenata.com/692-revision-v1/',0,'revision','',0),(694,1,'2014-10-29 07:27:16','2014-10-29 12:27:16','Today is freaking fantastic\r\nMy morning started off so smooth\r\nWoke up before the alarm clock rang\r\nAnd in 30 minutes I was out of the room\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nThere was no traffic on the streets\r\nI was able to drive without interruption\r\nI was also able to dance and sing\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nI know work will go by fast\r\nI’m going to appreciate this day forever\r\nBecause days like this never last\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nI hope it is a great day for you too\r\nSo have a freaking fantastic day\r\nThat is my wish for you\r\n\r\n<br> <br> \r\n\r\n<strong><em>“Appreciate the good days…for those are the days that can help you during the days you are down.\"</em></strong> – Monica Renata\r\n','Freaking Fantastic','','publish','open','open','','freaking-fantastic','','','2014-10-29 07:27:16','2014-10-29 12:27:16','',0,'http://www.monicarenata.com/?p=694',0,'post','',11),(695,1,'2014-10-29 07:26:54','2014-10-29 12:26:54','Today is freaking fantastic\r\nMy morning started off so smooth\r\nWoke up before the alarm clock rang\r\nAnd in 30 minutes I was out of the room\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nThere was no traffic on the streets\r\nI was able to drive without interruption\r\nI was also able to dance and sing\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nI know work will go by fast\r\nI’m going to appreciate this day forever\r\nBecause days like this never last\r\n\r\n\r\n<br> <br> \r\n\r\n\r\nToday is freaking fantastic\r\nI hope it is a great day for you too\r\nSo have a freaking fantastic day\r\nThat is my wish for you\r\n\r\n<br> <br> \r\n\r\n<strong><em>“Appreciate the good days…for those are the days that can help you during the days you are down.\"</em></strong> – Monica Renata\r\n','Freaking Fantastic','','inherit','open','open','','694-revision-v1','','','2014-10-29 07:26:54','2014-10-29 12:26:54','',694,'http://www.monicarenata.com/694-revision-v1/',0,'revision','',0),(696,1,'2014-10-29 20:33:05','2014-10-30 01:33:05','All things in life\r\nAre just like growing fruit\r\n\r\nThey take time to develop\r\nThen ripe to the sweetest fruit\r\n\r\nBut like all good things\r\nThey always come to an end\r\n\r\nThen another seed is planted\r\nAnd life begins again\r\n\r\n','Fruit of Life','','publish','open','open','','fruit-of-life','','','2014-10-29 20:33:05','2014-10-30 01:33:05','',0,'http://www.monicarenata.com/?p=696',0,'post','',0),(697,1,'2014-10-29 20:32:37','2014-10-30 01:32:37','All things in life\r\nAre just like growing fruit\r\n\r\nThey take time to develop\r\nThen ripe to the sweetest fruit\r\n\r\nBut like all good things\r\nThey always come to an end\r\n\r\nThen another seed is planted\r\nAnd life begins again\r\n\r\n','Fruit of Life','','inherit','open','open','','696-revision-v1','','','2014-10-29 20:32:37','2014-10-30 01:32:37','',696,'http://www.monicarenata.com/696-revision-v1/',0,'revision','',0),(698,1,'2014-10-30 08:02:46','2014-10-30 13:02:46','Never lose your happiness\r\nNever lose your peace\r\nNever let things bother you \r\nNever believe deceit \r\n\r\nAlways stay in character\r\nAlways remain calm\r\nFor some battles that you do not fight\r\nHave already been won\r\n\r\n<strong><em>“Never let anyone make you act out of character. Remain true to yourself and do not change your kind ways.”</em></strong> – Monica Renata \r\n','Stay In Character','','publish','open','open','','stay-in-character','','','2014-10-30 08:02:46','2014-10-30 13:02:46','',0,'http://www.monicarenata.com/?p=698',0,'post','',1),(699,1,'2014-10-30 08:02:35','2014-10-30 13:02:35','Never lose your happiness\r\nNever lose your peace\r\nNever let things bother you \r\nNever believe deceit \r\n\r\nAlways stay in character\r\nAlways remain calm\r\nFor some battles that you do not fight\r\nHave already been won\r\n\r\n<strong><em>“Never let anyone make you act out of character. Remain true to yourself and do not change your kind ways.”</em></strong> – Monica Renata \r\n','Stay In Character','','inherit','open','open','','698-revision-v1','','','2014-10-30 08:02:35','2014-10-30 13:02:35','',698,'http://www.monicarenata.com/698-revision-v1/',0,'revision','',0),(713,1,'2014-11-10 13:10:54','2014-11-10 19:10:54','Can this really be happening? \r\nCan life really be so sweet? \r\nDid the heavens fall from the sky and land in front of me?\r\n\r\n\r\nThe sun is shining so brightly\r\nAs the birds continue to soar\r\nToday is such a beautiful day and better than any day before\r\n\r\n\r\nTake time to sit down and reminisce \r\nLife is somewhat bittersweet\r\nFor yesterday you could have been crying\r\nBut today life is oh so sweet\r\n\r\n\r\n<em><strong>“Never let bad days get you down for one day you could be crying and the next day realize life is so sweet!”</strong></em> –Monica Renata \r\n','Life is SWEET','','publish','open','open','','life-is-sweet','','','2014-11-10 13:10:54','2014-11-10 19:10:54','',0,'http://www.monicarenata.com/?p=713',0,'post','',1),(702,1,'2014-11-02 00:34:10','2014-11-02 05:34:10','I just want something real\r\nSomething that is so unique\r\nA love like no other\r\nA love that I can feel in my knees\r\n\r\nI just want something real \r\nI want each kiss to feel brand new\r\nI want love to overflow daily\r\nAnd I’m hoping you feel the same way too\r\n\r\nI don’t just want a partner\r\nBut I also want a friend\r\nWho we may have disagreements\r\nBut together we remain\r\n\r\nI want someone who values me\r\nAnd never make tears fall from my eyes\r\nI want someone to build a family with\r\nOr conjoin our families like one big melting pot\r\n\r\nI just want something real\r\nSomething that ends up with an “I do”\r\nI want the love and companionship\r\nI want someone I can trust too\r\n\r\n\r\nI want someone that I can cater too\r\nAnd someone who also caters me\r\nI want someone to cook breakfast for\r\nAnd massage their aching feet\r\n\r\nI want someone who makes me smile\r\nJust as much as I make them do\r\nI want someone who I can build with\r\nAnd can survive a struggle if we have to\r\n\r\nI just want something real\r\nThis is very true\r\nBut sometimes you have to wait\r\nAnd let that something come to you\r\n\r\n“The perfect person for you is out there…sometimes it just takes time for life to reveal who that person is…” –Monica Renata\r\n','Something Real','','inherit','open','open','','686-revision-v1','','','2014-11-02 00:34:10','2014-11-02 05:34:10','',686,'http://www.monicarenata.com/686-revision-v1/',0,'revision','',0),(704,1,'2014-11-02 00:39:06','2014-11-02 05:39:06','I just want something real\r\nSomething that is so unique\r\nA love like no other\r\nA love that I can feel in my knees\r\n\r\nI just want something real \r\nI want each kiss to feel brand new\r\nI want love to overflow daily\r\nAnd I’m hoping you feel the same way too\r\n\r\nI don’t just want a partner\r\nBut I also want a friend\r\nWho we may have disagreements\r\nBut together we remain\r\n\r\nI want someone who values me\r\nAnd never make tears fall from my eyes\r\nI want someone to build a family with\r\nOr conjoin our families like one big melting pot\r\n\r\nI just want something real\r\nSomething that ends up with an “I do”\r\nI want the love and companionship\r\nI want someone I can trust too\r\n\r\n\r\nI want someone that I can cater too\r\nAnd someone who also caters me\r\nI want someone to cook breakfast for\r\nAnd massage their aching feet\r\n\r\nI want someone who makes me smile\r\nJust as much as I make them do\r\nI want someone who I can build with\r\nAnd can survive a struggle if we have to\r\n\r\nI just want something real\r\nThis is very true\r\nBut sometimes you have to wait\r\nAnd let that something come to you\r\n\r\n<strong><em>“The perfect person for you is out there…sometimes it just takes time for life to reveal who that person is…”</em></strong> –Monica Renata\r\n','Something Real','','inherit','open','open','','686-revision-v1','','','2014-11-02 00:39:06','2014-11-02 05:39:06','',686,'http://www.monicarenata.com/686-revision-v1/',0,'revision','',0),(706,1,'2014-11-03 07:51:31','2014-11-03 13:51:31','Dancing under the midnight moon\r\nLaughing til the sun rise\r\nHappiness seems all around you\r\nHope is in your eyes\r\n\r\n\r\nSurrounded by so much love\r\nThe love that is showered upon you\r\nWords may not be spoken\r\nBut you know they care for you\r\n\r\n \r\nKisses in the darkest hours\r\nSomeone to always hold your hand\r\nHelping you with every struggle\r\nIn your mind having the future planned\r\n\r\n \r\nIn your sleep you are watched\r\nBut they look with love in their eyes\r\nThey pray for your happiness\r\nAnd hopes that your love for them never dies\r\n\r\n \r\n\r\nFull to the very top\r\nOverrunning with emotion\r\nUntil one day that water is gone\r\nAnd you are standing at the very bottom\r\n\r\n \r\n\r\nDances are gone and never take place\r\nA void within your soul\r\nHappiness is all around you\r\nYet your eyes they seem so cold\r\n\r\n \r\n\r\nSurrounded by so much love\r\nBut none of that is showered on you\r\nYou lost the one who gave you their world\r\nFor they really cared about you\r\n\r\n \r\n\r\nKisses in the darkest hours\r\nOnly now happen in dreams\r\nYet still they wish you the best in life\r\nEven though you are no longer seen\r\n\r\n \r\n\r\nIn your sleep you are watched\r\nBy the angels that were called down\r\nTo protect you in your toughest journeys\r\nThey were called upon by the one you let down\r\n\r\n \r\n\r\nThe well was full of love to the brim\r\nYet it didn’t make a sound\r\nNow it is desolate hole\r\nAnd the love cannot be found\r\n\r\n \r\n\r\nTo have a thirst for everlasting\r\nTo wish for what you dream to come true\r\nI guess it takes the well to run dry\r\nFor you to appreciate what you lose\r\n\r\n \r\n<strong>\r\n<em>“Sometimes it takes losing one of the greatest people in the world to make you realize how much they indeed cared about you. Never lose those who love you…For if they truly love you, that love will last a lifetime.”</em></strong> –Monica Renata','Well runs dry ','','publish','open','open','','well-runs-dry','','','2014-11-03 08:05:07','2014-11-03 14:05:07','',0,'http://www.monicarenata.com/?p=706',0,'post','',0),(709,1,'2014-11-03 08:05:07','2014-11-03 14:05:07','Dancing under the midnight moon\r\nLaughing til the sun rise\r\nHappiness seems all around you\r\nHope is in your eyes\r\n\r\n\r\nSurrounded by so much love\r\nThe love that is showered upon you\r\nWords may not be spoken\r\nBut you know they care for you\r\n\r\n \r\nKisses in the darkest hours\r\nSomeone to always hold your hand\r\nHelping you with every struggle\r\nIn your mind having the future planned\r\n\r\n \r\nIn your sleep you are watched\r\nBut they look with love in their eyes\r\nThey pray for your happiness\r\nAnd hopes that your love for them never dies\r\n\r\n \r\n\r\nFull to the very top\r\nOverrunning with emotion\r\nUntil one day that water is gone\r\nAnd you are standing at the very bottom\r\n\r\n \r\n\r\nDances are gone and never take place\r\nA void within your soul\r\nHappiness is all around you\r\nYet your eyes they seem so cold\r\n\r\n \r\n\r\nSurrounded by so much love\r\nBut none of that is showered on you\r\nYou lost the one who gave you their world\r\nFor they really cared about you\r\n\r\n \r\n\r\nKisses in the darkest hours\r\nOnly now happen in dreams\r\nYet still they wish you the best in life\r\nEven though you are no longer seen\r\n\r\n \r\n\r\nIn your sleep you are watched\r\nBy the angels that were called down\r\nTo protect you in your toughest journeys\r\nThey were called upon by the one you let down\r\n\r\n \r\n\r\nThe well was full of love to the brim\r\nYet it didn’t make a sound\r\nNow it is desolate hole\r\nAnd the love cannot be found\r\n\r\n \r\n\r\nTo have a thirst for everlasting\r\nTo wish for what you dream to come true\r\nI guess it takes the well to run dry\r\nFor you to appreciate what you lose\r\n\r\n \r\n<strong>\r\n<em>“Sometimes it takes losing one of the greatest people in the world to make you realize how much they indeed cared about you. Never lose those who love you…For if they truly love you, that love will last a lifetime.”</em></strong> –Monica Renata','Well runs dry ','','inherit','open','open','','706-revision-v1','','','2014-11-03 08:05:07','2014-11-03 14:05:07','',706,'http://www.monicarenata.com/706-revision-v1/',0,'revision','',0),(707,1,'2014-11-03 07:51:31','2014-11-03 13:51:31','Dancing under the midnight moon\r\n\r\nLaughing til the sun rise\r\n\r\nHappiness seems all around you\r\n\r\nHope is in your eyes\r\n\r\n \r\n\r\nSurrounded by so much love\r\n\r\nThe love that is showered upon you\r\n\r\nWords may not be spoken\r\n\r\nBut you know they care for you\r\n\r\n \r\n\r\nKisses in the darkest hours\r\n\r\nSomeone to always hold your hand\r\n\r\nHelping you with every struggle\r\n\r\nIn your mind having the future planned\r\n\r\n \r\n\r\nIn your sleep you are watched\r\n\r\nBut they look with love in their eyes\r\n\r\nThey pray for your happiness\r\n\r\nAnd hopes that your love for them never dies\r\n\r\n \r\n\r\nFull to the very top\r\n\r\nOverrunning with emotion\r\n\r\nUntil one day that water is gone\r\n\r\nAnd you are standing at the very bottom\r\n\r\n \r\n\r\nDances are gone and never take place\r\n\r\nA void within your soul\r\n\r\nHappiness is all around you\r\n\r\nYet your eyes they seem so cold\r\n\r\n \r\n\r\nSurrounded by so much love\r\n\r\nBut none of that is showered on you\r\n\r\nYou lost the one who gave you their world\r\n\r\nFor they really cared about you\r\n\r\n \r\n\r\nKisses in the darkest hours\r\n\r\nOnly now happen in dreams\r\n\r\nYet still they wish you the best in life\r\n\r\nEven though you are no longer seen\r\n\r\n \r\n\r\nIn your sleep you are watched\r\n\r\nBy the angels that were called down\r\n\r\nTo protect you in your toughest journeys\r\n\r\nThey were called upon by the one you let down\r\n\r\n \r\n\r\nThe well was full of love to the brim\r\n\r\nYet it didn’t make a sound\r\n\r\nNow it is desolate hole\r\n\r\nAnd the love cannot be found\r\n\r\n \r\n\r\nTo have a thirst for everlasting\r\n\r\nTo wish for what you dream to come true\r\n\r\nI guess it takes the well to run dry\r\n\r\nFor you to appreciate what you lose\r\n\r\n \r\n<strong>\r\n<em>“Sometimes it takes losing one of the greatest people in the world to make you realize how much they indeed cared about you. Never lose those who love you…For if they truly love you, that love will last a lifetime.”</em></strong> –Monica Renata','Well runs dry ','','inherit','open','open','','706-revision-v1','','','2014-11-03 07:51:31','2014-11-03 13:51:31','',706,'http://www.monicarenata.com/706-revision-v1/',0,'revision','',0),(708,1,'2014-11-03 08:04:55','2014-11-03 14:04:55','Dancing under the midnight moon\nLaughing til the sun rise\nHappiness seems all around you\nHope is in your eyes\n\nSurrounded by so much love\nThe love that is showered upon you\nWords may not be spoken\nBut you know they care for you\n\n \nKisses in the darkest hours\nSomeone to always hold your hand\nHelping you with every struggle\nIn your mind having the future planned\n\n \nIn your sleep you are watched\nBut they look with love in their eyes\nThey pray for your happiness\nAnd hopes that your love for them never dies\n\n \n\nFull to the very top\nOverrunning with emotion\nUntil one day that water is gone\nAnd you are standing at the very bottom\n\n \n\nDances are gone and never take place\nA void within your soul\nHappiness is all around you\nYet your eyes they seem so cold\n\n \n\nSurrounded by so much love\nBut none of that is showered on you\nYou lost the one who gave you their world\nFor they really cared about you\n\n \n\nKisses in the darkest hours\nOnly now happen in dreams\nYet still they wish you the best in life\nEven though you are no longer seen\n\n \n\nIn your sleep you are watched\nBy the angels that were called down\nTo protect you in your toughest journeys\nThey were called upon by the one you let down\n\n \n\nThe well was full of love to the brim\nYet it didn’t make a sound\nNow it is desolate hole\nAnd the love cannot be found\n\n \n\nTo have a thirst for everlasting\nTo wish for what you dream to come true\nI guess it takes the well to run dry\nFor you to appreciate what you lose\n\n \n<strong>\n<em>“Sometimes it takes losing one of the greatest people in the world to make you realize how much they indeed cared about you. Never lose those who love you…For if they truly love you, that love will last a lifetime.”</em></strong> –Monica Renata','Well runs dry ','','inherit','open','open','','706-autosave-v1','','','2014-11-03 08:04:55','2014-11-03 14:04:55','',706,'http://www.monicarenata.com/706-autosave-v1/',0,'revision','',0),(711,1,'2014-11-05 00:16:22','2014-11-05 06:16:22','One soul plus one soul reunites\r\nSoon there is three\r\n\r\nLove was overflowing\r\nFruit is finally on the tree\r\n\r\nWaiting til that fruit is ripe\r\nA blessing it is indeed\r\n\r\nTwo souls colliding lovingly\r\nA creation from you and me\r\n','Fruit','','inherit','open','open','','710-revision-v1','','','2014-11-05 00:16:22','2014-11-05 06:16:22','',710,'http://www.monicarenata.com/710-revision-v1/',0,'revision','',0),(714,1,'2014-11-10 13:10:40','2014-11-10 19:10:40','Can this really be happening? \r\nCan life really be so sweet? \r\nDid the heavens fall from the sky and land in front of me?\r\n\r\n\r\nThe sun is shining so brightly\r\nAs the birds continue to soar\r\nToday is such a beautiful day and better than any day before\r\n\r\n\r\nTake time to sit down and reminisce \r\nLife is somewhat bittersweet\r\nFor yesterday you could have been crying\r\nBut today life is oh so sweet\r\n\r\n\r\n<em><strong>“Never let bad days get you down for one day you could be crying and the next day realize life is so sweet!”</strong></em> –Monica Renata \r\n','Life is SWEET','','inherit','open','open','','713-revision-v1','','','2014-11-10 13:10:40','2014-11-10 19:10:40','',713,'http://www.monicarenata.com/713-revision-v1/',0,'revision','',0),(716,1,'2014-11-10 13:51:10','2014-11-10 19:51:10','<center> \r\nDrink every drop of me\r\nLet me flow through your veins\r\nBreathe and cherish every breath that you have as life remains\r\n\r\n\r\nA cunning fool I was thought to be\r\nYour life will never be the same\r\nLet me be your poison and for your demise I’ll take the blame\r\n\r\n</center> \r\n\r\n<em><strong>“Everyone you meet doesn\'t have good intentions. Remove the poison from your life before it is too late….”</strong></em> –Monica Renata ','Poison','','publish','open','open','','poison','','','2014-11-10 13:51:10','2014-11-10 19:51:10','',0,'http://www.monicarenata.com/?p=716',0,'post','',1),(717,1,'2014-11-10 13:50:30','2014-11-10 19:50:30','Drink every drop of me\r\nLet me flow through your veins\r\nBreathe and cherish every breath that you have as life remains\r\n\r\n\r\nA cunning fool I was thought to be\r\nYour life will never be the same\r\nLet me be your poison and for your demise I’ll take the blame\r\n\r\n<em><strong>“Everyone you meet doesn\'t have good intentions. Remove the poison from your life before it is too late….”</strong></em> –Monica Renata ','Poison','','inherit','open','open','','716-revision-v1','','','2014-11-10 13:50:30','2014-11-10 19:50:30','',716,'http://www.monicarenata.com/716-revision-v1/',0,'revision','',0),(718,1,'2014-11-10 13:51:00','2014-11-10 19:51:00','<center> \r\nDrink every drop of me\r\nLet me flow through your veins\r\nBreathe and cherish every breath that you have as life remains\r\n\r\n\r\nA cunning fool I was thought to be\r\nYour life will never be the same\r\nLet me be your poison and for your demise I’ll take the blame\r\n\r\n</center> \r\n\r\n<em><strong>“Everyone you meet doesn\'t have good intentions. Remove the poison from your life before it is too late….”</strong></em> –Monica Renata ','Poison','','inherit','open','open','','716-revision-v1','','','2014-11-10 13:51:00','2014-11-10 19:51:00','',716,'http://www.monicarenata.com/716-revision-v1/',0,'revision','',0),(720,1,'2014-11-14 07:34:17','2014-11-14 13:34:17','When the sun comes up in the morning\r\nWhen the first bird flies in the sky\r\nTheir thoughts are consumed with YOU \r\nAnd they are praying that you are alright\r\n\r\nWhen noon finally approaches\r\nWhen others are consumed with the hectic tasks of life\r\nTheir heart is beating for YOU\r\nYou mean more to them than life\r\n\r\nFrom dusk to dawn and dawn to dusk\r\nYou are always on their mind\r\nYet you don’t want to see this\r\nAnd they wonder why\r\n\r\nA love so great and strong\r\nYou have been blessed to see\r\nBut why turn away that love \r\nFor someone who is a big MAYBE\r\n\r\nWhen the moon rises in the midnight sky\r\nAnd you disappointed them once again\r\nThey still hold on to hope\r\nFor their love for you never ends\r\n\r\nA connection made in the heavens\r\nYet so much has drifted you two apart\r\nBut maybe it’s time to return to love\r\nMaybe you should have a change of heart\r\n\r\nLove what loves you always\r\nFor that love shall never die\r\nReturn to your overlooked blessing\r\nLive your life with them by your side\r\n\r\nMake a future together\r\nFinally say I DO\r\nFor maybe it is time to return to the love\r\nThat genuinely cares for you\r\n\r\n\r\n\r\n<strong><em>\"Do not overlook the person who will love you FOREVER for the person who loves you at this very moment.......\"</em></strong> - Monica Renata ','Return to Love','','publish','open','open','','return-to-love','','','2014-11-14 07:36:31','2014-11-14 13:36:31','',0,'http://www.monicarenata.com/?p=720',0,'post','',2),(721,1,'2014-11-14 07:32:46','2014-11-14 13:32:46','When the sun comes up in the morning\r\nWhen the first bird flies in the sky\r\nTheir thoughts are consumed with YOU \r\nAnd they are praying that you are alright\r\n\r\nWhen noon finally approaches\r\nWhen others are consumed with the hectic tasks of life\r\nTheir heart is beating for YOU\r\nYou mean more to them than life\r\n\r\nFrom dusk to dawn and dawn to dusk\r\nYou are always on their mind\r\nYet you don’t want to see this\r\nAnd they wonder why\r\n\r\nA love so great and strong\r\nYou have been blessed to see\r\nBut why turn away that love \r\nFor someone who is a big MAYBE\r\n\r\nWhen the moon rises in the midnight sky\r\nAnd you disappointed them once again\r\nThey still hold on to hope\r\nFor their love for you never ends\r\n\r\nA connection made in the heavens\r\nYet so much has drifted you two apart\r\nBut maybe it’s time to return to love\r\nMaybe you should have a change of heart\r\n\r\nLove what loves you always\r\nFor that love shall never die\r\nReturn to your overlooked blessing\r\nLive your life with them by your side\r\n\r\nMake a future together\r\nFinally say I DO\r\nFor maybe it is time to return to the love\r\nThat genuinely cares for you\r\n','Return to Love','','inherit','open','open','','720-revision-v1','','','2014-11-14 07:32:46','2014-11-14 13:32:46','',720,'http://www.monicarenata.com/720-revision-v1/',0,'revision','',0),(722,1,'2014-11-14 07:34:04','2014-11-14 13:34:04','When the sun comes up in the morning\r\nWhen the first bird flies in the sky\r\nTheir thoughts are consumed with YOU \r\nAnd they are praying that you are alright\r\n\r\nWhen noon finally approaches\r\nWhen others are consumed with the hectic tasks of life\r\nTheir heart is beating for YOU\r\nYou mean more to them than life\r\n\r\nFrom dusk to dawn and dawn to dusk\r\nYou are always on their mind\r\nYet you don’t want to see this\r\nAnd they wonder why\r\n\r\nA love so great and strong\r\nYou have been blessed to see\r\nBut why turn away that love \r\nFor someone who is a big MAYBE\r\n\r\nWhen the moon rises in the midnight sky\r\nAnd you disappointed them once again\r\nThey still hold on to hope\r\nFor their love for you never ends\r\n\r\nA connection made in the heavens\r\nYet so much has drifted you two apart\r\nBut maybe it’s time to return to love\r\nMaybe you should have a change of heart\r\n\r\nLove what loves you always\r\nFor that love shall never die\r\nReturn to your overlooked blessing\r\nLive your life with them by your side\r\n\r\nMake a future together\r\nFinally say I DO\r\nFor maybe it is time to return to the love\r\nThat genuinely cares for you\r\n\r\n\r\n\r\n<strong><em>\"Do not overlook the person who will love you FOREVER for the person who loves you at this very moment.......\"</em></strong> - Monica Renata ','Return to Love','','inherit','open','open','','720-revision-v1','','','2014-11-14 07:34:04','2014-11-14 13:34:04','',720,'http://www.monicarenata.com/720-revision-v1/',0,'revision','',0),(723,1,'2014-11-14 10:43:56','2014-11-14 16:43:56','The kindest ones are gentle\r\nThe kindest ones are sweet\r\nThey give without thinking\r\nAnd sorrow they should experience the least\r\n\r\nBut to a world where selfishness is praised\r\nMany cannot see\r\nThat the kindest heart goes through battles\r\nWhich they may always face defeat\r\n\r\nIt is always the kindest ones\r\nThat feels the hurt the most\r\nThey care so much for everyone\r\nYet when they are in need no one is close\r\n\r\nIt is always the kindest ones\r\nWho never truly say how they feel\r\nThey listen to everyone else’s problems\r\nYet their problems fall on deaf ears\r\n\r\nIt is always the kindest ones\r\nThat we sometimes forget\r\nYet, they are people just like me and you\r\nBut we see them only for what we may get\r\n\r\nTo burst with kindness from within\r\nAnd live in a world full of sin and deceit\r\nThe kindest ones are a blessing\r\nYet so many just refuse to see\r\n\r\n<em><strong>“Never take advantage of a kind person. Never be one of the many who constantly let them down. Cherish them for who they are and never let them leave your life…for they are very hard to find….”</strong> – Monica Renata </em>\r\n','The Kindest Ones','','publish','open','open','','the-kindest-ones','','','2014-11-14 10:43:56','2014-11-14 16:43:56','',0,'http://www.monicarenata.com/?p=723',0,'post','',0),(724,1,'2014-11-14 10:43:31','2014-11-14 16:43:31','The kindest ones are gentle\r\nThe kindest ones are sweet\r\nThey give without thinking\r\nAnd sorrow they should experience the least\r\n\r\nBut to a world where selfishness is praised\r\nMany cannot see\r\nThat the kindest heart goes through battles\r\nWhich they may always face defeat\r\n\r\nIt is always the kindest ones\r\nThat feels the hurt the most\r\nThey care so much for everyone\r\nYet when they are in need no one is close\r\n\r\nIt is always the kindest ones\r\nWho never truly say how they feel\r\nThey listen to everyone else’s problems\r\nYet their problems fall on deaf ears\r\n\r\nIt is always the kindest ones\r\nThat we sometimes forget\r\nYet, they are people just like me and you\r\nBut we see them only for what we may get\r\n\r\nTo burst with kindness from within\r\nAnd live in a world full of sin and deceit\r\nThe kindest ones are a blessing\r\nYet so many just refuse to see\r\n\r\n<em><strong>“Never take advantage of a kind person. Never be one of the many who constantly let them down. Cherish them for who they are and never let them leave your life…for they are very hard to find….”</strong> – Monica Renata </em>\r\n','The Kindest Ones','','inherit','open','open','','723-revision-v1','','','2014-11-14 10:43:31','2014-11-14 16:43:31','',723,'http://www.monicarenata.com/723-revision-v1/',0,'revision','',0),(725,1,'2014-11-14 13:03:09','2014-11-14 19:03:09','Can you wake me up\r\nWhen the wind stops blowing\r\nWhen the rains stops falling down\r\n\r\nIn this world\r\nI am so alone\r\n\r\nCan you wake me up\r\nWhen it’s brighter than \r\nThan any day that was before\r\n\r\nFor the smile that \r\nThat brightened up my day is gone\r\n\r\nLost in slumber\r\nI can still dream\r\nAbout the pseudo reality \r\nOf you and me\r\nTears dry up\r\nWhile in the sky I shall soar\r\nFor I can’t live without you\r\nI need you forevermore \r\n\r\nSo\r\n\r\nCan you wake me up\r\nWhen tears are no longer flowing\r\nWhen I can finally see\r\n\r\nThat you are there for me\r\nAnd you are not just in my dreams\r\n\r\nCan you wake me up\r\nWhen the sky is blue\r\nWhen your smile brightens up my day\r\n\r\nI can’t live without you\r\nYou mean so much to me\r\n\r\nSo wake me up from this dream\r\nWhen you are with me\r\n','Can You Wake Me Up','','publish','open','open','','can-you-wake-me-up','','','2014-11-14 13:03:09','2014-11-14 19:03:09','',0,'http://www.monicarenata.com/?p=725',0,'post','',1),(726,1,'2014-11-14 13:02:10','2014-11-14 19:02:10','Can you wake me up\r\nWhen the wind stops blowing\r\nWhen the rains stops falling down\r\n\r\nIn this world\r\nI am so alone\r\n\r\nCan you wake me up\r\nWhen it’s brighter than \r\nThan any day that was before\r\n\r\nFor the smile that \r\nThat brightened up my day is gone\r\n\r\nLost in slumber\r\nI can still dream\r\nAbout the pseudo reality \r\nOf you and me\r\nTears dry up\r\nWhile in the sky I shall soar\r\nFor I can’t live without you\r\nI need you forevermore \r\n\r\nSo\r\n\r\nCan you wake me up\r\nWhen tears are no longer flowing\r\nWhen I can finally see\r\n\r\nThat you are there for me\r\nAnd you are not just in my dreams\r\n\r\nCan you wake me up\r\nWhen the sky is blue\r\nWhen your smile brightens up my day\r\n\r\nI can’t live without you\r\nYou mean so much to me\r\n\r\nSo wake me up from this dream\r\nWhen you are with me\r\n','Can You Wake Me Up','','inherit','open','open','','725-revision-v1','','','2014-11-14 13:02:10','2014-11-14 19:02:10','',725,'http://www.monicarenata.com/725-revision-v1/',0,'revision','',0),(728,1,'2014-11-14 13:24:23','2014-11-14 19:24:23','The candle flickers\r\nAs I see a twinkle in your eyes\r\nThe thunders roaring\r\nBut our love we cannot hide\r\n\r\nI’m with you...\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nThe house rattles\r\nAnd the world gets a little colder\r\nThe wall blows off \r\nI hold you a little closer\r\n\r\nI’m with you…\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nMaking it through whatever\r\nMaking it through this storm\r\nWe hold our palms together\r\nFor together we are one\r\nWe come out stronger than we ever been \r\nWith each passing storm\r\nWe shall hold on to this forever\r\nFor our love is built so strong\r\n\r\nTil the last drop of rain hits the hardwood floor\r\nAnd when the sun rises and this storm is no more\r\nI’ll hold you forever in my arms\r\nBecause this is where you belong\r\n\r\nI’m with you…\r\nIn any storm we’ll make it through\r\nSince I’m with you\r\n\r\n\r\n<strong><em>\"True love endures all.... Don\'t walk away just because something gets rough. Make it through the storm together and come out stronger than ever before.\"</strong> -Monica Renata </em>','Storm: We\'ll Make It Through','','publish','open','open','','storm-well-make-it-through','','','2014-11-14 13:27:14','2014-11-14 19:27:14','',0,'http://www.monicarenata.com/?p=728',0,'post','',0),(729,1,'2014-11-14 13:24:14','2014-11-14 19:24:14','The candle flickers\r\nAs I see a twinkle in your eyes\r\nThe thunders roaring\r\nBut our love we cannot hide\r\n\r\nI’m with you...\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nThe house rattles\r\nAnd the world gets a little colder\r\nThe wall blows off \r\nI hold you a little closer\r\n\r\nI’m with you…\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nMaking it through whatever\r\nMaking it through this storm\r\nWe hold our palms together\r\nFor together we are one\r\nWe come out stronger than we ever been \r\nWith each passing storm\r\nWe shall hold on to this forever\r\nFor our love is built so strong\r\n\r\nTil the last drop of rain hits the hardwood floor\r\nAnd when the sun rises and this storm is no more\r\nI’ll hold you forever in my arms\r\nBecause this is where you belong\r\n\r\nI’m with you…\r\nIn any storm we’ll make it through\r\nSince I’m with you\r\n','Storm: We\'ll Make It Through','','inherit','open','open','','728-revision-v1','','','2014-11-14 13:24:14','2014-11-14 19:24:14','',728,'http://www.monicarenata.com/728-revision-v1/',0,'revision','',0),(730,1,'2014-11-14 13:26:31','2014-11-14 19:26:31','The candle flickers\nAs I see a twinkle in your eyes\nThe thunders roaring\nBut our love we cannot hide\n\nI’m with you...\nIn this storm we’ll make it through\nSince I’m with you\n\nThe house rattles\nAnd the world gets a little colder\nThe wall blows off \nI hold you a little closer\n\nI’m with you…\nIn this storm we’ll make it through\nSince I’m with you\n\nMaking it through whatever\nMaking it through this storm\nWe hold our palms together\nFor together we are one\nWe come out stronger than we ever been \nWith each passing storm\nWe shall hold on to this forever\nFor our love is built so strong\n\nTil the last drop of rain hits the hardwood floor\nAnd when the sun rises and this storm is no more\nI’ll hold you forever in my arms\nBecause this is where you belong\n\nI’m with you…\nIn any storm we’ll make it through\nSince I’m with you\n\n\n\"True love endures all.... Don\'t walk away just because something gets rough. Make it through the storm t','Storm: We\'ll Make It Through','','inherit','open','open','','728-autosave-v1','','','2014-11-14 13:26:31','2014-11-14 19:26:31','',728,'http://www.monicarenata.com/728-autosave-v1/',0,'revision','',0),(731,1,'2014-11-14 13:27:14','2014-11-14 19:27:14','The candle flickers\r\nAs I see a twinkle in your eyes\r\nThe thunders roaring\r\nBut our love we cannot hide\r\n\r\nI’m with you...\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nThe house rattles\r\nAnd the world gets a little colder\r\nThe wall blows off \r\nI hold you a little closer\r\n\r\nI’m with you…\r\nIn this storm we’ll make it through\r\nSince I’m with you\r\n\r\nMaking it through whatever\r\nMaking it through this storm\r\nWe hold our palms together\r\nFor together we are one\r\nWe come out stronger than we ever been \r\nWith each passing storm\r\nWe shall hold on to this forever\r\nFor our love is built so strong\r\n\r\nTil the last drop of rain hits the hardwood floor\r\nAnd when the sun rises and this storm is no more\r\nI’ll hold you forever in my arms\r\nBecause this is where you belong\r\n\r\nI’m with you…\r\nIn any storm we’ll make it through\r\nSince I’m with you\r\n\r\n\r\n<strong><em>\"True love endures all.... Don\'t walk away just because something gets rough. Make it through the storm together and come out stronger than ever before.\"</strong> -Monica Renata </em>','Storm: We\'ll Make It Through','','inherit','open','open','','728-revision-v1','','','2014-11-14 13:27:14','2014-11-14 19:27:14','',728,'http://www.monicarenata.com/728-revision-v1/',0,'revision','',0),(734,1,'2014-11-18 13:26:25','2014-11-18 19:26:25','I met him on a cloudy night\r\nWhen the sky contained no stars\r\nJust a night of peaceful carousing\r\nWhile the streets were filled with cars\r\n\r\nA night I’ll remember forever\r\nFor I was drowned in my own pains\r\nMemories of the past seemed to keep resurfacing\r\nFor they never truly went away\r\n\r\nWhile out in closeness of my surroundings\r\nLooking me dead in my eyes\r\nWas someone who probably lived this pain before\r\nThat I so cleverly held inside\r\n\r\nThe windows to the soul I looked\r\nAnd there I could clearly see\r\nThat he was more than just a random person\r\nHe reminded me of me\r\n\r\nTo look into a mirror\r\nBut it isn’t a reflection that is seen\r\nTo look into a soul\r\nAnd smile because it is pure and clean\r\n\r\nI met him on a cloudy night\r\nWhen the sky contained no stars\r\nI had the time of my life that night\r\nBut I still wonder who you are\r\n\r\n','Stranger...','','publish','open','open','','stranger','','','2014-11-18 13:26:25','2014-11-18 19:26:25','',0,'http://www.monicarenata.com/?p=734',0,'post','',2),(735,1,'2014-11-18 13:26:25','2014-11-18 19:26:25','I met him on a cloudy night\r\nWhen the sky contained no stars\r\nJust a night of peaceful carousing\r\nWhile the streets were filled with cars\r\n\r\nA night I’ll remember forever\r\nFor I was drowned in my own pains\r\nMemories of the past seemed to keep resurfacing\r\nFor they never truly went away\r\n\r\nWhile out in closeness of my surroundings\r\nLooking me dead in my eyes\r\nWas someone who probably lived this pain before\r\nThat I so cleverly held inside\r\n\r\nThe windows to the soul I looked\r\nAnd there I could clearly see\r\nThat he was more than just a random person\r\nHe reminded me of me\r\n\r\nTo look into a mirror\r\nBut it isn’t a reflection that is seen\r\nTo look into a soul\r\nAnd smile because it is pure and clean\r\n\r\nI met him on a cloudy night\r\nWhen the sky contained no stars\r\nI had the time of my life that night\r\nBut I still wonder who you are\r\n\r\n','Stranger...','','inherit','open','open','','734-revision-v1','','','2014-11-18 13:26:25','2014-11-18 19:26:25','',734,'http://www.monicarenata.com/734-revision-v1/',0,'revision','',0),(736,1,'2014-11-24 13:28:16','2014-11-24 19:28:16','<center> \r\n\r\nMy trust\r\nMy love\r\nMy everything\r\n\r\nYou had my love \r\nIn the palm of your hands\r\n\r\nTo have and to hold\r\nTo cherish \r\nTo love\r\n\r\nYou had every ounce of me\r\nEvery ounce of flesh, my trust, my love\r\n\r\nBut that wasn’t enough\r\nThat wasn’t enough at all\r\n\r\nBroken\r\nAlone\r\nWondering in a world shrouded in darkness\r\n\r\nCheated…\r\nLied…\r\nDeceived…\r\n\r\nThe pain you left\r\nLeaves me now unable to see\r\n\r\n\r\n<strong><em>\"Don\'t let the pain of a past relationship blind you from seeing the love that is in front of your face..\"</em> - Monica Renata</strong>\r\n\r\n\r\n</center>','Love Blind','','publish','open','open','','love-blind','','','2014-11-24 13:28:16','2014-11-24 19:28:16','',0,'http://www.monicarenata.com/?p=736',0,'post','',0),(737,1,'2014-11-24 13:27:26','2014-11-24 19:27:26','<center> \r\n\r\nMy trust\r\nMy love\r\nMy everything\r\n\r\nYou had my love \r\nIn the palm of your hands\r\n\r\nTo have and to hold\r\nTo cherish \r\nTo love\r\n\r\nYou had every ounce of me\r\nEvery ounce of flesh\r\n\r\nBut that wasn’t enough\r\nThat wasn’t enough at all\r\n\r\nBroken\r\nAlone\r\nWondering in a world shrouded in darkness\r\n\r\nCheated…\r\nLied…\r\nDeceived…\r\n\r\nThe pain you left\r\nLeaves me now unable to see\r\n\r\n\r\n<strong><em>\"Don\'t let the pain of a past relationship blind you from seeing the love that is in front of your face..\"</em> - Monica Renata</strong>\r\n\r\n\r\n</center>','Love Blind','','inherit','open','open','','736-revision-v1','','','2014-11-24 13:27:26','2014-11-24 19:27:26','',736,'http://www.monicarenata.com/736-revision-v1/',0,'revision','',0),(738,1,'2014-11-24 13:28:16','2014-11-24 19:28:16','<center> \r\n\r\nMy trust\r\nMy love\r\nMy everything\r\n\r\nYou had my love \r\nIn the palm of your hands\r\n\r\nTo have and to hold\r\nTo cherish \r\nTo love\r\n\r\nYou had every ounce of me\r\nEvery ounce of flesh, my trust, my love\r\n\r\nBut that wasn’t enough\r\nThat wasn’t enough at all\r\n\r\nBroken\r\nAlone\r\nWondering in a world shrouded in darkness\r\n\r\nCheated…\r\nLied…\r\nDeceived…\r\n\r\nThe pain you left\r\nLeaves me now unable to see\r\n\r\n\r\n<strong><em>\"Don\'t let the pain of a past relationship blind you from seeing the love that is in front of your face..\"</em> - Monica Renata</strong>\r\n\r\n\r\n</center>','Love Blind','','inherit','open','open','','736-revision-v1','','','2014-11-24 13:28:16','2014-11-24 19:28:16','',736,'http://www.monicarenata.com/736-revision-v1/',0,'revision','',0),(739,1,'2014-11-24 13:43:17','2014-11-24 19:43:17','Please don’t break my heart\r\nPlease don’t break my heart\r\nPlease don’t break my heart\r\n\r\nFor if it breaks\r\nWhen I put it together\r\n I won’t know where to start\r\n\r\nLove me instead\r\nLike I am your midnight moon\r\nLighting the way in your darkness\r\n\r\nHold me\r\nLike you hold the rope that swings like a pendulum on the cliff\r\nHold me like I am the key to a better life\r\n\r\nRespect me\r\nLike you respect your grandmother\r\nSpeak words of kindness and none of detestation\r\n\r\nGrow with me\r\nEncourage me\r\nSpeak life into me\r\nAnd I shall do all of that for you as well..\r\n\r\nYou can do whatever you wish\r\nI am yours\r\nJust please…don’t break my heart\r\n\r\nFor if it breaks\r\nWhen I put it together\r\n I won’t know where to start\r\n','Please Don\'t Break My Heart','','publish','open','open','','please-dont-break-my-heart','','','2014-11-24 13:43:17','2014-11-24 19:43:17','',0,'http://www.monicarenata.com/?p=739',0,'post','',0),(740,1,'2014-11-24 13:43:17','2014-11-24 19:43:17','Please don’t break my heart\r\nPlease don’t break my heart\r\nPlease don’t break my heart\r\n\r\nFor if it breaks\r\nWhen I put it together\r\n I won’t know where to start\r\n\r\nLove me instead\r\nLike I am your midnight moon\r\nLighting the way in your darkness\r\n\r\nHold me\r\nLike you hold the rope that swings like a pendulum on the cliff\r\nHold me like I am the key to a better life\r\n\r\nRespect me\r\nLike you respect your grandmother\r\nSpeak words of kindness and none of detestation\r\n\r\nGrow with me\r\nEncourage me\r\nSpeak life into me\r\nAnd I shall do all of that for you as well..\r\n\r\nYou can do whatever you wish\r\nI am yours\r\nJust please…don’t break my heart\r\n\r\nFor if it breaks\r\nWhen I put it together\r\n I won’t know where to start\r\n','Please Don\'t Break My Heart','','inherit','open','open','','739-revision-v1','','','2014-11-24 13:43:17','2014-11-24 19:43:17','',739,'http://www.monicarenata.com/739-revision-v1/',0,'revision','',0),(742,1,'2014-11-24 13:47:23','2014-11-24 19:47:23','<center>\r\n\r\nWithout trust\r\nI can love no more\r\nThe shard of trust in my heart\r\nIs completely gone\r\nYou should have been honest\r\nFor now you will see\r\nThat putting a heart back together\r\nIsn’t as easy as it seems\r\n\r\n<strong><em>“Despite what you may think, trust is the biggest component of a relationship. Once trust is gone the heart may shatter and may never be the same again if that shard is not restored.”</em> – Monica Renata </strong>\r\n\r\n</center> \r\n','Shard of Trust','','publish','open','open','','shard-of-trust','','','2014-11-24 13:47:23','2014-11-24 19:47:23','',0,'http://www.monicarenata.com/?p=742',0,'post','',2),(743,1,'2014-11-24 13:47:23','2014-11-24 19:47:23','<center>\r\n\r\nWithout trust\r\nI can love no more\r\nThe shard of trust in my heart\r\nIs completely gone\r\nYou should have been honest\r\nFor now you will see\r\nThat putting a heart back together\r\nIsn’t as easy as it seems\r\n\r\n<strong><em>“Despite what you may think, trust is the biggest component of a relationship. Once trust is gone the heart may shatter and may never be the same again if that shard is not restored.”</em> – Monica Renata </strong>\r\n\r\n</center> \r\n','Shard of Trust','','inherit','open','open','','742-revision-v1','','','2014-11-24 13:47:23','2014-11-24 19:47:23','',742,'http://www.monicarenata.com/742-revision-v1/',0,'revision','',0),(744,1,'2014-11-25 07:23:00','2014-11-25 13:23:00','The Cannots of Life\r\nBy: Monica Renata\r\n\r\nYou cannot make a well have water\r\nYou cannot make the horse drink\r\nYou cannot let your sight be perfect\r\nIf you are not willing to see\r\n\r\nOf all the things in life there are\r\nThere also is a choice\r\nYou decide the path you venture onto\r\nYou decide the words you voice\r\n\r\nYou cannot do anything\r\nOther than what you want to do\r\nAnd I cannot make you change\r\nUnless you really wanted to\r\n\r\n\r\n<strong><em>“You can never change anyone… They have to want to change themselves.”</em> –Monica Renata</strong>\r\n','The Cannots of Life','','inherit','open','open','','4-autosave-v1','','','2014-11-25 07:23:00','2014-11-25 13:23:00','',4,'http://www.monicarenata.com/4-autosave-v1/',0,'revision','',0),(750,1,'2014-12-05 13:30:46','2014-12-05 19:30:46','Pages, Pages, Pages\r\nYou started on page 2\r\nYet you made it to 375\r\nI wonder how \r\nYet, I still don’t have a clue\r\n\r\nPages, Pages, Pages\r\nSome were good\r\nWhile others were bad\r\nYet as the chapters keep going\r\nYou steadily remained\r\n\r\nPages, Pages, Pages\r\nPeople come and people go\r\nThis is just how life can go\r\nSome stay for just a page\r\nWhile others remain in chapters far ahead\r\n\r\nPages, Pages, Pages\r\nThe never-ending book of life\r\nDon’t forget to keep turning pages\r\nFor there are better things in life\r\n\r\n<em><strong>“Everyone has a place in YOUR Book Of Life. Some may only last a few pages while others may continue on to further chapters. When someone reveals who they are, kill that person off in your Book Of Life and move on. Make your own happily ever after in your Book Of Life”</em> –Monica Renata</strong>\r\n','Book of Life','','publish','open','open','','book-of-life','','','2014-12-05 13:30:46','2014-12-05 19:30:46','',0,'http://www.monicarenata.com/?p=750',0,'post','',2),(751,1,'2014-12-05 13:30:32','2014-12-05 19:30:32','Pages, Pages, Pages\r\nYou started on page 2\r\nYet you made it to 375\r\nI wonder how \r\nYet, I still don’t have a clue\r\n\r\nPages, Pages, Pages\r\nSome were good\r\nWhile others were bad\r\nYet as the chapters keep going\r\nYou steadily remained\r\n\r\nPages, Pages, Pages\r\nPeople come and people go\r\nThis is just how life can go\r\nSome stay for just a page\r\nWhile others remain in chapters far ahead\r\n\r\nPages, Pages, Pages\r\nThe never-ending book of life\r\nDon’t forget to keep turning pages\r\nFor there are better things in life\r\n\r\n<em><strong>“Everyone has a place in YOUR Book Of Life. Some may only last a few pages while others may continue on to further chapters. When someone reveals who they are, kill that person off in your Book Of Life and move on. Make your own happily ever after in your Book Of Life”</em> –Monica Renata</strong>\r\n','Book of Life','','inherit','open','open','','750-revision-v1','','','2014-12-05 13:30:32','2014-12-05 19:30:32','',750,'http://www.monicarenata.com/750-revision-v1/',0,'revision','',0),(752,1,'2014-12-10 08:31:29','2014-12-10 14:31:29','Two steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nKisses under the midnight moon\r\nWould soon be replaced with tears\r\n\r\nBut those tears were not of happiness\r\nThey were of sadness since you are no longer here\r\n\r\nA goodbye that took a second\r\nYet it hit me like a stack of bricks\r\n\r\nIt was more powerful than any goodbye\r\nThat I have ever experienced\r\n\r\nWhat was it like to lose you? \r\nIt is kind of hard to explain\r\nBut imagine every goodbye in your life\r\nSaid to you in one day\r\n\r\nAn overwhelming feeling of sadness\r\nThat stabs the heart so deep\r\nThat life suddenly becomes unbearable\r\nAnd words are hard to speak\r\n\r\nAnd every time your eyes are closed \r\nYour mind is consumed with thoughts\r\nI should have done this\r\nI should have said this\r\nFor now my love is gone\r\n\r\nWhat was it like to lose you? \r\nI honestly lost most of my heart\r\nI felt it break inside me \r\nAnd soon all feeling was lost\r\n\r\nThousands of goodbyes said to me\r\nAll in one day\r\nYet one part of me that wasn’t killed\r\nWas that bit of love for you in my heart that decided to stay\r\n\r\nTwo steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nBut this is life\r\nI guess that was just how things were supposed to be\r\nSo instead of wishing the worst for you\r\nI wish for the best for you and for me\r\n\r\n<strong><em>“When someone you love walks out of your life it is sometimes the hardest goodbye ever. That one goodbye is equivalent to every goodbye in your life said all at once……but despite this, never wish ill will on someone who walks out of your life. Just wish for the best for you and that other person as well….”</em> –Monica Renata </strong>\r\n','What was it like to lose you?','','publish','open','open','','what-was-it-like-to-lose-you','','','2014-12-10 08:32:57','2014-12-10 14:32:57','',0,'http://www.monicarenata.com/?p=752',0,'post','',2),(753,1,'2014-12-10 08:31:29','2014-12-10 14:31:29','Two steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nKisses under the midnight moon\r\nWould soon be replaced with tears\r\n\r\nBut those tears were not of happiness\r\nThey were of sadness since you are no longer here\r\n\r\nA goodbye that took a second\r\nYet it hit me like a stack of bricks\r\n\r\nIt was more powerful than any goodbye\r\nThat I have ever experienced\r\n\r\nWhat was it like to lose you? \r\nIt is kind of hard to explain\r\nBut imagine every goodbye in your life\r\nSaid to you in one day\r\n\r\nAn overwhelming feeling of sadness\r\nThat stabs the heart so deep\r\nThat life suddenly becomes unbearable\r\nAnd words are hard to speak\r\n\r\nAnd every time your eyes are closed \r\nYour mind is consumed with thoughts\r\nI should have done this\r\nI should have said this\r\nFor now my love is gone\r\n\r\nWhat was it like to lose you? \r\nI honestly lost most of my heart\r\nI felt it break inside me \r\nAnd soon all feeling was lost\r\n\r\nThousands of goodbyes said to me\r\nAll in one day\r\nYet one part of me that wasn’t killed\r\nWas that bit of love for you in my heart that decided to stay\r\n\r\nTwo steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nBut this is life\r\nI guess that was just how things were supposed to be\r\nSo instead of wishing the worst for you\r\nI wish for the best for you and for me\r\n\r\n<strong><em>“When someone you love walks out of your life it is sometimes the hardest goodbye ever. That one goodbye is equivalent to every goodbye in your life said all at once……but despite this, never wish ill will on someone who walks out of your life. Just wish for the best for you and that other person as well….”</em> –Monica Renata </strong>\r\n','','','inherit','open','open','','752-revision-v1','','','2014-12-10 08:31:29','2014-12-10 14:31:29','',752,'http://www.monicarenata.com/752-revision-v1/',0,'revision','',0),(754,1,'2014-12-10 08:32:50','2014-12-10 14:32:50','Two steps forward\nOut of my life\nAs you walked out of my door\n\nFor at that moment\nIt did not sink in\nThat of you I would see no more\n\nKisses under the midnight moon\nWould soon be replaced with tears\n\nBut those tears were not of happiness\nThey were of sadness since you are no longer here\n\nA goodbye that took a second\nYet it hit me like a stack of bricks\n\nIt was more powerful than any goodbye\nThat I have ever experienced\n\nWhat was it like to lose you? \nIt is kind of hard to explain\nBut imagine every goodbye in your life\nSaid to you in one day\n\nAn overwhelming feeling of sadness\nThat stabs the heart so deep\nThat life suddenly becomes unbearable\nAnd words are hard to speak\n\nAnd every time your eyes are closed \nYour mind is consumed with thoughts\nI should have done this\nI should have said this\nFor now my love is gone\n\nWhat was it like to lose you? \nI honestly lost most of my heart\nI felt it break inside me \nAnd soon all feeling was lost\n\nThousands of goodbyes said to me\nAll in one day\nYet one part of me that wasn’t killed\nWas that bit of love for you in my heart that decided to stay\n\nTwo steps forward\nOut of my life\nAs you walked out of my door\n\nFor at that moment\nIt did not sink in\nThat of you I would see no more\n\nBut this is life\nI guess that was just how things were supposed to be\nSo instead of wishing the worst for you\nI wish for the best for you and for me\n\n<strong><em>“When someone you love walks out of your life it is sometimes the hardest goodbye ever. That one goodbye is equivalent to every goodbye in your life said all at once……but despite this, never wish ill will on someone who walks out of your life. Just wish for the best for you and that other person as well….”</em> –Monica Renata </strong>\n','What was it like to lose you?','','inherit','open','open','','752-autosave-v1','','','2014-12-10 08:32:50','2014-12-10 14:32:50','',752,'http://www.monicarenata.com/752-autosave-v1/',0,'revision','',0),(755,1,'2014-12-10 08:32:57','2014-12-10 14:32:57','Two steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nKisses under the midnight moon\r\nWould soon be replaced with tears\r\n\r\nBut those tears were not of happiness\r\nThey were of sadness since you are no longer here\r\n\r\nA goodbye that took a second\r\nYet it hit me like a stack of bricks\r\n\r\nIt was more powerful than any goodbye\r\nThat I have ever experienced\r\n\r\nWhat was it like to lose you? \r\nIt is kind of hard to explain\r\nBut imagine every goodbye in your life\r\nSaid to you in one day\r\n\r\nAn overwhelming feeling of sadness\r\nThat stabs the heart so deep\r\nThat life suddenly becomes unbearable\r\nAnd words are hard to speak\r\n\r\nAnd every time your eyes are closed \r\nYour mind is consumed with thoughts\r\nI should have done this\r\nI should have said this\r\nFor now my love is gone\r\n\r\nWhat was it like to lose you? \r\nI honestly lost most of my heart\r\nI felt it break inside me \r\nAnd soon all feeling was lost\r\n\r\nThousands of goodbyes said to me\r\nAll in one day\r\nYet one part of me that wasn’t killed\r\nWas that bit of love for you in my heart that decided to stay\r\n\r\nTwo steps forward\r\nOut of my life\r\nAs you walked out of my door\r\n\r\nFor at that moment\r\nIt did not sink in\r\nThat of you I would see no more\r\n\r\nBut this is life\r\nI guess that was just how things were supposed to be\r\nSo instead of wishing the worst for you\r\nI wish for the best for you and for me\r\n\r\n<strong><em>“When someone you love walks out of your life it is sometimes the hardest goodbye ever. That one goodbye is equivalent to every goodbye in your life said all at once……but despite this, never wish ill will on someone who walks out of your life. Just wish for the best for you and that other person as well….”</em> –Monica Renata </strong>\r\n','What was it like to lose you?','','inherit','open','open','','752-revision-v1','','','2014-12-10 08:32:57','2014-12-10 14:32:57','',752,'http://www.monicarenata.com/752-revision-v1/',0,'revision','',0),(756,1,'2014-12-10 08:37:41','2014-12-10 14:37:41','Monday was the typical day\r\nThat I wished wouldn\'t come\r\n\r\nTuesday was the day of relaxation\r\nWhere after work I had some fun\r\n\r\nWednesday was the midway point\r\nI smiled and jumped in glee\r\n\r\nThursday was the day I realized\r\nThat the end was close to see\r\n\r\nFriday was the finishline\r\nI finally finished the work week\r\n\r\nSaturday was my day of fun\r\nI partied in the streets\r\n\r\nSunday was my day of reflection\r\nI dropped down to my knees \r\n\r\nLord thank you for the life I have\r\nAnd to you I will always give praise\r\nEach and every day of the week\r\nI thank you and will continue to pray','Days of the Week','','publish','open','open','','days-of-the-week','','','2014-12-10 08:37:41','2014-12-10 14:37:41','',0,'http://www.monicarenata.com/?p=756',0,'post','',1),(757,1,'2014-12-10 08:37:41','2014-12-10 14:37:41','Monday was the typical day\r\nThat I wished wouldn\'t come\r\n\r\nTuesday was the day of relaxation\r\nWhere after work I had some fun\r\n\r\nWednesday was the midway point\r\nI smiled and jumped in glee\r\n\r\nThursday was the day I realized\r\nThat the end was close to see\r\n\r\nFriday was the finishline\r\nI finally finished the work week\r\n\r\nSaturday was my day of fun\r\nI partied in the streets\r\n\r\nSunday was my day of reflection\r\nI dropped down to my knees \r\n\r\nLord thank you for the life I have\r\nAnd to you I will always give praise\r\nEach and every day of the week\r\nI thank you and will continue to pray','Days of the Week','','inherit','open','open','','756-revision-v1','','','2014-12-10 08:37:41','2014-12-10 14:37:41','',756,'http://www.monicarenata.com/756-revision-v1/',0,'revision','',0),(758,1,'2014-12-10 09:55:14','2014-12-10 15:55:14','Please stop texting my phone\r\nI am not interested in you\r\n\r\nI don’t care how much money you have\r\nI don’t care that your favorite color is blue\r\n\r\nI could care less about how your day went\r\nI really don’t care what made you smile\r\n\r\nSo please stop texting my phone\r\nPlease just stop it right now\r\n\r\nYesterday I didn’t respond\r\nAnd I didn’t respond the day before that too\r\n\r\nI made it clear as a sunny, cloudless day\r\nI am not interested in you\r\n\r\nSo please stop texting my phone\r\nJust stop!\r\nFor why can’t you see\r\n\r\nThat even though you are interested\r\nI could care less that you are interested in me\r\n','Please Stop Texting My Phone','','publish','open','open','','please-stop-texting-my-phone','','','2014-12-10 09:55:14','2014-12-10 15:55:14','',0,'http://www.monicarenata.com/?p=758',0,'post','',0),(759,1,'2014-12-10 09:55:14','2014-12-10 15:55:14','Please stop texting my phone\r\nI am not interested in you\r\n\r\nI don’t care how much money you have\r\nI don’t care that your favorite color is blue\r\n\r\nI could care less about how your day went\r\nI really don’t care what made you smile\r\n\r\nSo please stop texting my phone\r\nPlease just stop it right now\r\n\r\nYesterday I didn’t respond\r\nAnd I didn’t respond the day before that too\r\n\r\nI made it clear as a sunny, cloudless day\r\nI am not interested in you\r\n\r\nSo please stop texting my phone\r\nJust stop!\r\nFor why can’t you see\r\n\r\nThat even though you are interested\r\nI could care less that you are interested in me\r\n','Please Stop Texting My Phone','','inherit','open','open','','758-revision-v1','','','2014-12-10 09:55:14','2014-12-10 15:55:14','',758,'http://www.monicarenata.com/758-revision-v1/',0,'revision','',0),(761,1,'2014-12-14 20:56:09','2014-12-15 02:56:09','The grand piano that sat in the room\r\nThe music sounds so sweet\r\nYour stance as you were sitting there\r\nWas always so unique\r\n\r\nYou sat straight up and touch the keys\r\nAnd moved your head with each key you stroked\r\nBeautiful Beautiful music\r\nThat you said came from your soul\r\n\r\nIn a trance you seemed to place me\r\nUnder an enchanting spell\r\nYou said the music sounded like love\r\nIt was a love that could even exist in heaven and in hell \r\n\r\nThen you push the little pedal\r\nYou smash your right foot down\r\nAnd soon there is a change that takes place\r\nAnd that change is the sound\r\n\r\nStill beautiful But different\r\nYet you smile and smirk with glee\r\nIn your mind you are playing the piano\r\nAnd you are also playing me\r\n\r\nBeautiful beautiful music\r\nYet I can’t differentiate the sounds\r\nFor what was the sound of beautiful truths\r\nSeems to be intertwined with beautiful lies\r\n\r\nYour hands glide across the keys\r\nMy heart seems to pound faster\r\nThe music sounds so beautiful indeed\r\nBut the meaning I can not fathom\r\n\r\nThat grand piano sat in the room\r\nThat piano was always me\r\nAnd you played the most beautiful music\r\nWhile you were also playing me\r\n\r\nTo sit with such calmness\r\nTo know how each key touched my soul\r\nThe sound was music to my ears\r\nBut it also revealed your heart was cold\r\n\r\n<em><strong>“Lies are sometimes as beautiful as the truth…”</em> –Monica Renata</strong>\r\n','The Grand Piano','','publish','open','open','','the-grand-piano','','','2014-12-17 13:05:33','2014-12-17 19:05:33','',0,'http://www.monicarenata.com/?p=761',0,'post','',1),(762,1,'2014-12-14 20:56:09','2014-12-15 02:56:09','The grand piano that sat in the room\r\nThe music sounds so sweet\r\nYour stance as you were sitting there\r\nWas always so unique\r\n\r\nYou sat straight up and touch the keys\r\nAnd moved your head with each key you stroked\r\nBeautiful Beautiful music\r\nThat you said came from your soul\r\n\r\nIn a trance you seemed to place me\r\nUnder an enchanting spell\r\nYou said the music sounded like love\r\nIt was a love that could even exist in hell\r\n\r\nThen you push the little pedal\r\nYou smash your right foot down\r\nAnd soon there is a change that takes place\r\nAnd that change is the sound\r\n\r\nStill beautiful But different\r\nYet you smile and smirk with glee\r\nIn your mind you are playing the piano\r\nAnd you are also playing me\r\n\r\nBeautiful beautiful music\r\nYet I can’t differentiate the sounds\r\nFor what was the sound of beautiful truths\r\nSeems to be intertwined with beautiful lies\r\n\r\nYour hands glide across the keys\r\nMy heart seems to pound faster\r\nThe music sounds so beautiful indeed\r\nBut the meaning I can not fathom\r\n\r\nThat grand piano sat in the room\r\nThat piano was always me\r\nAnd you played the most beautiful music\r\nWhile you were also playing me\r\n\r\nTo sit with such calmness\r\nTo know how each key touched my soul\r\nThe sound was music to my ears\r\nBut it also revealed your heart was cold\r\n\r\n<em><strong>“Lies are sometimes as beautiful as the truth…”</em> –Monica Renata</strong>\r\n','The Grand Piano','','inherit','open','open','','761-revision-v1','','','2014-12-14 20:56:09','2014-12-15 02:56:09','',761,'http://www.monicarenata.com/761-revision-v1/',0,'revision','',0),(763,1,'2014-12-14 23:38:12','2014-12-15 05:38:12','Who am I destined to be?\r\nI think I will never understand\r\nBut I know the sky is blue today\r\nAnd I know there are pebbles in the sand\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nScattered through my many years of life\r\nSome are broken as they lie on the ground\r\n\r\nNot always in their original condition\r\nSome are shattered beyond belief\r\nSome are smooth from the elements\r\nMemories scattered like pebbles on the beach\r\n\r\nWho am I destined to be?\r\nI think I will never understand\r\nBut I know that some pebbles will be washed away\r\nFrom the tear drops that touch this land\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nThoughts lost in the sands of time\r\nMy pebbles in my sand\r\n\r\n<strong><em>“Memories are like pebbles in the sand.. Although some memories may fade away, small fragments of them are still there….”</em> –Monica Renata</strong>\r\n','Pebbles in the Sand','','publish','open','open','','pebbles-in-the-sand','','','2014-12-25 13:49:33','2014-12-25 19:49:33','',0,'http://www.monicarenata.com/?p=763',0,'post','',0),(764,1,'2014-12-14 23:38:12','2014-12-15 05:38:12','Who am I destined to be?\r\nI think I will never understand\r\nBut I know the sky is blue today\r\nAnd I know there are pebbles in the sand\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nScattered through my many years of life\r\nSome are broken as they lie on the ground\r\n\r\nNot always in their original condition\r\nSome are shattered beyond belief\r\nSome are smooth from the elements\r\nMemories scattered like pebbles on the beach\r\n\r\nWho am I destined to be?\r\nI think I will never understand\r\nBut I know that some pebbles will be washed away\r\nFrom the tear drops that touch this land\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nThoughts lost in the sands of time\r\nMy pebbles in my sand\r\n\r\n<strong><em>“Memories are like pebbles in the sand.. Also some memories may fade away, small fragments of them are still there….”</em> –Monica Renata</strong>\r\n','Pebbles in the Sand','','inherit','open','open','','763-revision-v1','','','2014-12-14 23:38:12','2014-12-15 05:38:12','',763,'http://www.monicarenata.com/763-revision-v1/',0,'revision','',0),(765,1,'2014-12-16 06:51:50','2014-12-16 12:51:50','Painting Forever\r\n\r\nForever was painted on the wall\r\nIt represented us two\r\nIt represented the obstacles we overcame\r\nAnd the ones we were destined to\r\n\r\nForever was there with seven letters\r\nThat we held in our heart so deep\r\nIt represented a lifetime\r\nThat contained you and me\r\n\r\nBut today I want to paint something new\r\nI want the wall to finally reflect\r\nHow I truly feel about you\r\nFor this new painting will leave an impact\r\n\r\nForget the F in forever\r\nFor I need no part in that\r\nI want to FORGET all the bad memories\r\nI FEEL that with us there is no next\r\n\r\nRemove the R in forever\r\nI need to REEVALUATE my life\r\nBut I will keep that O for OPTIMISM \r\nSo I can move forward with my life\r\n\r\nExpunge the E in forever\r\nErase all my feelings and thoughts\r\nFor if you truly valued them\r\nThis removal process wouldn’t have had a start\r\n\r\nForever this was started\r\nRemoved the F, the R, the E\r\nAnd now it spells OVER\r\nAnd that describes you and me\r\n\r\nOur painting of forever\r\nIt was so unique\r\nBut just with a few strokes of a brush\r\nIt can be over in a blink\r\n\r\n<strong><em>“Life has a way of changing at the blink of an eye. Appreciate what you have because forever never truly lasts…”</em> –Monica Renata </strong>\r\n\r\n','Painting Forever','','publish','open','open','','painting-forever','','','2014-12-16 06:51:50','2014-12-16 12:51:50','',0,'http://www.monicarenata.com/?p=765',0,'post','',1),(766,1,'2014-12-16 06:51:50','2014-12-16 12:51:50','Painting Forever\r\n\r\nForever was painted on the wall\r\nIt represented us two\r\nIt represented the obstacles we overcame\r\nAnd the ones we were destined to\r\n\r\nForever was there with seven letters\r\nThat we held in our heart so deep\r\nIt represented a lifetime\r\nThat contained you and me\r\n\r\nBut today I want to paint something new\r\nI want the wall to finally reflect\r\nHow I truly feel about you\r\nFor this new painting will leave an impact\r\n\r\nForget the F in forever\r\nFor I need no part in that\r\nI want to FORGET all the bad memories\r\nI FEEL that with us there is no next\r\n\r\nRemove the R in forever\r\nI need to REEVALUATE my life\r\nBut I will keep that O for OPTIMISM \r\nSo I can move forward with my life\r\n\r\nExpunge the E in forever\r\nErase all my feelings and thoughts\r\nFor if you truly valued them\r\nThis removal process wouldn’t have had a start\r\n\r\nForever this was started\r\nRemoved the F, the R, the E\r\nAnd now it spells OVER\r\nAnd that describes you and me\r\n\r\nOur painting of forever\r\nIt was so unique\r\nBut just with a few strokes of a brush\r\nIt can be over in a blink\r\n\r\n<strong><em>“Life has a way of changing at the blink of an eye. Appreciate what you have because forever never truly lasts…”</em> –Monica Renata </strong>\r\n\r\n','Painting Forever','','inherit','open','open','','765-revision-v1','','','2014-12-16 06:51:50','2014-12-16 12:51:50','',765,'http://www.monicarenata.com/765-revision-v1/',0,'revision','',0),(767,1,'2014-12-17 13:00:45','2014-12-17 19:00:45','The grand piano that sat in the room\r\nThe music sounds so sweet\r\nYour stance as you were sitting there\r\nWas always so unique\r\n\r\nYou sat straight up and touch the keys\r\nAnd moved your head with each key you stroked\r\nBeautiful Beautiful music\r\nThat you said came from your soul\r\n\r\nIn a trance you seemed to place me\r\nUnder an enchanting spell\r\nYou said the music sounded like love\r\nIt was a love that could even exist in hell and the heavens above\r\n\r\nThen you push the little pedal\r\nYou smash your right foot down\r\nAnd soon there is a change that takes place\r\nAnd that change is the sound\r\n\r\nStill beautiful But different\r\nYet you smile and smirk with glee\r\nIn your mind you are playing the piano\r\nAnd you are also playing me\r\n\r\nBeautiful beautiful music\r\nYet I can’t differentiate the sounds\r\nFor what was the sound of beautiful truths\r\nSeems to be intertwined with beautiful lies\r\n\r\nYour hands glide across the keys\r\nMy heart seems to pound faster\r\nThe music sounds so beautiful indeed\r\nBut the meaning I can not fathom\r\n\r\nThat grand piano sat in the room\r\nThat piano was always me\r\nAnd you played the most beautiful music\r\nWhile you were also playing me\r\n\r\nTo sit with such calmness\r\nTo know how each key touched my soul\r\nThe sound was music to my ears\r\nBut it also revealed your heart was cold\r\n\r\n<em><strong>“Lies are sometimes as beautiful as the truth…”</em> –Monica Renata</strong>\r\n','The Grand Piano','','inherit','open','open','','761-revision-v1','','','2014-12-17 13:00:45','2014-12-17 19:00:45','',761,'http://www.monicarenata.com/761-revision-v1/',0,'revision','',0),(768,1,'2014-12-17 13:05:33','2014-12-17 19:05:33','The grand piano that sat in the room\r\nThe music sounds so sweet\r\nYour stance as you were sitting there\r\nWas always so unique\r\n\r\nYou sat straight up and touch the keys\r\nAnd moved your head with each key you stroked\r\nBeautiful Beautiful music\r\nThat you said came from your soul\r\n\r\nIn a trance you seemed to place me\r\nUnder an enchanting spell\r\nYou said the music sounded like love\r\nIt was a love that could even exist in heaven and in hell \r\n\r\nThen you push the little pedal\r\nYou smash your right foot down\r\nAnd soon there is a change that takes place\r\nAnd that change is the sound\r\n\r\nStill beautiful But different\r\nYet you smile and smirk with glee\r\nIn your mind you are playing the piano\r\nAnd you are also playing me\r\n\r\nBeautiful beautiful music\r\nYet I can’t differentiate the sounds\r\nFor what was the sound of beautiful truths\r\nSeems to be intertwined with beautiful lies\r\n\r\nYour hands glide across the keys\r\nMy heart seems to pound faster\r\nThe music sounds so beautiful indeed\r\nBut the meaning I can not fathom\r\n\r\nThat grand piano sat in the room\r\nThat piano was always me\r\nAnd you played the most beautiful music\r\nWhile you were also playing me\r\n\r\nTo sit with such calmness\r\nTo know how each key touched my soul\r\nThe sound was music to my ears\r\nBut it also revealed your heart was cold\r\n\r\n<em><strong>“Lies are sometimes as beautiful as the truth…”</em> –Monica Renata</strong>\r\n','The Grand Piano','','inherit','open','open','','761-revision-v1','','','2014-12-17 13:05:33','2014-12-17 19:05:33','',761,'http://www.monicarenata.com/761-revision-v1/',0,'revision','',0),(770,1,'2014-12-19 10:11:27','2014-12-19 16:11:27','I will not fall in love today\r\nAnd I shall not fall tomorrow\r\nFor what’s the point in falling in love? \r\nIf it only brings you sorrow\r\n\r\nFor love was meant to be beautiful\r\nAnd things that fall usually break\r\nSo why chance surviving a fall\r\nWhen your heart is the one at stake\r\n\r\nInstead I will love with all my heart\r\nMy love will never go downhill\r\nBecause a fall usually results in breaking things\r\nBreak my own heart… I doubt I will\r\n\r\nSo I will not fall in love today\r\nIn fact, I never will\r\nAs time goes on, so will my love\r\nIt will never experience a fall\r\n\r\n<strong><em>“Don’t fall in love because when you fall you break. Instead just love purely and live in that very moment. Enjoy it for what it is……”</em> – Monica Renata </strong>\r\n','I Will Not Fall in Love','','publish','open','open','','i-will-not-fall-in-love','','','2014-12-19 10:11:27','2014-12-19 16:11:27','',0,'http://www.monicarenata.com/?p=770',0,'post','',1),(771,1,'2014-12-19 10:11:27','2014-12-19 16:11:27','I will not fall in love today\r\nAnd I shall not fall tomorrow\r\nFor what’s the point in falling in love? \r\nIf it only brings you sorrow\r\n\r\nFor love was meant to be beautiful\r\nAnd things that fall usually break\r\nSo why chance surviving a fall\r\nWhen your heart is the one at stake\r\n\r\nInstead I will love with all my heart\r\nMy love will never go downhill\r\nBecause a fall usually results in breaking things\r\nBreak my own heart… I doubt I will\r\n\r\nSo I will not fall in love today\r\nIn fact, I never will\r\nAs time goes on, so will my love\r\nIt will never experience a fall\r\n\r\n<strong><em>“Don’t fall in love because when you fall you break. Instead just love purely and live in that very moment. Enjoy it for what it is……”</em> – Monica Renata </strong>\r\n','I Will Not Fall in Love','','inherit','open','open','','770-revision-v1','','','2014-12-19 10:11:27','2014-12-19 16:11:27','',770,'http://www.monicarenata.com/770-revision-v1/',0,'revision','',0),(773,1,'2014-12-19 12:35:24','2014-12-19 18:35:24','Love me like the midnight moon\r\nThat brightens your night sky\r\n\r\nHold and cherish me forever\r\nWhile I watch the stars twinkle in your eyes\r\n\r\nTo love you, I shall forever\r\nEven through the darkest moments of my life\r\n\r\nI shall love you each moment of every single day\r\nBecause in my darkness you are that light\r\n\r\n<strong><em>\"Some people have a way of lighting up your life in the darkest of times... Cherish those people\"</em> -Monica Renata </strong>','I Shall Love You','','publish','open','open','','i-shall-love-you','','','2014-12-19 12:35:24','2014-12-19 18:35:24','',0,'http://www.monicarenata.com/?p=773',0,'post','',1),(774,1,'2014-12-19 12:35:24','2014-12-19 18:35:24','Love me like the midnight moon\r\nThat brightens your night sky\r\n\r\nHold and cherish me forever\r\nWhile I watch the stars twinkle in your eyes\r\n\r\nTo love you, I shall forever\r\nEven through the darkest moments of my life\r\n\r\nI shall love you each moment of every single day\r\nBecause in my darkness you are that light\r\n\r\n<strong><em>\"Some people have a way of lighting up your life in the darkest of times... Cherish those people\"</em> -Monica Renata </strong>','I Shall Love You','','inherit','open','open','','773-revision-v1','','','2014-12-19 12:35:24','2014-12-19 18:35:24','',773,'http://www.monicarenata.com/773-revision-v1/',0,'revision','',0),(776,1,'2014-12-22 10:37:15','2014-12-22 16:37:15','Be careful what you think\r\nBe mindful of what you say\r\n\r\nFor what you think and say\r\nCan really dictate your day\r\n\r\nThink before you speak\r\nAnd speak what is on your mind\r\n\r\nYour thoughts are very valuable\r\nYour words are so divine \r\n\r\nThe mind is a beautiful thing\r\nDon’t let it go to waste\r\n\r\nFor it can MAKE or DESTROY you\r\nSo be careful of what you think and the words you say\r\n\r\n<strong><em>“Your mind can either MAKE or DESTROY you. Think positively and speak as if your tongue is that of God. Positive energies go a long way….Don’t let negative thoughts and words rot your life”</em> –Monica Renata </strong>\r\n\r\n','The Mind is A Beautiful Thing','','publish','open','open','','the-mind-is-a-beautiful-thing','','','2014-12-22 10:37:15','2014-12-22 16:37:15','',0,'http://www.monicarenata.com/?p=776',0,'post','',1),(777,1,'2014-12-22 10:37:15','2014-12-22 16:37:15','Be careful what you think\r\nBe mindful of what you say\r\n\r\nFor what you think and say\r\nCan really dictate your day\r\n\r\nThink before you speak\r\nAnd speak what is on your mind\r\n\r\nYour thoughts are very valuable\r\nYour words are so divine \r\n\r\nThe mind is a beautiful thing\r\nDon’t let it go to waste\r\n\r\nFor it can MAKE or DESTROY you\r\nSo be careful of what you think and the words you say\r\n\r\n<strong><em>“Your mind can either MAKE or DESTROY you. Think positively and speak as if your tongue is that of God. Positive energies go a long way….Don’t let negative thoughts and words rot your life”</em> –Monica Renata </strong>\r\n\r\n','The Mind is A Beautiful Thing','','inherit','open','open','','776-revision-v1','','','2014-12-22 10:37:15','2014-12-22 16:37:15','',776,'http://www.monicarenata.com/776-revision-v1/',0,'revision','',0),(778,1,'2014-12-25 13:49:33','2014-12-25 19:49:33','Who am I destined to be?\r\nI think I will never understand\r\nBut I know the sky is blue today\r\nAnd I know there are pebbles in the sand\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nScattered through my many years of life\r\nSome are broken as they lie on the ground\r\n\r\nNot always in their original condition\r\nSome are shattered beyond belief\r\nSome are smooth from the elements\r\nMemories scattered like pebbles on the beach\r\n\r\nWho am I destined to be?\r\nI think I will never understand\r\nBut I know that some pebbles will be washed away\r\nFrom the tear drops that touch this land\r\n\r\nFragments of forgotten thoughts\r\nOr perhaps thoughts that still linger around\r\nThoughts lost in the sands of time\r\nMy pebbles in my sand\r\n\r\n<strong><em>“Memories are like pebbles in the sand.. Although some memories may fade away, small fragments of them are still there….”</em> –Monica Renata</strong>\r\n','Pebbles in the Sand','','inherit','open','open','','763-revision-v1','','','2014-12-25 13:49:33','2014-12-25 19:49:33','',763,'http://www.monicarenata.com/763-revision-v1/',0,'revision','',0),(779,1,'2014-12-28 14:50:25','2014-12-28 20:50:25','I heard it on the radio\r\nThe words didn’t make sense\r\nI guess cause I was happy then\r\nAnd I was never on the fence\r\n\r\nI heard it on the radio\r\nThe words contained so much pain\r\nYet I just changed the station\r\nFor I didn’t feel the same\r\n\r\nI heard it on the radio\r\nIt played over and over again\r\nBut now I finally get those words\r\nThey finally make sense\r\n\r\nTo have a song relate to you\r\nTo hear your emotions in a song\r\nTo know what heartbreak feels like\r\nTo feel like every ounce of love in your life is gone\r\n\r\nI heard it on the radio\r\nIt was a song about heartbreak\r\nBut for me to finally understand those lyrics\r\nIt had to allow my heart to ache\r\n\r\n<strong><em>\"Sometimes in order to understand a song you have to go through every verse....Music makes sense when it relates to you\"</em> -Monica Renata </strong>','The Heartbreak Song','','publish','open','open','','the-heartbreak-song','','','2014-12-28 14:50:25','2014-12-28 20:50:25','',0,'http://www.monicarenata.com/?p=779',0,'post','',0),(780,1,'2014-12-28 14:50:25','2014-12-28 20:50:25','I heard it on the radio\r\nThe words didn’t make sense\r\nI guess cause I was happy then\r\nAnd I was never on the fence\r\n\r\nI heard it on the radio\r\nThe words contained so much pain\r\nYet I just changed the station\r\nFor I didn’t feel the same\r\n\r\nI heard it on the radio\r\nIt played over and over again\r\nBut now I finally get those words\r\nThey finally make sense\r\n\r\nTo have a song relate to you\r\nTo hear your emotions in a song\r\nTo know what heartbreak feels like\r\nTo feel like every ounce of love in your life is gone\r\n\r\nI heard it on the radio\r\nIt was a song about heartbreak\r\nBut for me to finally understand those lyrics\r\nIt had to allow my heart to ache\r\n\r\n<strong><em>\"Sometimes in order to understand a song you have to go through every verse....Music makes sense when it relates to you\"</em> -Monica Renata </strong>','The Heartbreak Song','','inherit','open','open','','779-revision-v1','','','2014-12-28 14:50:25','2014-12-28 20:50:25','',779,'http://www.monicarenata.com/779-revision-v1/',0,'revision','',0),(781,1,'2014-12-28 15:01:28','2014-12-28 21:01:28','You never buy me flowers\r\nYou say that flowers die\r\nBut I say they are pretty\r\nAnd they are like presents for my eyes\r\n\r\nYou never buy me flowers\r\nYet I always question why\r\nBut you reassure me that flowers\r\nAre not more important than I\r\n\r\nFlowers bloom\r\nAnd flowers die\r\nBut they are so pretty To my own eyes\r\n\r\nThere is beauty in blooming\r\nThere is beauty in death\r\nYet I don\'t get flowers And then I get upset\r\n\r\nCause you never buy me flowers\r\nAnd I always wonder why\r\nBut I now realized I received a flower\r\nAnd in front of my face it did die\r\n\r\n<strong><em>\"Sometimes relationships are like flowers. They bloom oh so beautifully, and then die right before your eyes...Maybe flowers aren\'t that great after all.... \" </em>- Monica Renata </strong>\r\n\r\n','You Never Buy Me Flowers','','publish','open','open','','you-never-buy-me-flowers','','','2014-12-28 15:01:28','2014-12-28 21:01:28','',0,'http://www.monicarenata.com/?p=781',0,'post','',0),(782,1,'2014-12-28 15:01:28','2014-12-28 21:01:28','You never buy me flowers\r\nYou say that flowers die\r\nBut I say they are pretty\r\nAnd they are like presents for my eyes\r\n\r\nYou never buy me flowers\r\nYet I always question why\r\nBut you reassure me that flowers\r\nAre not more important than I\r\n\r\nFlowers bloom\r\nAnd flowers die\r\nBut they are so pretty To my own eyes\r\n\r\nThere is beauty in blooming\r\nThere is beauty in death\r\nYet I don\'t get flowers And then I get upset\r\n\r\nCause you never buy me flowers\r\nAnd I always wonder why\r\nBut I now realized I received a flower\r\nAnd in front of my face it did die\r\n\r\n<strong><em>\"Sometimes relationships are like flowers. They bloom oh so beautifully, and then die right before your eyes...Maybe flowers aren\'t that great after all.... \" </em>- Monica Renata </strong>\r\n\r\n','You Never Buy Me Flowers','','inherit','open','open','','781-revision-v1','','','2014-12-28 15:01:28','2014-12-28 21:01:28','',781,'http://www.monicarenata.com/781-revision-v1/',0,'revision','',0),(783,1,'2014-12-28 15:06:14','2014-12-28 21:06:14','Can I get a day\r\nTo be in your presence \r\nI would love the opportunity\r\nTo let you experience my heaven\r\n\r\nCan I get an hour\r\nTo make you laugh and smile\r\nI would love to be in your company\r\nI would love to be the reason you smile\r\n\r\nCan I have a minute\r\nJust one minute out your day\r\nTo tell you that I love you \r\nAnd kiss you before you go away\r\n\r\nCan I get a second\r\nA second of your time\r\nI asked for more before\r\nBut this second shall suffice \r\n\r\n<strong><em>\"Sometimes giving someone a little bit of time means more to then than not giving them any time at all.\" </em>-Monica Renata </strong>','Can I Get A Second','','publish','open','open','','can-i-get-a-second','','','2014-12-28 15:06:14','2014-12-28 21:06:14','',0,'http://www.monicarenata.com/?p=783',0,'post','',0),(784,1,'2014-12-28 15:06:14','2014-12-28 21:06:14','Can I get a day\r\nTo be in your presence \r\nI would love the opportunity\r\nTo let you experience my heaven\r\n\r\nCan I get an hour\r\nTo make you laugh and smile\r\nI would love to be in your company\r\nI would love to be the reason you smile\r\n\r\nCan I have a minute\r\nJust one minute out your day\r\nTo tell you that I love you \r\nAnd kiss you before you go away\r\n\r\nCan I get a second\r\nA second of your time\r\nI asked for more before\r\nBut this second shall suffice \r\n\r\n<strong><em>\"Sometimes giving someone a little bit of time means more to then than not giving them any time at all.\" </em>-Monica Renata </strong>','Can I Get A Second','','inherit','open','open','','783-revision-v1','','','2014-12-28 15:06:14','2014-12-28 21:06:14','',783,'http://www.monicarenata.com/783-revision-v1/',0,'revision','',0),(785,1,'2014-12-28 15:20:47','2014-12-28 21:20:47','Pebble falls from the mountaintop\r\nHits the land below\r\nDoes the ground feel any impact? \r\nDoes the mountain feel a piece of it is gone? \r\n\r\nRain drop fall from thunderclouds\r\nHits the great big tree\r\nYet the tree continues to stand tall\r\nAnd the rain continues to pour down gently\r\n\r\nA world of so much wonder\r\nAnd a midst it all I stand\r\nSo small in this great big world\r\nMinuscule like a grain of sand\r\n\r\nAt times I\'m lost in my own world\r\nBut the world is bigger than just me\r\nSo I shall smile in my disappointments\r\nAnd stand tall like the great big tree\r\n\r\nFor when life knocks me down\r\nAnd I feel like I am falling apart\r\nI must put myself back together\r\nAnd realize a piece of me is never gone\r\n\r\nFor life is all connected\r\nAnd things that are lost will someday be found\r\nIt may not be in its original form\r\nIt may not be on the same ground\r\n\r\nPebbles falls from the mountaintop\r\nJust like shatters of my heart\r\nIt hits the grown so heavily\r\nAnd I can feel myself losing each part\r\n\r\nRain drops fall from the thunderclouds\r\nJust like my tear drops fall on the ground\r\nBut I gotta keep on moving\r\nAnd not let small things get me down\r\n\r\nFor the world is filled with so much wonder\r\nAnd also so much pain\r\nBut I am human, and I feel\r\nAnd I must learn to live each day\r\n\r\n<strong><em>\"It is okay to FEEL......You are human... never let the disappointment of the world get you down. Just keep on going. The world is a wonderful place, but you have to go through the struggles to appreciate that. \"</em> -Monica Renata </strong>','I\'m Human','','publish','open','open','','im-human','','','2014-12-30 19:47:55','2014-12-31 01:47:55','',0,'http://www.monicarenata.com/?p=785',0,'post','',2),(786,1,'2014-12-28 15:20:47','2014-12-28 21:20:47','Pebble falls from the mountaintop\r\nHits the land below\r\nDoes the ground feel any impact? \r\nDoes the mountain feel a piece of it is gone? \r\n\r\nRain drop fall from thunderclouds\r\nHits the great big tree\r\nYet the tree continues to stand tall\r\nAnd the rain continues to pour down gently\r\n\r\nA world of so much wonder\r\nAnd a midst it all I stand\r\nSo small in this great big world\r\nMinuscule like a grain of sand\r\n\r\nAt times I\'m lost in my own world\r\nBut the world is bigger than just me\r\nSo I shall smile in my disappointments\r\nAnd stand tall like the great big tree\r\n\r\nFor when life knocks me down\r\nAnd I feel like I am falling apart\r\nI must put myself back together\r\nAnd realize a piece of me is never gone\r\n\r\nFor life is all connected\r\nAnd things that are lost will someday be found\r\nIt may not be in its original form\r\nIt may not be on the same ground\r\n\r\nPebbles falls from the mountaintop\r\nJust like shatters of my heart\r\nIt hits the grown so heavily\r\nAnd I can feel myself losing each piece\r\n\r\nRain drops fall from the thunderclouds\r\nJust like my tear drops fall on the ground\r\nBut I gotta keep on moving\r\nAnd not let small things get me down\r\n\r\nFor the world is filled with so much wonder\r\nAnd also so much pain\r\nBut I am human, and I feel\r\nAnd I must learn to live each day\r\n\r\n<strong><em>\"It is okay to FEEL......You are human... never let the disappointment of the world get you down. Just keep on going. The world is a wonderful place, but you have to go through the struggles to appreciate that. \"</em> -Monica Renata </strong>','I\'m Human','','inherit','open','open','','785-revision-v1','','','2014-12-28 15:20:47','2014-12-28 21:20:47','',785,'http://www.monicarenata.com/785-revision-v1/',0,'revision','',0),(788,1,'2014-12-30 19:33:27','2014-12-31 01:33:27','If Heaven wasn\'t so far away\r\nIf Heaven allowed me to call\r\nI wouldn\'t sit here crying\r\nWaiting to hear your voice once more\r\n\r\nIf Heaven allowed me to visit\r\nIf Heaven allowed me to come right back home\r\nI would give you a hug one more time\r\nFor your hugs are what I miss the most since your gone\r\n\r\nDays and nights I\'m waiting\r\nWaiting for you\r\nTo give me your words of wisdom\r\nFor you to say, \"I\'m proud of you\"\r\n\r\nMemories taken for granted\r\nFor I never thought that this day would be\r\nThought you were going to be here forever\r\nBut now you only exist in my dreams\r\n\r\nBut if heaven was next door to me\r\nEven if it was miles and miles away\r\nI would travel each day to see you\r\nFor you were the sunshine during my stormy days\r\n\r\nMemories will never be forgotten\r\nYour presence is still something I feel\r\nBut how I wish I could visit Heaven once more\r\nAnd then maybe my broken heart will heal\r\n\r\n<strong><em>\"Always appreciate the loved ones in your life. Cherish each moment, for one day everything you took for granted will be the very things you miss\" </em>-Monica Renata </strong>','If Heaven','','publish','open','open','','if-heaven','','','2014-12-30 19:33:27','2014-12-31 01:33:27','',0,'http://www.monicarenata.com/?p=788',0,'post','',0),(789,1,'2014-12-30 19:33:27','2014-12-31 01:33:27','If Heaven wasn\'t so far away\r\nIf Heaven allowed me to call\r\nI wouldn\'t sit here crying\r\nWaiting to hear your voice once more\r\n\r\nIf Heaven allowed me to visit\r\nIf Heaven allowed me to come right back home\r\nI would give you a hug one more time\r\nFor your hugs are what I miss the most since your gone\r\n\r\nDays and nights I\'m waiting\r\nWaiting for you\r\nTo give me your words of wisdom\r\nFor you to say, \"I\'m proud of you\"\r\n\r\nMemories taken for granted\r\nFor I never thought that this day would be\r\nThought you were going to be here forever\r\nBut now you only exist in my dreams\r\n\r\nBut if heaven was next door to me\r\nEven if it was miles and miles away\r\nI would travel each day to see you\r\nFor you were the sunshine during my stormy days\r\n\r\nMemories will never be forgotten\r\nYour presence is still something I feel\r\nBut how I wish I could visit Heaven once more\r\nAnd then maybe my broken heart will heal\r\n\r\n<strong><em>\"Always appreciate the loved ones in your life. Cherish each moment, for one day everything you took for granted will be the very things you miss\" </em>-Monica Renata </strong>','If Heaven','','inherit','open','open','','788-revision-v1','','','2014-12-30 19:33:27','2014-12-31 01:33:27','',788,'http://www.monicarenata.com/788-revision-v1/',0,'revision','',0),(790,1,'2014-12-30 19:46:07','2014-12-31 01:46:07','Pebble falls from the mountaintop\r\nHits the land below\r\nDoes the ground feel any impact? \r\nDoes the mountain feel a piece of it is gone? \r\n\r\nRain drop fall from thunderclouds\r\nHits the great big tree\r\nYet the tree continues to stand tall\r\nAnd the rain continues to pour down gently\r\n\r\nA world of so much wonder\r\nAnd a midst it all I stand\r\nSo small in this great big world\r\nMinuscule like a grain of sand\r\n\r\nAt times I\'m lost in my own world\r\nBut the world is bigger than just me\r\nSo I shall smile in my disappointments\r\nAnd stand tall like the great big tree\r\n\r\nFor when life knocks me down\r\nAnd I feel like I am falling apart\r\nI must put myself back together\r\nAnd realize a piece of me is never gone\r\n\r\nFor life is all connected\r\nAnd things that are lost will someday be found\r\nIt may not be in its original form\r\nIt may not be on the same ground\r\n\r\nPebbles falls from the mountaintop\r\nJust like shatters of my heart\r\nIt hits the grown so heavily\r\nAnd I can feel myself losing each part\r\n\r\nRain drops fall from the thunderclouds\r\nJust like my tear drops fall on the ground\r\nBut I gotta keep on moving\r\nAnd not let small things get me down\r\n\r\nFor the world is filled with so much wonder\r\nAnd also so much pain\r\nBut I am human, and I feel\r\nAnd I must learn to live each day\r\n\r\n<strong><em>\"It is okay to FEEL......You are human... never let the disappointment of the world get you down. Just keep on going. The world is a wonderful place, but you have to go through the struggles to appreciate that. \"</em> -Monica Renata </strong>','I\'m Human','','inherit','open','open','','785-revision-v1','','','2014-12-30 19:46:07','2014-12-31 01:46:07','',785,'http://www.monicarenata.com/785-revision-v1/',0,'revision','',0),(791,1,'2014-12-30 20:19:24','2014-12-31 02:19:24','You know how many times you said you missed me? \r\nWell guess what, I am in the same place\r\nFor when you said you missed me last time\r\nHere is where I have been\r\n\r\nYou know how many times you said you missed me? \r\nYet you didn’t pick up the phone to call\r\nYet my number has stayed the same\r\nPerhaps you just forgot to call\r\n\r\nI miss you has been said so easily\r\nBut do those words mean a thing\r\nI miss so many people\r\nYet I make time for them throughtout my day\r\n\r\nPerhaps you really miss me\r\nPerhaps your words are lies\r\nBut how can you possibly miss me\r\nIf you never give me time\r\n\r\n<strong><em>“If you really miss someone, you will make time to see them…”</em> –Monica Renata </strong>\r\n','You Say You Miss Me','','publish','open','open','','you-say-you-miss-me','','','2014-12-30 20:19:24','2014-12-31 02:19:24','',0,'http://www.monicarenata.com/?p=791',0,'post','',0),(792,1,'2014-12-30 20:19:24','2014-12-31 02:19:24','You know how many times you said you missed me? \r\nWell guess what, I am in the same place\r\nFor when you said you missed me last time\r\nHere is where I have been\r\n\r\nYou know how many times you said you missed me? \r\nYet you didn’t pick up the phone to call\r\nYet my number has stayed the same\r\nPerhaps you just forgot to call\r\n\r\nI miss you has been said so easily\r\nBut do those words mean a thing\r\nI miss so many people\r\nYet I make time for them throughtout my day\r\n\r\nPerhaps you really miss me\r\nPerhaps your words are lies\r\nBut how can you possibly miss me\r\nIf you never give me time\r\n\r\n<strong><em>“If you really miss someone, you will make time to see them…”</em> –Monica Renata </strong>\r\n','You Say You Miss Me','','inherit','open','open','','791-revision-v1','','','2014-12-30 20:19:24','2014-12-31 02:19:24','',791,'http://www.monicarenata.com/791-revision-v1/',0,'revision','',0),(793,1,'2015-01-02 11:50:49','2015-01-02 17:50:49','21 days\r\n21 nights\r\nMakes you feel lonely\r\nBut is this feeling right? \r\n\r\n21 days\r\n21 nights\r\nMakes you wonder what is real\r\nBut should you even put up a fight?\r\n\r\nWhat\'s the point in over-analyzing?\r\nWhat\'s the point in wondering why?\r\nFor if it has been 21 days\r\nWhy cry for 21 nights?\r\n\r\n21 days since you last felt their touch\r\n21 days they continue to say you ask for too much\r\n21 nights you wonder why\r\n21 nights you lay in bed and cry\r\nBut why?\r\n\r\nSome reasons are valid\r\nSome are just an excuse\r\nFor if someone hasn\'t seen you in days\r\nIt is because they did not want to\r\n\r\nTo cry over spilled milk is pointless\r\nJust like it crying over a tainted love is\r\nFor a love that may have blossomed once\r\nMay now taste sour indeed\r\n\r\n21 days and 21 nights\r\nIn that wait a piece of you dies\r\nBut stop waiting for others to come through\r\nFor they may say they care but they lie\r\n\r\n<strong><em>\"Sometimes you have to stop waiting on others to rescue you. Be your own hero! For when you really need others, that may be the time when they lie and say they don\'t have the time to help you\" </em>-Monica Renata </strong>\r\n','21 Days','','publish','open','open','','21-days','','','2015-01-02 11:50:49','2015-01-02 17:50:49','',0,'http://www.monicarenata.com/?p=793',0,'post','',0),(794,1,'2015-01-02 11:50:49','2015-01-02 17:50:49','21 days\r\n21 nights\r\nMakes you feel lonely\r\nBut is this feeling right? \r\n\r\n21 days\r\n21 nights\r\nMakes you wonder what is real\r\nBut should you even put up a fight?\r\n\r\nWhat\'s the point in over-analyzing?\r\nWhat\'s the point in wondering why?\r\nFor if it has been 21 days\r\nWhy cry for 21 nights?\r\n\r\n21 days since you last felt their touch\r\n21 days they continue to say you ask for too much\r\n21 nights you wonder why\r\n21 nights you lay in bed and cry\r\nBut why?\r\n\r\nSome reasons are valid\r\nSome are just an excuse\r\nFor if someone hasn\'t seen you in days\r\nIt is because they did not want to\r\n\r\nTo cry over spilled milk is pointless\r\nJust like it crying over a tainted love is\r\nFor a love that may have blossomed once\r\nMay now taste sour indeed\r\n\r\n21 days and 21 nights\r\nIn that wait a piece of you dies\r\nBut stop waiting for others to come through\r\nFor they may say they care but they lie\r\n\r\n<strong><em>\"Sometimes you have to stop waiting on others to rescue you. Be your own hero! For when you really need others, that may be the time when they lie and say they don\'t have the time to help you\" </em>-Monica Renata </strong>\r\n','21 Days','','inherit','open','open','','793-revision-v1','','','2015-01-02 11:50:49','2015-01-02 17:50:49','',793,'http://www.monicarenata.com/793-revision-v1/',0,'revision','',0),(795,1,'2015-01-02 12:17:49','2015-01-02 18:17:49','Each day I awaken\r\nI slowly open my eyes\r\nAnd life is yet again beautiful\r\nMy life is always a surprise\r\n\r\nEach day I walk out my door\r\nI smile for the world to see\r\nAnd some people smile back\r\nWhile others frown at me\r\n\r\nThere is beauty in the ugliest things\r\nAnd some ugly things are absolutely beautiful\r\nA voice can be used to sing a lovely song\r\nOr a voice can be used to speak something hurtful\r\n\r\nKindness is taken for granted at times\r\nTears of sadness are deemed to others as weak\r\nChildren are bullied because of who they are\r\nWe walk by people who are truly in need\r\n\r\nYou are ridiculed for having feelings\r\nThey say \"feelings\" are for the weak\r\nThis world is so very twisted\r\nThis world tells you to be everyone but the person you know as M-E\r\n\r\nA robot in an emotional world\r\nFull of emotions people say you shouldn\'t feel\r\nYou shall be a warrior in your own beautiful world\r\nThat can overcome all since you cannot feel\r\n\r\nIn a world of so much drama\r\nYou are now unable to feel\r\nFor life doesn\'t disappoint you\r\nTo be Invincible, You now know how that feels\r\n\r\nBut what is the point of being that way?\r\nFor sometimes pain makes you feel alive\r\nAnd would you honestly think that you are living\r\nIf a tear never left your beautiful eye?\r\n\r\nLife and Death are circles\r\nIn Happiness there is always pain\r\nAnd you are human\r\nYou feel pleasure and also pain\r\n\r\nIt is nice to never be broken\r\nBut sometimes being broken is what we need\r\nFor why be invincible in a world\r\nAnd miss out on happiness because you\'re scared of pain\r\n\r\nLet the world scar you at times\r\nBut let yourself also smile\r\nEach day awaken with a positive mind\r\nFor that mind will help pick you up when your down\r\n\r\n<strong><em>\"I never truly understand what others find so appealing about being emotionless in the world. It is said that feelings are for the weak, but feelings make you feel alive. I would rather be scarred by the world and recover than be truly invincible.....For every painful moment and happy occasion in life has made me feel the most alive..\"</em> --Monica Renata</strong>','Invincible','','publish','open','open','','invincible','','','2016-12-16 20:13:11','2016-12-17 02:13:11','',0,'http://www.monicarenata.com/?p=795',0,'post','',1),(796,1,'2015-01-02 12:17:49','2015-01-02 18:17:49','Each day I awaken\r\nI slowly open my eyes\r\nAnd life is yet again beautiful\r\nMy life is always a surprise\r\n\r\nEach day I walk out my door\r\nI smile for the world to see\r\nAnd some people smile back\r\nWhile others frown at me\r\n\r\nThere is beauty in the ugliest things\r\nAnd some ugly things are absolutely beautiful\r\nA voice can be used to sing a lovely song\r\nOr a voice can be used to speak something hurtful\r\n\r\nKindness is taken for granted at times\r\nTears of sadness are deemed to others as weak\r\nChildren are bullied because of who they are\r\nWe walk by people who are truly in need\r\n\r\nYou are ridiculed for having feelings\r\nThey say \"feelings\" are for the weak\r\nThis world is so very twisted\r\nThis world tells you to be everyone but the person you know as M-E\r\n\r\nA robot in an emotional world\r\nFull of emotions people say you shouldn\'t feel\r\nYou shall be a warrior in your own beautiful world\r\nThat can overcome all since you cannot feel\r\n\r\nIn a world of so much drama\r\nYou are now unable to feel\r\nFor life doesn\'t disappoint you\r\nTo be Invincible, You now know how that feels\r\n\r\nBut what is the point of being that way? \r\nFor sometimes pain makes you feel alive\r\nAnd would you honestly think that you are living\r\nIf a tear never left your beautiful eye? \r\n\r\nLife and Death are circles\r\nIn Happiness there is always pain\r\nAnd you are human\r\nYou feel pleasure and also pain\r\n\r\nIt is nice to never be broken\r\nBut sometimes being broken is what we need\r\nFor why be invincible in a world\r\nAnd miss out happiness because you\'re scared of pain\r\n\r\nLet the world scar you at times\r\nBut let yourself also smile\r\nEach day awaken with a positive mind\r\nFor that mind will help pick you up when your down\r\n\r\n<strong><em>\"I never truly understand what others find so appealing about being emotionless in the world. It is said that feelings are for the weak, but feelings make you feel alive. I would rather be scarred by the world and recover than be truly invincible.....For every painful moment and happy occasion in life has made me feel the most alive..\"</em> --Monica Renata</strong>','Invincible','','inherit','open','open','','795-revision-v1','','','2015-01-02 12:17:49','2015-01-02 18:17:49','',795,'http://www.monicarenata.com/795-revision-v1/',0,'revision','',0),(798,1,'2015-01-05 13:59:39','2015-01-05 19:59:39','<center\r\n\r\nToday is a new day\r\nYesterday is long gone\r\n\r\nTomorrow is so far away\r\nYet today is almost gone\r\n\r\nTo dwell on a negative thought\r\nAll throughout your day\r\n\r\nMakes your past troubles of yesterday\r\nRob you of your today\r\n\r\n<strong><em>\"Don\'t let \"just a thought\" of your yesterday rob you of your peace today\"</em> -Monica Renata </strong>\r\n\r\n\r\n\r\n\r\n</center> ','Just a Thought','','publish','open','open','','just-a-thought','','','2015-01-13 07:12:47','2015-01-13 13:12:47','',0,'http://www.monicarenata.com/?p=798',0,'post','',1),(799,1,'2015-01-05 13:58:23','2015-01-05 19:58:23','<center\r\n\r\nToday is a new day\r\nYesterday is long gone\r\n\r\nTomorrow is so far away\r\nYet today is almsot gone\r\n\r\nTo dwell on a negative thought\r\nAll througout your day\r\n\r\nMakes your past troubles of yesterday\r\nRob you of your today\r\n\r\n<strong><em>\"Don\'t let \"just a thought\" of your yesterday rob you of your peace today\"</em> -Monica Renata </strong>\r\n\r\n\r\n\r\n\r\n</center> ','Just a Thought','','inherit','open','open','','798-revision-v1','','','2015-01-05 13:58:23','2015-01-05 19:58:23','',798,'http://www.monicarenata.com/798-revision-v1/',0,'revision','',0),(810,1,'2015-01-13 06:55:39','2015-01-13 12:55:39','<center\r\n\r\nToday is a new day\r\nYesterday is long gone\r\n\r\nTomorrow is so far away\r\nYet today is almost gone\r\n\r\nTo dwell on a negative thought\r\nAll througout your day\r\n\r\nMakes your past troubles of yesterday\r\nRob you of your today\r\n\r\n<strong><em>\"Don\'t let \"just a thought\" of your yesterday rob you of your peace today\"</em> -Monica Renata </strong>\r\n\r\n\r\n\r\n\r\n</center> ','Just a Thought','','inherit','open','open','','798-revision-v1','','','2015-01-13 06:55:39','2015-01-13 12:55:39','',798,'http://www.monicarenata.com/798-revision-v1/',0,'revision','',0),(801,1,'2015-01-05 14:03:32','2015-01-05 20:03:32','I have a case of the don\'t wants\r\nI don\'t want to be here today\r\nI don\'t want to have to spend any money\r\nI don\'t want to go outside and play\r\n\r\nOf all the things I want to do\r\nThe don\'t wants seem to be multiplied\r\nFor how can I do the things I want\r\nIf the don\'t wants consume my mind\r\n\r\nI have a case of the don\'t wants\r\nAnd I need to get over that today\r\nFor when your mind is consumed with the don\'t wants\r\nYour wants slowly fade away\r\n\r\n\r\n<strong><em>\"Sometimes you have to stop thinking about thing things you don\'t want to happen and think about those things that you want TO HAPPEN. Negative thoughts poison your mind and drift you further away from where you want to be in life.\"</em></strong> -Monica Renata ','Case of the Don\'t Wants','','publish','open','open','','case-of-the-dont-wants','','','2015-01-05 14:04:07','2015-01-05 20:04:07','',0,'http://www.monicarenata.com/?p=801',0,'post','',1),(802,1,'2015-01-05 14:03:32','2015-01-05 20:03:32','I have a case of the don\'t wants\r\nI don\'t want to be here today\r\nI don\'t want to have to spend any money\r\nI don\'t want to go outside and play\r\n\r\nOf all the things I want to do\r\nThe don\'t wants seem to be multiplied\r\nFor how can I do the things I want\r\nIf the don\'t wants consume my mind\r\n\r\nI have a case of the don\'t wants\r\nAnd I need to get over that today\r\nFor when your mind is consumed with the don\'t wants\r\nYour wants slowly fade away\r\n\r\n\r\n\"Sometimes you have to stop thinking about thing things you don\'t want to happen and think about those things that you want TO HAPPEN. Negative thoughts poison your mind and drift you further away from where you want to be in life.\" -Monica Renata ','Case of the Don\'t Wants','','inherit','open','open','','801-revision-v1','','','2015-01-05 14:03:32','2015-01-05 20:03:32','',801,'http://www.monicarenata.com/801-revision-v1/',0,'revision','',0),(803,1,'2015-01-05 14:04:07','2015-01-05 20:04:07','I have a case of the don\'t wants\r\nI don\'t want to be here today\r\nI don\'t want to have to spend any money\r\nI don\'t want to go outside and play\r\n\r\nOf all the things I want to do\r\nThe don\'t wants seem to be multiplied\r\nFor how can I do the things I want\r\nIf the don\'t wants consume my mind\r\n\r\nI have a case of the don\'t wants\r\nAnd I need to get over that today\r\nFor when your mind is consumed with the don\'t wants\r\nYour wants slowly fade away\r\n\r\n\r\n<strong><em>\"Sometimes you have to stop thinking about thing things you don\'t want to happen and think about those things that you want TO HAPPEN. Negative thoughts poison your mind and drift you further away from where you want to be in life.\"</em></strong> -Monica Renata ','Case of the Don\'t Wants','','inherit','open','open','','801-revision-v1','','','2015-01-05 14:04:07','2015-01-05 20:04:07','',801,'http://www.monicarenata.com/801-revision-v1/',0,'revision','',0),(804,1,'2015-01-06 07:01:10','2015-01-06 13:01:10','I’ve seen better days\r\nAnd of course I have seen worse\r\nBut the best days were the sweetest\r\nSo sweet that it made me forget the worst\r\n\r\nI’ve seen the rain fall from the sky\r\nI’ve seen the sun shine after the storm\r\nAnd by seeing that reality\r\nI know that my life shall go on\r\n\r\nDespite constant struggle\r\nDespite heartbreak and pain\r\nI can always pick myself up\r\nFor I know there will be better days\r\n\r\nJust like a frown can turn upside down\r\nJust like hope can be restored\r\nJust like hours of work can yield successes\r\nBetter days can surely come\r\n\r\nFor better days are coming\r\nAnd they shall overshadow your best and worst\r\nJust look forward to tomorrow\r\nFor better days are destined to come\r\n\r\n<strong><em>“Never dwell on your negative days, for they only last a day. Think about the positive times, and they will help you make a better today. For life isn’t all that easy, and life isn’t all that bad…Just always believe that better days are coming, and your today’s will be better than your past.”</em></strong> –Monica Renata \r\n','Better Days Are Coming','','publish','open','open','','better-days-are-coming','','','2015-01-06 07:32:05','2015-01-06 13:32:05','',0,'http://www.monicarenata.com/?p=804',0,'post','',1),(805,1,'2015-01-06 07:01:10','2015-01-06 13:01:10','I’ve seen better days\r\nAnd of course I have seen worse\r\nBut the best days were the sweetest\r\nSo sweet that it made me forget the worst\r\n\r\nI’ve seen the rain fall from the sky\r\nI’ve seen the sun shine after the storm\r\nAnd by seeing that reality\r\nI know that my life shall go on\r\n\r\nDespite constant struggle\r\nDespite heartbreak and pain\r\nI can always pick myself up\r\nFor I know there will be better days\r\n\r\nJust like a frown can turn upside down\r\nJust like hope can be restored\r\nJust like hours of work can yield successes\r\nBetter days can surely come\r\n\r\nFor better days are coming\r\nAnd they shall overshadow your best and your worst\r\nJust look forward to tomorrow\r\nFor better days are destined to come\r\n\r\n<strong><em>“Never dwell on your negative days, for they only last a day. Think about the positive times, and they will help you make a better today. For life isn’t all that easy, and life isn’t all that bad…Just always believe that better days are coming, and your today’s will be better than your past.”</em></strong> –Monica Renata \r\n','Better Days Are Coming','','inherit','open','open','','804-revision-v1','','','2015-01-06 07:01:10','2015-01-06 13:01:10','',804,'http://www.monicarenata.com/804-revision-v1/',0,'revision','',0),(806,1,'2015-01-06 07:32:05','2015-01-06 13:32:05','I’ve seen better days\r\nAnd of course I have seen worse\r\nBut the best days were the sweetest\r\nSo sweet that it made me forget the worst\r\n\r\nI’ve seen the rain fall from the sky\r\nI’ve seen the sun shine after the storm\r\nAnd by seeing that reality\r\nI know that my life shall go on\r\n\r\nDespite constant struggle\r\nDespite heartbreak and pain\r\nI can always pick myself up\r\nFor I know there will be better days\r\n\r\nJust like a frown can turn upside down\r\nJust like hope can be restored\r\nJust like hours of work can yield successes\r\nBetter days can surely come\r\n\r\nFor better days are coming\r\nAnd they shall overshadow your best and worst\r\nJust look forward to tomorrow\r\nFor better days are destined to come\r\n\r\n<strong><em>“Never dwell on your negative days, for they only last a day. Think about the positive times, and they will help you make a better today. For life isn’t all that easy, and life isn’t all that bad…Just always believe that better days are coming, and your today’s will be better than your past.”</em></strong> –Monica Renata \r\n','Better Days Are Coming','','inherit','open','open','','804-revision-v1','','','2015-01-06 07:32:05','2015-01-06 13:32:05','',804,'http://www.monicarenata.com/804-revision-v1/',0,'revision','',0),(808,1,'2015-01-09 12:08:09','2015-01-09 18:08:09','<center> \r\n\r\n\r\nI miss you like the morning star that is seen just before sunrise\r\nSo beautiful in my world you were\r\nAlways at my Far East side\r\n\r\nI miss you like the training wheels on my very first bright red bike\r\nYou helped me take my first few steps\r\nThen taught me how to journey on my path of life\r\n\r\nI miss you, oh I miss you\r\nI miss you terribly so\r\nPlease come back to me\r\nOh why did you have to go?\r\n\r\nI miss you like I miss the sun\r\n On a very cloudy day\r\nI miss you like I miss the rain\r\nWhen it has been a drought for days\r\n\r\nI miss every little piece of you\r\nI miss every little thing\r\nI’ll gladly take the bad along with the good\r\nIf here is where you would stay\r\n\r\nBecause I miss you like the winter storm that I haven’t seen a years\r\nA storm that freezes everything\r\nBut shows beauty in the icicles on your beard\r\n\r\nI miss you like my favorite t-shirt that is faded and in rags\r\nYour aroma still is on it\r\nEven though it’s been washed again and again\r\n\r\nIf all wishes came true\r\nIf wishes coming true was so\r\nOh how I wish you was here with me\r\nFor I dreadfully miss you so\r\n\r\n\r\n\r\n\r\n</center> ','I Miss You So','','publish','open','open','','i-miss-you-so','','','2015-01-09 12:08:09','2015-01-09 18:08:09','',0,'http://www.monicarenata.com/?p=808',0,'post','',0),(809,1,'2015-01-09 12:08:09','2015-01-09 18:08:09','<center> \r\n\r\n\r\nI miss you like the morning star that is seen just before sunrise\r\nSo beautiful in my world you were\r\nAlways at my Far East side\r\n\r\nI miss you like the training wheels on my very first bright red bike\r\nYou helped me take my first few steps\r\nThen taught me how to journey on my path of life\r\n\r\nI miss you, oh I miss you\r\nI miss you terribly so\r\nPlease come back to me\r\nOh why did you have to go?\r\n\r\nI miss you like I miss the sun\r\n On a very cloudy day\r\nI miss you like I miss the rain\r\nWhen it has been a drought for days\r\n\r\nI miss every little piece of you\r\nI miss every little thing\r\nI’ll gladly take the bad along with the good\r\nIf here is where you would stay\r\n\r\nBecause I miss you like the winter storm that I haven’t seen a years\r\nA storm that freezes everything\r\nBut shows beauty in the icicles on your beard\r\n\r\nI miss you like my favorite t-shirt that is faded and in rags\r\nYour aroma still is on it\r\nEven though it’s been washed again and again\r\n\r\nIf all wishes came true\r\nIf wishes coming true was so\r\nOh how I wish you was here with me\r\nFor I dreadfully miss you so\r\n\r\n\r\n\r\n\r\n</center> ','I Miss You So','','inherit','open','open','','808-revision-v1','','','2015-01-09 12:08:09','2015-01-09 18:08:09','',808,'http://www.monicarenata.com/808-revision-v1/',0,'revision','',0),(811,1,'2015-01-13 07:12:47','2015-01-13 13:12:47','<center\r\n\r\nToday is a new day\r\nYesterday is long gone\r\n\r\nTomorrow is so far away\r\nYet today is almost gone\r\n\r\nTo dwell on a negative thought\r\nAll throughout your day\r\n\r\nMakes your past troubles of yesterday\r\nRob you of your today\r\n\r\n<strong><em>\"Don\'t let \"just a thought\" of your yesterday rob you of your peace today\"</em> -Monica Renata </strong>\r\n\r\n\r\n\r\n\r\n</center> ','Just a Thought','','inherit','open','open','','798-revision-v1','','','2015-01-13 07:12:47','2015-01-13 13:12:47','',798,'http://www.monicarenata.com/798-revision-v1/',0,'revision','',0),(813,1,'2015-01-13 07:29:52','2015-01-13 13:29:52','<p style=\"text-align: center;\">This is just a test</p>\r\n<p style=\"text-align: center;\">A way to see if this will work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will try my very best</p>\r\n<p style=\"text-align: center;\">To get this to finally work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">If my efforts are proven to be in vain</p>\r\n<p style=\"text-align: center;\">I will not shed one single tear</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For at least I tried to pass this test</p>\r\n<p style=\"text-align: center;\">And my efforts I will hold in my heart so dear</p>','The Test','','publish','open','open','','the-test','','','2015-01-13 07:30:51','2015-01-13 13:30:51','',0,'http://www.monicarenata.com/?p=813',0,'post','',1),(814,1,'2015-01-13 07:29:52','2015-01-13 13:29:52','<p style=\"text-align: center;\">This is just a test</p>\r\n<p style=\"text-align: center;\">A way to see if this will work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will try my very best</p>\r\n<p style=\"text-align: center;\">To get this to finally work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">If my efforts are proven to be in vain</p>\r\n<p style=\"text-align: center;\">I will not shed one single tear</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For at least I tried to pass this test</p>\r\n<p style=\"text-align: center;\">And my efforts I will hold in my heart so dear</p>','The Test','','inherit','open','open','','813-revision-v1','','','2015-01-13 07:29:52','2015-01-13 13:29:52','',813,'http://www.monicarenata.com/813-revision-v1/',0,'revision','',0),(815,1,'2015-01-13 07:30:51','2015-01-13 13:30:51','<p style=\"text-align: center;\">This is just a test</p>\r\n<p style=\"text-align: center;\">A way to see if this will work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will try my very best</p>\r\n<p style=\"text-align: center;\">To get this to finally work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">If my efforts are proven to be in vain</p>\r\n<p style=\"text-align: center;\">I will not shed one single tear</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For at least I tried to pass this test</p>\r\n<p style=\"text-align: center;\">And my efforts I will hold in my heart so dear</p>','The Test','','inherit','open','open','','813-revision-v1','','','2015-01-13 07:30:51','2015-01-13 13:30:51','',813,'http://www.monicarenata.com/813-revision-v1/',0,'revision','',0),(816,1,'2015-01-15 13:53:12','2015-01-15 19:53:12','<p style=\"text-align: center;\"><em>\"Ever found yourself in a circle</em></p>\r\n<p style=\"text-align: center;\"><em>wondering if this was for you</em></p>\r\n<p style=\"text-align: center;\"><em>A love that stand the test of time</em></p>\r\n<p style=\"text-align: center;\"><em>Could this be really true?</em></p>\r\n<p style=\"text-align: center;\"><em>A love that is just for me!</em></p>\r\n<p style=\"text-align: center;\"><em>And the whole world will see!</em></p>\r\n<p style=\"text-align: center;\"><em>But how can the world see</em></p>\r\n<p style=\"text-align: center;\"><em>Something that is so cloudy to me......................Is it really love?</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>Doesn\'t this sound like many relationships nowadays? An over-burst of emotions yet some things just don\'t add up. Loyalty is requested, yet it is only one sided. Promises are made and then broken and people are consistently \"inconsistent\" .....But despite it all, you feel as though you love them, right? You feel as though despite the obvious flaws, you can make this work, right?.......But how many times have you thought that perhaps......Just perhaps... You deserve better?? \" -Monica Renata </em></p>\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\n \r\n\r\nAnd in your mind\r\n\r\nYou questioned why\r\n\r\nBut never could comprehend\r\n\r\n \r\n\r\nHow a love like this could exist\r\n\r\nSo lovely that it can be a sin\r\n\r\n \r\n\r\nTwo minutes ago\r\n\r\nOr perhaps a few hours\r\n\r\nYou waited for their call\r\n\r\n \r\n\r\nAnd much to your surprise\r\n\r\nYou didn\'t hear anything at all\r\n\r\n \r\n\r\nThe world was filled with something\r\n\r\nThe sound of vacancy\r\n\r\nI think it’s called\r\n\r\n \r\n\r\nDreary, eerie silence\r\n\r\nAs you awaited so you could give your all\r\n\r\n \r\n\r\nIn morning dew\r\n\r\nAnd sweet afternoons\r\n\r\nAnd lovely, beautifully dark nights\r\n\r\n \r\n\r\nYou yearn for them dearly\r\n\r\nBut they are out of sight\r\n\r\n \r\n\r\nReplaced by random messages\r\n\r\nThat say “I need you”\r\n\r\n“I want you forever more”\r\n\r\n \r\n\r\nBut the actions don’t match the words\r\n\r\nSo should you just ignore?\r\n\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\nIs this love? Could it be? You say over and over again\r\n\r\n \r\n\r\nBut in the back of your mind you’re wondering\r\n\r\nWhy do I continue to pretend?\r\n\r\n \r\n\r\nFor if actions don’t match words\r\n\r\nThen words don’t mean a thing\r\n\r\nTears cloud your vision but to be blind you must not be\r\n\r\n \r\n\r\nFor actions show who really care\r\n\r\nSo always keep this in mind\r\n\r\nIf you feel like a love is fleeting\r\n\r\nThink to yourself, “Perhaps this love isn\'t mines”\r\n\r\n \r\n\r\nConsistency\r\n\r\nReliability\r\n\r\nA true, honest, heart\r\n\r\n \r\n\r\nThe beginning of a delectable brew\r\n\r\nThat shows true love, a combination of respect for them and you, at its start\r\n\r\n \r\n\r\nIf you can’t understand to where your heart sinks\r\n\r\nPerhaps your heart sank to the land of unknown\r\n\r\nA place of doubt where you don’t want to be\r\n\r\nFor if it stays too long it might get cold\r\n\r\n \r\n\r\nLove doesn\'t leave you confused\r\n\r\nLove is pure and true\r\n\r\nSo if you are wondering, “Is this really love”\r\n\r\nPerhaps this isn\'t the love meant for you\r\n\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\n \r\n\r\nBut why let your heart grieve in vain?\r\n\r\nFor it is waiting for its turn!\r\n\r\nTo be loved like it is the most valuable possession\r\n\r\nBy a loving,respectful person who walks alone like you in this world\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Is This Love?','','publish','open','open','','is-this-love','','','2015-01-15 13:53:12','2015-01-15 19:53:12','',0,'http://www.monicarenata.com/?p=816',0,'post','',2),(817,1,'2015-01-15 13:53:12','2015-01-15 19:53:12','<p style=\"text-align: center;\"><em>\"Ever found yourself in a circle</em></p>\r\n<p style=\"text-align: center;\"><em>wondering if this was for you</em></p>\r\n<p style=\"text-align: center;\"><em>A love that stand the test of time</em></p>\r\n<p style=\"text-align: center;\"><em>Could this be really true?</em></p>\r\n<p style=\"text-align: center;\"><em>A love that is just for me!</em></p>\r\n<p style=\"text-align: center;\"><em>And the whole world will see!</em></p>\r\n<p style=\"text-align: center;\"><em>But how can the world see</em></p>\r\n<p style=\"text-align: center;\"><em>Something that is so cloudy to me......................Is it really love?</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>Doesn\'t this sound like many relationships nowadays? An over-burst of emotions yet some things just don\'t add up. Loyalty is requested, yet it is only one sided. Promises are made and then broken and people are consistently \"inconsistent\" .....But despite it all, you feel as though you love them, right? You feel as though despite the obvious flaws, you can make this work, right?.......But how many times have you thought that perhaps......Just perhaps... You deserve better?? \" -Monica Renata </em></p>\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\n \r\n\r\nAnd in your mind\r\n\r\nYou questioned why\r\n\r\nBut never could comprehend\r\n\r\n \r\n\r\nHow a love like this could exist\r\n\r\nSo lovely that it can be a sin\r\n\r\n \r\n\r\nTwo minutes ago\r\n\r\nOr perhaps a few hours\r\n\r\nYou waited for their call\r\n\r\n \r\n\r\nAnd much to your surprise\r\n\r\nYou didn\'t hear anything at all\r\n\r\n \r\n\r\nThe world was filled with something\r\n\r\nThe sound of vacancy\r\n\r\nI think it’s called\r\n\r\n \r\n\r\nDreary, eerie silence\r\n\r\nAs you awaited so you could give your all\r\n\r\n \r\n\r\nIn morning dew\r\n\r\nAnd sweet afternoons\r\n\r\nAnd lovely, beautifully dark nights\r\n\r\n \r\n\r\nYou yearn for them dearly\r\n\r\nBut they are out of sight\r\n\r\n \r\n\r\nReplaced by random messages\r\n\r\nThat say “I need you”\r\n\r\n“I want you forever more”\r\n\r\n \r\n\r\nBut the actions don’t match the words\r\n\r\nSo should you just ignore?\r\n\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\nIs this love? Could it be? You say over and over again\r\n\r\n \r\n\r\nBut in the back of your mind you’re wondering\r\n\r\nWhy do I continue to pretend?\r\n\r\n \r\n\r\nFor if actions don’t match words\r\n\r\nThen words don’t mean a thing\r\n\r\nTears cloud your vision but to be blind you must not be\r\n\r\n \r\n\r\nFor actions show who really care\r\n\r\nSo always keep this in mind\r\n\r\nIf you feel like a love is fleeting\r\n\r\nThink to yourself, “Perhaps this love isn\'t mines”\r\n\r\n \r\n\r\nConsistency\r\n\r\nReliability\r\n\r\nA true, honest, heart\r\n\r\n \r\n\r\nThe beginning of a delectable brew\r\n\r\nThat shows true love, a combination of respect for them and you, at its start\r\n\r\n \r\n\r\nIf you can’t understand to where your heart sinks\r\n\r\nPerhaps your heart sank to the land of unknown\r\n\r\nA place of doubt where you don’t want to be\r\n\r\nFor if it stays too long it might get cold\r\n\r\n \r\n\r\nLove doesn\'t leave you confused\r\n\r\nLove is pure and true\r\n\r\nSo if you are wondering, “Is this really love”\r\n\r\nPerhaps this isn\'t the love meant for you\r\n\r\n \r\n\r\nTwo days ago\r\n\r\nOr perhaps a year\r\n\r\nYou felt your heart just sink\r\n\r\n \r\n\r\nTo the bottom of a bottomless pit\r\n\r\nAnd there it decided to wait\r\n\r\n \r\n\r\nBut why let your heart grieve in vain?\r\n\r\nFor it is waiting for its turn!\r\n\r\nTo be loved like it is the most valuable possession\r\n\r\nBy a loving,respectful person who walks alone like you in this world\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Is This Love?','','inherit','open','open','','816-revision-v1','','','2015-01-15 13:53:12','2015-01-15 19:53:12','',816,'http://www.monicarenata.com/816-revision-v1/',0,'revision','',0),(818,1,'2015-01-15 14:52:42','2015-01-15 20:52:42','Beautiful indeed\r\n\r\nAs lovely as the words that express the soul\r\n\r\n \r\n\r\nPerfect in so many areas\r\n\r\nLeaves minds out of control\r\n\r\n \r\n\r\nTempted by temptation\r\n\r\nThe look of it at least\r\n\r\n \r\n\r\nBowing down to something that has no substance\r\n\r\nYet you cower at their feet\r\n\r\n \r\n\r\nA protection from harsh elements\r\n\r\nYet the flame that causes your end\r\n\r\n \r\n\r\nWho knew that your strength and weakness\r\n\r\nIs what we call human flesh?\r\n\r\n \r\n\r\nIs it the beauty of the soul\r\n\r\nOr the curves that caught your eyes\r\n\r\n \r\n\r\nWas it the stance when at pause\r\n\r\nOr was it the confidence in their stride\r\n\r\n \r\n\r\nWe look on the surface very much\r\n\r\nBut do we look deep\r\n\r\n \r\n\r\nFlesh is our protection\r\n\r\nBut is also what makes some of us weak\r\n\r\n \r\n\r\nSo my advice to you\r\n\r\nIs to look a little deep\r\n\r\n \r\n\r\nFor what you find underneath\r\n\r\nIsn\'t exactly what you seek\r\n\r\n \r\n\r\n \r\n\r\n<em><strong>\"Finding someone who is physically perfect isn\'t bad. However, when you neglect the quality of a person because of his or her looks, that is wrong..... You might end up with a trophy that isn\'t worth sh*t\" - Monica Renata </strong></em>','Flesh','','publish','open','open','','flesh','','','2015-01-15 14:52:42','2015-01-15 20:52:42','',0,'http://www.monicarenata.com/?p=818',0,'post','',0),(819,1,'2015-01-15 14:52:42','2015-01-15 20:52:42','Beautiful indeed\r\n\r\nAs lovely as the words that express the soul\r\n\r\n \r\n\r\nPerfect in so many areas\r\n\r\nLeaves minds out of control\r\n\r\n \r\n\r\nTempted by temptation\r\n\r\nThe look of it at least\r\n\r\n \r\n\r\nBowing down to something that has no substance\r\n\r\nYet you cower at their feet\r\n\r\n \r\n\r\nA protection from harsh elements\r\n\r\nYet the flame that causes your end\r\n\r\n \r\n\r\nWho knew that your strength and weakness\r\n\r\nIs what we call human flesh?\r\n\r\n \r\n\r\nIs it the beauty of the soul\r\n\r\nOr the curves that caught your eyes\r\n\r\n \r\n\r\nWas it the stance when at pause\r\n\r\nOr was it the confidence in their stride\r\n\r\n \r\n\r\nWe look on the surface very much\r\n\r\nBut do we look deep\r\n\r\n \r\n\r\nFlesh is our protection\r\n\r\nBut is also what makes some of us weak\r\n\r\n \r\n\r\nSo my advice to you\r\n\r\nIs to look a little deep\r\n\r\n \r\n\r\nFor what you find underneath\r\n\r\nIsn\'t exactly what you seek\r\n\r\n \r\n\r\n \r\n\r\n<em><strong>\"Finding someone who is physically perfect isn\'t bad. However, when you neglect the quality of a person because of his or her looks, that is wrong..... You might end up with a trophy that isn\'t worth sh*t\" - Monica Renata </strong></em>','Flesh','','inherit','open','open','','818-revision-v1','','','2015-01-15 14:52:42','2015-01-15 20:52:42','',818,'http://www.monicarenata.com/818-revision-v1/',0,'revision','',0),(821,1,'2015-01-16 13:34:33','2015-01-16 19:34:33','<p style=\"text-align: center;\">Just be a little happy</p>\r\n<p style=\"text-align: center;\">Just be a little free</p>\r\n<p style=\"text-align: center;\">Learn to love your life</p>\r\n<p style=\"text-align: center;\">Learn what it means to JUST BE</p>\r\n<p style=\"text-align: center;\">For days may come and days may go</p>\r\n<p style=\"text-align: center;\">But you never know when it is your last</p>\r\n<p style=\"text-align: center;\">So instead of having doubts today; JUST BE</p>\r\n<p style=\"text-align: center;\">And your life will be a blast</p>\r\n<p style=\"text-align: center;\">:)</p>\r\n \r\n\r\n \r\n\r\n<strong><em>\"Life life while you can! Just be you and you will never have any regrets\"</em></strong> -Monica Renata','Just BE','','publish','open','open','','just-be','','','2015-01-19 22:11:18','2015-01-20 04:11:18','',0,'http://www.monicarenata.com/?p=821',0,'post','',0),(834,1,'2015-01-19 22:11:18','2015-01-20 04:11:18','<p style=\"text-align: center;\">Just be a little happy</p>\r\n<p style=\"text-align: center;\">Just be a little free</p>\r\n<p style=\"text-align: center;\">Learn to love your life</p>\r\n<p style=\"text-align: center;\">Learn what it means to JUST BE</p>\r\n<p style=\"text-align: center;\">For days may come and days may go</p>\r\n<p style=\"text-align: center;\">But you never know when it is your last</p>\r\n<p style=\"text-align: center;\">So instead of having doubts today; JUST BE</p>\r\n<p style=\"text-align: center;\">And your life will be a blast</p>\r\n<p style=\"text-align: center;\">:)</p>\r\n \r\n\r\n \r\n\r\n<strong><em>\"Life life while you can! Just be you and you will never have any regrets\"</em></strong> -Monica Renata','Just BE','','inherit','open','open','','821-revision-v1','','','2015-01-19 22:11:18','2015-01-20 04:11:18','',821,'http://www.monicarenata.com/821-revision-v1/',0,'revision','',0),(822,1,'2015-01-16 13:34:33','2015-01-16 19:34:33','<p style=\"text-align: center;\">Just be a little happy</p>\r\n<p style=\"text-align: center;\">Just be a little free</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Learn to love your life</p>\r\n<p style=\"text-align: center;\">Learn what it means to JUSTBE</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For days may come and days may go</p>\r\n<p style=\"text-align: center;\">But you never know when it is your last</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">So instead of having doubts today; JUST BE</p>\r\n<p style=\"text-align: center;\">And your life will be a blast</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">:)</p>\r\n \r\n\r\n \r\n\r\n<strong><em>\"Life life while you can! Just be you and you will never have any regrets\"</em></strong> -Monica Renata','Just BE','','inherit','open','open','','821-revision-v1','','','2015-01-16 13:34:33','2015-01-16 19:34:33','',821,'http://www.monicarenata.com/821-revision-v1/',0,'revision','',0),(823,1,'2015-01-16 13:43:48','2015-01-16 19:43:48','<p style=\"text-align: center;\">Baby, count your blessings</p>\r\n<p style=\"text-align: center;\">Baby, soon you will see</p>\r\n<p style=\"text-align: center;\">That perhaps your struggles in life are struggles</p>\r\n<p style=\"text-align: center;\">Because they were meant to be</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For there are lessons in heartbreak</p>\r\n<p style=\"text-align: center;\">There is strength gained through pain</p>\r\n<p style=\"text-align: center;\">So baby, this is a blessing</p>\r\n<p style=\"text-align: center;\">Even though it isn\'t what it may seem</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Troubles may come before you</p>\r\n<p style=\"text-align: center;\">Troubles are task that are like a test</p>\r\n<p style=\"text-align: center;\">Trying to you at times</p>\r\n<p style=\"text-align: center;\">But you must remember that you are blessed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">See baby you are blessed with the strength</p>\r\n<p style=\"text-align: center;\">To get back on your feet</p>\r\n<p style=\"text-align: center;\">So rise above your struggles</p>\r\n<p style=\"text-align: center;\">To rise is a blessing we forget to see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Baby, count your blessings</p>\r\n<p style=\"text-align: center;\">Baby, soon you will see</p>\r\n<p style=\"text-align: center;\">That your blessing is the strength within</p>\r\n<p style=\"text-align: center;\">That you use for the hurdles in life you meet</p>','Baby Count Your Blessings','','publish','open','open','','baby-count-your-blessings','','','2015-01-17 13:34:17','2015-01-17 19:34:17','',0,'http://www.monicarenata.com/?p=823',0,'post','',0),(824,1,'2015-01-16 13:43:48','2015-01-16 19:43:48','<p style=\"text-align: center;\">Baby, count your blessings</p>\r\n<p style=\"text-align: center;\">Baby, soon you will see</p>\r\n<p style=\"text-align: center;\">That perhaps your struggles in life are struggles</p>\r\n<p style=\"text-align: center;\">Because they were meant to be</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For there are lessons in heartbreak</p>\r\n<p style=\"text-align: center;\">There is strength gained through pain</p>\r\n<p style=\"text-align: center;\">So baby, this is a blessing</p>\r\n<p style=\"text-align: center;\">Even though it isn\'t what it may seem</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Troubles may come before you</p>\r\n<p style=\"text-align: center;\">Troubles are task that are like a test</p>\r\n<p style=\"text-align: center;\">Trying to you at times</p>\r\n<p style=\"text-align: center;\">But you must remember that you are blessed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">See baby you are blessed with the strength</p>\r\n<p style=\"text-align: center;\">To get back on your feet</p>\r\n<p style=\"text-align: center;\">So rise above your struggles</p>\r\n<p style=\"text-align: center;\">To rise is a blessing we forget to see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Baby, count your blessings</p>\r\n<p style=\"text-align: center;\">Baby, soon you will see</p>\r\n<p style=\"text-align: center;\">That your blessing is the strength within</p>\r\n<p style=\"text-align: center;\">That you use for the hurdles in life you meet</p>','Baby Count Your Blessings','','inherit','open','open','','823-revision-v1','','','2015-01-16 13:43:48','2015-01-16 19:43:48','',823,'http://www.monicarenata.com/823-revision-v1/',0,'revision','',0),(825,1,'2015-01-16 13:49:25','2015-01-16 19:49:25','<p style=\"text-align: center;\">Hello handsome, how are you?</p>\r\n<p style=\"text-align: center;\">Hello pretty lady on the street!</p>\r\n<p style=\"text-align: center;\">Hello to the fluffy kitten</p>\r\n<p style=\"text-align: center;\">Hello to everyone I meet!</p>\r\n<p style=\"text-align: center;\">A simple little gesture</p>\r\n<p style=\"text-align: center;\">A simple little \"Hello\"</p>\r\n<p style=\"text-align: center;\">Can brighten someone\'s cloudy day</p>\r\n<p style=\"text-align: center;\">Just wanted you to know</p>\r\n \r\n\r\n<em><strong>\"You never know how much a simple hello can brighten someone\'s day! Be kind and tell someone hello today. Start a random conversation.... I find that in today\'s world we are afraid to be nice......We have to change this :) \"</strong> </em>-Monica Renata','Hello','','publish','open','open','','hello-2','','','2015-01-17 01:19:48','2015-01-17 07:19:48','',0,'http://www.monicarenata.com/?p=825',0,'post','',0),(826,1,'2015-01-16 13:49:25','2015-01-16 19:49:25','<p style=\"text-align: center;\">Hello handsome, how are you?Hello pretty lady on the street!</p>\r\n<p style=\"text-align: center;\">Hello to the fluffy kitten</p>\r\n<p style=\"text-align: center;\">Hello to everyone I meet!</p>\r\n<p style=\"text-align: center;\">A simple little gesture</p>\r\n<p style=\"text-align: center;\">A simple little \"Hello\"</p>\r\n<p style=\"text-align: center;\">Can brighten someone\'s cloudy day</p>\r\n<p style=\"text-align: center;\">Just wanted you to know</p>\r\n \r\n\r\n<em><strong>\"You never know how much a simple hello can brighten someone\'s day! Be kind and tell someone hello today. Start a random conversation.... I find that in today\'s world we are afraid to be nice......We have to change this :) \"</strong> </em>-Monica Renata','Hello','','inherit','open','open','','825-revision-v1','','','2015-01-16 13:49:25','2015-01-16 19:49:25','',825,'http://www.monicarenata.com/825-revision-v1/',0,'revision','',0),(827,1,'2015-01-16 13:59:16','2015-01-16 19:59:16','<p style=\"text-align: center;\">Picture perfect family</p>\r\n<p style=\"text-align: center;\">A cute family dog</p>\r\n<p style=\"text-align: center;\">In my head I imagined</p>\r\n<p style=\"text-align: center;\">For this life I so did long</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A house that had rooms</p>\r\n<p style=\"text-align: center;\">A dining room for talks about all of the above</p>\r\n<p style=\"text-align: center;\">A yard meant for entertaining</p>\r\n<p style=\"text-align: center;\">And a shiny bright red car</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A little doll for the baby</p>\r\n<p style=\"text-align: center;\">A toy soldier for junior at age three</p>\r\n<p style=\"text-align: center;\">And my spouse holding my hand on the porch</p>\r\n<p style=\"text-align: center;\">White Picket Fence family</p>\r\n \r\n\r\n<strong><em>\"A house that housed my family and lots of love... Talks at the kitchen table........Remember those days that your grandparents told you about? \"</em> </strong>-Monica Renata','White Picket Fence Family','','publish','open','open','','white-picket-fence-family','','','2015-01-16 13:59:16','2015-01-16 19:59:16','',0,'http://www.monicarenata.com/?p=827',0,'post','',0),(828,1,'2015-01-16 13:59:16','2015-01-16 19:59:16','<p style=\"text-align: center;\">Picture perfect family</p>\r\n<p style=\"text-align: center;\">A cute family dog</p>\r\n<p style=\"text-align: center;\">In my head I imagined</p>\r\n<p style=\"text-align: center;\">For this life I so did long</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A house that had rooms</p>\r\n<p style=\"text-align: center;\">A dining room for talks about all of the above</p>\r\n<p style=\"text-align: center;\">A yard meant for entertaining</p>\r\n<p style=\"text-align: center;\">And a shiny bright red car</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A little doll for the baby</p>\r\n<p style=\"text-align: center;\">A toy soldier for junior at age three</p>\r\n<p style=\"text-align: center;\">And my spouse holding my hand on the porch</p>\r\n<p style=\"text-align: center;\">White Picket Fence family</p>\r\n \r\n\r\n<strong><em>\"A house that housed my family and lots of love... Talks at the kitchen table........Remember those days that your grandparents told you about? \"</em> </strong>-Monica Renata','White Picket Fence Family','','inherit','open','open','','827-revision-v1','','','2015-01-16 13:59:16','2015-01-16 19:59:16','',827,'http://www.monicarenata.com/827-revision-v1/',0,'revision','',0),(829,1,'2015-01-17 01:19:48','2015-01-17 07:19:48','<p style=\"text-align: center;\">Hello handsome, how are you?</p>\r\n<p style=\"text-align: center;\">Hello pretty lady on the street!</p>\r\n<p style=\"text-align: center;\">Hello to the fluffy kitten</p>\r\n<p style=\"text-align: center;\">Hello to everyone I meet!</p>\r\n<p style=\"text-align: center;\">A simple little gesture</p>\r\n<p style=\"text-align: center;\">A simple little \"Hello\"</p>\r\n<p style=\"text-align: center;\">Can brighten someone\'s cloudy day</p>\r\n<p style=\"text-align: center;\">Just wanted you to know</p>\r\n \r\n\r\n<em><strong>\"You never know how much a simple hello can brighten someone\'s day! Be kind and tell someone hello today. Start a random conversation.... I find that in today\'s world we are afraid to be nice......We have to change this :) \"</strong> </em>-Monica Renata','Hello','','inherit','open','open','','825-revision-v1','','','2015-01-17 01:19:48','2015-01-17 07:19:48','',825,'http://www.monicarenata.com/825-revision-v1/',0,'revision','',0),(830,1,'2015-01-17 13:34:14','2015-01-17 19:34:14','<p style=\"text-align: center;\">Baby, count your blessings</p>\n<p style=\"text-align: center;\">Baby, soon you will see</p>\n<p style=\"text-align: center;\">That perhaps your struggles in life are struggles</p>\n<p style=\"text-align: center;\">Because they were meant to be</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">For there are lessons in heartbreak</p>\n<p style=\"text-align: center;\">There is strength gained through pain</p>\n<p style=\"text-align: center;\">So baby, this is a blessing</p>\n<p style=\"text-align: center;\">Even though it isn\'t what it may seem</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">Troubles may come before you</p>\n<p style=\"text-align: center;\">Troubles are task that are like a test</p>\n<p style=\"text-align: center;\">Trying to you at times</p>\n<p style=\"text-align: center;\">But you must remember that you are blessed</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">See baby you are blessed with the strength</p>\n<p style=\"text-align: center;\">To get back on your feet</p>\n<p style=\"text-align: center;\">So rise above your struggles</p>\n<p style=\"text-align: center;\">To rise is a blessing we forget to see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">Baby, count your blessings</p>\n<p style=\"text-align: center;\">Baby, soon you will see</p>\n<p style=\"text-align: center;\">That your blessing is the strength within</p>\n<p style=\"text-align: center;\">That you use for the hurdles in life you meet</p>','Baby Count Your Blessings','','inherit','open','open','','823-autosave-v1','','','2015-01-17 13:34:14','2015-01-17 19:34:14','',823,'http://www.monicarenata.com/823-autosave-v1/',0,'revision','',0),(832,1,'2015-01-17 23:56:52','2015-01-18 05:56:52','I lost my dream this morning\r\n\r\nIt just slowly faded away\r\n\r\nFor disappointments were too much to bear\r\n\r\nWords exchanged were nothing nice to say\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nI tried not to shed a tear\r\n\r\nBut inside I felt myself die a little\r\n\r\nIn my mind I hoped this wasn\'t real\r\n\r\n \r\n\r\nA future that could be so bright and true\r\n\r\nA future that involved both me and you\r\n\r\nPast mistakes were made, a dirty past\r\n\r\nOh how I wish you and I could last\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nMy dream of me and you\r\n\r\nIt hurts like hell\r\n\r\nBut I must be accountable for what I do','I lost my dream','','publish','open','open','','i-lost-my-dream','','','2015-01-20 08:35:27','2015-01-20 14:35:27','',0,'http://www.monicarenata.com/?p=832',0,'post','',0),(833,1,'2015-01-17 23:56:52','2015-01-18 05:56:52','I lost my dream this morning\r\n\r\nIt just slowly faded away\r\n\r\nFor disappointments were too much to bear\r\n\r\nWords exchanged were nothing nice to say\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nI tried not to shed a tear\r\n\r\nBut inside I felt myself die a little\r\n\r\nIn my mind I hoped this wasn\'t really\r\n\r\n \r\n\r\nA future that could be so bright and true\r\n\r\nA future that involved both me and you\r\n\r\nPast mistakes were made, a dirty past\r\n\r\nOh how I wish you and I could last\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nMy dream of me and you\r\n\r\nIt hurts like hell\r\n\r\nBut I must be accountable for what I do','I lost my dream','','inherit','open','open','','832-revision-v1','','','2015-01-17 23:56:52','2015-01-18 05:56:52','',832,'http://www.monicarenata.com/832-revision-v1/',0,'revision','',0),(835,1,'2015-01-20 08:29:27','2015-01-20 14:29:27','It’s been a while since I wrote one of these…. It has been a while since I just let my thoughts flow through words…Guess I was just trying to hold it all in and pretend that it doesn’t bother me, but the truth is…It does. It bothers me so much. It bothers me how some find it so easy to lie……\r\n\r\n \r\n\r\nI have always been a blunt person. You know the type to tell the truth even though it hurts. Some may say that this is a negative quality of mines, but I wholeheartedly believe that telling the truth is far better than a lie. For what is the purpose of telling a lie? If I tell one single lie, I will have to ALWAYS remember it and perhaps even come up with other lies to support my BIG lie…And to me that is too much work. But obviously, others do not have this problem. They lie with eyes that show innocence and a mouth that speaks nothing but deceit. They lie and think that it is okay. They lie knowing damn well they hurt someone else but they want to protect themselves. They lie …because they are cowards.\r\n\r\n \r\n\r\nThroughout the last couple of months, I have seen so many people’s lives devastated by lies. Hell, I was even had my world crumble in front of me because of one. And one thing I always noticed is that the liar accuses everyone else but his or her self. Oh dear liar, How could you have the courage to break someone down emotionally with your lies, yet lack the courage to admit to your own mistakes?\r\n\r\n \r\n\r\nTruth is, it is very easy to spot lies. And more than likely, when someone asks you a question they already know the truth. The thing with lies is that moreso it isn’t the lie that hurts the other person. It is the unwillingness to own up to it. When someone lies to my face when I know the truth I feel as though my intelligence is insulted. I also feel that they do not respect me enough to tell the truth. …But perhaps I am overthinking this….\r\n\r\n \r\n\r\nI just probably will never understand the mind of a liar. It’s like when they are caught red handed in a lie, they try to place the blame on you while you were doing nothing wrong. They try to make themselves the victim, while you are in tears over their dishonesty.\r\n\r\n \r\n\r\nYou: “I can’t believe you cheated on me!”\r\n\r\nLiar: “Well you cheated on me”\r\n\r\n \r\n\r\nA liar will shatter your trust, and then try to make you believe that you are the reason why you have “trust issues”. A liar will take their lie and try to justify it by saying “you did this too”. A liar will attempt to make you believe that you deserve to be lied to….but you don’t.\r\n\r\n \r\n\r\nNo one deserves that actually. They say the truth hurts….That may be true. But it is so much better than a lie. When we lie, we force others into a made up world. We hold their hand and lead them blindly into the unknown. We did not give them a choice….So basically, we are altering someone else’s life without their approval and that is wrong. When you tell the truth you give that person their CHOICE back. When you tell someone the truth you show them that you respect them. When you tell the truth you will not be bothered by a guilty conscience…. The truth may hurt but it only stings. A lie leaves a gaping wound that heals so slowly……A lie spooks a person… A lie makes a beautiful soul that was once so bubbly and free become a former shell of them. They become scared of others. They are scared to trust. They find it hard to differentiate truth from lies because you lied to them with eyes of innocence and lips that spoke nothing but deceit…..\r\n\r\n \r\n\r\n \r\n\r\nIt really bothers me how people can lie so easily…….But what can I do about it? I can’t stop others from doing what they want to do. But I can adjust my actions. I can tell the truth even though it may hurt. I can show others the respect that I want. And despite being lied to over and over again by different people, I can decide to not let it break my spirit. Forgive those who wrong you and move on. Don’t let someone else’s mistakes burden your soul. Forgive them for their lies, not for them, but for yourself.\r\n\r\nIt’s been a while since I wrote one of these…. It has been a while since I just let my thoughts flow through words…Guess I was just trying to hold it all in and pretend that it doesn’t bother me, but the truth is…It does. But it is time to just let that hurt and pain go……\r\n\r\n \r\n\r\nTo those who have been lied to, don’t let lies ruin your beautiful spirit. Still smile as beautifully has you did before. I remember for the longest I thought I could not smile again…but happiness only comes in your life when you allow it there. Forgive and move on…\r\n\r\n \r\n\r\nTo those who lie, think about what you are doing. If someone trusts you wholeheartedly that is very rare. When you lie to someone who trusts you, you are breaking another person and showing them that you do not respect them. You will have to forever keep up with your lie, and lies have a way of turning into a boulder that rolls down the snowy mountain gaining momentum and crushing all that is ahead.\r\n\r\n \r\n\r\nThey say the truth hurts…. And that may be true. But the truth just stings….while a lie can cause you to slowly die…….\r\n\r\n \r\n\r\nHave a great day,\r\n\r\nMonica Renata\r\n\r\n ','Lies: Thinking Out Loud','','publish','open','open','','lies-thinking-out-loud','','','2015-01-20 08:29:27','2015-01-20 14:29:27','',0,'http://www.monicarenata.com/?p=835',0,'post','',0),(836,1,'2015-01-20 08:29:27','2015-01-20 14:29:27','It’s been a while since I wrote one of these…. It has been a while since I just let my thoughts flow through words…Guess I was just trying to hold it all in and pretend that it doesn’t bother me, but the truth is…It does. It bothers me so much. It bothers me how some find it so easy to lie……\r\n\r\n \r\n\r\nI have always been a blunt person. You know the type to tell the truth even though it hurts. Some may say that this is a negative quality of mines, but I wholeheartedly believe that telling the truth is far better than a lie. For what is the purpose of telling a lie? If I tell one single lie, I will have to ALWAYS remember it and perhaps even come up with other lies to support my BIG lie…And to me that is too much work. But obviously, others do not have this problem. They lie with eyes that show innocence and a mouth that speaks nothing but deceit. They lie and think that it is okay. They lie knowing damn well they hurt someone else but they want to protect themselves. They lie …because they are cowards.\r\n\r\n \r\n\r\nThroughout the last couple of months, I have seen so many people’s lives devastated by lies. Hell, I was even had my world crumble in front of me because of one. And one thing I always noticed is that the liar accuses everyone else but his or her self. Oh dear liar, How could you have the courage to break someone down emotionally with your lies, yet lack the courage to admit to your own mistakes?\r\n\r\n \r\n\r\nTruth is, it is very easy to spot lies. And more than likely, when someone asks you a question they already know the truth. The thing with lies is that moreso it isn’t the lie that hurts the other person. It is the unwillingness to own up to it. When someone lies to my face when I know the truth I feel as though my intelligence is insulted. I also feel that they do not respect me enough to tell the truth. …But perhaps I am overthinking this….\r\n\r\n \r\n\r\nI just probably will never understand the mind of a liar. It’s like when they are caught red handed in a lie, they try to place the blame on you while you were doing nothing wrong. They try to make themselves the victim, while you are in tears over their dishonesty.\r\n\r\n \r\n\r\nYou: “I can’t believe you cheated on me!”\r\n\r\nLiar: “Well you cheated on me”\r\n\r\n \r\n\r\nA liar will shatter your trust, and then try to make you believe that you are the reason why you have “trust issues”. A liar will take their lie and try to justify it by saying “you did this too”. A liar will attempt to make you believe that you deserve to be lied to….but you don’t.\r\n\r\n \r\n\r\nNo one deserves that actually. They say the truth hurts….That may be true. But it is so much better than a lie. When we lie, we force others into a made up world. We hold their hand and lead them blindly into the unknown. We did not give them a choice….So basically, we are altering someone else’s life without their approval and that is wrong. When you tell the truth you give that person their CHOICE back. When you tell someone the truth you show them that you respect them. When you tell the truth you will not be bothered by a guilty conscience…. The truth may hurt but it only stings. A lie leaves a gaping wound that heals so slowly……A lie spooks a person… A lie makes a beautiful soul that was once so bubbly and free become a former shell of them. They become scared of others. They are scared to trust. They find it hard to differentiate truth from lies because you lied to them with eyes of innocence and lips that spoke nothing but deceit…..\r\n\r\n \r\n\r\n \r\n\r\nIt really bothers me how people can lie so easily…….But what can I do about it? I can’t stop others from doing what they want to do. But I can adjust my actions. I can tell the truth even though it may hurt. I can show others the respect that I want. And despite being lied to over and over again by different people, I can decide to not let it break my spirit. Forgive those who wrong you and move on. Don’t let someone else’s mistakes burden your soul. Forgive them for their lies, not for them, but for yourself.\r\n\r\nIt’s been a while since I wrote one of these…. It has been a while since I just let my thoughts flow through words…Guess I was just trying to hold it all in and pretend that it doesn’t bother me, but the truth is…It does. But it is time to just let that hurt and pain go……\r\n\r\n \r\n\r\nTo those who have been lied to, don’t let lies ruin your beautiful spirit. Still smile as beautifully has you did before. I remember for the longest I thought I could not smile again…but happiness only comes in your life when you allow it there. Forgive and move on…\r\n\r\n \r\n\r\nTo those who lie, think about what you are doing. If someone trusts you wholeheartedly that is very rare. When you lie to someone who trusts you, you are breaking another person and showing them that you do not respect them. You will have to forever keep up with your lie, and lies have a way of turning into a boulder that rolls down the snowy mountain gaining momentum and crushing all that is ahead.\r\n\r\n \r\n\r\nThey say the truth hurts…. And that may be true. But the truth just stings….while a lie can cause you to slowly die…….\r\n\r\n \r\n\r\nHave a great day,\r\n\r\nMonica Renata\r\n\r\n ','Lies: Thinking Out Loud','','inherit','open','open','','835-revision-v1','','','2015-01-20 08:29:27','2015-01-20 14:29:27','',835,'http://www.monicarenata.com/835-revision-v1/',0,'revision','',0),(863,1,'2015-01-28 13:09:02','2015-01-28 19:09:02','I\'m tired of being tired\r\n\r\nYet tired of being awake\r\n\r\nThe birds sing so peacefully\r\n\r\nThey sing so loud that I\'m awake\r\n\r\nThe sun creeps over so cleverly\r\n\r\nAnd shines brightly in my eye\r\n\r\nOh I am so tired today\r\n\r\nOh my, oh my, oh my\r\n\r\n \r\n\r\nI\'m thinking thoughts of slumbering\r\n\r\nYet my eyes say I\'m wide awake\r\n\r\nMany people are talking\r\n\r\nThey seem to talk all day\r\n\r\nThe world spins each second\r\n\r\nYet I feel like I walked around the earth\r\n\r\nOh how I wish I could lay there peaceful\r\n\r\nOh how I wish I had that luck\r\n\r\n \r\n\r\nI\'m living on fumes of exhaustion right now\r\n\r\nYet my heart continues to beat\r\n\r\nMy days run into each other\r\n\r\nI am stumbling on my two feet\r\n\r\nMy happiness seems to be gone\r\n\r\nFor I do not know where it is at\r\n\r\nI think I need to sit down for a moment\r\n\r\nI think I need to RELAX\r\n\r\n \r\n\r\n ','Relax','','publish','open','open','','relax','','','2015-01-28 13:19:42','2015-01-28 19:19:42','',0,'http://www.monicarenata.com/?p=863',0,'post','',0),(838,1,'2015-01-20 08:35:27','2015-01-20 14:35:27','I lost my dream this morning\r\n\r\nIt just slowly faded away\r\n\r\nFor disappointments were too much to bear\r\n\r\nWords exchanged were nothing nice to say\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nI tried not to shed a tear\r\n\r\nBut inside I felt myself die a little\r\n\r\nIn my mind I hoped this wasn\'t real\r\n\r\n \r\n\r\nA future that could be so bright and true\r\n\r\nA future that involved both me and you\r\n\r\nPast mistakes were made, a dirty past\r\n\r\nOh how I wish you and I could last\r\n\r\n \r\n\r\nI lost my dream this morning\r\n\r\nMy dream of me and you\r\n\r\nIt hurts like hell\r\n\r\nBut I must be accountable for what I do','I lost my dream','','inherit','open','open','','832-revision-v1','','','2015-01-20 08:35:27','2015-01-20 14:35:27','',832,'http://www.monicarenata.com/832-revision-v1/',0,'revision','',0),(839,1,'2015-01-20 08:46:42','2015-01-20 14:46:42','I can’t think again this morning\r\n\r\nI couldn’t think the day before\r\n\r\nThoughts are floating around my head\r\n\r\nAnd each second my head’s filled with more\r\n\r\n \r\n\r\nI am lost in my own thoughts\r\n\r\nI wonder and wonder till I fall asleep\r\n\r\nI am completely frustrated\r\n\r\nI need help cause I can’t think\r\n\r\n \r\n\r\nWords are floating round and round\r\n\r\nWords which were previously said\r\n\r\nI keep hearing them over and over\r\n\r\nOver and over in my head\r\n\r\n \r\n\r\nA problem that needs to be solved\r\n\r\nYet a solution is hard to reach\r\n\r\nThinking over and over\r\n\r\nThinking so much that I can’t think\r\n\r\n \r\n\r\nI can’t think again this morning\r\n\r\nI couldn’t think the day before\r\n\r\nThoughts are floating around my head\r\n\r\nAnd each second my head’s filled with more\r\n\r\n \r\n\r\nOh how I wish I could finally get over this\r\n\r\nAnd think of other things once more','I Can\'t Think','','publish','open','open','','i-cant-think','','','2015-01-20 08:46:42','2015-01-20 14:46:42','',0,'http://www.monicarenata.com/?p=839',0,'post','',1),(840,1,'2015-01-20 08:46:42','2015-01-20 14:46:42','I can’t think again this morning\r\n\r\nI couldn’t think the day before\r\n\r\nThoughts are floating around my head\r\n\r\nAnd each second my head’s filled with more\r\n\r\n \r\n\r\nI am lost in my own thoughts\r\n\r\nI wonder and wonder till I fall asleep\r\n\r\nI am completely frustrated\r\n\r\nI need help cause I can’t think\r\n\r\n \r\n\r\nWords are floating round and round\r\n\r\nWords which were previously said\r\n\r\nI keep hearing them over and over\r\n\r\nOver and over in my head\r\n\r\n \r\n\r\nA problem that needs to be solved\r\n\r\nYet a solution is hard to reach\r\n\r\nThinking over and over\r\n\r\nThinking so much that I can’t think\r\n\r\n \r\n\r\nI can’t think again this morning\r\n\r\nI couldn’t think the day before\r\n\r\nThoughts are floating around my head\r\n\r\nAnd each second my head’s filled with more\r\n\r\n \r\n\r\nOh how I wish I could finally get over this\r\n\r\nAnd think of other things once more','I Can\'t Think','','inherit','open','open','','839-revision-v1','','','2015-01-20 08:46:42','2015-01-20 14:46:42','',839,'http://www.monicarenata.com/839-revision-v1/',0,'revision','',0),(841,1,'2015-01-20 13:32:30','2015-01-20 19:32:30','Clocks strike midnight\r\n\r\nEveryday\r\n\r\nAnd almost every day the sky is blue\r\n\r\n \r\n\r\nHearts probably break\r\n\r\nEveryday\r\n\r\nAnd every day they beat with love too\r\n\r\n \r\n\r\nLife is filled with beautiful things\r\n\r\nEveryday\r\n\r\nJust open your eyes\r\n\r\n \r\n\r\nAppreciate what you have\r\n\r\nToday\r\n\r\nFor tomorrow it may die','Everyday Today','','publish','open','open','','everyday-today','','','2015-01-20 13:32:30','2015-01-20 19:32:30','',0,'http://www.monicarenata.com/?p=841',0,'post','',0),(842,1,'2015-01-20 13:32:30','2015-01-20 19:32:30','Clocks strike midnight\r\n\r\nEveryday\r\n\r\nAnd almost every day the sky is blue\r\n\r\n \r\n\r\nHearts probably break\r\n\r\nEveryday\r\n\r\nAnd every day they beat with love too\r\n\r\n \r\n\r\nLife is filled with beautiful things\r\n\r\nEveryday\r\n\r\nJust open your eyes\r\n\r\n \r\n\r\nAppreciate what you have\r\n\r\nToday\r\n\r\nFor tomorrow it may die','Everyday Today','','inherit','open','open','','841-revision-v1','','','2015-01-20 13:32:30','2015-01-20 19:32:30','',841,'http://www.monicarenata.com/841-revision-v1/',0,'revision','',0),(843,1,'2015-01-20 13:36:54','2015-01-20 19:36:54','Opened up to possibilities\r\n\r\nAlways waiting for another hand\r\n\r\n \r\n\r\nGrabbing at each opportunity\r\n\r\nHolding on to what I want to last\r\n\r\n \r\n\r\nTo earn and to be given\r\n\r\nI hold each moment dear\r\n\r\n \r\n\r\nFor life is the most precious gift\r\n\r\nWhich I held in the palm of my hand','Palm Of My Hand','','publish','open','open','','palm-of-my-hand','','','2015-01-20 13:36:54','2015-01-20 19:36:54','',0,'http://www.monicarenata.com/?p=843',0,'post','',0),(844,1,'2015-01-20 13:36:54','2015-01-20 19:36:54','Opened up to possibilities\r\n\r\nAlways waiting for another hand\r\n\r\n \r\n\r\nGrabbing at each opportunity\r\n\r\nHolding on to what I want to last\r\n\r\n \r\n\r\nTo earn and to be given\r\n\r\nI hold each moment dear\r\n\r\n \r\n\r\nFor life is the most precious gift\r\n\r\nWhich I held in the palm of my hand','Palm Of My Hand','','inherit','open','open','','843-revision-v1','','','2015-01-20 13:36:54','2015-01-20 19:36:54','',843,'http://www.monicarenata.com/843-revision-v1/',0,'revision','',0),(845,1,'2015-01-20 13:44:55','2015-01-20 19:44:55','Heartache made me bitter\r\n\r\nLies made me cold\r\n\r\nDisappointment created mountains\r\n\r\nAt the top I sat alone\r\n\r\n \r\n\r\nSadness turns into depression\r\n\r\nHappiness seems so far away\r\n\r\nBut then something happens\r\n\r\nAnd brings a smile to my face\r\n\r\n \r\n\r\nMy sad times never overcame happy times\r\n\r\nBut the pain they left were deep\r\n\r\nBut there was something marvelous\r\n\r\nI learned in that recovery\r\n\r\n \r\n\r\nI can feel so much happiness\r\n\r\nI can feel so much pain\r\n\r\nI can see tears fall from your eyes\r\n\r\nAnd you can do the same\r\n\r\n \r\n\r\nEach moment that made me bitter\r\n\r\nAlso made me feel alive\r\n\r\nFor the times I realized I wasn\'t invincible\r\n\r\nWere the times I sat down and cried\r\n\r\n \r\n\r\nPain makes me stronger\r\n\r\nSituations help me grow\r\n\r\nEverything that doesn\'t kill me\r\n\r\nMakes me more stronger than you\'ll ever know\r\n\r\n \r\n\r\nHeartache made me bitter\r\n\r\nLies made me cold\r\n\r\nDisappointment created mountains\r\n\r\nAt the top I sat alone\r\n\r\n \r\n\r\nBut as I stand I now see\r\n\r\nThat I have survived with extraordinary skill\r\n\r\nI rose up after each disappoint\r\n\r\nAnd most importantly I learned to live','I lived','','publish','open','open','','i-lived','','','2015-01-20 13:44:55','2015-01-20 19:44:55','',0,'http://www.monicarenata.com/?p=845',0,'post','',0),(846,1,'2015-01-20 13:44:55','2015-01-20 19:44:55','Heartache made me bitter\r\n\r\nLies made me cold\r\n\r\nDisappointment created mountains\r\n\r\nAt the top I sat alone\r\n\r\n \r\n\r\nSadness turns into depression\r\n\r\nHappiness seems so far away\r\n\r\nBut then something happens\r\n\r\nAnd brings a smile to my face\r\n\r\n \r\n\r\nMy sad times never overcame happy times\r\n\r\nBut the pain they left were deep\r\n\r\nBut there was something marvelous\r\n\r\nI learned in that recovery\r\n\r\n \r\n\r\nI can feel so much happiness\r\n\r\nI can feel so much pain\r\n\r\nI can see tears fall from your eyes\r\n\r\nAnd you can do the same\r\n\r\n \r\n\r\nEach moment that made me bitter\r\n\r\nAlso made me feel alive\r\n\r\nFor the times I realized I wasn\'t invincible\r\n\r\nWere the times I sat down and cried\r\n\r\n \r\n\r\nPain makes me stronger\r\n\r\nSituations help me grow\r\n\r\nEverything that doesn\'t kill me\r\n\r\nMakes me more stronger than you\'ll ever know\r\n\r\n \r\n\r\nHeartache made me bitter\r\n\r\nLies made me cold\r\n\r\nDisappointment created mountains\r\n\r\nAt the top I sat alone\r\n\r\n \r\n\r\nBut as I stand I now see\r\n\r\nThat I have survived with extraordinary skill\r\n\r\nI rose up after each disappoint\r\n\r\nAnd most importantly I learned to live','I lived','','inherit','open','open','','845-revision-v1','','','2015-01-20 13:44:55','2015-01-20 19:44:55','',845,'http://www.monicarenata.com/845-revision-v1/',0,'revision','',0),(847,1,'2015-01-20 13:52:52','2015-01-20 19:52:52','Imperfections\r\n\r\nImperfections\r\n\r\nFrom your head down to your feet\r\n\r\n \r\n\r\nBad decisions in your past\r\n\r\nConsequences you so reap\r\n\r\n \r\n\r\nProblems\r\n\r\nAfter Problems\r\n\r\nYou seem to run into\r\n\r\n \r\n\r\nYet you keep on pushing forward\r\n\r\nFor you believe you\'ll make it through\r\n\r\n \r\n\r\nLet down\r\n\r\nAfter Let down\r\n\r\nYou can\'t get on your feet\r\n\r\n \r\n\r\nYou look in the mirror everyday\r\n\r\nYou aren\'t who you wish you could be\r\n\r\n \r\n\r\nHowever in my eyes\r\n\r\nI don\'t see that\r\n\r\nYou are different to me\r\n\r\n \r\n\r\nThose things you call imperfections\r\n\r\nAre so beautiful to me\r\n\r\n \r\n\r\nYour problems you will overcome\r\n\r\nYour letdowns will soon be no more\r\n\r\nAnd most importantly I will still love you so\r\n\r\nMore than you\'ll ever know\r\n\r\n \r\n\r\n<strong><em>\"People make bad decisions at times, but that doesn\'t mean they are bad people. If you really love someone, love them through their rough times...Sometimes that is all they need to motivate them to become better and succeed.\" </em></strong><em>-Monica Renata </em>','More Than You Know','','publish','open','open','','more-than-you-know','','','2015-01-20 13:52:52','2015-01-20 19:52:52','',0,'http://www.monicarenata.com/?p=847',0,'post','',0),(848,1,'2015-01-20 13:52:52','2015-01-20 19:52:52','Imperfections\r\n\r\nImperfections\r\n\r\nFrom your head down to your feet\r\n\r\n \r\n\r\nBad decisions in your past\r\n\r\nConsequences you so reap\r\n\r\n \r\n\r\nProblems\r\n\r\nAfter Problems\r\n\r\nYou seem to run into\r\n\r\n \r\n\r\nYet you keep on pushing forward\r\n\r\nFor you believe you\'ll make it through\r\n\r\n \r\n\r\nLet down\r\n\r\nAfter Let down\r\n\r\nYou can\'t get on your feet\r\n\r\n \r\n\r\nYou look in the mirror everyday\r\n\r\nYou aren\'t who you wish you could be\r\n\r\n \r\n\r\nHowever in my eyes\r\n\r\nI don\'t see that\r\n\r\nYou are different to me\r\n\r\n \r\n\r\nThose things you call imperfections\r\n\r\nAre so beautiful to me\r\n\r\n \r\n\r\nYour problems you will overcome\r\n\r\nYour letdowns will soon be no more\r\n\r\nAnd most importantly I will still love you so\r\n\r\nMore than you\'ll ever know\r\n\r\n \r\n\r\n<strong><em>\"People make bad decisions at times, but that doesn\'t mean they are bad people. If you really love someone, love them through their rough times...Sometimes that is all they need to motivate them to become better and succeed.\" </em></strong><em>-Monica Renata </em>','More Than You Know','','inherit','open','open','','847-revision-v1','','','2015-01-20 13:52:52','2015-01-20 19:52:52','',847,'http://www.monicarenata.com/847-revision-v1/',0,'revision','',0),(850,1,'2015-01-21 13:22:59','2015-01-21 19:22:59','Down the hill I furiously go\r\n\r\nGaining speed with you\r\n\r\n \r\n\r\nOh what in the world is happening\r\n\r\nI think I\'m falling in love with you\r\n\r\n \r\n\r\nWe will crash if we ever hit the bottom\r\n\r\nBut we do not intend to hit the floor\r\n\r\n \r\n\r\nFor we will just collide\r\n\r\nAnd our hearts will become one whole\r\n\r\n \r\n\r\nFast and furiously speeding\r\n\r\nA fire that is in this engine deep\r\n\r\n \r\n\r\nA race to love I\'m in this with you baby\r\n\r\nAnd I\'ll love without the brakes\r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\"><strong><em>\"Stop being afraid to fall in love. Just fall into it and stop fighting it....You might crash into something that was meant to be\" </em></strong><em>- Monica Renata</em></p>\r\n</blockquote>','Love Without Brakes','','publish','open','open','','love-without-brakes','','','2015-01-21 13:26:08','2015-01-21 19:26:08','',0,'http://www.monicarenata.com/?p=850',0,'post','',0),(854,1,'2015-01-21 13:26:08','2015-01-21 19:26:08','Down the hill I furiously go\r\n\r\nGaining speed with you\r\n\r\n \r\n\r\nOh what in the world is happening\r\n\r\nI think I\'m falling in love with you\r\n\r\n \r\n\r\nWe will crash if we ever hit the bottom\r\n\r\nBut we do not intend to hit the floor\r\n\r\n \r\n\r\nFor we will just collide\r\n\r\nAnd our hearts will become one whole\r\n\r\n \r\n\r\nFast and furiously speeding\r\n\r\nA fire that is in this engine deep\r\n\r\n \r\n\r\nA race to love I\'m in this with you baby\r\n\r\nAnd I\'ll love without the brakes\r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\"><strong><em>\"Stop being afraid to fall in love. Just fall into it and stop fighting it....You might crash into something that was meant to be\" </em></strong><em>- Monica Renata</em></p>\r\n</blockquote>','Love Without Brakes','','inherit','open','open','','850-revision-v1','','','2015-01-21 13:26:08','2015-01-21 19:26:08','',850,'http://www.monicarenata.com/850-revision-v1/',0,'revision','',0),(851,1,'2015-01-21 13:22:59','2015-01-21 19:22:59','<p style=\"text-align: center;\">Down the hill I furiously go</p>\r\n<p style=\"text-align: center;\">Gaining speed with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Oh what in the world is happening</p>\r\n<p style=\"text-align: center;\">I think I\'m falling in love with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">We will crash if we ever hit the bottom</p>\r\n<p style=\"text-align: center;\">But we do not intend to hit the floor</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For we will just collide</p>\r\n<p style=\"text-align: center;\">And our hearts will become one whole</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Fast and furiously speeding</p>\r\n<p style=\"text-align: center;\">A fire that is in this engine deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A race to love I\'m in this with you baby</p>\r\n<p style=\"text-align: center;\">And I\'ll love without the brakes</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: center;\"><strong><em>\"Stop being afraid to fall in love. Just fall into it and stop fighting it....You might crash into something that was meant to be\" </em></strong><em>- Monica Renata</em></p>\r\n</blockquote>','Love without Brakes','','inherit','open','open','','850-revision-v1','','','2015-01-21 13:22:59','2015-01-21 19:22:59','',850,'http://www.monicarenata.com/850-revision-v1/',0,'revision','',0),(853,1,'2015-01-21 13:25:11','2015-01-21 19:25:11','<p style=\"text-align: left;\">Down the hill I furiously go</p>\r\n<p style=\"text-align: left;\">Gaining speed with you</p>\r\n<p style=\"text-align: center;\">Oh what in the world is happening</p>\r\n<p style=\"text-align: center;\">I think I\'m falling in love with you</p>\r\n<p style=\"text-align: left;\">We will crash if we ever hit the bottom</p>\r\n<p style=\"text-align: left;\">But we do not intend to hit the floor</p>\r\n<p style=\"text-align: center;\">For we will just collide</p>\r\n<p style=\"text-align: center;\">And our hearts will become one whole</p>\r\n<p style=\"text-align: left;\">Fast and furiously speeding</p>\r\n<p style=\"text-align: left;\">A fire that is in this engine deep</p>\r\n<p style=\"text-align: center;\">A race to love I\'m in this with you baby</p>\r\n<p style=\"text-align: center;\">And I\'ll love without the brakes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: center;\"><strong><em>\"Stop being afraid to fall in love. Just fall into it and stop fighting it....You might crash into something that was meant to be\" </em></strong><em>- Monica Renata</em></p>\r\n</blockquote>','Love without Brakes','','inherit','open','open','','850-revision-v1','','','2015-01-21 13:25:11','2015-01-21 19:25:11','',850,'http://www.monicarenata.com/850-revision-v1/',0,'revision','',0),(852,1,'2015-01-21 13:24:30','2015-01-21 19:24:30','<p style=\"text-align: center;\">Down the hill I furiously go</p>\r\n<p style=\"text-align: center;\">Gaining speed with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Oh what in the world is happening</p>\r\n<p style=\"text-align: center;\">I think I\'m falling in love with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">We will crash if we ever hit the bottom</p>\r\n<p style=\"text-align: center;\">But we do not intend to hit the floor</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For we will just collide</p>\r\n<p style=\"text-align: center;\">And our hearts will become one whole</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Fast and furiously speeding</p>\r\n<p style=\"text-align: center;\">A fire that is in this engine deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A race to love I\'m in this with you baby</p>\r\n<p style=\"text-align: center;\">And I\'ll love without the brakes</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: center;\"><strong><em>\"Stop being afraid to fall in love. Just fall into it and stop fighting it....You might crash into something that was meant to be\" </em></strong><em>- Monica Renata</em></p>\r\n</blockquote>','Love without Brakes','','inherit','open','open','','850-revision-v1','','','2015-01-21 13:24:30','2015-01-21 19:24:30','',850,'http://www.monicarenata.com/850-revision-v1/',0,'revision','',0),(857,1,'2015-01-26 10:41:18','2015-01-26 16:41:18','It could be the way that you stare at me\r\n\r\nIt could be the twinkle in your eye\r\n\r\nIt could be the way that you move\r\n\r\nOr perhaps it is I\r\n\r\n \r\n\r\nA touch that somehow lingers\r\n\r\nA kiss that takes my breath away\r\n\r\nA taste that makes me yearn for more\r\n\r\nOr perhaps it is all in my head\r\n\r\n \r\n\r\nI want you every minute\r\n\r\nI want you every day\r\n\r\nI want to just love you with every ounce of me\r\n\r\nFor you are too irresistible to walk away\r\n\r\n ','Irresistible','','publish','open','open','','irresistible','','','2015-01-26 10:41:18','2015-01-26 16:41:18','',0,'http://www.monicarenata.com/?p=857',0,'post','',0),(858,1,'2015-01-26 10:41:18','2015-01-26 16:41:18','It could be the way that you stare at me\r\n\r\nIt could be the twinkle in your eye\r\n\r\nIt could be the way that you move\r\n\r\nOr perhaps it is I\r\n\r\n \r\n\r\nA touch that somehow lingers\r\n\r\nA kiss that takes my breath away\r\n\r\nA taste that makes me yearn for more\r\n\r\nOr perhaps it is all in my head\r\n\r\n \r\n\r\nI want you every minute\r\n\r\nI want you every day\r\n\r\nI want to just love you with every ounce of me\r\n\r\nFor you are too irresistible to walk away\r\n\r\n ','Irresistible','','inherit','open','open','','857-revision-v1','','','2015-01-26 10:41:18','2015-01-26 16:41:18','',857,'http://www.monicarenata.com/857-revision-v1/',0,'revision','',0),(859,1,'2015-01-26 11:01:36','2015-01-26 17:01:36','Pretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nYet somehow you forgot to see\r\n\r\nEvery single thing about she\r\n\r\n \r\n\r\nA smile here\r\n\r\nA smile there\r\n\r\nYet you can\'t see that fire in her eyes\r\n\r\nSo focused on beauty that you are left blind\r\n\r\n \r\n\r\nPretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nCrawling around on other girls profiles\r\n\r\nLiking how pretty they can be\r\n\r\n \r\n\r\nBut do see more than her flesh?\r\n\r\nDo you care what is deep inside?\r\n\r\nShe is more than a pretty picture\r\n\r\nSo don\'t let your eyes leave you blind\r\n\r\n \r\n\r\nFor women are beautiful creatures\r\n\r\nThey also have great minds\r\n\r\nThey can be your greatest support system\r\n\r\nFor they offer more than just looks to your eyes\r\n\r\n \r\n\r\nIn times of trouble and times of need\r\n\r\nThey can pull you through\r\n\r\nBut you will never know that\r\n\r\nIf you believe that being pretty is all they can do\r\n\r\n \r\n\r\nPretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nYet somehow you forgot to see\r\n\r\nEvery single thing about she\r\n\r\n \r\n\r\nBut I encourage you to look deeper\r\n\r\nSee something that you didn\'t see before\r\n\r\nShe is more than a pretty picture\r\n\r\nShe has a heart and a soul','Pretty Pictures','','publish','open','open','','pretty-pictures','','','2015-01-26 11:01:36','2015-01-26 17:01:36','',0,'http://www.monicarenata.com/?p=859',0,'post','',0),(860,1,'2015-01-26 11:01:36','2015-01-26 17:01:36','Pretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nYet somehow you forgot to see\r\n\r\nEvery single thing about she\r\n\r\n \r\n\r\nA smile here\r\n\r\nA smile there\r\n\r\nYet you can\'t see that fire in her eyes\r\n\r\nSo focused on beauty that you are left blind\r\n\r\n \r\n\r\nPretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nCrawling around on other girls profiles\r\n\r\nLiking how pretty they can be\r\n\r\n \r\n\r\nBut do see more than her flesh?\r\n\r\nDo you care what is deep inside?\r\n\r\nShe is more than a pretty picture\r\n\r\nSo don\'t let your eyes leave you blind\r\n\r\n \r\n\r\nFor women are beautiful creatures\r\n\r\nThey also have great minds\r\n\r\nThey can be your greatest support system\r\n\r\nFor they offer more than just looks to your eyes\r\n\r\n \r\n\r\nIn times of trouble and times of need\r\n\r\nThey can pull you through\r\n\r\nBut you will never know that\r\n\r\nIf you believe that being pretty is all they can do\r\n\r\n \r\n\r\nPretty Pictures that she post\r\n\r\nThat is all you see\r\n\r\nYet somehow you forgot to see\r\n\r\nEvery single thing about she\r\n\r\n \r\n\r\nBut I encourage you to look deeper\r\n\r\nSee something that you didn\'t see before\r\n\r\nShe is more than a pretty picture\r\n\r\nShe has a heart and a soul','Pretty Pictures','','inherit','open','open','','859-revision-v1','','','2015-01-26 11:01:36','2015-01-26 17:01:36','',859,'http://www.monicarenata.com/859-revision-v1/',0,'revision','',0),(861,1,'2015-01-26 11:34:53','2015-01-26 17:34:53','<p style=\"text-align: center;\">I want to be your first Good Morning</p>\r\n<p style=\"text-align: center;\">I want to be your last Good Night</p>\r\n<p style=\"text-align: center;\">I want to be the warmth on your shoulder</p>\r\n<p style=\"text-align: center;\">I want to be that sun in your eye</p>\r\n<p style=\"text-align: center;\">Day and night comes and go</p>\r\n<p style=\"text-align: center;\">Yet you are still by my side</p>\r\n<p style=\"text-align: center;\">I want to wake up next to you</p>\r\n<p style=\"text-align: center;\">And fall asleep next to you each night</p>','My Day and Night','','publish','open','open','','my-day-and-night','','','2015-01-26 11:34:53','2015-01-26 17:34:53','',0,'http://www.monicarenata.com/?p=861',0,'post','',0),(862,1,'2015-01-26 11:34:53','2015-01-26 17:34:53','<p style=\"text-align: center;\">I want to be your first Good Morning</p>\r\n<p style=\"text-align: center;\">I want to be your last Good Night</p>\r\n<p style=\"text-align: center;\">I want to be the warmth on your shoulder</p>\r\n<p style=\"text-align: center;\">I want to be that sun in your eye</p>\r\n<p style=\"text-align: center;\">Day and night comes and go</p>\r\n<p style=\"text-align: center;\">Yet you are still by my side</p>\r\n<p style=\"text-align: center;\">I want to wake up next to you</p>\r\n<p style=\"text-align: center;\">And fall asleep next to you each night</p>','My Day and Night','','inherit','open','open','','861-revision-v1','','','2015-01-26 11:34:53','2015-01-26 17:34:53','',861,'http://www.monicarenata.com/861-revision-v1/',0,'revision','',0),(864,1,'2015-01-28 13:09:02','2015-01-28 19:09:02','I\'m tired of being tired\r\n\r\nYet tired of being awake\r\n\r\nThe birds sing so peacefully\r\n\r\nThey sing so loud that I\'m awake\r\n\r\nThe sun creeps over some cleverly\r\n\r\nAnd shines brightly in my eye\r\n\r\nOh I am so tired today\r\n\r\nOh my, oh my, oh my\r\n\r\n \r\n\r\nI\'m thinking thoughts of slumbering\r\n\r\nYet my eyes say I\'m wide awake\r\n\r\nMany people are talking\r\n\r\nThey seem to talk all day\r\n\r\nThe world spins each second\r\n\r\nYet I feel like I walked around the earth\r\n\r\nOh how I wish I could lay there peaceful\r\n\r\nOh how I wish I had that luck\r\n\r\n \r\n\r\nI\'m living on fumes right now\r\n\r\nYet my heart continues to beat\r\n\r\nMy days run into each other\r\n\r\nI am stumbling on my two feet\r\n\r\nMy happiness seems to be gone\r\n\r\nFor I do not know where it is at\r\n\r\nI think I need to sit down for a moment\r\n\r\nI think I need to RELAX\r\n\r\n \r\n\r\n ','Relax','','inherit','open','open','','863-revision-v1','','','2015-01-28 13:09:02','2015-01-28 19:09:02','',863,'http://www.monicarenata.com/863-revision-v1/',0,'revision','',0),(865,1,'2015-01-28 13:19:27','2015-01-28 19:19:27','I\'m tired of being tired\n\nYet tired of being awake\n\nThe birds sing so peacefully\n\nThey sing so loud that I\'m awake\n\nThe sun creeps over so cleverly\n\nAnd shines brightly in my eye\n\nOh I am so tired today\n\nOh my, oh my, oh my\n\n \n\nI\'m thinking thoughts of slumbering\n\nYet my eyes say I\'m wide awake\n\nMany people are talking\n\nThey seem to talk all day\n\nThe world spins each second\n\nYet I feel like I walked around the earth\n\nOh how I wish I could lay there peaceful\n\nOh how I wish I had that luck\n\n \n\nI\'m living on fumes of exhaustion right now\n\nYet my heart continues to beat\n\nMy days run into each other\n\nI am stumbling on my two feet\n\nMy happiness seems to be gone\n\nFor I do not know where it is at\n\nI think I need to sit down for a moment\n\nI think I need to RELAX\n\n \n\n ','Relax','','inherit','open','open','','863-autosave-v1','','','2015-01-28 13:19:27','2015-01-28 19:19:27','',863,'http://www.monicarenata.com/863-autosave-v1/',0,'revision','',0),(866,1,'2015-01-28 13:19:42','2015-01-28 19:19:42','I\'m tired of being tired\r\n\r\nYet tired of being awake\r\n\r\nThe birds sing so peacefully\r\n\r\nThey sing so loud that I\'m awake\r\n\r\nThe sun creeps over so cleverly\r\n\r\nAnd shines brightly in my eye\r\n\r\nOh I am so tired today\r\n\r\nOh my, oh my, oh my\r\n\r\n \r\n\r\nI\'m thinking thoughts of slumbering\r\n\r\nYet my eyes say I\'m wide awake\r\n\r\nMany people are talking\r\n\r\nThey seem to talk all day\r\n\r\nThe world spins each second\r\n\r\nYet I feel like I walked around the earth\r\n\r\nOh how I wish I could lay there peaceful\r\n\r\nOh how I wish I had that luck\r\n\r\n \r\n\r\nI\'m living on fumes of exhaustion right now\r\n\r\nYet my heart continues to beat\r\n\r\nMy days run into each other\r\n\r\nI am stumbling on my two feet\r\n\r\nMy happiness seems to be gone\r\n\r\nFor I do not know where it is at\r\n\r\nI think I need to sit down for a moment\r\n\r\nI think I need to RELAX\r\n\r\n \r\n\r\n ','Relax','','inherit','open','open','','863-revision-v1','','','2015-01-28 13:19:42','2015-01-28 19:19:42','',863,'http://www.monicarenata.com/863-revision-v1/',0,'revision','',0),(906,1,'2015-02-10 08:07:14','2015-02-10 14:07:14','My enemy is my enemy\r\n\r\nMy friend is my friend\r\n\r\nOne may speak negatively about me\r\n\r\nWhile the other almost my kin\r\n\r\n \r\n\r\nOne follows closely behind me\r\n\r\nWhile one may look from afar\r\n\r\nOne holds my hand tightly\r\n\r\nWhile one leaves me with emotional scars\r\n\r\n \r\n\r\nFor I am afraid of my enemy\r\n\r\nBecause I know the harm my enemy can bring\r\n\r\nBut at least I know to cross the street\r\n\r\nI know that their like for me they won’t pretend\r\n\r\n \r\n\r\nBut my friend is usually by my side\r\n\r\nKnows everything about me\r\n\r\nWas there when I shed tears\r\n\r\nWas always there for me\r\n\r\n \r\n\r\nMy weakness they hold in their hands\r\n\r\nMy trust for them runs deep\r\n\r\nThat’s why I fear my friend\r\n\r\nMore than I will ever fear my enemy\r\n\r\n \r\n\r\nFor my friend possesses everything needed\r\n\r\nTo utterly destroy me\r\n\r\nThey can pretend at any moment\r\n\r\nYet also try to hurt me\r\n\r\n \r\n\r\nA person who I care about dearly\r\n\r\nSomeone who I would consider my next of kin\r\n\r\nEnemies can sometimes be hard to identify\r\n\r\nBecause they may call themselves your friend\r\n\r\n \r\n\r\n ','I Fear My Friend','','publish','open','open','','i-fear-my-friend','','','2015-02-10 08:07:14','2015-02-10 14:07:14','',0,'http://www.monicarenata.com/?p=906',0,'post','',2),(868,1,'2015-02-02 08:20:11','2015-02-02 14:20:11','I can see it right in front of me\r\n\r\nLike a mountain in front my face\r\n\r\n \r\n\r\nI can feel the presence of your flesh\r\n\r\nYet you still won\'t take the bait\r\n\r\n \r\n\r\nI want you more than I may want\r\n\r\nA prize that is at the fair\r\n\r\n \r\n\r\nI want you to notice me\r\n\r\nBut it is evident that you don\'t care\r\n\r\n \r\n\r\nTo want and to never receive\r\n\r\nTo wish and hope and dream\r\n\r\nTo obtain the unattainable\r\n\r\nYou would have to pay attention to me\r\n\r\n \r\n\r\nI can see you ever single day\r\n\r\nYet I will always be afraid to speak\r\n\r\n \r\n\r\nI\'m not sure if you are interested\r\n\r\nAnd I\'ll never know for I am too meek\r\n\r\n \r\n\r\nI will always wonder\r\n\r\nPerhaps even wonder in my sleep\r\n\r\n \r\n\r\nI will wish for the unattainable\r\n\r\nYet will always wish because I\'m afraid to speak\r\n\r\n \r\n\r\n<em><strong>\"You will never get what you want if you are afraid to go out and get it. Everything is unattainable if you are afraid to try\"</strong> -Monica Renata </em>\r\n\r\n ','Unattainable','','publish','open','open','','unattainable','','','2015-02-02 08:20:11','2015-02-02 14:20:11','',0,'http://www.monicarenata.com/?p=868',0,'post','',1),(869,1,'2015-02-02 08:20:11','2015-02-02 14:20:11','I can see it right in front of me\r\n\r\nLike a mountain in front my face\r\n\r\n \r\n\r\nI can feel the presence of your flesh\r\n\r\nYet you still won\'t take the bait\r\n\r\n \r\n\r\nI want you more than I may want\r\n\r\nA prize that is at the fair\r\n\r\n \r\n\r\nI want you to notice me\r\n\r\nBut it is evident that you don\'t care\r\n\r\n \r\n\r\nTo want and to never receive\r\n\r\nTo wish and hope and dream\r\n\r\nTo obtain the unattainable\r\n\r\nYou would have to pay attention to me\r\n\r\n \r\n\r\nI can see you ever single day\r\n\r\nYet I will always be afraid to speak\r\n\r\n \r\n\r\nI\'m not sure if you are interested\r\n\r\nAnd I\'ll never know for I am too meek\r\n\r\n \r\n\r\nI will always wonder\r\n\r\nPerhaps even wonder in my sleep\r\n\r\n \r\n\r\nI will wish for the unattainable\r\n\r\nYet will always wish because I\'m afraid to speak\r\n\r\n \r\n\r\n<em><strong>\"You will never get what you want if you are afraid to go out and get it. Everything is unattainable if you are afraid to try\"</strong> -Monica Renata </em>\r\n\r\n ','Unattainable','','inherit','open','open','','868-revision-v1','','','2015-02-02 08:20:11','2015-02-02 14:20:11','',868,'http://www.monicarenata.com/868-revision-v1/',0,'revision','',0),(909,1,'2015-02-11 10:35:28','2015-02-11 16:35:28','There is always that tear drop\r\n\r\nThat blends in with the rain\r\n\r\n \r\n\r\nAs it thunders and it pours down\r\n\r\nSo do the tears on my face\r\n\r\n \r\n\r\nWhen it rains it pours\r\n\r\nAnd my tears make flowing streams\r\n\r\n \r\n\r\nStreams that turn into waterfalls\r\n\r\nThat gently falls in my hands\r\n\r\n \r\n\r\nFlowing tears of emotion\r\n\r\nHappiness, contentment, and sometimes pain\r\n\r\n \r\n\r\nBlending into my surrounds\r\n\r\nMy teardrops in the rain\r\n\r\n \r\n\r\n ','Teardrops In The Rain','','publish','open','open','','teardrops-in-the-rain','','','2015-02-11 10:35:28','2015-02-11 16:35:28','',0,'http://www.monicarenata.com/?p=909',0,'post','',0),(872,1,'2015-02-03 06:25:24','2015-02-03 12:25:24','Short\r\n\r\nYet sweet\r\n\r\nYet simple\r\n\r\nJust like a human in youth\r\n\r\nSo naive to the outside world\r\n\r\nBelieving all lies to be truths\r\n\r\nFor in a world so simple\r\n\r\nSadness seems to be foregone\r\n\r\nIt can all be so simple\r\n\r\nSo why do we make it hard?\r\n\r\n \r\n\r\nInnocence in youth\r\n\r\nFades each day we age\r\n\r\nA youthful purity robbed\r\n\r\nBy an person whose inner-child is dead\r\n\r\nImagination turns into speculation\r\n\r\nWe no longer look at life the same\r\n\r\nBut there is simplicity in living\r\n\r\nBut not many of us can not see\r\n\r\nFor we are blinded by negativity\r\n\r\nWe are held down by what we believe we CAN\'T be\r\n\r\n \r\n\r\nLife is so very simple\r\n\r\nBut we make it so very hard\r\n\r\nWe rarely count our blessings\r\n\r\nWe doubt what we were made for\r\n\r\nWe go from believing we can be anything\r\n\r\nTo believing we can be nothing at all\r\n\r\nIn youth we have unwavering confidence\r\n\r\nWe believe we can rise after each fall\r\n\r\nSimplicity is where magic happens\r\n\r\nSimplicity is where you can finally see\r\n\r\n \r\n\r\nThat anything is possible\r\n\r\nAnd you can always rise after defeat\r\n\r\n \r\n\r\n \r\n\r\n<em><strong>\"Never let your childlike imagination die. Always believe in yourself and be optimistic. Life is as hard as YOU want it to be.\"</strong> -Monica Renata</em>','Simplicity','','publish','open','open','','simplicity','','','2015-02-03 06:25:24','2015-02-03 12:25:24','',0,'http://www.monicarenata.com/?p=872',0,'post','',1),(873,1,'2015-02-03 06:25:24','2015-02-03 12:25:24','Short\r\n\r\nYet sweet\r\n\r\nYet simple\r\n\r\nJust like a human in youth\r\n\r\nSo naive to the outside world\r\n\r\nBelieving all lies to be truths\r\n\r\nFor in a world so simple\r\n\r\nSadness seems to be foregone\r\n\r\nIt can all be so simple\r\n\r\nSo why do we make it hard?\r\n\r\n \r\n\r\nInnocence in youth\r\n\r\nFades each day we age\r\n\r\nA youthful purity robbed\r\n\r\nBy an person whose inner-child is dead\r\n\r\nImagination turns into speculation\r\n\r\nWe no longer look at life the same\r\n\r\nBut there is simplicity in living\r\n\r\nBut not many of us can not see\r\n\r\nFor we are blinded by negativity\r\n\r\nWe are held down by what we believe we CAN\'T be\r\n\r\n \r\n\r\nLife is so very simple\r\n\r\nBut we make it so very hard\r\n\r\nWe rarely count our blessings\r\n\r\nWe doubt what we were made for\r\n\r\nWe go from believing we can be anything\r\n\r\nTo believing we can be nothing at all\r\n\r\nIn youth we have unwavering confidence\r\n\r\nWe believe we can rise after each fall\r\n\r\nSimplicity is where magic happens\r\n\r\nSimplicity is where you can finally see\r\n\r\n \r\n\r\nThat anything is possible\r\n\r\nAnd you can always rise after defeat\r\n\r\n \r\n\r\n \r\n\r\n<em><strong>\"Never let your childlike imagination die. Always believe in yourself and be optimistic. Life is as hard as YOU want it to be.\"</strong> -Monica Renata</em>','Simplicity','','inherit','open','open','','872-revision-v1','','','2015-02-03 06:25:24','2015-02-03 12:25:24','',872,'http://www.monicarenata.com/872-revision-v1/',0,'revision','',0),(948,1,'2015-02-19 10:47:07','0000-00-00 00:00:00','Once upon a time ago\r\nIn a land so very far away\r\nLived a Love waiting for their lover\r\nSo in his heart she’ll have a place to stay\r\n\r\nThey didn’t live in a palace\r\nAnd kingdoms only exist far away\r\nBut I can feel the magic brewing\r\nAnd it’s sweeping me off my feet\r\n\r\n\r\n\r\n\r\n\r\nFairy tales aren’t real\r\nThat’s what so many say\r\nBut ours is just unfolding\r\nIt’s unfolding in front your face\r\n\r\nA man as handsome as a prince\r\nA girl with potential to be a queen\r\nA world left to conquer\r\nYet so much of life remains unseen\r\n\r\nA mutual interest\r\nSomething that is different but sweet\r\nThis could be your happily ever after\r\nBut you decide to hesitate\r\n\r\nKisses under the midnight moon\r\nLaughs that could last days\r\nA team that can conquer the world\r\nAnd travel together in to the unseen\r\n\r\nQuestions\r\nSo many questions\r\nNot blind\r\nBut yet you can’t see\r\n\r\n\r\n\r\nDon’t miss out on your happily ever after\r\nBecause your happily ever after is with me\r\nOh how I wish you would realize this\r\nAs each night you drift to sleep\r\n','Fairy Tales Aren\'t Real','','draft','open','open','','','','','2015-02-19 10:47:07','2015-02-19 16:47:07','',0,'http://www.monicarenata.com/?p=948',0,'post','',0),(875,1,'2015-02-03 06:45:30','2015-02-03 12:45:30','You say you want fast money\r\n\r\nBut fast money doesn\'t get you far\r\n\r\n \r\n\r\nOf course it might get you nice things\r\n\r\nAnd probably those fancy cars\r\n\r\n \r\n\r\nBut things that come to you quick\r\n\r\nAre sometimes the things that quickly fade away\r\n\r\n \r\n\r\nSo be careful when you say you want fast money\r\n\r\nFor fast money might only last a day','Fast Money','','publish','open','open','','fast-money','','','2015-02-03 06:45:30','2015-02-03 12:45:30','',0,'http://www.monicarenata.com/?p=875',0,'post','',1),(876,1,'2015-02-03 06:45:30','2015-02-03 12:45:30','You say you want fast money\r\n\r\nBut fast money doesn\'t get you far\r\n\r\n \r\n\r\nOf course it might get you nice things\r\n\r\nAnd probably those fancy cars\r\n\r\n \r\n\r\nBut things that come to you quick\r\n\r\nAre sometimes the things that quickly fade away\r\n\r\n \r\n\r\nSo be careful when you say you want fast money\r\n\r\nFor fast money might only last a day','Fast Money','','inherit','open','open','','875-revision-v1','','','2015-02-03 06:45:30','2015-02-03 12:45:30','',875,'http://www.monicarenata.com/875-revision-v1/',0,'revision','',0),(877,1,'2015-02-03 13:54:55','2015-02-03 19:54:55','Paint my pretty picture\r\n\r\nPaint what you want to see\r\n\r\nPaint my hair a beautiful shade\r\n\r\nWhile you paint my heart black as you believe it to be\r\n\r\n \r\n\r\nMurder my canvas with your accusations\r\n\r\nSlash all of my beautiful thoughts\r\n\r\nJust paint what you believe me to be\r\n\r\nAnd don\'t forget to connect the dots\r\n\r\n \r\n\r\nPaint my pretty picture\r\n\r\nFor the canvas is already in your mind\r\n\r\nFor you have already judged me\r\n\r\nYou didn\'t take the chance to get to know I\r\n\r\n \r\n\r\n<em>\"Never decide to paint a picture of someone before you get to know them... Sooner or later you will realize that what your mind & eyes decided to see was not what was truly there..\" -Monica Renata </em>\r\n\r\n ','Paint My Picture','','publish','open','open','','paint-my-picture','','','2015-02-03 13:54:55','2015-02-03 19:54:55','',0,'http://www.monicarenata.com/?p=877',0,'post','',1),(878,1,'2015-02-03 13:54:55','2015-02-03 19:54:55','Paint my pretty picture\r\n\r\nPaint what you want to see\r\n\r\nPaint my hair a beautiful shade\r\n\r\nWhile you paint my heart black as you believe it to be\r\n\r\n \r\n\r\nMurder my canvas with your accusations\r\n\r\nSlash all of my beautiful thoughts\r\n\r\nJust paint what you believe me to be\r\n\r\nAnd don\'t forget to connect the dots\r\n\r\n \r\n\r\nPaint my pretty picture\r\n\r\nFor the canvas is already in your mind\r\n\r\nFor you have already judged me\r\n\r\nYou didn\'t take the chance to get to know I\r\n\r\n \r\n\r\n<em>\"Never decide to paint a picture of someone before you get to know them... Sooner or later you will realize that what your mind & eyes decided to see was not what was truly there..\" -Monica Renata </em>\r\n\r\n ','Paint My Picture','','inherit','open','open','','877-revision-v1','','','2015-02-03 13:54:55','2015-02-03 19:54:55','',877,'http://www.monicarenata.com/877-revision-v1/',0,'revision','',0),(879,1,'2015-02-04 12:45:49','2015-02-04 18:45:49','It wasn\'t always easy\r\n\r\nIt wasn\'t always fun\r\n\r\nTo pick up your own dignity\r\n\r\nTo see the battles already won\r\n\r\n \r\n\r\nBut never let defeat defeat you\r\n\r\nNever let negative words cloud your head\r\n\r\nJust keep on moving forward\r\n\r\nThat is how you will make it ahead\r\n\r\n \r\n\r\nThey laughed when you wobbled\r\n\r\nThey laughed when you took that fall\r\n\r\nThey laughed when tears rolled down your cheeks\r\n\r\nThey laughed at it all\r\n\r\n \r\n\r\nIt wasn\'t always easy\r\n\r\nIt wasn\'t always fun\r\n\r\nBut you must keep on going\r\n\r\nFor YOUR battle is yet to be won\r\n\r\n \r\n\r\nNothing in life comes easy\r\n\r\nEverything worth having takes a little pain\r\n\r\nTears can fall because of heartbreak\r\n\r\nBut never lose yourself in your pain\r\n\r\n \r\n\r\nThey laughed when someone said \"GIVE UP\"\r\n\r\nThey laughed when another questioned \"WHY TRY?\"\r\n\r\nThey laughed when you believed in yourself\r\n\r\nThey laughed and told you not to reach for the sky\r\n\r\n \r\n\r\nIt wasn’t always easy\r\n\r\nIt wasn’t always fun\r\n\r\nBut if you don’t pick yourself up\r\n\r\nWho will cheer when you are done\r\n\r\n \r\n\r\nAlways be your own motivation\r\n\r\nAlways laugh at your mistakes\r\n\r\nRecognize that falling is a part of life\r\n\r\nAnd you will live to fight another day\r\n\r\n \r\n\r\nThey laughed when you were almost there\r\n\r\nThey laughed and when you almost gave up\r\n\r\nBut when you reach your destination\r\n\r\nThe laughing somehow stops\r\n\r\n \r\n\r\nIt wasn’t always easy\r\n\r\nIt wasn’t always fun\r\n\r\nPeople will laugh at your shortcomings\r\n\r\nYet are silent when you won\r\n\r\n \r\n\r\nIt wasn\'t always meant to be\r\n\r\nYou say \"It wasn\'t meant for me\"\r\n\r\nYet you have to keep on moving\r\n\r\nFor you have to believe in that person called \"ME\"\r\n\r\n \r\n\r\nThey may laugh again tomorrow\r\n\r\nThey may laugh again today\r\n\r\nBut in the end you will have the final laugh\r\n\r\nSo never worry about what others say\r\n\r\n \r\n\r\n<em>\"Never let the negative words of another dictate your life. Always stay true to your path and in due time you will make it to your destination.\" -Monica Renata </em>\r\n\r\n ','Laugh','','publish','open','open','','laugh','','','2015-02-04 12:45:49','2015-02-04 18:45:49','',0,'http://www.monicarenata.com/?p=879',0,'post','',0),(880,1,'2015-02-04 12:45:49','2015-02-04 18:45:49','It wasn\'t always easy\r\n\r\nIt wasn\'t always fun\r\n\r\nTo pick up your own dignity\r\n\r\nTo see the battles already won\r\n\r\n \r\n\r\nBut never let defeat defeat you\r\n\r\nNever let negative words cloud your head\r\n\r\nJust keep on moving forward\r\n\r\nThat is how you will make it ahead\r\n\r\n \r\n\r\nThey laughed when you wobbled\r\n\r\nThey laughed when you took that fall\r\n\r\nThey laughed when tears rolled down your cheeks\r\n\r\nThey laughed at it all\r\n\r\n \r\n\r\nIt wasn\'t always easy\r\n\r\nIt wasn\'t always fun\r\n\r\nBut you must keep on going\r\n\r\nFor YOUR battle is yet to be won\r\n\r\n \r\n\r\nNothing in life comes easy\r\n\r\nEverything worth having takes a little pain\r\n\r\nTears can fall because of heartbreak\r\n\r\nBut never lose yourself in your pain\r\n\r\n \r\n\r\nThey laughed when someone said \"GIVE UP\"\r\n\r\nThey laughed when another questioned \"WHY TRY?\"\r\n\r\nThey laughed when you believed in yourself\r\n\r\nThey laughed and told you not to reach for the sky\r\n\r\n \r\n\r\nIt wasn’t always easy\r\n\r\nIt wasn’t always fun\r\n\r\nBut if you don’t pick yourself up\r\n\r\nWho will cheer when you are done\r\n\r\n \r\n\r\nAlways be your own motivation\r\n\r\nAlways laugh at your mistakes\r\n\r\nRecognize that falling is a part of life\r\n\r\nAnd you will live to fight another day\r\n\r\n \r\n\r\nThey laughed when you were almost there\r\n\r\nThey laughed and when you almost gave up\r\n\r\nBut when you reach your destination\r\n\r\nThe laughing somehow stops\r\n\r\n \r\n\r\nIt wasn’t always easy\r\n\r\nIt wasn’t always fun\r\n\r\nPeople will laugh at your shortcomings\r\n\r\nYet are silent when you won\r\n\r\n \r\n\r\nIt wasn\'t always meant to be\r\n\r\nYou say \"It wasn\'t meant for me\"\r\n\r\nYet you have to keep on moving\r\n\r\nFor you have to believe in that person called \"ME\"\r\n\r\n \r\n\r\nThey may laugh again tomorrow\r\n\r\nThey may laugh again today\r\n\r\nBut in the end you will have the final laugh\r\n\r\nSo never worry about what others say\r\n\r\n \r\n\r\n<em>\"Never let the negative words of another dictate your life. Always stay true to your path and in due time you will make it to your destination.\" -Monica Renata </em>\r\n\r\n ','Laugh','','inherit','open','open','','879-revision-v1','','','2015-02-04 12:45:49','2015-02-04 18:45:49','',879,'http://www.monicarenata.com/879-revision-v1/',0,'revision','',0),(881,1,'2015-02-04 13:12:31','2015-02-04 19:12:31','If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nI would buy myself some land\r\n\r\nAnd build a house or probably two\r\n\r\nI would build a great big fence\r\n\r\nSo I am never bothered by you\r\n\r\n \r\n\r\nI would change my phone number\r\n\r\nI might even change my entire name\r\n\r\nI would take care of the people\r\n\r\nWho always remained the same\r\n\r\n \r\n\r\n \r\n\r\nYou always said money changed people\r\n\r\nAnd somehow I guess you were right\r\n\r\nIt showed me how greedy you are\r\n\r\nAnd how I want you out of my sight\r\n\r\n \r\n\r\nThat\'s why If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nMoney is the root of all evil\r\n\r\nThat\'s what the old folks say\r\n\r\nSo I am telling you now\r\n\r\n\"DEVIL! Please Go away\"\r\n\r\n \r\n\r\nFor while my bank account is overflowing\r\n\r\nAnd I definiately have more than enough to spare and last\r\n\r\nI would rather decide to use the excess on a statue for you to kiss\r\n\r\nA golden statue of my a$$\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','A Trillion Dollars','','publish','open','open','','a-trillion-dollars','','','2015-02-04 13:14:01','2015-02-04 19:14:01','',0,'http://www.monicarenata.com/?p=881',0,'post','',0),(882,1,'2015-02-04 13:12:31','2015-02-04 19:12:31','If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nI would buy myself some land\r\n\r\nAnd build a house or probably two\r\n\r\nI would build a great big fence\r\n\r\nSo I am never bothered by you\r\n\r\n \r\n\r\nI would change my phone number\r\n\r\nI might even change my entire name\r\n\r\nI would take care of the people\r\n\r\nWho always remained the same\r\n\r\n \r\n\r\n \r\n\r\nYou always said money changed people\r\n\r\nAnd somehow I guess you were right\r\n\r\nIt showed me how greedy you are\r\n\r\nAnd how I want you out of my sight\r\n\r\n \r\n\r\nThat\'s why If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nMoney is the root of all evil\r\n\r\nThat\'s what the old folks say\r\n\r\nSo I am telling you now\r\n\r\n\"DEVIL! Please Go away\"\r\n\r\n \r\n\r\nFor while my bank account is overflowing\r\n\r\nAnd I definiately have more than enough to spare and last\r\n\r\nI would rather decide to use the excess on a status for you to kiss\r\n\r\nA golden statue of my a$$\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','A Trillion Dollars','','inherit','open','open','','881-revision-v1','','','2015-02-04 13:12:31','2015-02-04 19:12:31','',881,'http://www.monicarenata.com/881-revision-v1/',0,'revision','',0),(883,1,'2015-02-04 13:14:01','2015-02-04 19:14:01','If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nI would buy myself some land\r\n\r\nAnd build a house or probably two\r\n\r\nI would build a great big fence\r\n\r\nSo I am never bothered by you\r\n\r\n \r\n\r\nI would change my phone number\r\n\r\nI might even change my entire name\r\n\r\nI would take care of the people\r\n\r\nWho always remained the same\r\n\r\n \r\n\r\n \r\n\r\nYou always said money changed people\r\n\r\nAnd somehow I guess you were right\r\n\r\nIt showed me how greedy you are\r\n\r\nAnd how I want you out of my sight\r\n\r\n \r\n\r\nThat\'s why If I had a trillion dollars\r\n\r\nOr perhaps a trillion times two\r\n\r\nI wouldn\'t offer you a measly cent\r\n\r\nAnd this is so very true\r\n\r\n \r\n\r\nMoney is the root of all evil\r\n\r\nThat\'s what the old folks say\r\n\r\nSo I am telling you now\r\n\r\n\"DEVIL! Please Go away\"\r\n\r\n \r\n\r\nFor while my bank account is overflowing\r\n\r\nAnd I definiately have more than enough to spare and last\r\n\r\nI would rather decide to use the excess on a statue for you to kiss\r\n\r\nA golden statue of my a$$\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','A Trillion Dollars','','inherit','open','open','','881-revision-v1','','','2015-02-04 13:14:01','2015-02-04 19:14:01','',881,'http://www.monicarenata.com/881-revision-v1/',0,'revision','',0),(884,1,'2015-02-05 09:14:16','2015-02-05 15:14:16','<hr />\r\n\r\n \r\n<p style=\"text-align: center;\"><strong>JAUNT</strong> (<em>noun</em>) - <span class=\"oneClick-link\">a</span> <span class=\"oneClick-link oneClick-available\">short</span> <span class=\"oneClick-link oneClick-available\">journey,</span> <span class=\"oneClick-link oneClick-available\">especially</span> <span class=\"oneClick-link oneClick-available\">one</span> <span class=\"oneClick-link oneClick-available\">taken</span> <span class=\"oneClick-link\">for</span> <span class=\"oneClick-link oneClick-available\">pleasure.</span></p>\r\n\r\n\r\n<hr />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\nMy hands are shaky and sweaty\r\n\r\nMy heart is beating out of my chest\r\n\r\nI can’t breathe easy even for a second\r\n\r\nTime keeps replaying over and over again\r\n\r\n \r\n\r\nMy eyes are jumping a little\r\n\r\nYet tears won’t fall from my eyes\r\n\r\nI can see what is in front of me\r\n\r\nBut it is multiplied by my eyes\r\n\r\n \r\n\r\nWoozy is how I’m feeling\r\n\r\nNauseas at every look\r\n\r\nI swear I hate paying bills\r\n\r\nEach month I’m afraid to look\r\n\r\n \r\n\r\nBalances after balances\r\n\r\nNegatives and positives on repeat\r\n\r\nLooking at every statement thinking\r\n\r\nWas this something I actually need?\r\n\r\n \r\n\r\nLife is full of luxuries\r\n\r\nMany of us want Want WANT\r\n\r\nBut it isn’t a good feeling\r\n\r\nWhen the paying bills is your new jaunt\r\n\r\n \r\n\r\n<strong><em>“Be careful of your spending habits. If you are not careful, you will have yourself on a long journey of debt repayment.....Everything you may WANT isn\'t exactly something you may NEED.”</em></strong> –Monica Renata','The Jaunt','','publish','open','open','','the-jaunt','','','2015-02-05 09:14:16','2015-02-05 15:14:16','',0,'http://www.monicarenata.com/?p=884',0,'post','',1),(885,1,'2015-02-05 09:14:16','2015-02-05 15:14:16','<hr />\r\n\r\n \r\n<p style=\"text-align: center;\"><strong>JAUNT</strong> (<em>noun</em>) - <span class=\"oneClick-link\">a</span> <span class=\"oneClick-link oneClick-available\">short</span> <span class=\"oneClick-link oneClick-available\">journey,</span> <span class=\"oneClick-link oneClick-available\">especially</span> <span class=\"oneClick-link oneClick-available\">one</span> <span class=\"oneClick-link oneClick-available\">taken</span> <span class=\"oneClick-link\">for</span> <span class=\"oneClick-link oneClick-available\">pleasure.</span></p>\r\n\r\n\r\n<hr />\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\nMy hands are shaky and sweaty\r\n\r\nMy heart is beating out of my chest\r\n\r\nI can’t breathe easy even for a second\r\n\r\nTime keeps replaying over and over again\r\n\r\n \r\n\r\nMy eyes are jumping a little\r\n\r\nYet tears won’t fall from my eyes\r\n\r\nI can see what is in front of me\r\n\r\nBut it is multiplied by my eyes\r\n\r\n \r\n\r\nWoozy is how I’m feeling\r\n\r\nNauseas at every look\r\n\r\nI swear I hate paying bills\r\n\r\nEach month I’m afraid to look\r\n\r\n \r\n\r\nBalances after balances\r\n\r\nNegatives and positives on repeat\r\n\r\nLooking at every statement thinking\r\n\r\nWas this something I actually need?\r\n\r\n \r\n\r\nLife is full of luxuries\r\n\r\nMany of us want Want WANT\r\n\r\nBut it isn’t a good feeling\r\n\r\nWhen the paying bills is your new jaunt\r\n\r\n \r\n\r\n<strong><em>“Be careful of your spending habits. If you are not careful, you will have yourself on a long journey of debt repayment.....Everything you may WANT isn\'t exactly something you may NEED.”</em></strong> –Monica Renata','The Jaunt','','inherit','open','open','','884-revision-v1','','','2015-02-05 09:14:16','2015-02-05 15:14:16','',884,'http://www.monicarenata.com/884-revision-v1/',0,'revision','',0),(886,1,'2015-02-08 13:21:14','2015-02-08 19:21:14','On the other side of honesty\r\n\r\nI found the truth at last\r\n\r\nIt was covered in sparkles\r\n\r\nAnd It was fleeting away fast\r\n\r\n \r\n\r\nYou see the opposite of honesty\r\n\r\nHas a way of shining for all to see\r\n\r\nIt glitters to cover the bullshit\r\n\r\nThat it does not want us to see\r\n\r\n \r\n\r\nOh the heartaches we endure\r\n\r\nWhen it is the truth that we seek\r\n\r\nYet we are forced to devour\r\n\r\nA lie that we don\'t want to believe\r\n\r\n \r\n\r\nFor the opposite of honesty\r\n\r\nIs so prevalent in this land\r\n\r\nBut I choose not to follow your lies\r\n\r\nAnd walk the other way instead\r\n\r\n ','The Opposite of Honesty','','publish','open','open','','the-opposite-of-honesty','','','2015-02-08 13:21:14','2015-02-08 19:21:14','',0,'http://www.monicarenata.com/?p=886',0,'post','',0),(887,1,'2015-02-08 13:21:14','2015-02-08 19:21:14','On the other side of honesty\r\n\r\nI found the truth at last\r\n\r\nIt was covered in sparkles\r\n\r\nAnd It was fleeting away fast\r\n\r\n \r\n\r\nYou see the opposite of honesty\r\n\r\nHas a way of shining for all to see\r\n\r\nIt glitters to cover the bullshit\r\n\r\nThat it does not want us to see\r\n\r\n \r\n\r\nOh the heartaches we endure\r\n\r\nWhen it is the truth that we seek\r\n\r\nYet we are forced to devour\r\n\r\nA lie that we don\'t want to believe\r\n\r\n \r\n\r\nFor the opposite of honesty\r\n\r\nIs so prevalent in this land\r\n\r\nBut I choose not to follow your lies\r\n\r\nAnd walk the other way instead\r\n\r\n ','The Opposite of Honesty','','inherit','open','open','','886-revision-v1','','','2015-02-08 13:21:14','2015-02-08 19:21:14','',886,'http://www.monicarenata.com/886-revision-v1/',0,'revision','',0),(888,1,'2015-02-08 17:44:24','2015-02-08 23:44:24','<p style=\"text-align: center;\">I am no longer disappointed</p>\r\n<p style=\"text-align: center;\">I will no longer cry</p>\r\n<p style=\"text-align: center;\">I will keep my head up</p>\r\n<p style=\"text-align: center;\">I won\'t let a tear fall from my eyes</p>\r\n<p style=\"text-align: center;\">For while disappoints may hurt</p>\r\n<p style=\"text-align: center;\">They are just a consequence of expecting things that weren\'t meant to be</p>\r\n<p style=\"text-align: center;\">So instead of being disappointed I will learn to rely solely on me</p>\r\n \r\n\r\n<strong><em>\"Once you no longer have expectations of others, disappointments become fewer and fewer...\"</em> </strong>-Monica Renata','No Longer Disappointed','','publish','open','open','','no-longer-disappointed','','','2015-02-08 17:44:24','2015-02-08 23:44:24','',0,'http://www.monicarenata.com/?p=888',0,'post','',0),(889,1,'2015-02-08 17:44:24','2015-02-08 23:44:24','<p style=\"text-align: center;\">I am no longer disappointed</p>\r\n<p style=\"text-align: center;\">I will no longer cry</p>\r\n<p style=\"text-align: center;\">I will keep my head up</p>\r\n<p style=\"text-align: center;\">I won\'t let a tear fall from my eyes</p>\r\n<p style=\"text-align: center;\">For while disappoints may hurt</p>\r\n<p style=\"text-align: center;\">They are just a consequence of expecting things that weren\'t meant to be</p>\r\n<p style=\"text-align: center;\">So instead of being disappointed I will learn to rely solely on me</p>\r\n \r\n\r\n<strong><em>\"Once you no longer have expectations of others, disappointments become fewer and fewer...\"</em> </strong>-Monica Renata','No Longer Disappointed','','inherit','open','open','','888-revision-v1','','','2015-02-08 17:44:24','2015-02-08 23:44:24','',888,'http://www.monicarenata.com/888-revision-v1/',0,'revision','',0),(890,1,'2015-02-08 18:53:16','2015-02-09 00:53:16','Today is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nI ask you for your attention\r\n\r\nYou slowly push me away\r\n\r\nYou say you don\'t have time today\r\n\r\nYou say I have to wait\r\n\r\n \r\n\r\nThen tomorrow comes\r\n\r\nAs so many tomorrows came before\r\n\r\nAnd I am still left waiting\r\n\r\nWaiting for you again once more\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut my time is slowly fading\r\n\r\nAnd soon my time will run out\r\n\r\nAnd I will probably be still waiting\r\n\r\nAnd you will claim that you couldn\'t make the time\r\n\r\n \r\n\r\nBut you\'re gonna miss me when it\'s said and done\r\n\r\nYou will miss me terribly so\r\n\r\nWhen you realize that the time you had\r\n\r\nWith me would be so short\r\n\r\n \r\n\r\nYou\'re gonna miss me when you close your eyes\r\n\r\nYou\'re gonna wish you had spent more time\r\n\r\nBut none of that will matter\r\n\r\nBecause my body will be long gone\r\n\r\n \r\n\r\nThe smell of my skin\r\n\r\nThe way I giggled and laughed\r\n\r\nThe way I told you about my future\r\n\r\nThe way I spoke of things in the past\r\n\r\n \r\n\r\nThe softness of my lips\r\n\r\nThe I love you\'s when you were down\r\n\r\nYou will miss my physical presence\r\n\r\nAnd my voice, you\'ll miss the sound\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut I don\'t have that much time left\r\n\r\nMy days are almost in the past\r\n\r\nDon\'t keep pushing me to the side\r\n\r\nBecause your time with me won\'t last\r\n\r\n \r\n\r\n<em>\"People never realize how much they care about someone until they are gone.... Don\'t let losing someone be the moment when you finally wish you could make time for them\" </em> -Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','You\'re Gonna Miss Me When I\'m Gone','','publish','open','open','','youre-gonna-miss-me-when-im-gone','','','2015-02-08 21:05:24','2015-02-09 03:05:24','',0,'http://www.monicarenata.com/?p=890',0,'post','',0),(891,1,'2015-02-08 18:53:16','2015-02-09 00:53:16','Today is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nI ask you for your attention\r\n\r\nYou slowly push me away\r\n\r\nYou say you don\'t have time today\r\n\r\nYou say I have to wait\r\n\r\n \r\n\r\nThen tomorrow comes\r\n\r\nAs so many tomorrows came before\r\n\r\nAnd I am still left waiting\r\n\r\nWaiting for you again once more\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut my time is slowly fading\r\n\r\nAnd soon my time will run out\r\n\r\nAnd I will probably be still waiting\r\n\r\nAnd you will claim that you couldn\'t make the time\r\n\r\n \r\n\r\nBut you\'re gonna miss me when it\'s said and done\r\n\r\nYou will miss me terribly so\r\n\r\nWhen you realize that the time you had\r\n\r\nWith me would be so short\r\n\r\n \r\n\r\nYou\'re gonna miss me when you close your eyes\r\n\r\nYou\'re gonna wish you had spent more time\r\n\r\nBut none of that will matter\r\n\r\nBecause my body will be long gone\r\n\r\n \r\n\r\nThe smell of my skin\r\n\r\nThe way I giggled and laughed\r\n\r\nThe way I told you about my future\r\n\r\nThe way I spoke of things in the past\r\n\r\n \r\n\r\nThe softness of my lips\r\n\r\nThe I love you\'s when you were down\r\n\r\nYou will miss my physical presence\r\n\r\nAnd my voice, you\'ll miss the sound\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut I don\'t have that much time left\r\n\r\nMy days are almost in the pass\r\n\r\nDon\'t keep pushing me to the side\r\n\r\nBecause your time with me won\'t last\r\n\r\n \r\n\r\n<em>\"People never realize how much they care about someone until they are gone.... Don\'t let losing someone be the moment when you finally wish you could make time for them\" </em> -Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','You\'re Gonna Miss Me When I\'m Gone','','inherit','open','open','','890-revision-v1','','','2015-02-08 18:53:16','2015-02-09 00:53:16','',890,'http://www.monicarenata.com/890-revision-v1/',0,'revision','',0),(892,1,'2015-02-08 21:05:24','2015-02-09 03:05:24','Today is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nI ask you for your attention\r\n\r\nYou slowly push me away\r\n\r\nYou say you don\'t have time today\r\n\r\nYou say I have to wait\r\n\r\n \r\n\r\nThen tomorrow comes\r\n\r\nAs so many tomorrows came before\r\n\r\nAnd I am still left waiting\r\n\r\nWaiting for you again once more\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut my time is slowly fading\r\n\r\nAnd soon my time will run out\r\n\r\nAnd I will probably be still waiting\r\n\r\nAnd you will claim that you couldn\'t make the time\r\n\r\n \r\n\r\nBut you\'re gonna miss me when it\'s said and done\r\n\r\nYou will miss me terribly so\r\n\r\nWhen you realize that the time you had\r\n\r\nWith me would be so short\r\n\r\n \r\n\r\nYou\'re gonna miss me when you close your eyes\r\n\r\nYou\'re gonna wish you had spent more time\r\n\r\nBut none of that will matter\r\n\r\nBecause my body will be long gone\r\n\r\n \r\n\r\nThe smell of my skin\r\n\r\nThe way I giggled and laughed\r\n\r\nThe way I told you about my future\r\n\r\nThe way I spoke of things in the past\r\n\r\n \r\n\r\nThe softness of my lips\r\n\r\nThe I love you\'s when you were down\r\n\r\nYou will miss my physical presence\r\n\r\nAnd my voice, you\'ll miss the sound\r\n\r\n \r\n\r\nToday is the same as tomorrow\r\n\r\nAnd today is the same as yesterday\r\n\r\nYou woke up like you did before\r\n\r\nAnd you decided to put a smile on your face\r\n\r\n \r\n\r\nSeconds turned to minutes\r\n\r\nAnd minutes turned into hours that forever last\r\n\r\nAnd you push things on til tomorrow\r\n\r\nBecause you know how much time you have\r\n\r\n \r\n\r\nBut I don\'t have that much time left\r\n\r\nMy days are almost in the past\r\n\r\nDon\'t keep pushing me to the side\r\n\r\nBecause your time with me won\'t last\r\n\r\n \r\n\r\n<em>\"People never realize how much they care about someone until they are gone.... Don\'t let losing someone be the moment when you finally wish you could make time for them\" </em> -Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','You\'re Gonna Miss Me When I\'m Gone','','inherit','open','open','','890-revision-v1','','','2015-02-08 21:05:24','2015-02-09 03:05:24','',890,'http://www.monicarenata.com/890-revision-v1/',0,'revision','',0),(941,1,'2015-02-17 15:52:21','2015-02-17 21:52:21','When your phone sits on the side of you\r\n\r\nYet no one decides to call\r\n\r\n \r\n\r\nWhen you wake up to complete silence\r\n\r\nAnd all your good mornings are gone\r\n\r\n \r\n\r\nWhen what you loved is missing\r\n\r\nAnd life just is no longer sweet\r\n\r\n \r\n\r\nThis is the feeling you try to get over\r\n\r\nAs you drift away in sleep','Absense','','publish','open','open','','absense','','','2015-02-17 15:52:21','2015-02-17 21:52:21','',0,'http://www.monicarenata.com/?p=941',0,'post','',0),(894,1,'2015-02-09 07:04:45','2015-02-09 13:04:45',' \r\n\r\n \r\n\r\nJust sitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nWishing all my days would pass me\r\n\r\nWishing I was just so free\r\n\r\n \r\n\r\nFloating on a melody\r\n\r\nThat sounds so sweet\r\n\r\nComing from the lips of an angel\r\n\r\nThat I can no longer see\r\n\r\n \r\n\r\nJust sitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nWishing I wasn’t all alone\r\n\r\nWishing I still had a home\r\n\r\n \r\n\r\nThe love I love will leave me\r\n\r\nSooner than later somehow\r\n\r\nBut words are quickly fleeting\r\n\r\nInto the stars they go now\r\n\r\n \r\n\r\nSo I’ll just sit on this cloud\r\n\r\nDreaming out loud\r\n\r\nWishing all my memories could comfort me\r\n\r\nWishing it was still just you and me\r\n\r\n \r\n\r\nSitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nMy thoughts are overwhelming me\r\n\r\nTears cloud my eyes til I cannot see\r\n\r\n \r\n\r\nBut I’m still sitting on this cloud\r\n\r\nDreaming out loud\r\n\r\nWishing that you never left me\r\n\r\nBecause all I now have are memories\r\n\r\n \r\n\r\nYour space in bed is cold\r\n\r\nI guess that’s what happens when you get old\r\n\r\nBut oh how this is torturing me\r\n\r\nMy dreams are still just you and me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\" aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/236x/1c/13/12/1c13122708c42cec763b188f8d3ad514.jpg\" alt=\"\" />','Dreaming Out Loud','','publish','open','open','','dreaming-out-loud','','','2015-02-09 07:04:45','2015-02-09 13:04:45','',0,'http://www.monicarenata.com/?p=894',0,'post','',0),(895,1,'2015-02-09 07:04:45','2015-02-09 13:04:45',' \r\n\r\n \r\n\r\nJust sitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nWishing all my days would pass me\r\n\r\nWishing I was just so free\r\n\r\n \r\n\r\nFloating on a melody\r\n\r\nThat sounds so sweet\r\n\r\nComing from the lips of an angel\r\n\r\nThat I can no longer see\r\n\r\n \r\n\r\nJust sitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nWishing I wasn’t all alone\r\n\r\nWishing I still had a home\r\n\r\n \r\n\r\nThe love I love will leave me\r\n\r\nSooner than later somehow\r\n\r\nBut words are quickly fleeting\r\n\r\nInto the stars they go now\r\n\r\n \r\n\r\nSo I’ll just sit on this cloud\r\n\r\nDreaming out loud\r\n\r\nWishing all my memories could comfort me\r\n\r\nWishing it was still just you and me\r\n\r\n \r\n\r\nSitting on a cloud\r\n\r\nDreaming out loud\r\n\r\nMy thoughts are overwhelming me\r\n\r\nTears cloud my eyes til I cannot see\r\n\r\n \r\n\r\nBut I’m still sitting on this cloud\r\n\r\nDreaming out loud\r\n\r\nWishing that you never left me\r\n\r\nBecause all I now have are memories\r\n\r\n \r\n\r\nYour space in bed is cold\r\n\r\nI guess that’s what happens when you get old\r\n\r\nBut oh how this is torturing me\r\n\r\nMy dreams are still just you and me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\" aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/236x/1c/13/12/1c13122708c42cec763b188f8d3ad514.jpg\" alt=\"\" />','Dreaming Out Loud','','inherit','open','open','','894-revision-v1','','','2015-02-09 07:04:45','2015-02-09 13:04:45','',894,'http://www.monicarenata.com/894-revision-v1/',0,'revision','',0),(963,1,'2015-02-26 07:39:26','2015-02-26 13:39:26','I hope your sun is always sunny\r\n\r\nAnd your clouds are always blue\r\n\r\nSo when you look up at the sky\r\n\r\nIt can be as beautiful as you\r\n\r\n \r\n\r\nI hope your roses are always red\r\n\r\nAnd your daisies are always sweet\r\n\r\nI hope your days are forever beautiful\r\n\r\nAnd you never cry yourself to sleep\r\n\r\n \r\n\r\nI hope that you are happy\r\n\r\nI hope that you are free\r\n\r\nAnd forever I will pray for blessings your way\r\n\r\nEven if you aren’t with me\r\n\r\n.\r\n\r\nLove is so gentle\r\n\r\nLove is so beautiful and sweet\r\n\r\nI shall love you always\r\n\r\nEven if you and I aren’t meant to be\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“When you really love someone, you want them to be happy……..If them being happy means, they are not with you, love them anyways..”</em> –Monica Renata</p>\r\n ','Love Always','','publish','open','open','','love-always','','','2015-02-26 07:39:26','2015-02-26 13:39:26','',0,'http://www.monicarenata.com/?p=963',0,'post','',3),(897,1,'2015-02-09 09:53:28','2015-02-09 15:53:28','Pick up a piece of happy\r\n\r\nAnd place it in your heart\r\n\r\nMake sure you pick up the other pieces\r\n\r\nAnd give them to those you love\r\n\r\n \r\n\r\nPick up a piece of happy\r\n\r\nAnd put a smile on your face\r\n\r\nFor happiness usually comes in pieces\r\n\r\nIt is never one big thing\r\n\r\n \r\n\r\nFor life is short and splendid\r\n\r\nAnd your life is so unique\r\n\r\nSo pick up a piece of happy\r\n\r\nAnd I’m sure your frowning will cease\r\n\r\n \r\n\r\n<strong><em>“Life is too short to be anything but happy…decide each day that you will allow the little things in life to bring you joy. Spread cheer and happiness for the rest of your days, and I guarantee you will be so much happier!”</em></strong> –Monica Renata\r\n\r\n<img class=\" aligncenter\" src=\"http://4.bp.blogspot.com/-tKc31N9O6x4/UaaU0aFCFxI/AAAAAAAACvU/eUjCcdo8AJI/s1600/Banner1.jpg\" alt=\"\" />','A Piece of Happy','','publish','open','open','','a-piece-of-happy','','','2015-02-09 09:53:28','2015-02-09 15:53:28','',0,'http://www.monicarenata.com/?p=897',0,'post','',0),(898,1,'2015-02-09 09:53:28','2015-02-09 15:53:28','Pick up a piece of happy\r\n\r\nAnd place it in your heart\r\n\r\nMake sure you pick up the other pieces\r\n\r\nAnd give them to those you love\r\n\r\n \r\n\r\nPick up a piece of happy\r\n\r\nAnd put a smile on your face\r\n\r\nFor happiness usually comes in pieces\r\n\r\nIt is never one big thing\r\n\r\n \r\n\r\nFor life is short and splendid\r\n\r\nAnd your life is so unique\r\n\r\nSo pick up a piece of happy\r\n\r\nAnd I’m sure your frowning will cease\r\n\r\n \r\n\r\n<strong><em>“Life is too short to be anything but happy…decide each day that you will allow the little things in life to bring you joy. Spread cheer and happiness for the rest of your days, and I guarantee you will be so much happier!”</em></strong> –Monica Renata\r\n\r\n<img class=\" aligncenter\" src=\"http://4.bp.blogspot.com/-tKc31N9O6x4/UaaU0aFCFxI/AAAAAAAACvU/eUjCcdo8AJI/s1600/Banner1.jpg\" alt=\"\" />','A Piece of Happy','','inherit','open','open','','897-revision-v1','','','2015-02-09 09:53:28','2015-02-09 15:53:28','',897,'http://www.monicarenata.com/897-revision-v1/',0,'revision','',0),(899,1,'2015-02-09 10:09:39','2015-02-09 16:09:39','As I stand at the top of the mountain\r\n\r\nI can finally truly see\r\n\r\nBut what I see hurts my feelings\r\n\r\nWhat I see I wish it wouldn’t be\r\n\r\n \r\n\r\nAs I stand at the top of the mountain\r\n\r\nI can still see you hold my hand\r\n\r\nYou tell me you will love me forever\r\n\r\nAnd from the top of the mountain I stare\r\n\r\n \r\n\r\nAs I stand at the top of the mountain\r\n\r\nI can finally see with clear eyes\r\n\r\nThe lies I walked blindly into\r\n\r\nThe truth that you tried to disguise\r\n\r\n \r\n\r\nA true moment of clarity\r\n\r\nMy vision is no longer cloudy and I can see\r\n\r\nFor as I stood on top of the mountain\r\n\r\nI could finally see you made a fool of me\r\n\r\n \r\n\r\n<strong><em>“Sometimes we need to stand at a higher point to analyze a situation. When you look at a problem through an elevated set of eyes, you may discover things that you never knew…”</em></strong> –Monica Renata','At The Top Of The Mountain','','publish','open','open','','at-the-top-of-the-mountain','','','2015-02-09 10:09:39','2015-02-09 16:09:39','',0,'http://www.monicarenata.com/?p=899',0,'post','',0),(900,1,'2015-02-09 10:09:39','2015-02-09 16:09:39','As I stand at the top of the mountain\r\n\r\nI can finally truly see\r\n\r\nBut what I see hurts my feelings\r\n\r\nWhat I see I wish it wouldn’t be\r\n\r\n \r\n\r\nAs I stand at the top of the mountain\r\n\r\nI can still see you hold my hand\r\n\r\nYou tell me you will love me forever\r\n\r\nAnd from the top of the mountain I stare\r\n\r\n \r\n\r\nAs I stand at the top of the mountain\r\n\r\nI can finally see with clear eyes\r\n\r\nThe lies I walked blindly into\r\n\r\nThe truth that you tried to disguise\r\n\r\n \r\n\r\nA true moment of clarity\r\n\r\nMy vision is no longer cloudy and I can see\r\n\r\nFor as I stood on top of the mountain\r\n\r\nI could finally see you made a fool of me\r\n\r\n \r\n\r\n<strong><em>“Sometimes we need to stand at a higher point to analyze a situation. When you look at a problem through an elevated set of eyes, you may discover things that you never knew…”</em></strong> –Monica Renata','At The Top Of The Mountain','','inherit','open','open','','899-revision-v1','','','2015-02-09 10:09:39','2015-02-09 16:09:39','',899,'http://www.monicarenata.com/899-revision-v1/',0,'revision','',0),(902,1,'2015-02-09 11:53:48','2015-02-09 17:53:48','Can you love me with the lights on?\r\n\r\nWhile you can see me flaws and all?\r\n\r\nWhile my smile is still showing brightly?\r\n\r\nWhile in love you can see me fall?\r\n\r\n \r\n\r\nBeautiful imperfections\r\n\r\nSkin that is rough yet smooth\r\n\r\nScars from past yesterdays\r\n\r\nJust you and I in the room\r\n\r\n \r\n\r\nCan you love me with the lights on?\r\n\r\nCan you promise to really see me?\r\n\r\nAnd love me for who I am?\r\n\r\nAnd who I am destined to be?\r\n\r\n \r\n\r\nI am more than a beautiful body\r\n\r\nI am more than a mass of flesh\r\n\r\nSo can you love me with the lights on?\r\n\r\nAnd in turn I will forever love you til I have no love left','Love Me With The Lights On','','publish','open','open','','love-me-with-the-lights-on','','','2015-02-09 11:53:48','2015-02-09 17:53:48','',0,'http://www.monicarenata.com/?p=902',0,'post','',0),(903,1,'2015-02-09 11:53:48','2015-02-09 17:53:48','Can you love me with the lights on?\r\n\r\nWhile you can see me flaws and all?\r\n\r\nWhile my smile is still showing brightly?\r\n\r\nWhile in love you can see me fall?\r\n\r\n \r\n\r\nBeautiful imperfections\r\n\r\nSkin that is rough yet smooth\r\n\r\nScars from past yesterdays\r\n\r\nJust you and I in the room\r\n\r\n \r\n\r\nCan you love me with the lights on?\r\n\r\nCan you promise to really see me?\r\n\r\nAnd love me for who I am?\r\n\r\nAnd who I am destined to be?\r\n\r\n \r\n\r\nI am more than a beautiful body\r\n\r\nI am more than a mass of flesh\r\n\r\nSo can you love me with the lights on?\r\n\r\nAnd in turn I will forever love you til I have no love left','Love Me With The Lights On','','inherit','open','open','','902-revision-v1','','','2015-02-09 11:53:48','2015-02-09 17:53:48','',902,'http://www.monicarenata.com/902-revision-v1/',0,'revision','',0),(904,1,'2015-02-09 13:10:24','2015-02-09 19:10:24','I once loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nTo the point where their happiness was my happiness\r\n\r\nTo the point where I could see us growing old\r\n\r\n \r\n\r\nI once loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nAnd I worked days and nights to help them\r\n\r\nMake their pieces of a dream turn to a whole\r\n\r\n \r\n\r\nI once loved with all my heart\r\n\r\nI loved with every ounce of me\r\n\r\nThat even when I was unhappy\r\n\r\nI still decided to believe\r\n\r\n \r\n\r\nThings will get better\r\n\r\nThis is just a phase\r\n\r\nThey will see all of this effort\r\n\r\nThen a different moment came…\r\n\r\n \r\n\r\nYou see I loved with all my heart\r\n\r\nSo much that I allowed it to break\r\n\r\nInto a million little pieces\r\n\r\nIt fell from out of my chest and sank\r\n\r\n \r\n\r\nMy future and my dreams\r\n\r\nMy dreams and future that involved you\r\n\r\nTaken away in a mere second\r\n\r\nI became broken when I lost you…\r\n\r\n \r\n\r\nBut there was a time I loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nAnd those moments were the happiest I felt\r\n\r\nThose memories will never get old\r\n\r\n \r\n\r\nI miss the smiles\r\n\r\nI miss the laughter\r\n\r\nI miss the happiness just thinking of you would bring\r\n\r\nI miss everything about you..but you have tarnished things\r\n\r\n \r\n\r\nBut I loved you with all my heart\r\n\r\nI loved you with all my soul\r\n\r\nI prayed for things to get better\r\n\r\nEven when your heart slowly turned cold\r\n\r\n \r\n\r\nAnd despite all that has happened\r\n\r\nAnd what anyone will have to say\r\n\r\nI want you to know I loved you\r\n\r\nWith every ounce of me','With All My Heart','','publish','open','open','','with-all-my-heart','','','2015-02-09 13:10:24','2015-02-09 19:10:24','',0,'http://www.monicarenata.com/?p=904',0,'post','',0),(905,1,'2015-02-09 13:10:24','2015-02-09 19:10:24','I once loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nTo the point where their happiness was my happiness\r\n\r\nTo the point where I could see us growing old\r\n\r\n \r\n\r\nI once loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nAnd I worked days and nights to help them\r\n\r\nMake their pieces of a dream turn to a whole\r\n\r\n \r\n\r\nI once loved with all my heart\r\n\r\nI loved with every ounce of me\r\n\r\nThat even when I was unhappy\r\n\r\nI still decided to believe\r\n\r\n \r\n\r\nThings will get better\r\n\r\nThis is just a phase\r\n\r\nThey will see all of this effort\r\n\r\nThen a different moment came…\r\n\r\n \r\n\r\nYou see I loved with all my heart\r\n\r\nSo much that I allowed it to break\r\n\r\nInto a million little pieces\r\n\r\nIt fell from out of my chest and sank\r\n\r\n \r\n\r\nMy future and my dreams\r\n\r\nMy dreams and future that involved you\r\n\r\nTaken away in a mere second\r\n\r\nI became broken when I lost you…\r\n\r\n \r\n\r\nBut there was a time I loved with all my heart\r\n\r\nAnd I loved with all my soul\r\n\r\nAnd those moments were the happiest I felt\r\n\r\nThose memories will never get old\r\n\r\n \r\n\r\nI miss the smiles\r\n\r\nI miss the laughter\r\n\r\nI miss the happiness just thinking of you would bring\r\n\r\nI miss everything about you..but you have tarnished things\r\n\r\n \r\n\r\nBut I loved you with all my heart\r\n\r\nI loved you with all my soul\r\n\r\nI prayed for things to get better\r\n\r\nEven when your heart slowly turned cold\r\n\r\n \r\n\r\nAnd despite all that has happened\r\n\r\nAnd what anyone will have to say\r\n\r\nI want you to know I loved you\r\n\r\nWith every ounce of me','With All My Heart','','inherit','open','open','','904-revision-v1','','','2015-02-09 13:10:24','2015-02-09 19:10:24','',904,'http://www.monicarenata.com/904-revision-v1/',0,'revision','',0),(907,1,'2015-02-10 08:07:14','2015-02-10 14:07:14','My enemy is my enemy\r\n\r\nMy friend is my friend\r\n\r\nOne may speak negatively about me\r\n\r\nWhile the other almost my kin\r\n\r\n \r\n\r\nOne follows closely behind me\r\n\r\nWhile one may look from afar\r\n\r\nOne holds my hand tightly\r\n\r\nWhile one leaves me with emotional scars\r\n\r\n \r\n\r\nFor I am afraid of my enemy\r\n\r\nBecause I know the harm my enemy can bring\r\n\r\nBut at least I know to cross the street\r\n\r\nI know that their like for me they won’t pretend\r\n\r\n \r\n\r\nBut my friend is usually by my side\r\n\r\nKnows everything about me\r\n\r\nWas there when I shed tears\r\n\r\nWas always there for me\r\n\r\n \r\n\r\nMy weakness they hold in their hands\r\n\r\nMy trust for them runs deep\r\n\r\nThat’s why I fear my friend\r\n\r\nMore than I will ever fear my enemy\r\n\r\n \r\n\r\nFor my friend possesses everything needed\r\n\r\nTo utterly destroy me\r\n\r\nThey can pretend at any moment\r\n\r\nYet also try to hurt me\r\n\r\n \r\n\r\nA person who I care about dearly\r\n\r\nSomeone who I would consider my next of kin\r\n\r\nEnemies can sometimes be hard to identify\r\n\r\nBecause they may call themselves your friend\r\n\r\n \r\n\r\n ','I Fear My Friend','','inherit','open','open','','906-revision-v1','','','2015-02-10 08:07:14','2015-02-10 14:07:14','',906,'http://www.monicarenata.com/906-revision-v1/',0,'revision','',0),(910,1,'2015-02-11 10:35:28','2015-02-11 16:35:28','There is always that tear drop\r\n\r\nThat blends in with the rain\r\n\r\n \r\n\r\nAs it thunders and it pours down\r\n\r\nSo do the tears on my face\r\n\r\n \r\n\r\nWhen it rains it pours\r\n\r\nAnd my tears make flowing streams\r\n\r\n \r\n\r\nStreams that turn into waterfalls\r\n\r\nThat gently falls in my hands\r\n\r\n \r\n\r\nFlowing tears of emotion\r\n\r\nHappiness, contentment, and sometimes pain\r\n\r\n \r\n\r\nBlending into my surrounds\r\n\r\nMy teardrops in the rain\r\n\r\n \r\n\r\n ','Teardrops In The Rain','','inherit','open','open','','909-revision-v1','','','2015-02-11 10:35:28','2015-02-11 16:35:28','',909,'http://www.monicarenata.com/909-revision-v1/',0,'revision','',0),(911,1,'2015-02-11 13:06:05','2015-02-11 19:06:05','I dream with my eyes open\r\n\r\nTrying to stay focus\r\n\r\nLooking ahead thinking\r\n\r\n“Dang God I want this!!!”\r\n\r\n \r\n\r\nWalk head first\r\n\r\nInto what I feared the most\r\n\r\nSo many doubtful faces\r\n\r\nBut I still have hope\r\n\r\n \r\n\r\nWhat is the need to close my eyes?\r\n\r\nWhen I might miss what’s in front my face?\r\n\r\nI get on my knees every night\r\n\r\nAsking God for his good graces\r\n\r\n \r\n\r\nAnd still many people say reach for your dreams\r\n\r\nBut how can we reach for something that we can’t see\r\n\r\nEyes open, mind focused; I’m destined to win\r\n\r\nAlways moving forward with my back to disappointments\r\n\r\n \r\n\r\nYou see life happens so quick\r\n\r\nI won’t let a moment pass by\r\n\r\nWhile others dream with their eyes closed\r\n\r\nI dream with mines wide\r\n\r\n \r\n\r\nAnd though it might seem foolish\r\n\r\nIt isn’t foolish to me\r\n\r\nBecause I can’t move forward\r\n\r\nUnless I am walking in my dream\r\n\r\n \r\n\r\n<strong><em>“Dreams only turn into reality if you live it…Just because you aren’t at the peak of perfection doesn’t mean you aren’t living your dream. Immerse yourself in what you really want. Make your dream your reality.”</em></strong> –Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n ','Dream: Eyes Open','','publish','open','open','','dream-eyes-open','','','2015-02-11 13:06:32','2015-02-11 19:06:32','',0,'http://www.monicarenata.com/?p=911',0,'post','',0),(912,1,'2015-02-11 13:06:05','2015-02-11 19:06:05','I dream with my eyes open\r\n\r\nTrying to stay focus\r\n\r\nLooking ahead thinking\r\n\r\n“Dang God I want this”\r\n\r\n \r\n\r\nWalk head first\r\n\r\nInto what I feared the most\r\n\r\nSo many doubtful faces\r\n\r\nBut I still have hope\r\n\r\n \r\n\r\nWhat is the need to close my eyes?\r\n\r\nWhen I might miss what’s in front my face?\r\n\r\nI get on my knees every night\r\n\r\nAsking God for his good graces\r\n\r\n \r\n\r\nAnd still many people say reach for your dreams\r\n\r\nBut how can we reach for something that we can’t see\r\n\r\nEyes open, mind focused; I’m destined to win\r\n\r\nAlways moving forward with my back to disappointments\r\n\r\n \r\n\r\nYou see life happens so quick\r\n\r\nI won’t let a moment pass by\r\n\r\nWhile others dream with their eyes closed\r\n\r\nI dream with mines wide\r\n\r\n \r\n\r\nAnd though it might seem foolish\r\n\r\nIt isn’t foolish to me\r\n\r\nBecause I can’t move forward\r\n\r\nUnless I am walking in my dream\r\n\r\n \r\n\r\n<strong><em>“Dreams only turn into reality if you live it…Just because you aren’t at the peak of perfection doesn’t mean you aren’t living your dream. Immerse yourself in what you really want. Make your dream your reality.”</em></strong> –Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n ','Dream: Eyes Open','','inherit','open','open','','911-revision-v1','','','2015-02-11 13:06:05','2015-02-11 19:06:05','',911,'http://www.monicarenata.com/911-revision-v1/',0,'revision','',0),(913,1,'2015-02-11 13:06:32','2015-02-11 19:06:32','I dream with my eyes open\r\n\r\nTrying to stay focus\r\n\r\nLooking ahead thinking\r\n\r\n“Dang God I want this!!!”\r\n\r\n \r\n\r\nWalk head first\r\n\r\nInto what I feared the most\r\n\r\nSo many doubtful faces\r\n\r\nBut I still have hope\r\n\r\n \r\n\r\nWhat is the need to close my eyes?\r\n\r\nWhen I might miss what’s in front my face?\r\n\r\nI get on my knees every night\r\n\r\nAsking God for his good graces\r\n\r\n \r\n\r\nAnd still many people say reach for your dreams\r\n\r\nBut how can we reach for something that we can’t see\r\n\r\nEyes open, mind focused; I’m destined to win\r\n\r\nAlways moving forward with my back to disappointments\r\n\r\n \r\n\r\nYou see life happens so quick\r\n\r\nI won’t let a moment pass by\r\n\r\nWhile others dream with their eyes closed\r\n\r\nI dream with mines wide\r\n\r\n \r\n\r\nAnd though it might seem foolish\r\n\r\nIt isn’t foolish to me\r\n\r\nBecause I can’t move forward\r\n\r\nUnless I am walking in my dream\r\n\r\n \r\n\r\n<strong><em>“Dreams only turn into reality if you live it…Just because you aren’t at the peak of perfection doesn’t mean you aren’t living your dream. Immerse yourself in what you really want. Make your dream your reality.”</em></strong> –Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n ','Dream: Eyes Open','','inherit','open','open','','911-revision-v1','','','2015-02-11 13:06:32','2015-02-11 19:06:32','',911,'http://www.monicarenata.com/911-revision-v1/',0,'revision','',0),(914,1,'2015-02-12 22:59:17','2015-02-13 04:59:17','Sitting on the gray dock\r\n\r\nThat over looks the sea\r\n\r\n \r\n\r\nWind blows fast and ripples form\r\n\r\nOn that beautiful sea\r\n\r\n \r\n\r\nTo be lost in my own thoughts\r\n\r\nTo be lost in me\r\n\r\n \r\n\r\nSitting silently on the gray dock\r\n\r\nWishing you could see\r\n\r\n \r\n\r\nBut maybe I am not really there\r\n\r\nPerhaps I\'m not meant to be\r\n\r\n \r\n\r\nSo I shall just sit here silently\r\n\r\nWaiting for a world that\'s meant for me','Sitting Silently','','publish','open','open','','sitting-silently','','','2015-02-12 22:59:17','2015-02-13 04:59:17','',0,'http://www.monicarenata.com/?p=914',0,'post','',0),(915,1,'2015-02-12 22:59:17','2015-02-13 04:59:17','Sitting on the gray dock\r\n\r\nThat over looks the sea\r\n\r\n \r\n\r\nWind blows fast and ripples form\r\n\r\nOn that beautiful sea\r\n\r\n \r\n\r\nTo be lost in my own thoughts\r\n\r\nTo be lost in me\r\n\r\n \r\n\r\nSitting silently on the gray dock\r\n\r\nWishing you could see\r\n\r\n \r\n\r\nBut maybe I am not really there\r\n\r\nPerhaps I\'m not meant to be\r\n\r\n \r\n\r\nSo I shall just sit here silently\r\n\r\nWaiting for a world that\'s meant for me','Sitting Silently','','inherit','open','open','','914-revision-v1','','','2015-02-12 22:59:17','2015-02-13 04:59:17','',914,'http://www.monicarenata.com/914-revision-v1/',0,'revision','',0),(916,1,'2015-02-12 23:06:14','2015-02-13 05:06:14','I\'m enough for you to like me\r\n\r\nYet not enough to love\r\n\r\n \r\n\r\nI\'m enough for you to shake my hand\r\n\r\nBut not enough to get a hug\r\n\r\n \r\n\r\nI\'m enough to get a kiss on the hand\r\n\r\nBut not enough to receive one on my lips\r\n\r\n \r\n\r\nI\'m enough to be an associate in your personal world\r\n\r\nYet not enough to be your friend\r\n\r\n \r\n\r\nOf all the things I wanted to be\r\n\r\nIt seems I never was enough\r\n\r\n \r\n\r\nI guess I must finally face the facts\r\n\r\nI will forever be not good enough','Not Enough','','publish','open','open','','not-enough','','','2015-02-12 23:06:14','2015-02-13 05:06:14','',0,'http://www.monicarenata.com/?p=916',0,'post','',1),(917,1,'2015-02-12 23:06:14','2015-02-13 05:06:14','I\'m enough for you to like me\r\n\r\nYet not enough to love\r\n\r\n \r\n\r\nI\'m enough for you to shake my hand\r\n\r\nBut not enough to get a hug\r\n\r\n \r\n\r\nI\'m enough to get a kiss on the hand\r\n\r\nBut not enough to receive one on my lips\r\n\r\n \r\n\r\nI\'m enough to be an associate in your personal world\r\n\r\nYet not enough to be your friend\r\n\r\n \r\n\r\nOf all the things I wanted to be\r\n\r\nIt seems I never was enough\r\n\r\n \r\n\r\nI guess I must finally face the facts\r\n\r\nI will forever be not good enough','Not Enough','','inherit','open','open','','916-revision-v1','','','2015-02-12 23:06:14','2015-02-13 05:06:14','',916,'http://www.monicarenata.com/916-revision-v1/',0,'revision','',0),(918,1,'2015-02-13 07:10:57','2015-02-13 13:10:57','Do you know how I feel?\r\n\r\nThat is what others ask to me\r\n\r\nYet my jumbled up emotions\r\n\r\nThey pretend they cannot see\r\n\r\n \r\n\r\nDo you know how I feel?\r\n\r\nOthers plead while looking in my eyes\r\n\r\nIgnoring what they truly see\r\n\r\nAs tears roll from my eyes\r\n\r\n \r\n\r\nDo you know how I feel?\r\n\r\nI should ask this question for me\r\n\r\nFor while you care about your feelings\r\n\r\nIn my head I’m asking “what about me?”\r\n\r\n \r\n\r\n“Many people are so selfish. They only care about their feelings while neglecting the feelings of others…..but just because many are selfish, doesn’t mean you have to be as well. Take time to see the other person’s side. For while you may be hurting, they may be hurting as well.” –Monica Renata','Do You Know How I Feel?','','publish','open','open','','do-you-know-how-i-feel','','','2015-02-13 07:10:57','2015-02-13 13:10:57','',0,'http://www.monicarenata.com/?p=918',0,'post','',0),(919,1,'2015-02-13 07:10:57','2015-02-13 13:10:57','Do you know how I feel?\r\n\r\nThat is what others ask to me\r\n\r\nYet my jumbled up emotions\r\n\r\nThey pretend they cannot see\r\n\r\n \r\n\r\nDo you know how I feel?\r\n\r\nOthers plead while looking in my eyes\r\n\r\nIgnoring what they truly see\r\n\r\nAs tears roll from my eyes\r\n\r\n \r\n\r\nDo you know how I feel?\r\n\r\nI should ask this question for me\r\n\r\nFor while you care about your feelings\r\n\r\nIn my head I’m asking “what about me?”\r\n\r\n \r\n\r\n“Many people are so selfish. They only care about their feelings while neglecting the feelings of others…..but just because many are selfish, doesn’t mean you have to be as well. Take time to see the other person’s side. For while you may be hurting, they may be hurting as well.” –Monica Renata','Do You Know How I Feel?','','inherit','open','open','','918-revision-v1','','','2015-02-13 07:10:57','2015-02-13 13:10:57','',918,'http://www.monicarenata.com/918-revision-v1/',0,'revision','',0),(920,1,'2015-02-13 08:23:36','2015-02-13 14:23:36','<p style=\"text-align: center;\">Holding it in constantly</p>\r\n<p style=\"text-align: center;\">Face is turning blue</p>\r\n<p style=\"text-align: center;\">Getting very dizzy</p>\r\n<p style=\"text-align: center;\">Don’t know what else to do</p>\r\n<p style=\"text-align: center;\">Waiting for it to happen</p>\r\n<p style=\"text-align: center;\">Who knows how much time is left</p>\r\n<p style=\"text-align: center;\">Eyes alert, yet closing slowly</p>\r\n<p style=\"text-align: center;\">Continue to hold your breathe</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: left;\"><strong><em>\"Just because you are waiting for something to happen, doesn\'t mean it will happen....</em></strong></p>\r\n<p style=\"text-align: left;\"><em><strong>Death might happen before what you are waiting for comes..\"</strong> -Monica Renata </em></p>','Hold Your Breathe','','publish','open','open','','hold-your-breathe','','','2015-02-13 08:23:36','2015-02-13 14:23:36','',0,'http://www.monicarenata.com/?p=920',0,'post','',1),(921,1,'2015-02-13 08:23:36','2015-02-13 14:23:36','<p style=\"text-align: center;\">Holding it in constantly</p>\r\n<p style=\"text-align: center;\">Face is turning blue</p>\r\n<p style=\"text-align: center;\">Getting very dizzy</p>\r\n<p style=\"text-align: center;\">Don’t know what else to do</p>\r\n<p style=\"text-align: center;\">Waiting for it to happen</p>\r\n<p style=\"text-align: center;\">Who knows how much time is left</p>\r\n<p style=\"text-align: center;\">Eyes alert, yet closing slowly</p>\r\n<p style=\"text-align: center;\">Continue to hold your breathe</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: left;\"><strong><em>\"Just because you are waiting for something to happen, doesn\'t mean it will happen....</em></strong></p>\r\n<p style=\"text-align: left;\"><em><strong>Death might happen before what you are waiting for comes..\"</strong> -Monica Renata </em></p>','Hold Your Breathe','','inherit','open','open','','920-revision-v1','','','2015-02-13 08:23:36','2015-02-13 14:23:36','',920,'http://www.monicarenata.com/920-revision-v1/',0,'revision','',0),(923,1,'2015-02-13 09:06:58','2015-02-13 15:06:58','No matter how you slice it\r\n\r\nIt all remains the same\r\n\r\nEach piece equals up to the whole\r\n\r\nAnd when each piece is gone nothing remains\r\n\r\n \r\n\r\nA part may weigh a fraction\r\n\r\nBut each fraction put together equals one\r\n\r\nEven if you stack it together\r\n\r\nIt still has the same sum\r\n\r\n \r\n\r\nWords have many synonyms\r\n\r\nTherefore many words can mean the same\r\n\r\nPeople have many emotions\r\n\r\nYet their host is nevertheless the same\r\n\r\n \r\n\r\nPieces of a puzzle\r\n\r\nTogether the Puzzle’s picture can be seen\r\n\r\nIt’s actually all or nothing at all\r\n\r\nYou decide what you want to see\r\n\r\n \r\n\r\n<strong><em>“It is usually all or nothing. Respect someone who shows you a piece of their life; that means that they want you to know them fully. One piece is still as valuable as the whole….”</em></strong> –<em>Monica Renata</em>','All Or Nothing','','publish','open','open','','all-or-nothing','','','2015-02-13 09:06:58','2015-02-13 15:06:58','',0,'http://www.monicarenata.com/?p=923',0,'post','',0),(924,1,'2015-02-13 09:06:58','2015-02-13 15:06:58','No matter how you slice it\r\n\r\nIt all remains the same\r\n\r\nEach piece equals up to the whole\r\n\r\nAnd when each piece is gone nothing remains\r\n\r\n \r\n\r\nA part may weigh a fraction\r\n\r\nBut each fraction put together equals one\r\n\r\nEven if you stack it together\r\n\r\nIt still has the same sum\r\n\r\n \r\n\r\nWords have many synonyms\r\n\r\nTherefore many words can mean the same\r\n\r\nPeople have many emotions\r\n\r\nYet their host is nevertheless the same\r\n\r\n \r\n\r\nPieces of a puzzle\r\n\r\nTogether the Puzzle’s picture can be seen\r\n\r\nIt’s actually all or nothing at all\r\n\r\nYou decide what you want to see\r\n\r\n \r\n\r\n<strong><em>“It is usually all or nothing. Respect someone who shows you a piece of their life; that means that they want you to know them fully. One piece is still as valuable as the whole….”</em></strong> –<em>Monica Renata</em>','All Or Nothing','','inherit','open','open','','923-revision-v1','','','2015-02-13 09:06:58','2015-02-13 15:06:58','',923,'http://www.monicarenata.com/923-revision-v1/',0,'revision','',0),(925,1,'2015-02-13 09:49:01','2015-02-13 15:49:01','Misery loves company\r\n\r\nThat’s what many say\r\n\r\n \r\n\r\nBut so many times I have seen Misery\r\n\r\nQuietly walk away\r\n\r\n \r\n\r\nFor what’s the point in voicing problems?\r\n\r\nWhat’s the point in shedding tears?\r\n\r\n \r\n\r\nAt the end of the day the world will go on\r\n\r\nYet Misery’s world will stand still\r\n\r\n \r\n\r\nTo be surrounded by a world of positives\r\n\r\nYet tormented with every emotion they feel\r\n\r\n \r\n\r\nFor Misery does not enjoy company\r\n\r\nIt enjoys nothing because it refuses to feel\r\n\r\n \r\n\r\n<em>“In a state of despair, many try not to feel at all… not to think at all….not to speak at all…. Because those are the only ways to guarantee they won’t hurt again...” –<strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n ','Misery','','publish','open','open','','misery','','','2015-02-13 09:49:01','2015-02-13 15:49:01','',0,'http://www.monicarenata.com/?p=925',0,'post','',0),(926,1,'2015-02-13 09:49:01','2015-02-13 15:49:01','Misery loves company\r\n\r\nThat’s what many say\r\n\r\n \r\n\r\nBut so many times I have seen Misery\r\n\r\nQuietly walk away\r\n\r\n \r\n\r\nFor what’s the point in voicing problems?\r\n\r\nWhat’s the point in shedding tears?\r\n\r\n \r\n\r\nAt the end of the day the world will go on\r\n\r\nYet Misery’s world will stand still\r\n\r\n \r\n\r\nTo be surrounded by a world of positives\r\n\r\nYet tormented with every emotion they feel\r\n\r\n \r\n\r\nFor Misery does not enjoy company\r\n\r\nIt enjoys nothing because it refuses to feel\r\n\r\n \r\n\r\n<em>“In a state of despair, many try not to feel at all… not to think at all….not to speak at all…. Because those are the only ways to guarantee they won’t hurt again...” –<strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n ','Misery','','inherit','open','open','','925-revision-v1','','','2015-02-13 09:49:01','2015-02-13 15:49:01','',925,'http://www.monicarenata.com/925-revision-v1/',0,'revision','',0),(928,1,'2015-02-13 10:09:00','2015-02-13 16:09:00','I bought a box of building blocks\r\n\r\nI tried to build my life\r\n\r\n \r\n\r\nI placed the pieces gently down\r\n\r\nAnd I began to draw with my eyes\r\n\r\n \r\n\r\nAn over imagination\r\n\r\nA euphoric feeling in my brain\r\n\r\n \r\n\r\nI just keep placing those blocks in formation\r\n\r\nUntil no more remained\r\n\r\n \r\n\r\nSpent so much time doing this\r\n\r\nYet now I’m completely lost\r\n\r\n \r\n\r\nFor it isn’t what I wanted it to be\r\n\r\nAnd I know this will come with a cost\r\n\r\n \r\n\r\nA sturdy foundation built\r\n\r\nYet I feel like I wasted time\r\n\r\n \r\n\r\nCan’t seem to do anything right!\r\n\r\nWhen will what is mines be mines?\r\n\r\n \r\n\r\nI bought a box of building blocks\r\n\r\nI tried to build my life\r\n\r\n \r\n\r\nThe work is still unfinished\r\n\r\nYet it is still a work of art\r\n\r\n \r\n\r\nAdmired by so many\r\n\r\nA job well done\r\n\r\n \r\n\r\nBut to the artist it isn’t ready\r\n\r\nThere is still work to be done\r\n\r\n \r\n\r\n<em>“At every age you will want more in life than what you have. You will never have it all together. Life takes time. Don’t feel discouraged if you took time to build a solid foundation in your life. A solid foundation has potential to hold a fortress….” –<strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n \r\n\r\n ','Blocks Of Life','','publish','open','open','','blocks-of-life','','','2015-02-13 10:09:00','2015-02-13 16:09:00','',0,'http://www.monicarenata.com/?p=928',0,'post','',0),(929,1,'2015-02-13 10:09:00','2015-02-13 16:09:00','I bought a box of building blocks\r\n\r\nI tried to build my life\r\n\r\n \r\n\r\nI placed the pieces gently down\r\n\r\nAnd I began to draw with my eyes\r\n\r\n \r\n\r\nAn over imagination\r\n\r\nA euphoric feeling in my brain\r\n\r\n \r\n\r\nI just keep placing those blocks in formation\r\n\r\nUntil no more remained\r\n\r\n \r\n\r\nSpent so much time doing this\r\n\r\nYet now I’m completely lost\r\n\r\n \r\n\r\nFor it isn’t what I wanted it to be\r\n\r\nAnd I know this will come with a cost\r\n\r\n \r\n\r\nA sturdy foundation built\r\n\r\nYet I feel like I wasted time\r\n\r\n \r\n\r\nCan’t seem to do anything right!\r\n\r\nWhen will what is mines be mines?\r\n\r\n \r\n\r\nI bought a box of building blocks\r\n\r\nI tried to build my life\r\n\r\n \r\n\r\nThe work is still unfinished\r\n\r\nYet it is still a work of art\r\n\r\n \r\n\r\nAdmired by so many\r\n\r\nA job well done\r\n\r\n \r\n\r\nBut to the artist it isn’t ready\r\n\r\nThere is still work to be done\r\n\r\n \r\n\r\n<em>“At every age you will want more in life than what you have. You will never have it all together. Life takes time. Don’t feel discouraged if you took time to build a solid foundation in your life. A solid foundation has potential to hold a fortress….” –<strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n \r\n\r\n ','Blocks Of Life','','inherit','open','open','','928-revision-v1','','','2015-02-13 10:09:00','2015-02-13 16:09:00','',928,'http://www.monicarenata.com/928-revision-v1/',0,'revision','',0),(931,1,'2015-02-13 10:55:44','2015-02-13 16:55:44','It’s not exactly what you wanted\r\n\r\nBut you want it in the least\r\n\r\nIt makes sense to you overall\r\n\r\nBut right now it shouldn’t be\r\n\r\n \r\n\r\nBut when it matters to you\r\n\r\nSomehow it all finally makes sense\r\n\r\nTalking around in circles\r\n\r\nUntil it is to your convenience\r\n\r\n \r\n\r\nIt is acceptable for you\r\n\r\nBut it isn’t okay for others\r\n\r\nYou may do as you wish\r\n\r\nBut others shouldn’t bother\r\n\r\n \r\n\r\nAn eye for an eye, a tooth for a tooth\r\n\r\nBut sadly not in this case\r\n\r\nFor what wants to be yours is only yours\r\n\r\nWhen it is convenient\r\n\r\n \r\n\r\n<em>“Some people will only acknowledge you when it is convenient for them….If you are only acknowledged when needed then make a conscious decision to not respond at all.” –<strong>Monica Renata</strong></em>','Convenient','','publish','open','open','','convenient','','','2015-02-13 10:55:44','2015-02-13 16:55:44','',0,'http://www.monicarenata.com/?p=931',0,'post','',0),(932,1,'2015-02-13 10:55:44','2015-02-13 16:55:44','It’s not exactly what you wanted\r\n\r\nBut you want it in the least\r\n\r\nIt makes sense to you overall\r\n\r\nBut right now it shouldn’t be\r\n\r\n \r\n\r\nBut when it matters to you\r\n\r\nSomehow it all finally makes sense\r\n\r\nTalking around in circles\r\n\r\nUntil it is to your convenience\r\n\r\n \r\n\r\nIt is acceptable for you\r\n\r\nBut it isn’t okay for others\r\n\r\nYou may do as you wish\r\n\r\nBut others shouldn’t bother\r\n\r\n \r\n\r\nAn eye for an eye, a tooth for a tooth\r\n\r\nBut sadly not in this case\r\n\r\nFor what wants to be yours is only yours\r\n\r\nWhen it is convenient\r\n\r\n \r\n\r\n<em>“Some people will only acknowledge you when it is convenient for them….If you are only acknowledged when needed then make a conscious decision to not respond at all.” –<strong>Monica Renata</strong></em>','Convenient','','inherit','open','open','','931-revision-v1','','','2015-02-13 10:55:44','2015-02-13 16:55:44','',931,'http://www.monicarenata.com/931-revision-v1/',0,'revision','',0),(933,1,'2015-02-13 11:31:01','2015-02-13 17:31:01','<p style=\"text-align: center;\">Hopes went up like balloons</p>\r\n<p style=\"text-align: center;\">Colors of apples on the face</p>\r\n<p style=\"text-align: center;\">Heart beating so fiercely</p>\r\n<p style=\"text-align: center;\">Possessing a joy no one can take</p>\r\n<p style=\"text-align: center;\">Waiting til that moment comes</p>\r\n<p style=\"text-align: center;\">And when that moment finally do</p>\r\n<p style=\"text-align: center;\">Disappointment sits there waiting</p>\r\n<p style=\"text-align: center;\">Accompanied by no one but you</p>\r\n \r\n<p style=\"text-align: center;\"><em>“When you let your hopes fly high there is a chance of a harsher crash if things don’t work out..” –Monica Renata </em></p>','Definition: Disappointed','','publish','open','open','','definition-disappointed','','','2015-02-13 11:31:01','2015-02-13 17:31:01','',0,'http://www.monicarenata.com/?p=933',0,'post','',0),(934,1,'2015-02-13 11:31:01','2015-02-13 17:31:01','<p style=\"text-align: center;\">Hopes went up like balloons</p>\r\n<p style=\"text-align: center;\">Colors of apples on the face</p>\r\n<p style=\"text-align: center;\">Heart beating so fiercely</p>\r\n<p style=\"text-align: center;\">Possessing a joy no one can take</p>\r\n<p style=\"text-align: center;\">Waiting til that moment comes</p>\r\n<p style=\"text-align: center;\">And when that moment finally do</p>\r\n<p style=\"text-align: center;\">Disappointment sits there waiting</p>\r\n<p style=\"text-align: center;\">Accompanied by no one but you</p>\r\n \r\n<p style=\"text-align: center;\"><em>“When you let your hopes fly high there is a chance of a harsher crash if things don’t work out..” –Monica Renata </em></p>','Definition: Disappointed','','inherit','open','open','','933-revision-v1','','','2015-02-13 11:31:01','2015-02-13 17:31:01','',933,'http://www.monicarenata.com/933-revision-v1/',0,'revision','',0),(935,1,'2015-02-13 11:51:24','2015-02-13 17:51:24','<p style=\"text-align: center;\">Be careful when you taste success</p>\r\n<p style=\"text-align: center;\">Because it is the same taste of defeat</p>\r\n<p style=\"text-align: center;\">For one step in the wrong direction</p>\r\n<p style=\"text-align: center;\">Can make you tumble to your knees</p>\r\n<p style=\"text-align: center;\">For triumphs should be celebrated</p>\r\n<p style=\"text-align: center;\">But not revealed in so deep</p>\r\n<p style=\"text-align: center;\">Appreciate your victory</p>\r\n<p style=\"text-align: center;\">But make sure to stand tall on your two feet</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>“Never let success get the best of you and don’t let it make you lazy. Always perform as if you need to give it your all to succeed. “ –<strong>Monica Renata</strong></em></p>','Taste of Success','','publish','open','open','','taste-of-success','','','2015-02-13 11:52:35','2015-02-13 17:52:35','',0,'http://www.monicarenata.com/?p=935',0,'post','',0),(936,1,'2015-02-13 11:51:24','2015-02-13 17:51:24','<p style=\"text-align: center;\">Be careful when you taste success</p>\r\n<p style=\"text-align: center;\">Because it is the same taste of defeat</p>\r\n<p style=\"text-align: center;\">For one step in the wrong direction</p>\r\n<p style=\"text-align: center;\">Can make you tumble to your knees</p>\r\n<p style=\"text-align: center;\">For triumphs should be celebrated</p>\r\n<p style=\"text-align: center;\">But not revealed in so deep</p>\r\n<p style=\"text-align: center;\">Appreciate your victory</p>\r\n<p style=\"text-align: center;\">But make sure to stand tall on your two feet</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>“Never let success get the best of you and don’t let it make you lazy. Always perform as if you need to give it your all to succeed. “ –<strong>Monica Renata</strong></em></p>','Taste of Success','','inherit','open','open','','935-revision-v1','','','2015-02-13 11:51:24','2015-02-13 17:51:24','',935,'http://www.monicarenata.com/935-revision-v1/',0,'revision','',0),(937,1,'2015-02-13 11:52:33','2015-02-13 17:52:33','<p style=\"text-align: center;\">Be careful when you taste success</p>\n<p style=\"text-align: center;\">Because it is the same taste of defeat</p>\n<p style=\"text-align: center;\">For one step in the wrong direction</p>\n<p style=\"text-align: center;\">Can make you tumble to your knees</p>\n<p style=\"text-align: center;\">For triumphs should be celebrated</p>\n<p style=\"text-align: center;\">But not revealed in so deep</p>\n<p style=\"text-align: center;\">Appreciate your victory</p>\n<p style=\"text-align: center;\">But make sure to stand tall on your two feet</p>\n<p style=\"text-align: center;\"></p>\n\n\n<hr />\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"><em>“Never let success get the best of you and don’t let it make you lazy. Always perform as if you need to give it your all to succeed. “ –<strong>Monica Renata</strong></em></p>','Taste of Success','','inherit','open','open','','935-autosave-v1','','','2015-02-13 11:52:33','2015-02-13 17:52:33','',935,'http://www.monicarenata.com/935-autosave-v1/',0,'revision','',0),(938,1,'2015-02-13 11:52:35','2015-02-13 17:52:35','<p style=\"text-align: center;\">Be careful when you taste success</p>\r\n<p style=\"text-align: center;\">Because it is the same taste of defeat</p>\r\n<p style=\"text-align: center;\">For one step in the wrong direction</p>\r\n<p style=\"text-align: center;\">Can make you tumble to your knees</p>\r\n<p style=\"text-align: center;\">For triumphs should be celebrated</p>\r\n<p style=\"text-align: center;\">But not revealed in so deep</p>\r\n<p style=\"text-align: center;\">Appreciate your victory</p>\r\n<p style=\"text-align: center;\">But make sure to stand tall on your two feet</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>“Never let success get the best of you and don’t let it make you lazy. Always perform as if you need to give it your all to succeed. “ –<strong>Monica Renata</strong></em></p>','Taste of Success','','inherit','open','open','','935-revision-v1','','','2015-02-13 11:52:35','2015-02-13 17:52:35','',935,'http://www.monicarenata.com/935-revision-v1/',0,'revision','',0),(942,1,'2015-02-17 15:52:21','2015-02-17 21:52:21','When your phone sits on the side of you\r\n\r\nYet no one decides to call\r\n\r\n \r\n\r\nWhen you wake up to complete silence\r\n\r\nAnd all your good mornings are gone\r\n\r\n \r\n\r\nWhen what you loved is missing\r\n\r\nAnd life just is no longer sweet\r\n\r\n \r\n\r\nThis is the feeling you try to get over\r\n\r\nAs you drift away in sleep','Absense','','inherit','open','open','','941-revision-v1','','','2015-02-17 15:52:21','2015-02-17 21:52:21','',941,'http://www.monicarenata.com/941-revision-v1/',0,'revision','',0),(943,1,'2015-02-18 08:02:52','2015-02-18 14:02:52','You remind me of the last chocolate chip\r\n\r\nThat I refuse to give away\r\n\r\n \r\n\r\nYou remind me of that morning star\r\n\r\nThat is so beautiful till it fades away\r\n\r\n \r\n\r\nYou remind me of happiness\r\n\r\nYou remind me of how life SHOULD be\r\n\r\n \r\n\r\nYou remind me why it never worked with others\r\n\r\nAnd I’m just so happy you are with me','You Remind Me','','publish','open','open','','you-remind-me','','','2015-02-18 08:02:52','2015-02-18 14:02:52','',0,'http://www.monicarenata.com/?p=943',0,'post','',0),(944,1,'2015-02-18 08:02:52','2015-02-18 14:02:52','You remind me of the last chocolate chip\r\n\r\nThat I refuse to give away\r\n\r\n \r\n\r\nYou remind me of that morning star\r\n\r\nThat is so beautiful till it fades away\r\n\r\n \r\n\r\nYou remind me of happiness\r\n\r\nYou remind me of how life SHOULD be\r\n\r\n \r\n\r\nYou remind me why it never worked with others\r\n\r\nAnd I’m just so happy you are with me','You Remind Me','','inherit','open','open','','943-revision-v1','','','2015-02-18 08:02:52','2015-02-18 14:02:52','',943,'http://www.monicarenata.com/943-revision-v1/',0,'revision','',0),(945,1,'2015-02-18 09:14:17','2015-02-18 15:14:17','Every day was raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nFor when the sun was shining bright\r\n\r\nHis heart continued to yearn\r\n\r\n \r\n\r\nAnd while he shows the most beautiful smile\r\n\r\nOn that big beautiful face\r\n\r\nHe continues to think negatively\r\n\r\nAnd continue to feel displaced\r\n\r\n \r\n\r\nYou see when it is raining everyday\r\n\r\nEven when the sun is out\r\n\r\nHappiness seems to never come\r\n\r\nTherefore Sammy always pout\r\n\r\n \r\n\r\nBut Sammy doesn’t realize\r\n\r\nHow much a blessing rain can be\r\n\r\nHopefully he can open his eyes one day\r\n\r\nAnd finally fully see\r\n\r\n \r\n\r\nThere are blessings in each raindrop\r\n\r\nFrom pain comes so much life\r\n\r\nNegative things happen in life\r\n\r\nAnd you feel them because you are alive\r\n\r\n \r\n\r\nRaindrops cause significant growth\r\n\r\nThere is no need to hid them away\r\n\r\nBut don’t let them drown you\r\n\r\nFor there will be better days\r\n\r\n \r\n\r\nThe truth is, every day ISN’T raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nBut if he lets negativity consume him\r\n\r\nHis rainy days will go on and on\r\n\r\n \r\n\r\nNegatives in life happen\r\n\r\nBut there are positives that surface indeed\r\n\r\nSo don’t let the rain discourage you\r\n\r\nJust use it to help grow your seeds\r\n\r\n \r\n\r\n<em><strong>“Do not allow negativity to rain on your beautiful life. Plant positivity in your mind and you will yield excellent crops.”</strong> –Monica Renata</em>\r\n\r\n ','Sammy Storm','','publish','open','open','','sammy-storm','','','2015-02-18 12:12:42','2015-02-18 18:12:42','',0,'http://www.monicarenata.com/?p=945',0,'post','',0),(946,1,'2015-02-18 09:14:17','2015-02-18 15:14:17','Every day was raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nFor when the sun was shining bright\r\n\r\nHis heart continued to yearn\r\n\r\n \r\n\r\nAnd while he shows the most beautiful a smile\r\n\r\nOn that big beautiful face\r\n\r\nHe continues to think negatively\r\n\r\nAnd continue to feel displaced\r\n\r\n \r\n\r\nYou see when it is raining everyday\r\n\r\nEven when the sun is out\r\n\r\nHappiness seems to never come\r\n\r\nTherefore Sammy always pout\r\n\r\n \r\n\r\nBut Sammy doesn’t realize\r\n\r\nHow much a blessing rain can be\r\n\r\nHopefully he can open his eyes one day\r\n\r\nAnd finally fully see\r\n\r\n \r\n\r\nThere are blessings in each raindrop\r\n\r\nFrom pain comes so much life\r\n\r\nNegative things happen in life\r\n\r\nAnd you feel them because you are alive\r\n\r\n \r\n\r\nRaindrops cause significant growth\r\n\r\nThere is no need to hid them away\r\n\r\nBut don’t let them drown you\r\n\r\nFor there will be better days\r\n\r\n \r\n\r\nThe truth is, every day ISN’T raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nBut if he lets negativity consume him\r\n\r\nHis rainy days will go on and on\r\n\r\n \r\n\r\nNegatives in life happen\r\n\r\nBut there are positives that surface indeed\r\n\r\nSo don’t let the rain discourage you\r\n\r\nJust use it to help grow your seeds\r\n\r\n \r\n\r\n<em><strong>“Do not allow negativity to rain on your beautiful life. Plant positivity in your mind and you will yield excellent crops.”</strong> –Monica Renata</em>\r\n\r\n ','Sammy Storm','','inherit','open','open','','945-revision-v1','','','2015-02-18 09:14:17','2015-02-18 15:14:17','',945,'http://www.monicarenata.com/945-revision-v1/',0,'revision','',0),(947,1,'2015-02-18 12:12:42','2015-02-18 18:12:42','Every day was raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nFor when the sun was shining bright\r\n\r\nHis heart continued to yearn\r\n\r\n \r\n\r\nAnd while he shows the most beautiful smile\r\n\r\nOn that big beautiful face\r\n\r\nHe continues to think negatively\r\n\r\nAnd continue to feel displaced\r\n\r\n \r\n\r\nYou see when it is raining everyday\r\n\r\nEven when the sun is out\r\n\r\nHappiness seems to never come\r\n\r\nTherefore Sammy always pout\r\n\r\n \r\n\r\nBut Sammy doesn’t realize\r\n\r\nHow much a blessing rain can be\r\n\r\nHopefully he can open his eyes one day\r\n\r\nAnd finally fully see\r\n\r\n \r\n\r\nThere are blessings in each raindrop\r\n\r\nFrom pain comes so much life\r\n\r\nNegative things happen in life\r\n\r\nAnd you feel them because you are alive\r\n\r\n \r\n\r\nRaindrops cause significant growth\r\n\r\nThere is no need to hid them away\r\n\r\nBut don’t let them drown you\r\n\r\nFor there will be better days\r\n\r\n \r\n\r\nThe truth is, every day ISN’T raining\r\n\r\nIn the world of Sammy Storm\r\n\r\nBut if he lets negativity consume him\r\n\r\nHis rainy days will go on and on\r\n\r\n \r\n\r\nNegatives in life happen\r\n\r\nBut there are positives that surface indeed\r\n\r\nSo don’t let the rain discourage you\r\n\r\nJust use it to help grow your seeds\r\n\r\n \r\n\r\n<em><strong>“Do not allow negativity to rain on your beautiful life. Plant positivity in your mind and you will yield excellent crops.”</strong> –Monica Renata</em>\r\n\r\n ','Sammy Storm','','inherit','open','open','','945-revision-v1','','','2015-02-18 12:12:42','2015-02-18 18:12:42','',945,'http://www.monicarenata.com/945-revision-v1/',0,'revision','',0),(949,1,'2015-02-19 07:09:51','2015-02-19 13:09:51','I’m not sorry for what I may feel\r\n\r\nAnd what my lips may speak\r\n\r\n \r\n\r\nI’m not sorry for wanting you\r\n\r\nAnd having thoughts run across my brain\r\n\r\n \r\n\r\nI’m not sorry for the looks I give\r\n\r\nAnd my actions which take place\r\n\r\n \r\n\r\nFor what I wanted I went after\r\n\r\nAnd to me that is okay\r\n\r\n \r\n\r\nTo fear what I want\r\n\r\nI refuse to have any fear\r\n\r\n \r\n\r\nI did what I wanted to do\r\n\r\nAnd unapologetic is how I feel\r\n\r\n \r\n\r\n<em><strong>“Never regret going after something that you want……..”</strong> –Monica Renata</em>\r\n\r\n \r\n\r\n ','Unapologetic','','publish','open','open','','unapologetic','','','2015-02-19 07:09:51','2015-02-19 13:09:51','',0,'http://www.monicarenata.com/?p=949',0,'post','',0),(950,1,'2015-02-19 07:09:51','2015-02-19 13:09:51','I’m not sorry for what I may feel\r\n\r\nAnd what my lips may speak\r\n\r\n \r\n\r\nI’m not sorry for wanting you\r\n\r\nAnd having thoughts run across my brain\r\n\r\n \r\n\r\nI’m not sorry for the looks I give\r\n\r\nAnd my actions which take place\r\n\r\n \r\n\r\nFor what I wanted I went after\r\n\r\nAnd to me that is okay\r\n\r\n \r\n\r\nTo fear what I want\r\n\r\nI refuse to have any fear\r\n\r\n \r\n\r\nI did what I wanted to do\r\n\r\nAnd unapologetic is how I feel\r\n\r\n \r\n\r\n<em><strong>“Never regret going after something that you want……..”</strong> –Monica Renata</em>\r\n\r\n \r\n\r\n ','Unapologetic','','inherit','open','open','','949-revision-v1','','','2015-02-19 07:09:51','2015-02-19 13:09:51','',949,'http://www.monicarenata.com/949-revision-v1/',0,'revision','',0),(951,1,'2015-02-19 08:54:55','2015-02-19 14:54:55','Katy is a beautiful girl\r\n\r\nKaty is great all around\r\n\r\nThe only problem with Katy is\r\n\r\nShe kicks others when they are down\r\n\r\n \r\n\r\nFor when life throws people lemons\r\n\r\nKaty does not allow them to make lemonade\r\n\r\nInstead she squirts juice in their eyes\r\n\r\nAnd rubs it on their saddened face\r\n\r\n \r\n\r\nKaty is admired by many\r\n\r\nKaty is also hated by some\r\n\r\nBut her following is massive\r\n\r\nAnd she is challenged by no one\r\n\r\n \r\n\r\nBut when Katy finally falls down\r\n\r\nI wonder who will pick her up?\r\n\r\nWill she get a kick right back down\r\n\r\nOr will she receive some other luck?\r\n\r\n \r\n\r\nLife is very funny\r\n\r\nSometimes strange to say the least\r\n\r\nBut when you don’t treat others how you want to be treated\r\n\r\nYour quality of life may not increase\r\n\r\n \r\n\r\nKaty is so many things\r\n\r\nBut Katy kicks others when they are down\r\n\r\nJust proof that some of the most beautiful people\r\n\r\nCan be the ones who make you frown\r\n\r\n ','Katy Kicker','','publish','open','open','','katy-kicker','','','2015-02-19 08:54:55','2015-02-19 14:54:55','',0,'http://www.monicarenata.com/?p=951',0,'post','',0),(952,1,'2015-02-19 08:54:55','2015-02-19 14:54:55','Katy is a beautiful girl\r\n\r\nKaty is great all around\r\n\r\nThe only problem with Katy is\r\n\r\nShe kicks others when they are down\r\n\r\n \r\n\r\nFor when life throws people lemons\r\n\r\nKaty does not allow them to make lemonade\r\n\r\nInstead she squirts juice in their eyes\r\n\r\nAnd rubs it on their saddened face\r\n\r\n \r\n\r\nKaty is admired by many\r\n\r\nKaty is also hated by some\r\n\r\nBut her following is massive\r\n\r\nAnd she is challenged by no one\r\n\r\n \r\n\r\nBut when Katy finally falls down\r\n\r\nI wonder who will pick her up?\r\n\r\nWill she get a kick right back down\r\n\r\nOr will she receive some other luck?\r\n\r\n \r\n\r\nLife is very funny\r\n\r\nSometimes strange to say the least\r\n\r\nBut when you don’t treat others how you want to be treated\r\n\r\nYour quality of life may not increase\r\n\r\n \r\n\r\nKaty is so many things\r\n\r\nBut Katy kicks others when they are down\r\n\r\nJust proof that some of the most beautiful people\r\n\r\nCan be the ones who make you frown\r\n\r\n ','Katy Kicker','','inherit','open','open','','951-revision-v1','','','2015-02-19 08:54:55','2015-02-19 14:54:55','',951,'http://www.monicarenata.com/951-revision-v1/',0,'revision','',0),(953,1,'2015-02-19 10:04:43','2015-02-19 16:04:43','On the big performance stage of life\r\n\r\nWhere the world can clearly see\r\n\r\nStands Paula the Performer\r\n\r\nThe girl every little girl wants to be\r\n\r\n \r\n\r\nOn the covers of magazines\r\n\r\nOn the giant television screens\r\n\r\nPeople pay attention to Paula\r\n\r\nBut Paula doesn’t want to be seen\r\n\r\n \r\n\r\nHer beauty is unsurpassed according to others\r\n\r\nShe is also placed on a pedestal\r\n\r\nLights shine down on her brightly\r\n\r\nBut her soul is impregnable\r\n\r\n \r\n\r\nShe is loved by so many\r\n\r\nYet feels isolated in the world\r\n\r\nAttention from millions of people\r\n\r\nYet she really is alone\r\n\r\n \r\n\r\nPaula the Performer\r\n\r\nHer fan base runs so deep\r\n\r\nBut her biggest fan isn’t in the front row\r\n\r\nAnd that is where she wants him to be\r\n\r\n \r\n\r\n<em>“<strong>Sometimes the absence of one person can make you feel alone in a sea full of people..”</strong> –Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Paula The Performer','','publish','open','open','','paula-the-performer','','','2015-02-19 10:04:43','2015-02-19 16:04:43','',0,'http://www.monicarenata.com/?p=953',0,'post','',0),(954,1,'2015-02-19 10:04:43','2015-02-19 16:04:43','On the big performance stage of life\r\n\r\nWhere the world can clearly see\r\n\r\nStands Paula the Performer\r\n\r\nThe girl every little girl wants to be\r\n\r\n \r\n\r\nOn the covers of magazines\r\n\r\nOn the giant television screens\r\n\r\nPeople pay attention to Paula\r\n\r\nBut Paula doesn’t want to be seen\r\n\r\n \r\n\r\nHer beauty is unsurpassed according to others\r\n\r\nShe is also placed on a pedestal\r\n\r\nLights shine down on her brightly\r\n\r\nBut her soul is impregnable\r\n\r\n \r\n\r\nShe is loved by so many\r\n\r\nYet feels isolated in the world\r\n\r\nAttention from millions of people\r\n\r\nYet she really is alone\r\n\r\n \r\n\r\nPaula the Performer\r\n\r\nHer fan base runs so deep\r\n\r\nBut her biggest fan isn’t in the front row\r\n\r\nAnd that is where she wants him to be\r\n\r\n \r\n\r\n<em>“<strong>Sometimes the absence of one person can make you feel alone in a sea full of people..”</strong> –Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Paula The Performer','','inherit','open','open','','953-revision-v1','','','2015-02-19 10:04:43','2015-02-19 16:04:43','',953,'http://www.monicarenata.com/953-revision-v1/',0,'revision','',0),(955,1,'2015-02-19 10:47:07','2015-02-19 16:47:07','Once upon a time ago\r\nIn a land so very far away\r\nLived a Love waiting for their lover\r\nSo in his heart she’ll have a place to stay\r\n\r\nThey didn’t live in a palace\r\nAnd kingdoms only exist far away\r\nBut I can feel the magic brewing\r\nAnd it’s sweeping me off my feet\r\n\r\n\r\n\r\n\r\n\r\nFairy tales aren’t real\r\nThat’s what so many say\r\nBut ours is just unfolding\r\nIt’s unfolding in front your face\r\n\r\nA man as handsome as a prince\r\nA girl with potential to be a queen\r\nA world left to conquer\r\nYet so much of life remains unseen\r\n\r\nA mutual interest\r\nSomething that is different but sweet\r\nThis could be your happily ever after\r\nBut you decide to hesitate\r\n\r\nKisses under the midnight moon\r\nLaughs that could last days\r\nA team that can conquer the world\r\nAnd travel together in to the unseen\r\n\r\nQuestions\r\nSo many questions\r\nNot blind\r\nBut yet you can’t see\r\n\r\n\r\n\r\nDon’t miss out on your happily ever after\r\nBecause your happily ever after is with me\r\nOh how I wish you would realize this\r\nAs each night you drift to sleep\r\n','Fairy Tales Aren\'t Real','','inherit','open','open','','948-revision-v1','','','2015-02-19 10:47:07','2015-02-19 16:47:07','',948,'http://www.monicarenata.com/948-revision-v1/',0,'revision','',0),(957,1,'2015-02-20 07:45:51','2015-02-20 13:45:51','I refuse to dread the mornings\r\n\r\nAnd wish for time to pass\r\n\r\n \r\n\r\nI no longer wish for money\r\n\r\nI wish for happiness instead\r\n\r\n \r\n\r\nFor all the things that life can bring\r\n\r\nI shall always persevere\r\n\r\n \r\n\r\nI will keep moving along life proudly\r\n\r\nRefusing to be frozen by fear\r\n\r\n \r\n\r\nThe sun may not shine brightly\r\n\r\nMy morning thoughts may not be clear\r\n\r\n \r\n\r\nBut another day beginning\r\n\r\nAnd I know that today I not fear to LIVE\r\n\r\n \r\n\r\n<strong><em>“Never let fear get in the way of you living your life. Appreciate each moment and value the things that matter.”</em></strong> –<em>Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n ','Fear To Live','','publish','open','open','','fear-to-live','','','2015-02-20 07:45:51','2015-02-20 13:45:51','',0,'http://www.monicarenata.com/?p=957',0,'post','',0),(958,1,'2015-02-20 07:45:51','2015-02-20 13:45:51','I refuse to dread the mornings\r\n\r\nAnd wish for time to pass\r\n\r\n \r\n\r\nI no longer wish for money\r\n\r\nI wish for happiness instead\r\n\r\n \r\n\r\nFor all the things that life can bring\r\n\r\nI shall always persevere\r\n\r\n \r\n\r\nI will keep moving along life proudly\r\n\r\nRefusing to be frozen by fear\r\n\r\n \r\n\r\nThe sun may not shine brightly\r\n\r\nMy morning thoughts may not be clear\r\n\r\n \r\n\r\nBut another day beginning\r\n\r\nAnd I know that today I not fear to LIVE\r\n\r\n \r\n\r\n<strong><em>“Never let fear get in the way of you living your life. Appreciate each moment and value the things that matter.”</em></strong> –<em>Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n ','Fear To Live','','inherit','open','open','','957-revision-v1','','','2015-02-20 07:45:51','2015-02-20 13:45:51','',957,'http://www.monicarenata.com/957-revision-v1/',0,'revision','',0),(959,1,'2015-02-22 00:33:28','2015-02-22 06:33:28','Pieces of the puzzle\r\n\r\nPieces of my life\r\n\r\nPieces of the memories\r\n\r\nThat float in my mind at night\r\n\r\n \r\n\r\nBeautiful, Beautiful picture\r\n\r\nIn the dark and in the light\r\n\r\nEach piece of this puzzle is precious\r\n\r\nThis puzzle called my life','Puzzle Pieces','','publish','open','open','','puzzle-pieces','','','2015-02-22 00:33:28','2015-02-22 06:33:28','',0,'http://www.monicarenata.com/?p=959',0,'post','',0),(960,1,'2015-02-22 00:33:28','2015-02-22 06:33:28','Pieces of the puzzle\r\n\r\nPieces of my life\r\n\r\nPieces of the memories\r\n\r\nThat float in my mind at night\r\n\r\n \r\n\r\nBeautiful, Beautiful picture\r\n\r\nIn the dark and in the light\r\n\r\nEach piece of this puzzle is precious\r\n\r\nThis puzzle called my life','Puzzle Pieces','','inherit','open','open','','959-revision-v1','','','2015-02-22 00:33:28','2015-02-22 06:33:28','',959,'http://www.monicarenata.com/959-revision-v1/',0,'revision','',0),(961,1,'2015-02-23 07:48:18','2015-02-23 13:48:18','I should be sorry for being too forward\r\n\r\nBut I am not afraid to say what I say\r\n\r\nFor I thought about my words and actions\r\n\r\nBefore they took place this day\r\n\r\n \r\n\r\nMy words may seem so blunt\r\n\r\nSometimes bitter, yet sometimes sweet\r\n\r\nBut my heart is in the right place\r\n\r\nAnd I deliver my words nice and neat\r\n\r\n \r\n\r\nIf I like you, I will tell you\r\n\r\nIf I hate you, I will tell that too\r\n\r\nBecause why should I pretend with words\r\n\r\nAnd speak things that are not the truth\r\n\r\n \r\n\r\nI’m not sorry for being too forward\r\n\r\nI’m not sorry for saying how I feel\r\n\r\nBut most importantly I feel sorry for you\r\n\r\nSince you can’t handle what’s real\r\n\r\n \r\n\r\n<em>\"Never be afraid to speak your mind....Never apologize for being yourself.\"- Monica Renata </em>\r\n\r\n ','Forward','','publish','open','open','','forward','','','2015-02-23 07:48:18','2015-02-23 13:48:18','',0,'http://www.monicarenata.com/?p=961',0,'post','',0),(962,1,'2015-02-23 07:48:18','2015-02-23 13:48:18','I should be sorry for being too forward\r\n\r\nBut I am not afraid to say what I say\r\n\r\nFor I thought about my words and actions\r\n\r\nBefore they took place this day\r\n\r\n \r\n\r\nMy words may seem so blunt\r\n\r\nSometimes bitter, yet sometimes sweet\r\n\r\nBut my heart is in the right place\r\n\r\nAnd I deliver my words nice and neat\r\n\r\n \r\n\r\nIf I like you, I will tell you\r\n\r\nIf I hate you, I will tell that too\r\n\r\nBecause why should I pretend with words\r\n\r\nAnd speak things that are not the truth\r\n\r\n \r\n\r\nI’m not sorry for being too forward\r\n\r\nI’m not sorry for saying how I feel\r\n\r\nBut most importantly I feel sorry for you\r\n\r\nSince you can’t handle what’s real\r\n\r\n \r\n\r\n<em>\"Never be afraid to speak your mind....Never apologize for being yourself.\"- Monica Renata </em>\r\n\r\n ','Forward','','inherit','open','open','','961-revision-v1','','','2015-02-23 07:48:18','2015-02-23 13:48:18','',961,'http://www.monicarenata.com/961-revision-v1/',0,'revision','',0),(964,1,'2015-02-26 07:39:26','2015-02-26 13:39:26','I hope your sun is always sunny\r\n\r\nAnd your clouds are always blue\r\n\r\nSo when you look up at the sky\r\n\r\nIt can be as beautiful as you\r\n\r\n \r\n\r\nI hope your roses are always red\r\n\r\nAnd your daisies are always sweet\r\n\r\nI hope your days are forever beautiful\r\n\r\nAnd you never cry yourself to sleep\r\n\r\n \r\n\r\nI hope that you are happy\r\n\r\nI hope that you are free\r\n\r\nAnd forever I will pray for blessings your way\r\n\r\nEven if you aren’t with me\r\n\r\n.\r\n\r\nLove is so gentle\r\n\r\nLove is so beautiful and sweet\r\n\r\nI shall love you always\r\n\r\nEven if you and I aren’t meant to be\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“When you really love someone, you want them to be happy……..If them being happy means, they are not with you, love them anyways..”</em> –Monica Renata</p>\r\n ','Love Always','','inherit','open','open','','963-revision-v1','','','2015-02-26 07:39:26','2015-02-26 13:39:26','',963,'http://www.monicarenata.com/963-revision-v1/',0,'revision','',0),(988,1,'2015-03-18 14:02:22','2015-03-18 19:02:22','One day I had a penny\r\n\r\nAnd that day I so did frown\r\n\r\nFor what could a penny do for me?\r\n\r\nAnd that thought got me so down\r\n\r\n \r\n\r\nOne day I found a penny\r\n\r\nAnd I smiled with glee\r\n\r\nFor I believed that old tale\r\n\r\nThat luck would be bestowed on me\r\n\r\n \r\n\r\nOne cent still equaled one cent\r\n\r\nJust like a day still equals a day\r\n\r\nThe only difference was the attitude I had that day\r\n\r\n \r\n\r\nToday I had a few thoughts\r\n\r\nThey were bitter yet also sweet\r\n\r\nBut I decided to focus on the best thoughts\r\n\r\nBecause those thoughts benefit me\r\n\r\n \r\n\r\nFor life is a beautiful blessing\r\n\r\nSure things may not always go your way\r\n\r\nBut focus not on the negatives\r\n\r\nAnd you will defiantly have a better day\r\n\r\n \r\n\r\n \r\n\r\n<em>“When you start focusing on the positives in your lives, and forget about the negatives…Life will become so much better” – Monica Renata</em>','Better Day','','publish','open','open','','better-day','','','2015-03-18 14:02:22','2015-03-18 19:02:22','',0,'http://www.monicarenata.com/?p=988',0,'post','',1),(968,1,'2015-03-09 20:35:45','0000-00-00 00:00:00','Being wronged by someone we loved can be one of the most devastating feelings in the world. The have someone you trust betray you, to have someone disrespect you, to have someone utterly disregard your feelings....That hurts. ...But what hurts even more is holding on to anger associated with that event. There is a blessing in forgiveness......\r\n\r\n \r\n\r\nA bridge burned\r\n\r\nA friendship ruined\r\n\r\nA relationship no more\r\n\r\n \r\n\r\nThese types of things are hard to deal with at times, but that doesn\'t mean your world is at an end. People hurt you. People speak negatively of you. People wrong you. People neglect you. People treat you as if you deserve no respect at all....but forgive them.\r\n\r\n \r\n\r\nForgive them but never forget. Forgive them, not for them, but for you. Never seek revenge and be cordial. Show them that you will remain the good person that you were before...but never forget. For they will realize the wrongs of their ways soon enough. They will never get to know the genuine kindness of you ever again. That YOU they knew before..the one that trusted easilyk, the one that cared, the one that didn\'t fear you...that you ....will no longer be.','The Blessing In Forgiveness','','draft','open','open','','','','','2015-03-09 20:35:45','2015-03-10 01:35:45','',0,'http://www.monicarenata.com/?p=968',0,'post','',0),(969,1,'2015-03-09 20:35:44','2015-03-10 01:35:44','Being wronged by someone we loved can be one of the most devastating feelings in the world. The have someone you trust betray you, to have someone disrespect you, to have someone utterly disregard your feelings....That hurts. ...But what hurts even more is holding on to anger associated with that event. There is a blessing in forgiveness......\r\n\r\n \r\n\r\nA bridge burned\r\n\r\nA friendship ruined\r\n\r\nA relationship no more\r\n\r\n \r\n\r\nThese types of things are hard to deal with at times, but that doesn\'t mean your world is at an end. People hurt you. People speak negatively of you. People wrong you. People neglect you. People treat you as if you deserve no respect at all....but forgive them.\r\n\r\n \r\n\r\nForgive them but never forget. Forgive them, not for them, but for you. Never seek revenge and be cordial. Show them that you will remain the good person that you were before...but never forget. For they will realize the wrongs of their ways soon enough. They will never get to know the genuine kindness of you ever again. That YOU they knew before..the one that trusted easilyk, the one that cared, the one that didn\'t fear you...that you ....will no longer be.','The Blessing In Forgiveness','','inherit','open','open','','968-revision-v1','','','2015-03-09 20:35:44','2015-03-10 01:35:44','',968,'http://www.monicarenata.com/968-revision-v1/',0,'revision','',0),(970,1,'2015-03-10 07:18:01','2015-03-10 12:18:01','One day you will get tired\r\n\r\nOne day you will get weak\r\n\r\nOne day you will no longer accept\r\n\r\nThe person you weren’t meant to be\r\n\r\n \r\n\r\nOne day you will open your eyes\r\n\r\nOne day you will finally see\r\n\r\nOne day you will realize\r\n\r\nThat I can’t be “you” and you can’t be “me”\r\n\r\n \r\n\r\nWe are all so very different\r\n\r\nWe were never meant to be the same\r\n\r\nOne day you will understand that\r\n\r\nAnd let your true self reign\r\n\r\n \r\n\r\n<em>“Stop trying to be someone you are not! One day you will get tired of this…realize that life becomes so much better when you embrace who you really are!” –Monica Renata</em>','Reign','','publish','open','open','','reign','','','2015-03-10 07:18:01','2015-03-10 12:18:01','',0,'http://www.monicarenata.com/?p=970',0,'post','',0),(971,1,'2015-03-10 07:18:01','2015-03-10 12:18:01','One day you will get tired\r\n\r\nOne day you will get weak\r\n\r\nOne day you will no longer accept\r\n\r\nThe person you weren’t meant to be\r\n\r\n \r\n\r\nOne day you will open your eyes\r\n\r\nOne day you will finally see\r\n\r\nOne day you will realize\r\n\r\nThat I can’t be “you” and you can’t be “me”\r\n\r\n \r\n\r\nWe are all so very different\r\n\r\nWe were never meant to be the same\r\n\r\nOne day you will understand that\r\n\r\nAnd let your true self reign\r\n\r\n \r\n\r\n<em>“Stop trying to be someone you are not! One day you will get tired of this…realize that life becomes so much better when you embrace who you really are!” –Monica Renata</em>','Reign','','inherit','open','open','','970-revision-v1','','','2015-03-10 07:18:01','2015-03-10 12:18:01','',970,'http://www.monicarenata.com/970-revision-v1/',0,'revision','',0),(972,1,'2015-03-10 09:34:12','2015-03-10 14:34:12','Everyone asks Annie\r\n\r\nThey ask Annie all sorts of things\r\n\r\nThey ask about advice in life\r\n\r\nThey ask her for some things\r\n\r\n \r\n\r\nThey ask her if they can borrow\r\n\r\nThey ask her if she can do\r\n\r\nYet no one ever seems to ask Annie\r\n\r\n“Annie how are you?”\r\n\r\n \r\n\r\nEveryone asks Annie\r\n\r\nThey ask her all sorts of things\r\n\r\nBut when will they start asking Annie\r\n\r\nAbout how she is feeling today\r\n\r\n \r\n\r\n<em>“Sometimes we ask a person to do so much for us that we forget to ask them how they are. Take the time to appreciate those in your life and check on their emotional wellbeing.” –Monica Renata </em>','Asking Annie','','publish','open','open','','asking-annie','','','2015-03-10 09:34:12','2015-03-10 14:34:12','',0,'http://www.monicarenata.com/?p=972',0,'post','',0),(973,1,'2015-03-10 09:34:12','2015-03-10 14:34:12','Everyone asks Annie\r\n\r\nThey ask Annie all sorts of things\r\n\r\nThey ask about advice in life\r\n\r\nThey ask her for some things\r\n\r\n \r\n\r\nThey ask her if they can borrow\r\n\r\nThey ask her if she can do\r\n\r\nYet no one ever seems to ask Annie\r\n\r\n“Annie how are you?”\r\n\r\n \r\n\r\nEveryone asks Annie\r\n\r\nThey ask her all sorts of things\r\n\r\nBut when will they start asking Annie\r\n\r\nAbout how she is feeling today\r\n\r\n \r\n\r\n<em>“Sometimes we ask a person to do so much for us that we forget to ask them how they are. Take the time to appreciate those in your life and check on their emotional wellbeing.” –Monica Renata </em>','Asking Annie','','inherit','open','open','','972-revision-v1','','','2015-03-10 09:34:12','2015-03-10 14:34:12','',972,'http://www.monicarenata.com/972-revision-v1/',0,'revision','',0),(974,1,'2015-03-10 13:21:07','2015-03-10 18:21:07','Midnight blue is the sky tonight\r\n\r\nTwinkle goes the stars in the sky\r\n\r\nHands tightly locked together\r\n\r\nWhile I stare deep in your eyes\r\n\r\n \r\n\r\nEmbraced in such a fashion\r\n\r\nThat it is a beauty this can exist\r\n\r\nLying next to the love of my life\r\n\r\nOh how this moment I used to wish\r\n\r\n \r\n\r\nFrom the rising of the nightly moon\r\n\r\nTill the rise of the sun in the morning sky\r\n\r\nI shall cherish this moment forever\r\n\r\nAnd wish for this love to never die\r\n\r\n \r\n\r\nFor I loved you yesterday\r\n\r\nAnd I love you still today\r\n\r\nFor I’ll love you even tomorrow\r\n\r\nAnd I plan to love you for the rest of my days\r\n\r\n \r\n\r\n ','As We Lay','','publish','open','open','','as-we-lay','','','2015-03-10 13:22:52','2015-03-10 18:22:52','',0,'http://www.monicarenata.com/?p=974',0,'post','',0),(975,1,'2015-03-10 13:21:07','2015-03-10 18:21:07','Midnight blue is the sky tonight\r\n\r\nTwinkle goes the stars in the sky\r\n\r\nHands tightly locked together\r\n\r\nWhile I stare deep in your eyes\r\n\r\n \r\n\r\nEmbraced in such a fashion\r\n\r\nThat it is a beauty this can exist\r\n\r\nLying next to the love of my life\r\n\r\nOh how this moment I used to wish\r\n\r\n \r\n\r\nFrom the rising of the nightly moon\r\n\r\nTill the rise of the sun in the morning sky\r\n\r\nI shall cherish this moment forever\r\n\r\nAnd wish for this love to never die\r\n\r\n \r\n\r\nFor I loved you yesterday\r\n\r\nAnd I love you still today\r\n\r\nFor I’ll love you even tomorrow\r\n\r\nAnd I plan to love you for the rest of my days\r\n\r\n \r\n\r\n ','As We Lay','','inherit','open','open','','974-revision-v1','','','2015-03-10 13:21:07','2015-03-10 18:21:07','',974,'http://www.monicarenata.com/974-revision-v1/',0,'revision','',0),(977,1,'2015-03-13 08:39:56','2015-03-13 13:39:56','What’s meant for me will be\r\n\r\nThey say\r\n\r\nBut at times I disagree\r\n\r\n \r\n\r\nFor why didn’t things work out that time?\r\n\r\nWhy does it seem like life is against me?\r\n\r\n \r\n\r\nWork hard for it and you’ll get it\r\n\r\nThey say\r\n\r\nSo please tell me why\r\n\r\n \r\n\r\nI have been working all my life thus far\r\n\r\nAnd still never claimed my prize\r\n\r\n \r\n\r\nCasting doubts on futures\r\n\r\nQuestioning what’s meant to be\r\n\r\nLetting disappointments take over you\r\n\r\nYet neglecting to see\r\n\r\n \r\n\r\nWhat’s meant to be, will be my friend\r\n\r\nWork hard and see it all through\r\n\r\nFor you have to stumble in life sometimes\r\n\r\nEmbrace the journey of you\r\n\r\n \r\n\r\nGood times comes with bad times\r\n\r\nSuccesses come with a few fails\r\n\r\nJust don’t ever stop believing\r\n\r\nAnd in life you will prevail','Don\'t Stop Believing','','publish','open','open','','dont-stop-believing','','','2015-03-13 08:39:56','2015-03-13 13:39:56','',0,'http://www.monicarenata.com/?p=977',0,'post','',1),(978,1,'2015-03-13 08:39:56','2015-03-13 13:39:56','What’s meant for me will be\r\n\r\nThey say\r\n\r\nBut at times I disagree\r\n\r\n \r\n\r\nFor why didn’t things work out that time?\r\n\r\nWhy does it seem like life is against me?\r\n\r\n \r\n\r\nWork hard for it and you’ll get it\r\n\r\nThey say\r\n\r\nSo please tell me why\r\n\r\n \r\n\r\nI have been working all my life thus far\r\n\r\nAnd still never claimed my prize\r\n\r\n \r\n\r\nCasting doubts on futures\r\n\r\nQuestioning what’s meant to be\r\n\r\nLetting disappointments take over you\r\n\r\nYet neglecting to see\r\n\r\n \r\n\r\nWhat’s meant to be, will be my friend\r\n\r\nWork hard and see it all through\r\n\r\nFor you have to stumble in life sometimes\r\n\r\nEmbrace the journey of you\r\n\r\n \r\n\r\nGood times comes with bad times\r\n\r\nSuccesses come with a few fails\r\n\r\nJust don’t ever stop believing\r\n\r\nAnd in life you will prevail','Don\'t Stop Believing','','inherit','open','open','','977-revision-v1','','','2015-03-13 08:39:56','2015-03-13 13:39:56','',977,'http://www.monicarenata.com/977-revision-v1/',0,'revision','',0),(979,1,'2015-03-13 08:54:08','2015-03-13 13:54:08','My life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nReminded of this daily\r\n\r\nSo much that I miss sleep\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nTumbling down in pieces\r\n\r\nThis is what I see\r\n\r\n \r\n\r\nWhat I wanted I did not get\r\n\r\nBut surprising I got what I need\r\n\r\nLost some friends along the way\r\n\r\nYet I’m no longer surrounded by deceit\r\n\r\nLearned a few good lessons\r\n\r\nMissed a few heartbeats\r\n\r\nHad my feelings completely shattered\r\n\r\nBut despite my struggles I still stand on two feet\r\n\r\n \r\n\r\nMy life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nBut I have learned along the way\r\n\r\nI learned who I am and who I want to be\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nBut I learned that there is a way to change that\r\n\r\nAnd the change starts with me\r\n\r\n \r\n\r\nNever always received what I wanted\r\n\r\nBut received what I so need\r\n\r\nLearned the true meaning of friendship\r\n\r\nGained a higher self-esteem\r\n\r\nHad my heart broken\r\n\r\nBut realized things can be fixed if they break\r\n\r\nLearned the biggest lesson of all\r\n\r\nWhich is if I fall I shouldn’t be ashamed\r\n\r\n \r\n\r\nMy life isn’t all that period\r\n\r\nBut my life is all about me\r\n\r\nAnd the times it totally fell apart\r\n\r\nWere the times I found me\r\n\r\n \r\n\r\n<em>“The crazy thing about life is the moment we think things are falling absolutely apart, things are actually coming together.” –<strong>Monica Renata</strong></em>','I Found Me','','publish','open','open','','i-found-me','','','2015-03-13 08:55:23','2015-03-13 13:55:23','',0,'http://www.monicarenata.com/?p=979',0,'post','',1),(980,1,'2015-03-13 08:54:08','2015-03-13 13:54:08','My life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nReminded of this daily\r\n\r\nSo much that I miss sleep\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nTumbling down in pieces\r\n\r\nThis is what I see\r\n\r\n \r\n\r\nWhat I wanted I did not get\r\n\r\nBut surprising I got what I need\r\n\r\nLost some friends along the way\r\n\r\nYet I’m no longer surrounded by deceit\r\n\r\nLearned a few good lessons\r\n\r\nMissed a few heartbeats\r\n\r\nHad my feelings completely shattered\r\n\r\nBut despite my struggles I still stand on two feet\r\n\r\n \r\n\r\nMy life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nBut I have learned along the way\r\n\r\nI learned who I am and who I want to be\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nBut I learned that there is a way to change that\r\n\r\nAnd the change starts with me\r\n\r\n \r\n\r\nNever always received what I wanted\r\n\r\nBut received what I so need\r\n\r\nLearned the true meaning of friendship\r\n\r\nGained a higher self-esteem\r\n\r\nHad my heart broken\r\n\r\nBut realized things can be fixed if they break\r\n\r\nLearned the biggest lesson of all\r\n\r\nWhich is if I fall I shouldn’t be ashamed\r\n\r\n \r\n\r\nMy life isn’t all that period\r\n\r\nBut my life is all about me\r\n\r\nAnd the times it totally fell apart\r\n\r\nWere the times I found me\r\n\r\n \r\n\r\n“The crazy thing about life is the moment we think things are falling absolutely apart, things are actually coming together.” –Monica Renata','I Found Me','','inherit','open','open','','979-revision-v1','','','2015-03-13 08:54:08','2015-03-13 13:54:08','',979,'http://www.monicarenata.com/979-revision-v1/',0,'revision','',0),(981,1,'2015-03-13 08:54:57','2015-03-13 13:54:57','My life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nReminded of this daily\r\n\r\nSo much that I miss sleep\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nTumbling down in pieces\r\n\r\nThis is what I see\r\n\r\n \r\n\r\nWhat I wanted I did not get\r\n\r\nBut surprising I got what I need\r\n\r\nLost some friends along the way\r\n\r\nYet I’m no longer surrounded by deceit\r\n\r\nLearned a few good lessons\r\n\r\nMissed a few heartbeats\r\n\r\nHad my feelings completely shattered\r\n\r\nBut despite my struggles I still stand on two feet\r\n\r\n \r\n\r\nMy life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nBut I have learned along the way\r\n\r\nI learned who I am and who I want to be\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nBut I learned that there is a way to change that\r\n\r\nAnd the change starts with me\r\n\r\n \r\n\r\nNever always received what I wanted\r\n\r\nBut received what I so need\r\n\r\nLearned the true meaning of friendship\r\n\r\nGained a higher self-esteem\r\n\r\nHad my heart broken\r\n\r\nBut realized things can be fixed if they break\r\n\r\nLearned the biggest lesson of all\r\n\r\nWhich is if I fall I shouldn’t be ashamed\r\n\r\n \r\n\r\nMy life isn’t all that period\r\n\r\nBut my life is all about me\r\n\r\nAnd the times it totally fell apart\r\n\r\nWere the times I found me\r\n\r\n \r\n\r\n<em>“The crazy thing about life is the moment we think things are falling absolutely apart, things are actually coming together.” –Monica Renata</em>','I Found Me','','inherit','open','open','','979-revision-v1','','','2015-03-13 08:54:57','2015-03-13 13:54:57','',979,'http://www.monicarenata.com/979-revision-v1/',0,'revision','',0),(982,1,'2015-03-13 08:55:23','2015-03-13 13:55:23','My life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nReminded of this daily\r\n\r\nSo much that I miss sleep\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nTumbling down in pieces\r\n\r\nThis is what I see\r\n\r\n \r\n\r\nWhat I wanted I did not get\r\n\r\nBut surprising I got what I need\r\n\r\nLost some friends along the way\r\n\r\nYet I’m no longer surrounded by deceit\r\n\r\nLearned a few good lessons\r\n\r\nMissed a few heartbeats\r\n\r\nHad my feelings completely shattered\r\n\r\nBut despite my struggles I still stand on two feet\r\n\r\n \r\n\r\nMy life isn’t all that bitter\r\n\r\nMy life isn’t always sweet\r\n\r\nBut I have learned along the way\r\n\r\nI learned who I am and who I want to be\r\n\r\n \r\n\r\nMy life isn’t all together\r\n\r\nMy life isn’t how I want it to be\r\n\r\nBut I learned that there is a way to change that\r\n\r\nAnd the change starts with me\r\n\r\n \r\n\r\nNever always received what I wanted\r\n\r\nBut received what I so need\r\n\r\nLearned the true meaning of friendship\r\n\r\nGained a higher self-esteem\r\n\r\nHad my heart broken\r\n\r\nBut realized things can be fixed if they break\r\n\r\nLearned the biggest lesson of all\r\n\r\nWhich is if I fall I shouldn’t be ashamed\r\n\r\n \r\n\r\nMy life isn’t all that period\r\n\r\nBut my life is all about me\r\n\r\nAnd the times it totally fell apart\r\n\r\nWere the times I found me\r\n\r\n \r\n\r\n<em>“The crazy thing about life is the moment we think things are falling absolutely apart, things are actually coming together.” –<strong>Monica Renata</strong></em>','I Found Me','','inherit','open','open','','979-revision-v1','','','2015-03-13 08:55:23','2015-03-13 13:55:23','',979,'http://www.monicarenata.com/979-revision-v1/',0,'revision','',0),(983,1,'2015-03-13 09:36:56','2015-03-13 14:36:56','Thank you for my broken heart\r\n\r\nThanks for crushing my soul\r\n\r\nThank you for all your harsh words\r\n\r\nThanks for your actions which were so cold\r\n\r\n \r\n\r\nFor while the pain lasted a while\r\n\r\nI was finally able to see\r\n\r\nThat in my life there was no place for you\r\n\r\nSo Thank You for hurting me\r\n\r\n \r\n\r\n<em>\"Thank those who have wronged you; For they opened your eyes to the fact that there was no vacancy in your life for them\" <strong>-Monica Renata </strong></em>','Thank You For Hurting Me','','publish','open','open','','thank-you-for-hurting-me','','','2015-03-13 09:36:56','2015-03-13 14:36:56','',0,'http://www.monicarenata.com/?p=983',0,'post','',1),(984,1,'2015-03-13 09:36:56','2015-03-13 14:36:56','Thank you for my broken heart\r\n\r\nThanks for crushing my soul\r\n\r\nThank you for all your harsh words\r\n\r\nThanks for your actions which were so cold\r\n\r\n \r\n\r\nFor while the pain lasted a while\r\n\r\nI was finally able to see\r\n\r\nThat in my life there was no place for you\r\n\r\nSo Thank You for hurting me\r\n\r\n \r\n\r\n<em>\"Thank those who have wronged you; For they opened your eyes to the fact that there was no vacancy in your life for them\" <strong>-Monica Renata </strong></em>','Thank You For Hurting Me','','inherit','open','open','','983-revision-v1','','','2015-03-13 09:36:56','2015-03-13 14:36:56','',983,'http://www.monicarenata.com/983-revision-v1/',0,'revision','',0),(985,1,'2015-03-17 13:22:02','2015-03-17 18:22:02','I miss the way you hold me\r\n\r\nI miss the way you say my name\r\n\r\nI miss that smirk on your beautiful face\r\n\r\nI miss the roughness of your hands\r\n\r\n \r\n\r\nI miss your conversations\r\n\r\nI miss your smile too\r\n\r\nI swear I miss everything\r\n\r\nEvery single thing about you\r\n\r\n \r\n\r\nI miss the way thing were\r\n\r\nI miss the idea of how things were supposed to be\r\n\r\nI miss your presence all the time\r\n\r\nI wish you were with me\r\n\r\n \r\n\r\nGuess the timing wasn’t perfect\r\n\r\nI wish this was the time you could be with me\r\n\r\nBut I have to learn to stop missing you\r\n\r\nBecause perhaps we weren’t meant to be\r\n\r\n \r\n\r\n<em>“Maybe the timing is just always wrong….Maybe one day the timing will be just right….or perhaps we weren\'t meant to be together…We will never know until we just live life…..” -Monica Renata </em>','I Miss The Way...','','publish','open','open','','i-miss-the-way','','','2015-03-17 13:25:16','2015-03-17 18:25:16','',0,'http://www.monicarenata.com/?p=985',0,'post','',0),(986,1,'2015-03-17 13:22:02','2015-03-17 18:22:02','I miss the way you hold me\r\n\r\nI miss the way you say my name\r\n\r\nI miss that smirk on your beautiful face\r\n\r\nI miss the roughness of your hands\r\n\r\n \r\n\r\nI miss your conversations\r\n\r\nI miss your smile too\r\n\r\nI swear I miss everything\r\n\r\nEvery single thing about you\r\n\r\n \r\n\r\nI miss the way thing were\r\n\r\nI miss the idea of how things were supposed to be\r\n\r\nI miss your presence all the time\r\n\r\nI wish you were with me\r\n\r\n \r\n\r\nGuess the timing wasn’t perfect\r\n\r\nI wish this was the time you could be with me\r\n\r\nBut I have to learn to stop missing you\r\n\r\nBecause perhaps we weren’t meant to be\r\n\r\n \r\n\r\n“Maybe the timing is just always wrong….Maybe one day the timing will be just right….or perhaps we weren’t meant to be together…We will never know until we just live life…..”','I Miss The Way...','','inherit','open','open','','985-revision-v1','','','2015-03-17 13:22:02','2015-03-17 18:22:02','',985,'http://www.monicarenata.com/985-revision-v1/',0,'revision','',0),(987,1,'2015-03-17 13:25:16','2015-03-17 18:25:16','I miss the way you hold me\r\n\r\nI miss the way you say my name\r\n\r\nI miss that smirk on your beautiful face\r\n\r\nI miss the roughness of your hands\r\n\r\n \r\n\r\nI miss your conversations\r\n\r\nI miss your smile too\r\n\r\nI swear I miss everything\r\n\r\nEvery single thing about you\r\n\r\n \r\n\r\nI miss the way thing were\r\n\r\nI miss the idea of how things were supposed to be\r\n\r\nI miss your presence all the time\r\n\r\nI wish you were with me\r\n\r\n \r\n\r\nGuess the timing wasn’t perfect\r\n\r\nI wish this was the time you could be with me\r\n\r\nBut I have to learn to stop missing you\r\n\r\nBecause perhaps we weren’t meant to be\r\n\r\n \r\n\r\n<em>“Maybe the timing is just always wrong….Maybe one day the timing will be just right….or perhaps we weren\'t meant to be together…We will never know until we just live life…..” -Monica Renata </em>','I Miss The Way...','','inherit','open','open','','985-revision-v1','','','2015-03-17 13:25:16','2015-03-17 18:25:16','',985,'http://www.monicarenata.com/985-revision-v1/',0,'revision','',0),(989,1,'2015-03-18 14:02:22','2015-03-18 19:02:22','One day I had a penny\r\n\r\nAnd that day I so did frown\r\n\r\nFor what could a penny do for me?\r\n\r\nAnd that thought got me so down\r\n\r\n \r\n\r\nOne day I found a penny\r\n\r\nAnd I smiled with glee\r\n\r\nFor I believed that old tale\r\n\r\nThat luck would be bestowed on me\r\n\r\n \r\n\r\nOne cent still equaled one cent\r\n\r\nJust like a day still equals a day\r\n\r\nThe only difference was the attitude I had that day\r\n\r\n \r\n\r\nToday I had a few thoughts\r\n\r\nThey were bitter yet also sweet\r\n\r\nBut I decided to focus on the best thoughts\r\n\r\nBecause those thoughts benefit me\r\n\r\n \r\n\r\nFor life is a beautiful blessing\r\n\r\nSure things may not always go your way\r\n\r\nBut focus not on the negatives\r\n\r\nAnd you will defiantly have a better day\r\n\r\n \r\n\r\n \r\n\r\n<em>“When you start focusing on the positives in your lives, and forget about the negatives…Life will become so much better” – Monica Renata</em>','Better Day','','inherit','open','open','','988-revision-v1','','','2015-03-18 14:02:22','2015-03-18 19:02:22','',988,'http://www.monicarenata.com/988-revision-v1/',0,'revision','',0),(990,1,'2015-04-06 23:14:18','2015-04-07 04:14:18','It played on the radio every day\r\nOh how I hated that song\r\nSinging of something I didn’t know of\r\nSinging of this unknown\r\n\r\nThe words seemed to mean something to the singer\r\nBut to I they didn’t mean a thing\r\nJust a tune in the background\r\nA song that seems to always play\r\n\r\nBut today I was lost in the words\r\nAnd that made my past thoughts fade\r\nFor I understand the lyrics fully\r\nAnd now I am deathly afraid\r\n\r\nA flood of raw emotions\r\nIn my head it all makes sense\r\nBut this isn’t me at all\r\nWith my emotions I am on the fence\r\n\r\nI finally know what the lyrics mean\r\nThe words finally make sense\r\nThe beat goes along with your mannerisms\r\nAnd I’m overwhelmed with memories I can’t forget\r\n\r\nBut the music is so beautiful\r\nYet the thoughts of failed loves I am consumed\r\nBut I finally understand the lyrics\r\nAnd each words draws me closer to you\r\n\r\n\r\n<em>\"One day you will realize why things never worked out in the past.... and that very day, those songs about love will make sense.\" -Monica Renata </em>','I Understand the Lyrics','','publish','open','open','','i-understand-the-lyrics','','','2015-04-06 23:30:29','2015-04-07 04:30:29','',0,'http://www.monicarenata.com/?p=990',0,'post','',0),(991,1,'2015-03-24 12:33:15','2015-03-24 17:33:15','It played on the radio every day\r\nOh how I hated that song\r\nSinging of something I didn’t know of\r\nSinging of this unknown\r\n\r\nThe words seemed to mean something to the singer\r\nBut to I they didn’t mean a thing\r\nJust a tune in the background\r\nA song that seems to always play\r\n\r\nBut today I was lost in the words\r\nAnd that made my past thoughts fade\r\nFor I understand the lyrics fully\r\nAnd now I am deathly afraid\r\n\r\nA flood of raw emotions\r\nIn my head it all makes sense\r\nBut this isn’t me at all\r\nWith my emotions I am on the fence\r\n\r\nI finally know what the lyrics mean\r\nThe words finally make sense\r\nThe beat goes along with your mannerisms\r\nAnd I’m overwhelmed with memories I can’t forget\r\n','','','inherit','open','open','','990-revision-v1','','','2015-03-24 12:33:15','2015-03-24 17:33:15','',990,'http://www.monicarenata.com/990-revision-v1/',0,'revision','',0),(993,1,'2015-04-06 23:14:18','2015-04-07 04:14:18','It played on the radio every day\r\nOh how I hated that song\r\nSinging of something I didn’t know of\r\nSinging of this unknown\r\n\r\nThe words seemed to mean something to the singer\r\nBut to I they didn’t mean a thing\r\nJust a tune in the background\r\nA song that seems to always play\r\n\r\nBut today I was lost in the words\r\nAnd that made my past thoughts fade\r\nFor I understand the lyrics fully\r\nAnd now I am deathly afraid\r\n\r\nA flood of raw emotions\r\nIn my head it all makes sense\r\nBut this isn’t me at all\r\nWith my emotions I am on the fence\r\n\r\nI finally know what the lyrics mean\r\nThe words finally make sense\r\nThe beat goes along with your mannerisms\r\nAnd I’m overwhelmed with memories I can’t forget\r\n\r\n \r\n\r\nBut the music is so beautiful\r\n\r\nYet the thoughts of failed loves I am consumed\r\n\r\nBut I finally understand the lyrics\r\n\r\nAnd each words draws me closer to you\r\n\r\n \r\n\r\n<em>\"One day you will realize why things never worked out in the past.... and that very day, those songs about love will make sense.\" -Monica Renata </em>','I Understand the Lyrics','','inherit','open','open','','990-revision-v1','','','2015-04-06 23:14:18','2015-04-07 04:14:18','',990,'http://www.monicarenata.com/990-revision-v1/',0,'revision','',0),(994,1,'2015-04-06 23:29:41','2015-04-07 04:29:41','It played on the radio every day\nOh how I hated that song\nSinging of something I didn’t know of\nSinging of this unknown\n\nThe words seemed to mean something to the singer\nBut to I they didn’t mean a thing\nJust a tune in the background\nA song that seems to always play\n\nBut today I was lost in the words\nAnd that made my past thoughts fade\nFor I understand the lyrics fully\nAnd now I am deathly afraid\n\nA flood of raw emotions\nIn my head it all makes sense\nBut this isn’t me at all\nWith my emotions I am on the fence\n\nI finally know what the lyrics mean\nThe words finally make sense\nThe beat goes along with your mannerisms\nAnd I’m overwhelmed with memories I can’t forget\n\nBut the music is so beautiful</p>\nYet the thoughts of failed loves I am consumed</p>\n: left;\">But I finally understand the lyrics</p>\n<p style=\"text-align: left;\">And each words draws me closer to you</p>\n \n\n<em>\"One day you will realize why things never worked out in the past.... and that very day, those songs about love will make sense.\" -Monica Renata </em>','I Understand the Lyrics','','inherit','open','open','','990-autosave-v1','','','2015-04-06 23:29:41','2015-04-07 04:29:41','',990,'http://www.monicarenata.com/990-autosave-v1/',0,'revision','',0),(995,1,'2015-04-06 23:30:29','2015-04-07 04:30:29','It played on the radio every day\r\nOh how I hated that song\r\nSinging of something I didn’t know of\r\nSinging of this unknown\r\n\r\nThe words seemed to mean something to the singer\r\nBut to I they didn’t mean a thing\r\nJust a tune in the background\r\nA song that seems to always play\r\n\r\nBut today I was lost in the words\r\nAnd that made my past thoughts fade\r\nFor I understand the lyrics fully\r\nAnd now I am deathly afraid\r\n\r\nA flood of raw emotions\r\nIn my head it all makes sense\r\nBut this isn’t me at all\r\nWith my emotions I am on the fence\r\n\r\nI finally know what the lyrics mean\r\nThe words finally make sense\r\nThe beat goes along with your mannerisms\r\nAnd I’m overwhelmed with memories I can’t forget\r\n\r\nBut the music is so beautiful\r\nYet the thoughts of failed loves I am consumed\r\nBut I finally understand the lyrics\r\nAnd each words draws me closer to you\r\n\r\n\r\n<em>\"One day you will realize why things never worked out in the past.... and that very day, those songs about love will make sense.\" -Monica Renata </em>','I Understand the Lyrics','','inherit','open','open','','990-revision-v1','','','2015-04-06 23:30:29','2015-04-07 04:30:29','',990,'http://www.monicarenata.com/990-revision-v1/',0,'revision','',0),(996,1,'2015-04-07 06:28:41','2015-04-07 11:28:41','You are the sun rising in the morning\r\n\r\nThe piece of butter on my toast\r\n\r\nFor you are one of my favorites in life\r\n\r\nWhat I value the most\r\n\r\n \r\n\r\nYou are the rainbow after the stormy rain\r\n\r\nThe last button on my coat\r\n\r\nFor you calm me in times of chaos\r\n\r\nAnd your kindness warms my soul\r\n\r\n \r\n\r\nBut of all the things you are\r\n\r\nAnd all that you are destined to be\r\n\r\nI’m so happy that you are YOU\r\n\r\nAnd I’m so happy you met me\r\n\r\n \r\n\r\nYou are the kindness in a world of hurt\r\n\r\nThe realist who can truly see\r\n\r\nThat life is truly what you make it\r\n\r\nThank you for showing that life to me\r\n\r\n \r\n\r\n<em>“Sometimes people walk into your life and make you realize that you need to start living. Do not hold on to what hurts you. Embrace life and appreciate each aspect of it, whether it be good are bad. Make every day a good day and encourage others to do the same. “ –Monica Renata</em>','You Are','','publish','open','open','','you-are','','','2015-04-07 06:28:41','2015-04-07 11:28:41','',0,'http://www.monicarenata.com/?p=996',0,'post','',0),(997,1,'2015-04-07 06:28:41','2015-04-07 11:28:41','You are the sun rising in the morning\r\n\r\nThe piece of butter on my toast\r\n\r\nFor you are one of my favorites in life\r\n\r\nWhat I value the most\r\n\r\n \r\n\r\nYou are the rainbow after the stormy rain\r\n\r\nThe last button on my coat\r\n\r\nFor you calm me in times of chaos\r\n\r\nAnd your kindness warms my soul\r\n\r\n \r\n\r\nBut of all the things you are\r\n\r\nAnd all that you are destined to be\r\n\r\nI’m so happy that you are YOU\r\n\r\nAnd I’m so happy you met me\r\n\r\n \r\n\r\nYou are the kindness in a world of hurt\r\n\r\nThe realist who can truly see\r\n\r\nThat life is truly what you make it\r\n\r\nThank you for showing that life to me\r\n\r\n \r\n\r\n<em>“Sometimes people walk into your life and make you realize that you need to start living. Do not hold on to what hurts you. Embrace life and appreciate each aspect of it, whether it be good are bad. Make every day a good day and encourage others to do the same. “ –Monica Renata</em>','You Are','','inherit','open','open','','996-revision-v1','','','2015-04-07 06:28:41','2015-04-07 11:28:41','',996,'http://www.monicarenata.com/996-revision-v1/',0,'revision','',0),(998,1,'2015-04-07 08:26:23','2015-04-07 13:26:23','If You Want Me\r\n\r\nBy: Monica Renata\r\n\r\n \r\n\r\nTo get to know a person\r\n\r\nTo find out where their thoughts lie\r\n\r\nIs the hardest thing to do in this world\r\n\r\nSince we judge with our eyes\r\n\r\n \r\n\r\nTo see me and have an interest sparked\r\n\r\nThat is a flattering thing indeed\r\n\r\nBut I want you to see more of me\r\n\r\nSee what your eyes can’t see\r\n\r\n \r\n\r\nIf you want me for my beauty\r\n\r\nI suggest you walk the other way\r\n\r\nFor there is more to me\r\n\r\nThan what you see today\r\n\r\n \r\n\r\nIf you want me for my beautiful eyes\r\n\r\nDon’t blame me if they so do hide\r\n\r\nFor those eyes you say are beautiful today\r\n\r\nMay be the ones you soon make cry\r\n\r\n \r\n\r\nFlesh seems to rule the world\r\n\r\nFlesh is all you see\r\n\r\nBut I want you to look deeper\r\n\r\nI want you to see me\r\n\r\n \r\n\r\nFor I am clothed in doubt\r\n\r\nBut your words could perhaps disrobe me\r\n\r\nJust saying “I’m pretty” makes me pout\r\n\r\nBecause it proves that you still don’t know ME\r\n\r\n \r\n\r\nAdmire my beautiful mind\r\n\r\nNot the flesh that soon will fade\r\n\r\nSpeak to my soul and touch it\r\n\r\nFor that touch will be more intense than the touch of my skin\r\n\r\n \r\n\r\nI want you to want me for what you see inside\r\n\r\nI want you to want me for my heart\r\n\r\nFor if you want me for what you see on the outside\r\n\r\nThat means you didn’t want me from the start','If You Want Me','','publish','open','open','','if-you-want-me','','','2015-04-07 08:26:23','2015-04-07 13:26:23','',0,'http://www.monicarenata.com/?p=998',0,'post','',0),(999,1,'2015-04-07 08:26:23','2015-04-07 13:26:23','If You Want Me\r\n\r\nBy: Monica Renata\r\n\r\n \r\n\r\nTo get to know a person\r\n\r\nTo find out where their thoughts lie\r\n\r\nIs the hardest thing to do in this world\r\n\r\nSince we judge with our eyes\r\n\r\n \r\n\r\nTo see me and have an interest sparked\r\n\r\nThat is a flattering thing indeed\r\n\r\nBut I want you to see more of me\r\n\r\nSee what your eyes can’t see\r\n\r\n \r\n\r\nIf you want me for my beauty\r\n\r\nI suggest you walk the other way\r\n\r\nFor there is more to me\r\n\r\nThan what you see today\r\n\r\n \r\n\r\nIf you want me for my beautiful eyes\r\n\r\nDon’t blame me if they so do hide\r\n\r\nFor those eyes you say are beautiful today\r\n\r\nMay be the ones you soon make cry\r\n\r\n \r\n\r\nFlesh seems to rule the world\r\n\r\nFlesh is all you see\r\n\r\nBut I want you to look deeper\r\n\r\nI want you to see me\r\n\r\n \r\n\r\nFor I am clothed in doubt\r\n\r\nBut your words could perhaps disrobe me\r\n\r\nJust saying “I’m pretty” makes me pout\r\n\r\nBecause it proves that you still don’t know ME\r\n\r\n \r\n\r\nAdmire my beautiful mind\r\n\r\nNot the flesh that soon will fade\r\n\r\nSpeak to my soul and touch it\r\n\r\nFor that touch will be more intense than the touch of my skin\r\n\r\n \r\n\r\nI want you to want me for what you see inside\r\n\r\nI want you to want me for my heart\r\n\r\nFor if you want me for what you see on the outside\r\n\r\nThat means you didn’t want me from the start','If You Want Me','','inherit','open','open','','998-revision-v1','','','2015-04-07 08:26:23','2015-04-07 13:26:23','',998,'http://www.monicarenata.com/998-revision-v1/',0,'revision','',0),(1001,1,'2015-04-09 08:11:18','2015-04-09 13:11:18','Keep it to yourself they say\r\n\r\nDon’t tell them how you feel\r\n\r\nAlways keep your emotions in\r\n\r\nAnd continue to swallow those pills\r\n\r\n \r\n\r\nA large dosage of feelings each time\r\n\r\nSwallow them with pride\r\n\r\nAnd no matter how they make you feel\r\n\r\nNever let them see you cry\r\n\r\n \r\n\r\nJust keep it to yourself they say\r\n\r\nNever reveal the true you\r\n\r\nFor the ones who say they truly care\r\n\r\nMake you doubt that they really do\r\n\r\n \r\n\r\n<em>“Sometimes we waste so much time trying to express ourselves to others who don’t really care to know the true essence of us. Remove those people from your life, and surround yourself with people who are interested in listening to your story.” –Monica Renata</em>','Keep It To Yourself','','publish','open','open','','keep-it-to-yourself','','','2015-04-09 08:11:18','2015-04-09 13:11:18','',0,'http://www.monicarenata.com/?p=1001',0,'post','',0),(1002,1,'2015-04-09 08:11:18','2015-04-09 13:11:18','Keep it to yourself they say\r\n\r\nDon’t tell them how you feel\r\n\r\nAlways keep your emotions in\r\n\r\nAnd continue to swallow those pills\r\n\r\n \r\n\r\nA large dosage of feelings each time\r\n\r\nSwallow them with pride\r\n\r\nAnd no matter how they make you feel\r\n\r\nNever let them see you cry\r\n\r\n \r\n\r\nJust keep it to yourself they say\r\n\r\nNever reveal the true you\r\n\r\nFor the ones who say they truly care\r\n\r\nMake you doubt that they really do\r\n\r\n \r\n\r\n<em>“Sometimes we waste so much time trying to express ourselves to others who don’t really care to know the true essence of us. Remove those people from your life, and surround yourself with people who are interested in listening to your story.” –Monica Renata</em>','Keep It To Yourself','','inherit','open','open','','1001-revision-v1','','','2015-04-09 08:11:18','2015-04-09 13:11:18','',1001,'http://www.monicarenata.com/1001-revision-v1/',0,'revision','',0),(1003,1,'2015-04-09 10:01:51','2015-04-09 15:01:51','Decisions make me nervous\r\n\r\nDecisions make me weak\r\n\r\nThey make me somewhat off balance\r\n\r\nA feeling of falling off my feet\r\n\r\n \r\n\r\nMy mind is boggled with choices\r\n\r\nChoices I wish I didn’t have to make\r\n\r\nIt is either this one or that one\r\n\r\nI have to choose my fate\r\n\r\n \r\n\r\nHeart pounding rapidly\r\n\r\nSweat falling like the spring rain\r\n\r\nI have to get over this feeling\r\n\r\nBut decisions make me go insane','Decisions Decisions','','publish','open','open','','decisions-decisions','','','2015-04-09 10:01:51','2015-04-09 15:01:51','',0,'http://www.monicarenata.com/?p=1003',0,'post','',0),(1004,1,'2015-04-09 10:01:51','2015-04-09 15:01:51','Decisions make me nervous\r\n\r\nDecisions make me weak\r\n\r\nThey make me somewhat off balance\r\n\r\nA feeling of falling off my feet\r\n\r\n \r\n\r\nMy mind is boggled with choices\r\n\r\nChoices I wish I didn’t have to make\r\n\r\nIt is either this one or that one\r\n\r\nI have to choose my fate\r\n\r\n \r\n\r\nHeart pounding rapidly\r\n\r\nSweat falling like the spring rain\r\n\r\nI have to get over this feeling\r\n\r\nBut decisions make me go insane','Decisions Decisions','','inherit','open','open','','1003-revision-v1','','','2015-04-09 10:01:51','2015-04-09 15:01:51','',1003,'http://www.monicarenata.com/1003-revision-v1/',0,'revision','',0),(1005,1,'2015-04-09 10:53:55','2015-04-09 15:53:55','I am afraid to have feelings\r\n\r\nBecause I learned that feelings hurt\r\n\r\nSo instead I smile everyday so brightly\r\n\r\nAnd pretend like I’ve never been hurt\r\n\r\n \r\n\r\nI hold in my joys and excitement\r\n\r\nI do not reveal my true pain\r\n\r\nFor in my mind to others I don’t matter\r\n\r\nAnd I’m the only one who cares about me\r\n\r\n \r\n\r\nMy heart may beat profusely\r\n\r\nIn my stomach may be butterflies\r\n\r\nMy eyes may be heavy\r\n\r\nFrom the tears I refuse to cry\r\n\r\n \r\n\r\nAnd inside I’m a stone cold soldier\r\n\r\nI pretend that nothing bothers me\r\n\r\nFeelings leave just a small pain in my chest\r\n\r\nThat will soon be relieved\r\n\r\n \r\n\r\nRelieved by things that really don’t matter\r\n\r\nRelieved by money and drives in my car\r\n\r\nBut no matter how much I pretend it doesn’t hurt\r\n\r\nIt always leaves a scar\r\n\r\n \r\n\r\nI am afraid to have feelings\r\n\r\nThat is an awfully frightening thing\r\n\r\nFor I’m so afraid to get hurt\r\n\r\nThat when it comes to love I don’t feel a single thing\r\n\r\n \r\n\r\n<em>“Don’t become so afraid to get your feelings hurt that that fear keeps you from being truly happy. Fear can deprive you of the simple things in life…\" –Monica Renata</em>','Afraid To Have Feelings','','publish','open','open','','afraid-to-have-feelings','','','2015-04-09 10:53:55','2015-04-09 15:53:55','',0,'http://www.monicarenata.com/?p=1005',0,'post','',0),(1006,1,'2015-04-09 10:53:55','2015-04-09 15:53:55','I am afraid to have feelings\r\n\r\nBecause I learned that feelings hurt\r\n\r\nSo instead I smile everyday so brightly\r\n\r\nAnd pretend like I’ve never been hurt\r\n\r\n \r\n\r\nI hold in my joys and excitement\r\n\r\nI do not reveal my true pain\r\n\r\nFor in my mind to others I don’t matter\r\n\r\nAnd I’m the only one who cares about me\r\n\r\n \r\n\r\nMy heart may beat profusely\r\n\r\nIn my stomach may be butterflies\r\n\r\nMy eyes may be heavy\r\n\r\nFrom the tears I refuse to cry\r\n\r\n \r\n\r\nAnd inside I’m a stone cold soldier\r\n\r\nI pretend that nothing bothers me\r\n\r\nFeelings leave just a small pain in my chest\r\n\r\nThat will soon be relieved\r\n\r\n \r\n\r\nRelieved by things that really don’t matter\r\n\r\nRelieved by money and drives in my car\r\n\r\nBut no matter how much I pretend it doesn’t hurt\r\n\r\nIt always leaves a scar\r\n\r\n \r\n\r\nI am afraid to have feelings\r\n\r\nThat is an awfully frightening thing\r\n\r\nFor I’m so afraid to get hurt\r\n\r\nThat when it comes to love I don’t feel a single thing\r\n\r\n \r\n\r\n<em>“Don’t become so afraid to get your feelings hurt that that fear keeps you from being truly happy. Fear can deprive you of the simple things in life…\" –Monica Renata</em>','Afraid To Have Feelings','','inherit','open','open','','1005-revision-v1','','','2015-04-09 10:53:55','2015-04-09 15:53:55','',1005,'http://www.monicarenata.com/1005-revision-v1/',0,'revision','',0),(1007,1,'2015-04-11 23:17:42','2015-04-12 04:17:42','I called to say I love you\r\n\r\nI called to say hello\r\n\r\nI called to hear the calm in your voice\r\n\r\nI called because my heart you stole\r\n\r\n \r\n\r\nPure and genuine conversations\r\n\r\nSpeaking with a smile upon my face\r\n\r\nI just called to say I love you\r\n\r\nAnd I\'m so happy you feel the same','I called','','publish','open','open','','i-called','','','2015-04-11 23:36:41','2015-04-12 04:36:41','',0,'http://www.monicarenata.com/?p=1007',0,'post','',0),(1008,1,'2015-04-11 23:17:42','2015-04-12 04:17:42','<p>I called to say I love you</p><p>I called to say hello</p><p>I called to hear the calm in your voice</p><p>I called because of my heart you stole</p><p> </p><p>Pure and genuine conversations</p><p>Speaking with a smile upon my face</p><p>I just called to say I love you</p><p>And I\'m so happy you feel the same</p>','I called','','inherit','open','open','','1007-revision-v1','','','2015-04-11 23:17:42','2015-04-12 04:17:42','',1007,'http://www.monicarenata.com/1007-revision-v1/',0,'revision','',0),(1009,1,'2015-04-11 23:36:41','2015-04-12 04:36:41','I called to say I love you\r\n\r\nI called to say hello\r\n\r\nI called to hear the calm in your voice\r\n\r\nI called because my heart you stole\r\n\r\n \r\n\r\nPure and genuine conversations\r\n\r\nSpeaking with a smile upon my face\r\n\r\nI just called to say I love you\r\n\r\nAnd I\'m so happy you feel the same','I called','','inherit','open','open','','1007-revision-v1','','','2015-04-11 23:36:41','2015-04-12 04:36:41','',1007,'http://www.monicarenata.com/1007-revision-v1/',0,'revision','',0),(1010,1,'2015-04-11 23:57:00','2015-04-12 04:57:00','You are poor today just as yesterday\r\n\r\nAnd you will be forever more\r\n\r\nLacking in what matters\r\n\r\nLacking in what evolves your soul\r\n\r\n \r\n\r\nYou are poor today just as yesterday\r\n\r\nAnd yet you continue to smile\r\n\r\nSmile because of the material things\r\n\r\nSmile even though inside you die\r\n\r\n \r\n\r\nYou are poor but have lots of money\r\n\r\nYou live in a nice big house\r\n\r\nYou are envied by all of your neighbors\r\n\r\nYet through your two windows your soul shouts\r\n\r\n \r\n\r\nYour eyes say you aren\'t happy\r\n\r\nYour eyes say what you have isn\'t enough\r\n\r\nYou are rich when it comes to money\r\n\r\nBut in life you are poor as dirt\r\n\r\n \r\n\r\nWhat you want you cannot buy\r\n\r\nAnd what you can buy you do not want\r\n\r\nSo you try to compensate for this lack of funds\r\n\r\nBut enough will never truly be enough\r\n\r\n \r\n\r\nYou are poor today just as yesterday\r\n\r\nAnd you will continue to be\r\n\r\nIf you decide to value what doesn\'t matter\r\n\r\nHappy you will never be\r\n\r\n \r\n\r\n<em>\"If you don\'t value the right things in life you will forever be poor..\" -Monica Renata </em>','Poor','','publish','open','open','','poor','','','2015-04-11 23:57:00','2015-04-12 04:57:00','',0,'http://www.monicarenata.com/?p=1010',0,'post','',0),(1011,1,'2015-04-11 23:57:00','2015-04-12 04:57:00','You are poor today just as yesterday\r\n\r\nAnd you will be forever more\r\n\r\nLacking in what matters\r\n\r\nLacking in what evolves your soul\r\n\r\n \r\n\r\nYou are poor today just as yesterday\r\n\r\nAnd yet you continue to smile\r\n\r\nSmile because of the material things\r\n\r\nSmile even though inside you die\r\n\r\n \r\n\r\nYou are poor but have lots of money\r\n\r\nYou live in a nice big house\r\n\r\nYou are envied by all of your neighbors\r\n\r\nYet through your two windows your soul shouts\r\n\r\n \r\n\r\nYour eyes say you aren\'t happy\r\n\r\nYour eyes say what you have isn\'t enough\r\n\r\nYou are rich when it comes to money\r\n\r\nBut in life you are poor as dirt\r\n\r\n \r\n\r\nWhat you want you cannot buy\r\n\r\nAnd what you can buy you do not want\r\n\r\nSo you try to compensate for this lack of funds\r\n\r\nBut enough will never truly be enough\r\n\r\n \r\n\r\nYou are poor today just as yesterday\r\n\r\nAnd you will continue to be\r\n\r\nIf you decide to value what doesn\'t matter\r\n\r\nHappy you will never be\r\n\r\n \r\n\r\n<em>\"If you don\'t value the right things in life you will forever be poor..\" -Monica Renata </em>','Poor','','inherit','open','open','','1010-revision-v1','','','2015-04-11 23:57:00','2015-04-12 04:57:00','',1010,'http://www.monicarenata.com/1010-revision-v1/',0,'revision','',0),(1012,1,'2015-04-13 07:23:58','2015-04-13 12:23:58','It has been so long since I had one of those long blog posts where I just talk… And you know what, today I actually feel like talking..lol.\r\n\r\n \r\n\r\nI guess the topic of today is <strong><em>don’t let the small things in life get you down</em></strong>. Don’t let life get you down PERIOD!\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Sure bad things happen.</em></p>\r\n<p style=\"text-align: center;\"><em>Sure things don’t go your way!</em></p>\r\n<p style=\"text-align: center;\"><em>But that is life.</em></p>\r\n<p style=\"text-align: center;\"></p>\r\nI know that at times it can be so painfully hard to be positive in such a negative world but JUST TRY TO BE POSITIVE! Your attitude actually has the ability to shape your entire day. You know how many days you practically wasted being in a negative funk? Think about it, you know the days in which you were just totally bummed with life? Those days when you just sat at home, alone, in the dark, sulking and having that “woe is me” attitude? What a total waste!!!!!!!! You could have been doing something fun! You could have gone out dancing! You could have gone out with friends! You could have sat on a beach and enjoyed the beautiful weather! You could have been doing so many things that would have made you smile!!!! BUT, instead, you decided to drown in your sorrow….. and at the end of the day, nothing good came from that.\r\n\r\n \r\n\r\nI guess to sum this up, all I want to say is enjoy your life and don’t let things get you down. It’s okay to cry and be down every now and then but don’t let those feelings consume you. Life is too short to be down all the time.\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Life is too short to not enjoy it!</em></p>\r\n<p style=\"text-align: center;\"><em>Smile more!</em></p>\r\n<p style=\"text-align: center;\"><em>Do what makes you happy!</em></p>\r\n<p style=\"text-align: center;\"><em>Enjoy and Love each second of your life!</em></p>\r\n<p style=\"text-align: center;\"></p>\r\nI know it sounds so simple….and yet so hard at the same time. But trust me; life is too short to sweat the small stuff. <strong><em>The days I regret the most were the days I didn\'t live</em></strong>. The days I didn\'t live were the days I decided to let sadness overcome me. Those days I was just there...and I don\'t want anyone to be that way because it was a total waste!\r\n\r\n \r\n\r\nSo do what makes you happy! Have a positive outlook on life and LIVE. Sure bad things happen, but you have to remember that even after the nastiest thunderstorm, the sun still comes out and shine. JUST LIVE! And don\'t sweat the small stuff because in the end it isn\'t worth it.\r\n\r\n \r\n\r\nHave a great day!!!\r\n\r\n \r\n\r\n<strong><em>-Monica Renata</em></strong>','Daily Motivation: Don\'t Sweat The Small Stuff','','publish','open','open','','daily-motivation-dont-sweat-the-small-stuff','','','2015-04-13 07:23:58','2015-04-13 12:23:58','',0,'http://www.monicarenata.com/?p=1012',0,'post','',0),(1013,1,'2015-04-13 07:23:58','2015-04-13 12:23:58','It has been so long since I had one of those long blog posts where I just talk… And you know what, today I actually feel like talking..lol.\r\n\r\n \r\n\r\nI guess the topic of today is <strong><em>don’t let the small things in life get you down</em></strong>. Don’t let life get you down PERIOD!\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Sure bad things happen.</em></p>\r\n<p style=\"text-align: center;\"><em>Sure things don’t go your way!</em></p>\r\n<p style=\"text-align: center;\"><em>But that is life.</em></p>\r\n<p style=\"text-align: center;\"></p>\r\nI know that at times it can be so painfully hard to be positive in such a negative world but JUST TRY TO BE POSITIVE! Your attitude actually has the ability to shape your entire day. You know how many days you practically wasted being in a negative funk? Think about it, you know the days in which you were just totally bummed with life? Those days when you just sat at home, alone, in the dark, sulking and having that “woe is me” attitude? What a total waste!!!!!!!! You could have been doing something fun! You could have gone out dancing! You could have gone out with friends! You could have sat on a beach and enjoyed the beautiful weather! You could have been doing so many things that would have made you smile!!!! BUT, instead, you decided to drown in your sorrow….. and at the end of the day, nothing good came from that.\r\n\r\n \r\n\r\nI guess to sum this up, all I want to say is enjoy your life and don’t let things get you down. It’s okay to cry and be down every now and then but don’t let those feelings consume you. Life is too short to be down all the time.\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Life is too short to not enjoy it!</em></p>\r\n<p style=\"text-align: center;\"><em>Smile more!</em></p>\r\n<p style=\"text-align: center;\"><em>Do what makes you happy!</em></p>\r\n<p style=\"text-align: center;\"><em>Enjoy and Love each second of your life!</em></p>\r\n<p style=\"text-align: center;\"></p>\r\nI know it sounds so simple….and yet so hard at the same time. But trust me; life is too short to sweat the small stuff. <strong><em>The days I regret the most were the days I didn\'t live</em></strong>. The days I didn\'t live were the days I decided to let sadness overcome me. Those days I was just there...and I don\'t want anyone to be that way because it was a total waste!\r\n\r\n \r\n\r\nSo do what makes you happy! Have a positive outlook on life and LIVE. Sure bad things happen, but you have to remember that even after the nastiest thunderstorm, the sun still comes out and shine. JUST LIVE! And don\'t sweat the small stuff because in the end it isn\'t worth it.\r\n\r\n \r\n\r\nHave a great day!!!\r\n\r\n \r\n\r\n<strong><em>-Monica Renata</em></strong>','Daily Motivation: Don\'t Sweat The Small Stuff','','inherit','open','open','','1012-revision-v1','','','2015-04-13 07:23:58','2015-04-13 12:23:58','',1012,'http://www.monicarenata.com/1012-revision-v1/',0,'revision','',0),(1015,1,'2015-04-14 07:13:58','2015-04-14 12:13:58','Time stops for no man\r\n\r\nThat’s what people say\r\n\r\nYet I stop my time for you\r\n\r\nAnd wait for you each day\r\n\r\n \r\n\r\nTime stops for no one\r\n\r\nTime doesn’t stop for me\r\n\r\nYet I place you on a pedestal\r\n\r\nAnd make sure my time is free\r\n\r\n \r\n\r\nBut what’s the point of wasting\r\n\r\nMy time to align with yours?\r\n\r\nWhat’s the point of waiting\r\n\r\nFor your time to collide with mines once more\r\n\r\n \r\n\r\nTime stops for no man\r\n\r\nThat’s what people always say\r\n\r\nSo I have to stop pausing my life\r\n\r\nJust so you could be with me\r\n\r\n \r\n\r\n<em>“Don’t stop living your life just so someone can easily fit into it.” –Monica Renata</em>','Time Stops','','publish','open','open','','time-stops','','','2015-04-14 07:13:58','2015-04-14 12:13:58','',0,'http://www.monicarenata.com/?p=1015',0,'post','',0),(1016,1,'2015-04-14 07:13:58','2015-04-14 12:13:58','Time stops for no man\r\n\r\nThat’s what people say\r\n\r\nYet I stop my time for you\r\n\r\nAnd wait for you each day\r\n\r\n \r\n\r\nTime stops for no one\r\n\r\nTime doesn’t stop for me\r\n\r\nYet I place you on a pedestal\r\n\r\nAnd make sure my time is free\r\n\r\n \r\n\r\nBut what’s the point of wasting\r\n\r\nMy time to align with yours?\r\n\r\nWhat’s the point of waiting\r\n\r\nFor your time to collide with mines once more\r\n\r\n \r\n\r\nTime stops for no man\r\n\r\nThat’s what people always say\r\n\r\nSo I have to stop pausing my life\r\n\r\nJust so you could be with me\r\n\r\n \r\n\r\n<em>“Don’t stop living your life just so someone can easily fit into it.” –Monica Renata</em>','Time Stops','','inherit','open','open','','1015-revision-v1','','','2015-04-14 07:13:58','2015-04-14 12:13:58','',1015,'http://www.monicarenata.com/1015-revision-v1/',0,'revision','',0),(1018,1,'2015-04-23 15:30:31','2015-04-23 20:30:31','They wanted you to stand up\r\n\r\nThey wanted you to speak\r\n\r\nBut instead you decided to ignore\r\n\r\nAnd not rise up to your feet\r\n\r\n \r\n\r\nThey wanted you to prosper\r\n\r\nThey wanted you to soar\r\n\r\nYet you sit down complacently\r\n\r\nAnd lead your sons behind those bars\r\n\r\n \r\n\r\nTo say you want a change\r\n\r\nYet decide not to change a thing\r\n\r\nTo say you want better\r\n\r\nYet still not change a thing\r\n\r\n \r\n\r\nBlaming everyone for your problems\r\n\r\nBut not looking within\r\n\r\nWaiting for things to be offered\r\n\r\nAnd when you don’t get it you blame “them”\r\n\r\n \r\n\r\nYou will keep up with the Kardashians\r\n\r\nBut won’t keep up with your local news\r\n\r\nYou will let those in your neighborhood kill\r\n\r\nBut start a riot when it finally makes the national news\r\n\r\n \r\n\r\nValuing what doesn’t matter\r\n\r\nKilling over a pair of shoes\r\n\r\nNot truly valuing family\r\n\r\nChildren growing up too soon\r\n\r\n \r\n\r\nThey wanted us to prosper\r\n\r\nThey wanted us to see\r\n\r\nThey fought for us to have so many privileges\r\n\r\nThey died to make a future for you and me\r\n\r\n \r\n\r\nYet..\r\n\r\nSo many of us say voting doesn’t matter\r\n\r\nSo many of us say education doesn’t mean a thing\r\n\r\nSo many of us don’t value family\r\n\r\nYet so many speak of wanting a positive change\r\n\r\n \r\n\r\nOur ancestors went through unimaginable things\r\n\r\nSo many even lost their lives\r\n\r\nYet some rather live like they are in episodes of “Love and Hip Hop”\r\n\r\nThan to truly open their eyes\r\n\r\n \r\n\r\nWe are trying to impress each other\r\n\r\nBut that only keeps us down\r\n\r\nWe will spend thousands on designer clothes, hair, and shoes\r\n\r\nBut say education cost “too high”\r\n\r\n \r\n\r\nWe will criticize the ones who are trying to be better\r\n\r\nAnd say they are acting “too good”\r\n\r\nWe gun down our own brothers and sisters\r\n\r\nYet never say anything to cops because to be a snitch is a disrespect to the hood\r\n\r\n \r\n\r\nWe create a separation between us\r\n\r\nWe ostracize others because of the tone of their black skin\r\n\r\nWe say it is cute to be a thug\r\n\r\nAnd a big booty girl is what females should aim to be\r\n\r\n \r\n\r\nAnd the ones who speak up\r\n\r\nWho says WE should be more and do more than just BE\r\n\r\nAre the ones so many dislike\r\n\r\nThey say “Being black is what you don’t know how to be”\r\n\r\n \r\n\r\nThey wanted you to stand up\r\n\r\nThey wanted you to speak\r\n\r\nBut instead you decided to ignore\r\n\r\nAnd not rise up to your feet\r\n\r\n \r\n\r\nThey wanted you to prosper\r\n\r\nThey wanted you to soar\r\n\r\nYet you sit down complacently\r\n\r\nAnd lead your sons behind those bars\r\n\r\n \r\n\r\nIt is people like you\r\n\r\nWho crush the dreams of our youth\r\n\r\nAnd allow them to fall behind\r\n\r\n \r\n\r\nIt is people like you\r\n\r\nWho hold us back\r\n\r\nAnd make the world think we feel entitled\r\n\r\n \r\n\r\nPeople like you\r\n\r\nWho had opportunities but threw them away each time\r\n\r\nPeople like you who lead our youth to jail cells\r\n\r\nInstead of cultivating their minds\r\n\r\n \r\n\r\nPeople like you applaud the big booty hoe\r\n\r\nWhile disregarding the working college girl\r\n\r\nPeople like you praise the thug in the hood\r\n\r\nWhile telling the educated black male he no longer belongs\r\n\r\n \r\n\r\nIt is Black People Like You\r\n\r\nWho disappoint our ancestors and make all of their efforts be in vain…\r\n\r\nBlack People Like You\r\n\r\nWhen will you finally change…..','B.P.L.Y','','publish','open','open','','b-p-l-y','','','2015-04-23 15:30:31','2015-04-23 20:30:31','',0,'http://www.monicarenata.com/?p=1018',0,'post','',0),(1019,1,'2015-04-23 15:30:31','2015-04-23 20:30:31','They wanted you to stand up\r\n\r\nThey wanted you to speak\r\n\r\nBut instead you decided to ignore\r\n\r\nAnd not rise up to your feet\r\n\r\n \r\n\r\nThey wanted you to prosper\r\n\r\nThey wanted you to soar\r\n\r\nYet you sit down complacently\r\n\r\nAnd lead your sons behind those bars\r\n\r\n \r\n\r\nTo say you want a change\r\n\r\nYet decide not to change a thing\r\n\r\nTo say you want better\r\n\r\nYet still not change a thing\r\n\r\n \r\n\r\nBlaming everyone for your problems\r\n\r\nBut not looking within\r\n\r\nWaiting for things to be offered\r\n\r\nAnd when you don’t get it you blame “them”\r\n\r\n \r\n\r\nYou will keep up with the Kardashians\r\n\r\nBut won’t keep up with your local news\r\n\r\nYou will let those in your neighborhood kill\r\n\r\nBut start a riot when it finally makes the national news\r\n\r\n \r\n\r\nValuing what doesn’t matter\r\n\r\nKilling over a pair of shoes\r\n\r\nNot truly valuing family\r\n\r\nChildren growing up too soon\r\n\r\n \r\n\r\nThey wanted us to prosper\r\n\r\nThey wanted us to see\r\n\r\nThey fought for us to have so many privileges\r\n\r\nThey died to make a future for you and me\r\n\r\n \r\n\r\nYet..\r\n\r\nSo many of us say voting doesn’t matter\r\n\r\nSo many of us say education doesn’t mean a thing\r\n\r\nSo many of us don’t value family\r\n\r\nYet so many speak of wanting a positive change\r\n\r\n \r\n\r\nOur ancestors went through unimaginable things\r\n\r\nSo many even lost their lives\r\n\r\nYet some rather live like they are in episodes of “Love and Hip Hop”\r\n\r\nThan to truly open their eyes\r\n\r\n \r\n\r\nWe are trying to impress each other\r\n\r\nBut that only keeps us down\r\n\r\nWe will spend thousands on designer clothes, hair, and shoes\r\n\r\nBut say education cost “too high”\r\n\r\n \r\n\r\nWe will criticize the ones who are trying to be better\r\n\r\nAnd say they are acting “too good”\r\n\r\nWe gun down our own brothers and sisters\r\n\r\nYet never say anything to cops because to be a snitch is a disrespect to the hood\r\n\r\n \r\n\r\nWe create a separation between us\r\n\r\nWe ostracize others because of the tone of their black skin\r\n\r\nWe say it is cute to be a thug\r\n\r\nAnd a big booty girl is what females should aim to be\r\n\r\n \r\n\r\nAnd the ones who speak up\r\n\r\nWho says WE should be more and do more than just BE\r\n\r\nAre the ones so many dislike\r\n\r\nThey say “Being black is what you don’t know how to be”\r\n\r\n \r\n\r\nThey wanted you to stand up\r\n\r\nThey wanted you to speak\r\n\r\nBut instead you decided to ignore\r\n\r\nAnd not rise up to your feet\r\n\r\n \r\n\r\nThey wanted you to prosper\r\n\r\nThey wanted you to soar\r\n\r\nYet you sit down complacently\r\n\r\nAnd lead your sons behind those bars\r\n\r\n \r\n\r\nIt is people like you\r\n\r\nWho crush the dreams of our youth\r\n\r\nAnd allow them to fall behind\r\n\r\n \r\n\r\nIt is people like you\r\n\r\nWho hold us back\r\n\r\nAnd make the world think we feel entitled\r\n\r\n \r\n\r\nPeople like you\r\n\r\nWho had opportunities but threw them away each time\r\n\r\nPeople like you who lead our youth to jail cells\r\n\r\nInstead of cultivating their minds\r\n\r\n \r\n\r\nPeople like you applaud the big booty hoe\r\n\r\nWhile disregarding the working college girl\r\n\r\nPeople like you praise the thug in the hood\r\n\r\nWhile telling the educated black male he no longer belongs\r\n\r\n \r\n\r\nIt is Black People Like You\r\n\r\nWho disappoint our ancestors and make all of their efforts be in vain…\r\n\r\nBlack People Like You\r\n\r\nWhen will you finally change…..','B.P.L.Y','','inherit','open','open','','1018-revision-v1','','','2015-04-23 15:30:31','2015-04-23 20:30:31','',1018,'http://www.monicarenata.com/1018-revision-v1/',0,'revision','',0),(1020,1,'2015-04-27 13:14:37','2015-04-27 18:14:37','Conscientious Carla\r\n\r\nAlways wants to do what is right\r\n\r\nShe goes to work diligently\r\n\r\nAnd never keeps her goals out of sight\r\n\r\n \r\n\r\nConscientious Carla\r\n\r\nShe is a hard worker indeed\r\n\r\nAlways staying up late at night and studying\r\n\r\nSo in each area of life she can succeed','Conscientious Carla','','publish','open','open','','conscientious-carla','','','2015-04-27 13:14:37','2015-04-27 18:14:37','',0,'http://www.monicarenata.com/?p=1020',0,'post','',0),(1021,1,'2015-04-27 13:14:37','2015-04-27 18:14:37','Conscientious Carla\r\n\r\nAlways wants to do what is right\r\n\r\nShe goes to work diligently\r\n\r\nAnd never keeps her goals out of sight\r\n\r\n \r\n\r\nConscientious Carla\r\n\r\nShe is a hard worker indeed\r\n\r\nAlways staying up late at night and studying\r\n\r\nSo in each area of life she can succeed','Conscientious Carla','','inherit','open','open','','1020-revision-v1','','','2015-04-27 13:14:37','2015-04-27 18:14:37','',1020,'http://www.monicarenata.com/1020-revision-v1/',0,'revision','',0),(1022,1,'2015-04-27 13:22:30','2015-04-27 18:22:30','I am brave beyond imagine\r\n\r\nSo brave in other people’s eyes\r\n\r\nI do not fear to take a chance\r\n\r\nI do not fear to try\r\n\r\n \r\n\r\nI have more courage than a lion\r\n\r\nI demand respect like royalty\r\n\r\nIn troubled storms I shall not falter\r\n\r\nOn the outside I am who I always wanted to be\r\n\r\n \r\n\r\nI am brave beyond imagine\r\n\r\nI am so brave in other people’s eyes\r\n\r\nYet my one fear and downfall\r\n\r\nIs what others cannot see with their eyes\r\n\r\n \r\n\r\nI’m afraid of what gives me life\r\n\r\nI am afraid to allow it to fully beat\r\n\r\nI’m afraid to break this delicate part of me\r\n\r\nI’m afraid to give others a piece\r\n\r\n \r\n\r\nOn the outside I seem so courageous\r\n\r\nBut yet I am a coward indeed\r\n\r\nSo afraid to get my heart broken\r\n\r\nThat my true feelings I do not speak\r\n\r\n \r\n\r\nI am brave beyond imagine\r\n\r\nThat is what other people see\r\n\r\nBut my greatest fear is my own heart\r\n\r\nI’m afraid to let it truly beat\r\n\r\n \r\n\r\n<em>\"It is always matters of the heart that reveal our true weakness.......\" -Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Brave Beyond Imagine','','publish','open','open','','brave-beyond-imagine','','','2015-04-27 13:22:30','2015-04-27 18:22:30','',0,'http://www.monicarenata.com/?p=1022',0,'post','',1),(1023,1,'2015-04-27 13:22:30','2015-04-27 18:22:30','I am brave beyond imagine\r\n\r\nSo brave in other people’s eyes\r\n\r\nI do not fear to take a chance\r\n\r\nI do not fear to try\r\n\r\n \r\n\r\nI have more courage than a lion\r\n\r\nI demand respect like royalty\r\n\r\nIn troubled storms I shall not falter\r\n\r\nOn the outside I am who I always wanted to be\r\n\r\n \r\n\r\nI am brave beyond imagine\r\n\r\nI am so brave in other people’s eyes\r\n\r\nYet my one fear and downfall\r\n\r\nIs what others cannot see with their eyes\r\n\r\n \r\n\r\nI’m afraid of what gives me life\r\n\r\nI am afraid to allow it to fully beat\r\n\r\nI’m afraid to break this delicate part of me\r\n\r\nI’m afraid to give others a piece\r\n\r\n \r\n\r\nOn the outside I seem so courageous\r\n\r\nBut yet I am a coward indeed\r\n\r\nSo afraid to get my heart broken\r\n\r\nThat my true feelings I do not speak\r\n\r\n \r\n\r\nI am brave beyond imagine\r\n\r\nThat is what other people see\r\n\r\nBut my greatest fear is my own heart\r\n\r\nI’m afraid to let it truly beat\r\n\r\n \r\n\r\n<em>\"It is always matters of the heart that reveal our true weakness.......\" -Monica Renata</em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Brave Beyond Imagine','','inherit','open','open','','1022-revision-v1','','','2015-04-27 13:22:30','2015-04-27 18:22:30','',1022,'http://www.monicarenata.com/1022-revision-v1/',0,'revision','',0),(1024,1,'2015-04-27 13:51:36','2015-04-27 18:51:36','Holding on to hurtful words\r\n\r\nNever letting go\r\n\r\nRefusing to see the beauty around you\r\n\r\nAllowing your heart to grow cold\r\n\r\n \r\n\r\nDoubting all of your future blessings\r\n\r\nRefusing to just forgive\r\n\r\nLiving a life carrying so much burden\r\n\r\nProbably driving yourself insane\r\n\r\n \r\n\r\nTwenty-four hours in a day wasted\r\n\r\nYou are even angry in your sleep\r\n\r\nNow are you really living?\r\n\r\nIs this how you want your life to be?\r\n\r\n \r\n\r\nLet go of all those negatives in life\r\n\r\nLet go of all that hurt\r\n\r\nSee the beauty in everything around you\r\n\r\nUnthaw your heart which was once cold\r\n\r\n \r\n\r\nBe hopeful that your blessings are coming\r\n\r\nForgive and just move on\r\n\r\nCarry only joy on your should\r\n\r\nAnd most importantly don’t forget to live\r\n\r\n \r\n\r\nThere are twenty-four hours in your day\r\n\r\nGo to bed with happy thoughts\r\n\r\nThen you will start living\r\n\r\nThen your life will be better than you ever thought\r\n\r\n \r\n\r\nFor life doesn’t go on forever\r\n\r\nIt may sometimes be shorter than we eventually though\r\n\r\nSo live each moment to your fullest\r\n\r\nAnd stop dwelling on negative thoughts\r\n\r\n \r\n\r\n<i>\"Don\'t become so consumed with the negatives in your life that you forget to live...\" -Monica Renata </i>','Live Life','','publish','open','open','','live-life','','','2015-04-27 13:51:36','2015-04-27 18:51:36','',0,'http://www.monicarenata.com/?p=1024',0,'post','',0),(1025,1,'2015-04-27 13:51:36','2015-04-27 18:51:36','Holding on to hurtful words\r\n\r\nNever letting go\r\n\r\nRefusing to see the beauty around you\r\n\r\nAllowing your heart to grow cold\r\n\r\n \r\n\r\nDoubting all of your future blessings\r\n\r\nRefusing to just forgive\r\n\r\nLiving a life carrying so much burden\r\n\r\nProbably driving yourself insane\r\n\r\n \r\n\r\nTwenty-four hours in a day wasted\r\n\r\nYou are even angry in your sleep\r\n\r\nNow are you really living?\r\n\r\nIs this how you want your life to be?\r\n\r\n \r\n\r\nLet go of all those negatives in life\r\n\r\nLet go of all that hurt\r\n\r\nSee the beauty in everything around you\r\n\r\nUnthaw your heart which was once cold\r\n\r\n \r\n\r\nBe hopeful that your blessings are coming\r\n\r\nForgive and just move on\r\n\r\nCarry only joy on your should\r\n\r\nAnd most importantly don’t forget to live\r\n\r\n \r\n\r\nThere are twenty-four hours in your day\r\n\r\nGo to bed with happy thoughts\r\n\r\nThen you will start living\r\n\r\nThen your life will be better than you ever thought\r\n\r\n \r\n\r\nFor life doesn’t go on forever\r\n\r\nIt may sometimes be shorter than we eventually though\r\n\r\nSo live each moment to your fullest\r\n\r\nAnd stop dwelling on negative thoughts\r\n\r\n \r\n\r\n<i>\"Don\'t become so consumed with the negatives in your life that you forget to live...\" -Monica Renata </i>','Live Life','','inherit','open','open','','1024-revision-v1','','','2015-04-27 13:51:36','2015-04-27 18:51:36','',1024,'http://www.monicarenata.com/1024-revision-v1/',0,'revision','',0),(1026,1,'2015-04-30 10:38:24','2015-04-30 15:38:24','You cannot see me\r\n\r\nStanding in front of you\r\n\r\nHair, lips, eyes, flesh\r\n\r\nYou see but you don’t\r\n\r\n \r\n\r\nEyes focused on aspects of the physical\r\n\r\nBut this does not exist\r\n\r\nIt is real\r\n\r\nBut then again it isn’t real\r\n\r\n \r\n\r\nLook deep\r\n\r\nThen you will see\r\n\r\nLook further\r\n\r\nAnd your eyes will surpass the flesh curtain\r\n\r\n \r\n\r\nYou can’t see the kindness in my heart\r\n\r\nOr the true beauty I am and have potential to be\r\n\r\nYou’ll never know the warmth of my soul\r\n\r\nOr the true emotion within me\r\n\r\n \r\n\r\nStanding in front of you\r\n\r\nYet still you can’t truly see me\r\n\r\nIf flesh is all you see\r\n\r\nThen you do not see me\r\n\r\n \r\n\r\n<em>“If flesh is all you see, then you do not see me” –Monica Renata</em>','FLESH: You don\'t see me','','publish','open','open','','flesh-you-dont-see-me','','','2015-04-30 10:53:32','2015-04-30 15:53:32','',0,'http://www.monicarenata.com/?p=1026',0,'post','',0),(1027,1,'2015-04-30 10:38:24','2015-04-30 15:38:24','You cannot see me\r\n\r\nStanding in front of you\r\n\r\nHair, lips, eyes, flesh\r\n\r\nYou see but you don’t\r\n\r\n \r\n\r\nEyes focused on aspects of the physical\r\n\r\nBut this does not exist\r\n\r\nIt is real\r\n\r\nBut then again it isn’t real\r\n\r\n \r\n\r\nLook deep\r\n\r\nThen you will see\r\n\r\nLook further\r\n\r\nAnd your eyes will surpass the flesh curtain\r\n\r\n \r\n\r\nYou can’t see the kindness in my heart\r\n\r\nOr the true beauty I am and have potential to be\r\n\r\nYou’ll never know the warmth of my soul\r\n\r\nOr the true emotion within me\r\n\r\n \r\n\r\nStanding in front of you\r\n\r\nYet still you can’t truly see me\r\n\r\nIf flesh is all you see\r\n\r\nThen you do not see me\r\n\r\n \r\n\r\n<em>“If flesh is all you see, then you do not see me” –Monica Renata</em>','FLESH: You don\'t see me','','inherit','open','open','','1026-revision-v1','','','2015-04-30 10:38:24','2015-04-30 15:38:24','',1026,'http://www.monicarenata.com/1026-revision-v1/',0,'revision','',0),(1029,1,'2015-05-01 12:34:22','2015-05-01 17:34:22','<p style=\"text-align: center;\"><em>Happiness is in your hands</em></p>\r\n<p style=\"text-align: center;\"><em>It is in no other place</em></p>\r\n<p style=\"text-align: center;\"><em>For you decide its destiny</em></p>\r\n<p style=\"text-align: center;\"><em>YOU decide its fate</em></p>\r\n \r\n\r\nFor so long, I have seen so many people unhappy. For so long, I have had others vent to me about why they aren’t happy. I usually listen calmly and help them assess the situation without voicing my opinion. I watch them cry, go into hysterics, scream, you name it…. And then they ask me how do I overcome situations.\r\n\r\n \r\n\r\n<em>“How did you get over someone mistreating you?”</em>\r\n<p style=\"text-align: center;\"><em>“How do you let it not get to you when others are mean?”</em></p>\r\n<p style=\"text-align: right;\"><em>“Why do you hold grudges!?”</em></p>\r\n<em>“I would hate them forever if I were you!! You should hate them!”</em>\r\n<p style=\"text-align: center;\"><em>“So you aren’t sad about it?”</em></p>\r\n<em> </em>\r\n\r\nI usually laugh. I’m not insulted by the questions at all, but I just say these few words, “<strong><em>I have learned that life is too short to be anything but happy…and I truly believe that and I wish to be happy.”</em></strong> When you realize that, life becomes so much easier. Begin to value your time and your happiness. Stop wasting time on people or things that don’t make you happy. More than likely, if you waste your time on something that wasn’t gratifying it will cause sadness in your life. For time is something precious to us and we cannot get back. When we feel as though it is truly wasted we are sad. So why do you waste your time being upset when wasted time usually leads to a lack of happiness??\r\n\r\n \r\n\r\nLife happens. Things don’t go right all of the time. You run into really nice people and also really mean people, but you have to learn how to value your emotions and time above all. Never allow people in your life who take away from your happiness. If you feel as though hanging with someone or participating in an activity is a waste of time, do not engage. Wasted time is something we can never get back, and this reality saddens us. ….that’s why you have to learn how to utilize your time to the best of your ability.\r\n\r\n \r\n\r\nAs I said before,\r\n<p style=\"text-align: center;\"><em>Happiness is in your hands</em></p>\r\n<p style=\"text-align: center;\"><em>It is in no other place</em></p>\r\n<p style=\"text-align: center;\"><em>For you decide its destiny</em></p>\r\n<p style=\"text-align: center;\"><em>YOU decide its fate</em></p>\r\nStop letting others control your emotions. Wake up every day and decide that you will be happy and you won’t let anyone change that. Do not let the evils of the world get to you. Smile even when life around you may seem like a thunderstorm. Sure things are Serious, but they are NOT THAT SERIOUS.\r\n\r\n \r\n\r\nStop crying over someone mistreating you!\r\n\r\nStop complaining about situations you are unwilling to change!\r\n\r\nStop hanging around people who do not bring any positive value to your life.\r\n\r\n \r\n\r\nWhen you decide to truly and utterly be happy, you will see that happiness was always within you, but you just couldn’t see it. Be yourself! Do what puts a smile on your face! And stop worrying about other people and their negative thoughts. For your happiness is in YOUR hands! It is not in another person, a thing, or a place, it is in YOUR HANDS! And when you finally realize that, the small things won’t hurt as much and you will be able to TRULY live your life……………\r\n\r\n \r\n\r\n-<em><strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n ','Happiness: It is in YOUR hands','','publish','open','open','','happiness-it-is-in-your-hands','','','2015-05-01 12:34:22','2015-05-01 17:34:22','',0,'http://www.monicarenata.com/?p=1029',0,'post','',0),(1030,1,'2015-05-01 12:34:22','2015-05-01 17:34:22','<p style=\"text-align: center;\"><em>Happiness is in your hands</em></p>\r\n<p style=\"text-align: center;\"><em>It is in no other place</em></p>\r\n<p style=\"text-align: center;\"><em>For you decide its destiny</em></p>\r\n<p style=\"text-align: center;\"><em>YOU decide its fate</em></p>\r\n \r\n\r\nFor so long, I have seen so many people unhappy. For so long, I have had others vent to me about why they aren’t happy. I usually listen calmly and help them assess the situation without voicing my opinion. I watch them cry, go into hysterics, scream, you name it…. And then they ask me how do I overcome situations.\r\n\r\n \r\n\r\n<em>“How did you get over someone mistreating you?”</em>\r\n<p style=\"text-align: center;\"><em>“How do you let it not get to you when others are mean?”</em></p>\r\n<p style=\"text-align: right;\"><em>“Why do you hold grudges!?”</em></p>\r\n<em>“I would hate them forever if I were you!! You should hate them!”</em>\r\n<p style=\"text-align: center;\"><em>“So you aren’t sad about it?”</em></p>\r\n<em> </em>\r\n\r\nI usually laugh. I’m not insulted by the questions at all, but I just say these few words, “<strong><em>I have learned that life is too short to be anything but happy…and I truly believe that and I wish to be happy.”</em></strong> When you realize that, life becomes so much easier. Begin to value your time and your happiness. Stop wasting time on people or things that don’t make you happy. More than likely, if you waste your time on something that wasn’t gratifying it will cause sadness in your life. For time is something precious to us and we cannot get back. When we feel as though it is truly wasted we are sad. So why do you waste your time being upset when wasted time usually leads to a lack of happiness??\r\n\r\n \r\n\r\nLife happens. Things don’t go right all of the time. You run into really nice people and also really mean people, but you have to learn how to value your emotions and time above all. Never allow people in your life who take away from your happiness. If you feel as though hanging with someone or participating in an activity is a waste of time, do not engage. Wasted time is something we can never get back, and this reality saddens us. ….that’s why you have to learn how to utilize your time to the best of your ability.\r\n\r\n \r\n\r\nAs I said before,\r\n<p style=\"text-align: center;\"><em>Happiness is in your hands</em></p>\r\n<p style=\"text-align: center;\"><em>It is in no other place</em></p>\r\n<p style=\"text-align: center;\"><em>For you decide its destiny</em></p>\r\n<p style=\"text-align: center;\"><em>YOU decide its fate</em></p>\r\nStop letting others control your emotions. Wake up every day and decide that you will be happy and you won’t let anyone change that. Do not let the evils of the world get to you. Smile even when life around you may seem like a thunderstorm. Sure things are Serious, but they are NOT THAT SERIOUS.\r\n\r\n \r\n\r\nStop crying over someone mistreating you!\r\n\r\nStop complaining about situations you are unwilling to change!\r\n\r\nStop hanging around people who do not bring any positive value to your life.\r\n\r\n \r\n\r\nWhen you decide to truly and utterly be happy, you will see that happiness was always within you, but you just couldn’t see it. Be yourself! Do what puts a smile on your face! And stop worrying about other people and their negative thoughts. For your happiness is in YOUR hands! It is not in another person, a thing, or a place, it is in YOUR HANDS! And when you finally realize that, the small things won’t hurt as much and you will be able to TRULY live your life……………\r\n\r\n \r\n\r\n-<em><strong>Monica Renata</strong></em>\r\n\r\n \r\n\r\n ','Happiness: It is in YOUR hands','','inherit','open','open','','1029-revision-v1','','','2015-05-01 12:34:22','2015-05-01 17:34:22','',1029,'http://www.monicarenata.com/1029-revision-v1/',0,'revision','',0),(1031,1,'2015-05-06 22:06:35','2015-05-07 03:06:35','The hardest part about meeting others\r\n\r\nIs the possibility that they will not care\r\n\r\n \r\n\r\nThey will not care about you as a person\r\n\r\nThey will disappear in thin air\r\n\r\n \r\n\r\nThe hardest part about having fun with someone\r\n\r\nIs the possibility that the fun will be replaced\r\n\r\n \r\n\r\nThey may get bored with you\r\n\r\nThey may leave you for a new face\r\n\r\n \r\n\r\nThe scare of broadening your horizons\r\n\r\nThe scare of letting people in\r\n\r\n \r\n\r\nYou say you don\'t care about being lonely\r\n\r\nYet tonight you lay alone and dwell\r\n\r\n \r\n\r\n<em>\"You will never stop being lonely if you are afraid to bring new people into your life.\" -Monica Renata </em>','Don\'t Care','','publish','open','open','','dont-care','','','2015-05-06 22:06:35','2015-05-07 03:06:35','',0,'http://www.monicarenata.com/?p=1031',0,'post','',0),(1032,1,'2015-05-06 22:06:35','2015-05-07 03:06:35','The hardest part about meeting others\r\n\r\nIs the possibility that they will not care\r\n\r\n \r\n\r\nThey will not care about you as a person\r\n\r\nThey will disappear in thin air\r\n\r\n \r\n\r\nThe hardest part about having fun with someone\r\n\r\nIs the possibility that the fun will be replaced\r\n\r\n \r\n\r\nThey may get bored with you\r\n\r\nThey may leave you for a new face\r\n\r\n \r\n\r\nThe scare of broadening your horizons\r\n\r\nThe scare of letting people in\r\n\r\n \r\n\r\nYou say you don\'t care about being lonely\r\n\r\nYet tonight you lay alone and dwell\r\n\r\n \r\n\r\n<em>\"You will never stop being lonely if you are afraid to bring new people into your life.\" -Monica Renata </em>','Don\'t Care','','inherit','open','open','','1031-revision-v1','','','2015-05-06 22:06:35','2015-05-07 03:06:35','',1031,'http://www.monicarenata.com/1031-revision-v1/',0,'revision','',0),(1034,1,'2015-05-15 13:31:53','2015-05-15 18:31:53','Not again\r\n\r\nFalling into this web\r\n\r\n \r\n\r\nHolding on\r\n\r\nScared to let go\r\n\r\n \r\n\r\nFeelings coming back to me\r\n\r\nBut I refuse to let them be so\r\n\r\n \r\n\r\nOn the edge of ecstasy\r\n\r\nYet a step close to doom\r\n\r\n \r\n\r\nStuck in a dream or fantasy\r\n\r\nYet this ends fairly soon\r\n\r\n \r\n\r\nA heart pounds so fiercely\r\n\r\nThen the next moment it stops\r\n\r\n \r\n\r\nA love that is on fire\r\n\r\nBut also cold as glacial rocks\r\n\r\n \r\n\r\nI love you one moment\r\n\r\nThe next moment I doubt that I do\r\n\r\n \r\n\r\nWere hot and cold together\r\n\r\nOur future we seem to never know\r\n\r\n \r\n\r\nLike twirling feathers in the wind\r\n\r\nWe always find our true homes\r\n\r\n \r\n\r\nFalling for you once again\r\n\r\nOh when will this circle complete\r\n\r\n \r\n\r\nWe constantly go in circles\r\n\r\nYet somehow we always meet','Love Circles','','publish','open','open','','love-circles','','','2015-05-15 13:31:53','2015-05-15 18:31:53','',0,'http://www.monicarenata.com/?p=1034',0,'post','',0),(1035,1,'2015-05-15 13:31:53','2015-05-15 18:31:53','Not again\r\n\r\nFalling into this web\r\n\r\n \r\n\r\nHolding on\r\n\r\nScared to let go\r\n\r\n \r\n\r\nFeelings coming back to me\r\n\r\nBut I refuse to let them be so\r\n\r\n \r\n\r\nOn the edge of ecstasy\r\n\r\nYet a step close to doom\r\n\r\n \r\n\r\nStuck in a dream or fantasy\r\n\r\nYet this ends fairly soon\r\n\r\n \r\n\r\nA heart pounds so fiercely\r\n\r\nThen the next moment it stops\r\n\r\n \r\n\r\nA love that is on fire\r\n\r\nBut also cold as glacial rocks\r\n\r\n \r\n\r\nI love you one moment\r\n\r\nThe next moment I doubt that I do\r\n\r\n \r\n\r\nWere hot and cold together\r\n\r\nOur future we seem to never know\r\n\r\n \r\n\r\nLike twirling feathers in the wind\r\n\r\nWe always find our true homes\r\n\r\n \r\n\r\nFalling for you once again\r\n\r\nOh when will this circle complete\r\n\r\n \r\n\r\nWe constantly go in circles\r\n\r\nYet somehow we always meet','Love Circles','','inherit','open','open','','1034-revision-v1','','','2015-05-15 13:31:53','2015-05-15 18:31:53','',1034,'http://www.monicarenata.com/1034-revision-v1/',0,'revision','',0),(1037,1,'2015-05-26 10:16:50','2015-05-26 15:16:50','The candle goes out eventually\r\n\r\nNo matter how much you admire the light\r\n\r\nIt flickers with each passing wind\r\n\r\nYet still makes your room bright\r\n\r\n \r\n\r\nIt is the slight warmth in your coldest day\r\n\r\nYour remembrance when one is gone\r\n\r\nThe guiding light on your countless journeys\r\n\r\nYour sight in the darkening storm\r\n\r\n \r\n\r\nSo bright and yet so magically\r\n\r\nYet its life slips away as the wax drips\r\n\r\nCandles don’t burn forever\r\n\r\nBut memories always will\r\n\r\n \r\n\r\n \r\n\r\n<em>\"A life is but a flicker in time that should be valued before it is gone...\" -Monica Renata </em>','Candles','','publish','open','open','','candles','','','2015-05-26 10:16:50','2015-05-26 15:16:50','',0,'http://www.monicarenata.com/?p=1037',0,'post','',0),(1038,1,'2015-05-26 10:16:50','2015-05-26 15:16:50','The candle goes out eventually\r\n\r\nNo matter how much you admire the light\r\n\r\nIt flickers with each passing wind\r\n\r\nYet still makes your room bright\r\n\r\n \r\n\r\nIt is the slight warmth in your coldest day\r\n\r\nYour remembrance when one is gone\r\n\r\nThe guiding light on your countless journeys\r\n\r\nYour sight in the darkening storm\r\n\r\n \r\n\r\nSo bright and yet so magically\r\n\r\nYet its life slips away as the wax drips\r\n\r\nCandles don’t burn forever\r\n\r\nBut memories always will\r\n\r\n \r\n\r\n \r\n\r\n<em>\"A life is but a flicker in time that should be valued before it is gone...\" -Monica Renata </em>','Candles','','inherit','open','open','','1037-revision-v1','','','2015-05-26 10:16:50','2015-05-26 15:16:50','',1037,'http://www.monicarenata.com/1037-revision-v1/',0,'revision','',0),(1039,1,'2015-06-01 09:25:20','2015-06-01 14:25:20','Waiting patiently for that moment to arise\r\n\r\nConstantly being afraid of what’s in front your eyes\r\n\r\nYou want to claim this prize\r\n\r\nBut the timing isn’t right\r\n\r\nYou watch while others claim your prize\r\n\r\nAnd don’t put up a fight\r\n\r\n \r\n\r\nWaiting patiently but patiently dying inside\r\n\r\nWanting something desperately but the timing isn’t right\r\n\r\nNight turns into day\r\n\r\nDay turns into night\r\n\r\nHappiness is fleeting away\r\n\r\nBut your moment seems to be out of near sight\r\n\r\n \r\n\r\nA waiting game that never ends\r\n\r\nA fear that holds you back\r\n\r\nWaiting patiently at times get you nowhere\r\n\r\nIf you don’t know when to step to the plate\r\n\r\n \r\n\r\n<em>“Sometimes fear holds us back from so much in life. Do not let fear stop you from obtaining what you want. Go out in the world and claim your dreams!” –Monica Renata</em>','Patiently: The Wait','','publish','open','open','','patiently-the-wait','','','2015-06-01 09:25:20','2015-06-01 14:25:20','',0,'http://www.monicarenata.com/?p=1039',0,'post','',1),(1040,1,'2015-06-01 09:25:20','2015-06-01 14:25:20','Waiting patiently for that moment to arise\r\n\r\nConstantly being afraid of what’s in front your eyes\r\n\r\nYou want to claim this prize\r\n\r\nBut the timing isn’t right\r\n\r\nYou watch while others claim your prize\r\n\r\nAnd don’t put up a fight\r\n\r\n \r\n\r\nWaiting patiently but patiently dying inside\r\n\r\nWanting something desperately but the timing isn’t right\r\n\r\nNight turns into day\r\n\r\nDay turns into night\r\n\r\nHappiness is fleeting away\r\n\r\nBut your moment seems to be out of near sight\r\n\r\n \r\n\r\nA waiting game that never ends\r\n\r\nA fear that holds you back\r\n\r\nWaiting patiently at times get you nowhere\r\n\r\nIf you don’t know when to step to the plate\r\n\r\n \r\n\r\n<em>“Sometimes fear holds us back from so much in life. Do not let fear stop you from obtaining what you want. Go out in the world and claim your dreams!” –Monica Renata</em>','Patiently: The Wait','','inherit','open','open','','1039-revision-v1','','','2015-06-01 09:25:20','2015-06-01 14:25:20','',1039,'http://www.monicarenata.com/1039-revision-v1/',0,'revision','',0),(1041,1,'2015-06-02 12:42:02','2015-06-02 17:42:02','Golden as the autumn corn\r\n\r\nValued by all who speak\r\n\r\nA few of life’s little words\r\n\r\nSo treasured by you and me\r\n\r\n \r\n\r\nTo be nice is a given\r\n\r\nTo respect others, we shall at least\r\n\r\nBut those words are lost in translation\r\n\r\nAs the journey of life peaks\r\n\r\n \r\n\r\nAt the tender moments of our youth\r\n\r\nWe are taught the golden run\r\n\r\nTreat others how we wish to be treated\r\n\r\nWe are drilled this all through grade school\r\n\r\n \r\n\r\nThose years when we are so innocent\r\n\r\nWe believe it with all our heart\r\n\r\nWith smother others in kindness\r\n\r\nBecause this is what we want also\r\n\r\n \r\n\r\nBut as life starts on an upward path\r\n\r\nAnd life at times get rough\r\n\r\nWe no longer think about everyone else\r\n\r\nWe think about just us\r\n\r\n \r\n\r\nAnd in those moments of selfishness\r\n\r\nWe believe that happiness is only entitled to us\r\n\r\nSo we manipulate words we speak to others\r\n\r\nAnd make our actions not add up\r\n\r\n \r\n\r\nWe would never want to be treated this way\r\n\r\nBut it is okay to do to others\r\n\r\nString someone’s feelings along for months\r\n\r\nWhen in actuality with them we don’t want to be bothered\r\n\r\n \r\n\r\nWe hurt people daily\r\n\r\nWe speak so many unkind words\r\n\r\nThen when our feelings get hurt\r\n\r\nWe speak of that golden combination of words…\r\n\r\n \r\n\r\nTreat others how you wish to be treated\r\n\r\nTreat me with kindness and respect\r\n\r\nWe ask for this in times of hurt\r\n\r\nYet during other times we forget\r\n\r\n \r\n\r\nBut life comes full circle\r\n\r\nAll of your actions you will once again meet\r\n\r\nFor kindness that you put out in the world\r\n\r\nWill be returned in times of need\r\n\r\n \r\n\r\nSo stop being so selfish\r\n\r\nStart living by the words of gold\r\n\r\nEveryone needs a little help every now and then\r\n\r\nFor everyone in life isn\'t your foe','Words of Gold','','publish','open','open','','words-of-gold','','','2015-06-02 12:42:02','2015-06-02 17:42:02','',0,'http://www.monicarenata.com/?p=1041',0,'post','',0),(1042,1,'2015-06-02 12:42:02','2015-06-02 17:42:02','Golden as the autumn corn\r\n\r\nValued by all who speak\r\n\r\nA few of life’s little words\r\n\r\nSo treasured by you and me\r\n\r\n \r\n\r\nTo be nice is a given\r\n\r\nTo respect others, we shall at least\r\n\r\nBut those words are lost in translation\r\n\r\nAs the journey of life peaks\r\n\r\n \r\n\r\nAt the tender moments of our youth\r\n\r\nWe are taught the golden run\r\n\r\nTreat others how we wish to be treated\r\n\r\nWe are drilled this all through grade school\r\n\r\n \r\n\r\nThose years when we are so innocent\r\n\r\nWe believe it with all our heart\r\n\r\nWith smother others in kindness\r\n\r\nBecause this is what we want also\r\n\r\n \r\n\r\nBut as life starts on an upward path\r\n\r\nAnd life at times get rough\r\n\r\nWe no longer think about everyone else\r\n\r\nWe think about just us\r\n\r\n \r\n\r\nAnd in those moments of selfishness\r\n\r\nWe believe that happiness is only entitled to us\r\n\r\nSo we manipulate words we speak to others\r\n\r\nAnd make our actions not add up\r\n\r\n \r\n\r\nWe would never want to be treated this way\r\n\r\nBut it is okay to do to others\r\n\r\nString someone’s feelings along for months\r\n\r\nWhen in actuality with them we don’t want to be bothered\r\n\r\n \r\n\r\nWe hurt people daily\r\n\r\nWe speak so many unkind words\r\n\r\nThen when our feelings get hurt\r\n\r\nWe speak of that golden combination of words…\r\n\r\n \r\n\r\nTreat others how you wish to be treated\r\n\r\nTreat me with kindness and respect\r\n\r\nWe ask for this in times of hurt\r\n\r\nYet during other times we forget\r\n\r\n \r\n\r\nBut life comes full circle\r\n\r\nAll of your actions you will once again meet\r\n\r\nFor kindness that you put out in the world\r\n\r\nWill be returned in times of need\r\n\r\n \r\n\r\nSo stop being so selfish\r\n\r\nStart living by the words of gold\r\n\r\nEveryone needs a little help every now and then\r\n\r\nFor everyone in life isn\'t your foe','Words of Gold','','inherit','open','open','','1041-revision-v1','','','2015-06-02 12:42:02','2015-06-02 17:42:02','',1041,'http://www.monicarenata.com/1041-revision-v1/',0,'revision','',0),(1044,1,'2015-06-08 06:47:04','2015-06-08 11:47:04','Kiss me in the morning\r\n\r\nTake my first true breath away\r\n\r\nEmbrace me with your love\r\n\r\nBlanket your lips upon my face\r\n\r\n \r\n\r\nMake me see the morning sun\r\n\r\nIs present not just outside\r\n\r\nMake me see the heavens on earth\r\n\r\nAs I softly close my eyes\r\n\r\n \r\n\r\nKiss me in the morning\r\n\r\nMake a great start for my day\r\n\r\nIn turn I shall shower you with my love\r\n\r\nAnd Forever in my heart you shall stay','Kiss Me In The Morning','','publish','open','open','','kiss-me-in-the-morning','','','2015-06-22 09:49:08','2015-06-22 14:49:08','',0,'http://www.monicarenata.com/?p=1044',0,'post','',0),(1045,1,'2015-06-08 06:47:04','2015-06-08 11:47:04','Kiss me in the morning\r\n\r\nTake my first true breath away\r\n\r\nEmbrace me with your love\r\n\r\nBlanket my lips upon my face\r\n\r\n \r\n\r\nMake me see the morning sun\r\n\r\nIs present not just outside\r\n\r\nMake me see the heavens on earth\r\n\r\nAs I softly close my eyes\r\n\r\n \r\n\r\nKiss me in the morning\r\n\r\nMake a great start for my day\r\n\r\nIn turn I shall shower you with my love\r\n\r\nAnd Forever in my heart you shall stay','Kiss Me In The Morning','','inherit','open','open','','1044-revision-v1','','','2015-06-08 06:47:04','2015-06-08 11:47:04','',1044,'http://www.monicarenata.com/1044-revision-v1/',0,'revision','',0),(1046,1,'2015-06-09 10:29:51','2015-06-09 15:29:51','Cover up my deepest scar\r\n\r\nHiding the actual wound\r\n\r\nJust temporary for a while\r\n\r\nBut yet the pain ensues\r\n\r\n \r\n\r\nYou make the pain go away a little\r\n\r\nIn those moments I temporarily forget\r\n\r\nYou are like a Band-Aid to my troubles\r\n\r\nMy alcohol that helps me forget\r\n\r\n \r\n\r\nYou stick with me so briefly\r\n\r\nYet in time you lose your place\r\n\r\nYou no longer cover the wound\r\n\r\nAnd the pain again I must face\r\n\r\n \r\n\r\nBut should I just let time heal this wound\r\n\r\nOr should I place another in place\r\n\r\nFor time is the only thing that heals wounds\r\n\r\nNot the placement of the Band-Aid\r\n\r\n ','Band-Aid','','publish','open','open','','band-aid','','','2015-06-09 10:29:51','2015-06-09 15:29:51','',0,'http://www.monicarenata.com/?p=1046',0,'post','',0),(1047,1,'2015-06-09 10:29:51','2015-06-09 15:29:51','Cover up my deepest scar\r\n\r\nHiding the actual wound\r\n\r\nJust temporary for a while\r\n\r\nBut yet the pain ensues\r\n\r\n \r\n\r\nYou make the pain go away a little\r\n\r\nIn those moments I temporarily forget\r\n\r\nYou are like a Band-Aid to my troubles\r\n\r\nMy alcohol that helps me forget\r\n\r\n \r\n\r\nYou stick with me so briefly\r\n\r\nYet in time you lose your place\r\n\r\nYou no longer cover the wound\r\n\r\nAnd the pain again I must face\r\n\r\n \r\n\r\nBut should I just let time heal this wound\r\n\r\nOr should I place another in place\r\n\r\nFor time is the only thing that heals wounds\r\n\r\nNot the placement of the Band-Aid\r\n\r\n ','Band-Aid','','inherit','open','open','','1046-revision-v1','','','2015-06-09 10:29:51','2015-06-09 15:29:51','',1046,'http://www.monicarenata.com/1046-revision-v1/',0,'revision','',0),(1048,1,'2015-06-11 13:09:19','2015-06-11 18:09:19','In the midst of all I wanted\r\n\r\nIn the midst of all I thought I need\r\n\r\nI looked at you for guidance\r\n\r\nI looked for your qualities that complimented me\r\n\r\n \r\n\r\nI looked at your sense of style that I loved\r\n\r\nI looked at the wave in your hair\r\n\r\nI looked at those big beautiful eyes\r\n\r\nOh how I loved when you stared\r\n\r\n \r\n\r\nAnd from the initial look I took\r\n\r\nI decided to dive in\r\n\r\nInto pieces of you that I didn’t know\r\n\r\nThat I knew my eyes wouldn’t tell\r\n\r\n \r\n\r\nI found out about your ambitions in life\r\n\r\nI found out about what you had\r\n\r\nI found out about your occupation\r\n\r\nI found out about your mom and your dad\r\n\r\n \r\n\r\nI thought that you were perfect\r\n\r\nI thought that you could be for me\r\n\r\nBut one day you lost all of that\r\n\r\nThen my love for you I thought I couldn’t see\r\n\r\n \r\n\r\nStripped away were the essentials\r\n\r\nStripped away was what I loved\r\n\r\nYour thrill for life gone in a heartbeat\r\n\r\nWhile you lay in a cold hospital room\r\n\r\n \r\n\r\nIt took you and I months and months to recover\r\n\r\nEach day seems to span one life\r\n\r\nAt times I wondered if I truly loved you\r\n\r\nAt times I wondered if my emotions were wrong or right\r\n\r\n \r\n\r\nProgress made daily\r\n\r\nYou recover slowly as I sat by your side\r\n\r\nFor while you were deprived of some functions\r\n\r\nI realize the essence of you still resides\r\n\r\n \r\n\r\nYou are left with your mind\r\n\r\nThat always kept me on my feet\r\n\r\n \r\n\r\nYou are left with your heart\r\n\r\nWhich you decided to give to me\r\n\r\n \r\n\r\nYou are left with your spirit\r\n\r\nThat flies through life so freely\r\n\r\n \r\n\r\nYou are left with your kindness\r\n\r\nWhich you showed to all the people that we meet\r\n\r\n \r\n\r\nYou are left with your generosity\r\n\r\nAnd you still tell me I’m your greatest friend\r\n\r\n \r\n\r\nYou return to the man I knew\r\n\r\nYou still continue to love me\r\n\r\nYou still have those big beautiful eyes\r\n\r\nYou still possess those qualities I could not see\r\n\r\n \r\n\r\nI was in love with the one I could see physically\r\n\r\nOh how ashamed am I\r\n\r\nI am embarrassed by my ways\r\n\r\nAnd I realized this when you finally opened your eyes\r\n\r\n \r\n\r\nIf everything was taken\r\n\r\nAnd we had nothing left\r\n\r\n<em>You’d be left with your mind, heart, spirit, & kindness.</em><em>\r\n</em>And I think those are the things I like about you best\r\n\r\n \r\n\r\nMonths of praying for you\r\n\r\nMonths of seeing what I couldn’t see with my eyes\r\n\r\nToday I love you more than ever\r\n\r\nBecause I can finally see love while being blind\r\n\r\n \r\n\r\n \r\n\r\n<em>“Learn to love others by not what you see, but by what is in their hearts. Look at qualities which cannot go away. Look for the aspects of one that cannot be taken away….” –Monica Renata </em>','Love While Blind','','publish','open','open','','love-while-blind','','','2015-06-11 13:09:19','2015-06-11 18:09:19','',0,'http://www.monicarenata.com/?p=1048',0,'post','',0),(1049,1,'2015-06-11 13:09:19','2015-06-11 18:09:19','In the midst of all I wanted\r\n\r\nIn the midst of all I thought I need\r\n\r\nI looked at you for guidance\r\n\r\nI looked for your qualities that complimented me\r\n\r\n \r\n\r\nI looked at your sense of style that I loved\r\n\r\nI looked at the wave in your hair\r\n\r\nI looked at those big beautiful eyes\r\n\r\nOh how I loved when you stared\r\n\r\n \r\n\r\nAnd from the initial look I took\r\n\r\nI decided to dive in\r\n\r\nInto pieces of you that I didn’t know\r\n\r\nThat I knew my eyes wouldn’t tell\r\n\r\n \r\n\r\nI found out about your ambitions in life\r\n\r\nI found out about what you had\r\n\r\nI found out about your occupation\r\n\r\nI found out about your mom and your dad\r\n\r\n \r\n\r\nI thought that you were perfect\r\n\r\nI thought that you could be for me\r\n\r\nBut one day you lost all of that\r\n\r\nThen my love for you I thought I couldn’t see\r\n\r\n \r\n\r\nStripped away were the essentials\r\n\r\nStripped away was what I loved\r\n\r\nYour thrill for life gone in a heartbeat\r\n\r\nWhile you lay in a cold hospital room\r\n\r\n \r\n\r\nIt took you and I months and months to recover\r\n\r\nEach day seems to span one life\r\n\r\nAt times I wondered if I truly loved you\r\n\r\nAt times I wondered if my emotions were wrong or right\r\n\r\n \r\n\r\nProgress made daily\r\n\r\nYou recover slowly as I sat by your side\r\n\r\nFor while you were deprived of some functions\r\n\r\nI realize the essence of you still resides\r\n\r\n \r\n\r\nYou are left with your mind\r\n\r\nThat always kept me on my feet\r\n\r\n \r\n\r\nYou are left with your heart\r\n\r\nWhich you decided to give to me\r\n\r\n \r\n\r\nYou are left with your spirit\r\n\r\nThat flies through life so freely\r\n\r\n \r\n\r\nYou are left with your kindness\r\n\r\nWhich you showed to all the people that we meet\r\n\r\n \r\n\r\nYou are left with your generosity\r\n\r\nAnd you still tell me I’m your greatest friend\r\n\r\n \r\n\r\nYou return to the man I knew\r\n\r\nYou still continue to love me\r\n\r\nYou still have those big beautiful eyes\r\n\r\nYou still possess those qualities I could not see\r\n\r\n \r\n\r\nI was in love with the one I could see physically\r\n\r\nOh how ashamed am I\r\n\r\nI am embarrassed by my ways\r\n\r\nAnd I realized this when you finally opened your eyes\r\n\r\n \r\n\r\nIf everything was taken\r\n\r\nAnd we had nothing left\r\n\r\n<em>You’d be left with your mind, heart, spirit, & kindness.</em><em>\r\n</em>And I think those are the things I like about you best\r\n\r\n \r\n\r\nMonths of praying for you\r\n\r\nMonths of seeing what I couldn’t see with my eyes\r\n\r\nToday I love you more than ever\r\n\r\nBecause I can finally see love while being blind\r\n\r\n \r\n\r\n \r\n\r\n<em>“Learn to love others by not what you see, but by what is in their hearts. Look at qualities which cannot go away. Look for the aspects of one that cannot be taken away….” –Monica Renata </em>','Love While Blind','','inherit','open','open','','1048-revision-v1','','','2015-06-11 13:09:19','2015-06-11 18:09:19','',1048,'http://www.monicarenata.com/1048-revision-v1/',0,'revision','',0),(1057,1,'2015-06-30 13:06:15','0000-00-00 00:00:00','Imagine\r\n\r\nImagine a world of beauty\r\nImagine a world of peace\r\nImagine a world of equality\r\nEquality for you and for me\r\n\r\nImagine a world of love\r\nImagine a world void of hate\r\nImagine a world of acceptance\r\nAcceptance for all each and every day\r\n\r\nSo many wish for a perfect word\r\nSo many wish for peace\r\nNeglecting that in order to get this perfect world\r\nIt is something you should be\r\n\r\nImagine a world of love\r\nImagine a world void of hate\r\nImagine a world of beauty\r\nImagine a world of peace\r\nImagine a world of acceptance\r\nImagine a world perfect for you and me\r\n\r\n\r\n','','','draft','open','open','','','','','2015-06-30 13:06:15','2015-06-30 18:06:15','',0,'http://www.monicarenata.com/?p=1057',0,'post','',0),(1051,1,'2015-06-22 09:47:18','2015-06-22 14:47:18','The moment I first met you\r\n\r\nYou brightened up my day\r\n\r\nTook away all of the negatives in my life\r\n\r\nMade my pain just melt away\r\n\r\n \r\n\r\nYou surrounded me in that moment\r\n\r\nAnd in that moment I never wished to let go\r\n\r\nTo the feeling that you gave to me\r\n\r\nThe feeling that I craved for so long\r\n\r\n \r\n\r\nI decided to embrace you\r\n\r\nGive you a chance in the life that I live\r\n\r\nI valued you like my greatest treasure\r\n\r\nMy love for you could never be killed\r\n\r\n \r\n\r\nI kissed you every morning\r\n\r\nI vowed to forever have you in my life\r\n\r\nI fell in love with <strong><em>happiness</em></strong>\r\n\r\nAnd it kisses my lips every day and night\r\n\r\n \r\n\r\n<em>“When you decide to wake up each morning with happiness, your days will immediately become better. Do not drown yourself in the sorrows of life. Fall in love with happiness and never let it leave your side.” –Monica Renata</em>\r\n\r\n ','I Fell In Love','','publish','open','open','','i-fell-in-love','','','2015-06-22 09:50:51','2015-06-22 14:50:51','',0,'http://www.monicarenata.com/?p=1051',0,'post','',1),(1052,1,'2015-06-22 09:47:18','2015-06-22 14:47:18','The moment I first met you\r\n\r\nYou brightened up my day\r\n\r\nTook away all of the negatives in my life\r\n\r\nMade my pain just melt away\r\n\r\n \r\n\r\nYou surrounded me in that moment\r\n\r\nAnd in that moment I never wished to let go\r\n\r\nTo the feeling that you gave to me\r\n\r\nThe feeling that I craved for so long\r\n\r\n \r\n\r\nI decided to embrace you\r\n\r\nGive you a chance in the life that I live\r\n\r\nI valued you like my greatest treasure\r\n\r\nMy love for you could never be killed\r\n\r\n \r\n\r\nI kissed you every morning\r\n\r\nI said I do and vowed to forever have you in my life\r\n\r\nI fell in love with <strong><em>happiness</em></strong>\r\n\r\nAnd it kisses my lips every day and night\r\n\r\n \r\n\r\n<em>“When you decide to wake up each morning with happiness, your days will immediately become better. Do not drown yourself in the sorrows of life. Fall in love with happiness and never let it leave your side.” –Monica Renata</em>\r\n\r\n ','I Fell In Love','','inherit','open','open','','1051-revision-v1','','','2015-06-22 09:47:18','2015-06-22 14:47:18','',1051,'http://www.monicarenata.com/1051-revision-v1/',0,'revision','',0),(1053,1,'2015-06-22 09:49:08','2015-06-22 14:49:08','Kiss me in the morning\r\n\r\nTake my first true breath away\r\n\r\nEmbrace me with your love\r\n\r\nBlanket your lips upon my face\r\n\r\n \r\n\r\nMake me see the morning sun\r\n\r\nIs present not just outside\r\n\r\nMake me see the heavens on earth\r\n\r\nAs I softly close my eyes\r\n\r\n \r\n\r\nKiss me in the morning\r\n\r\nMake a great start for my day\r\n\r\nIn turn I shall shower you with my love\r\n\r\nAnd Forever in my heart you shall stay','Kiss Me In The Morning','','inherit','open','open','','1044-revision-v1','','','2015-06-22 09:49:08','2015-06-22 14:49:08','',1044,'http://www.monicarenata.com/1044-revision-v1/',0,'revision','',0),(1054,1,'2015-06-22 09:50:51','2015-06-22 14:50:51','The moment I first met you\r\n\r\nYou brightened up my day\r\n\r\nTook away all of the negatives in my life\r\n\r\nMade my pain just melt away\r\n\r\n \r\n\r\nYou surrounded me in that moment\r\n\r\nAnd in that moment I never wished to let go\r\n\r\nTo the feeling that you gave to me\r\n\r\nThe feeling that I craved for so long\r\n\r\n \r\n\r\nI decided to embrace you\r\n\r\nGive you a chance in the life that I live\r\n\r\nI valued you like my greatest treasure\r\n\r\nMy love for you could never be killed\r\n\r\n \r\n\r\nI kissed you every morning\r\n\r\nI vowed to forever have you in my life\r\n\r\nI fell in love with <strong><em>happiness</em></strong>\r\n\r\nAnd it kisses my lips every day and night\r\n\r\n \r\n\r\n<em>“When you decide to wake up each morning with happiness, your days will immediately become better. Do not drown yourself in the sorrows of life. Fall in love with happiness and never let it leave your side.” –Monica Renata</em>\r\n\r\n ','I Fell In Love','','inherit','open','open','','1051-revision-v1','','','2015-06-22 09:50:51','2015-06-22 14:50:51','',1051,'http://www.monicarenata.com/1051-revision-v1/',0,'revision','',0),(1055,1,'2015-06-25 12:56:21','2015-06-25 17:56:21','I love you\r\n\r\n \r\n\r\nThose three words\r\n\r\nWhich tremble as they float on my lips\r\n\r\nSo much truth in those few words\r\n\r\nSo much power I am exchanging to you\r\n\r\n \r\n\r\nI love you\r\n\r\nYou mean so much to me\r\n\r\nI trust you with all of me\r\n\r\nI trust you with my heart\r\n\r\n \r\n\r\nIn telling you those few feelings\r\n\r\nI give you the ultimate power\r\n\r\nYou have the power to lift me up\r\n\r\nYou have the power to let me come crashing down\r\n\r\n \r\n\r\nBut\r\n\r\n \r\n\r\nI still love you\r\n\r\nEven though I’m afraid of what you can do to me\r\n\r\nI still love you\r\n\r\nEven though I can’t predict the future\r\n\r\n \r\n\r\nYou can be my best hello\r\n\r\nYou could be my hardest goodbye\r\n\r\nYou can be my heaven\r\n\r\nYou can be my hell\r\n\r\n \r\n\r\nMy greatest fear is being hurt\r\n\r\nBut by uttering those words\r\n\r\nI decided that I’d rather face my greatest fear\r\n\r\nThan walk away\r\n\r\n \r\n\r\nI hate how you don’t always let me have my way\r\n\r\nI am annoyed by some of your actions\r\n\r\nI am fearful of you because of the power you have\r\n\r\nBut I stay because of love\r\n\r\n \r\n\r\nThose three words\r\n\r\nWhich tremble as they float on my lips\r\n\r\nSo much truth in those few words\r\n\r\nSo much power I am exchanging to you\r\n\r\n \r\n\r\nPower…\r\n\r\nPower which I trust you with\r\n\r\nPower which is unfathomable\r\n\r\nPower which you could possibly destroy me\r\n\r\n \r\n\r\nBut I love you\r\n\r\nI really really do\r\n\r\nSo I think I will face my deepest fear\r\n\r\nAnd finally let myself fully fall for you\r\n\r\n \r\n\r\n<em>“Sometimes we are so afraid of being hurt that we put up a wall that no one can overcome. In order to fully experience love, you must not be afraid to fall deep in it..” –Monica Renata </em>\r\n\r\n ','Those Three Words','','publish','open','open','','those-three-words','','','2015-06-25 12:56:21','2015-06-25 17:56:21','',0,'http://www.monicarenata.com/?p=1055',0,'post','',0),(1056,1,'2015-06-25 12:56:21','2015-06-25 17:56:21','I love you\r\n\r\n \r\n\r\nThose three words\r\n\r\nWhich tremble as they float on my lips\r\n\r\nSo much truth in those few words\r\n\r\nSo much power I am exchanging to you\r\n\r\n \r\n\r\nI love you\r\n\r\nYou mean so much to me\r\n\r\nI trust you with all of me\r\n\r\nI trust you with my heart\r\n\r\n \r\n\r\nIn telling you those few feelings\r\n\r\nI give you the ultimate power\r\n\r\nYou have the power to lift me up\r\n\r\nYou have the power to let me come crashing down\r\n\r\n \r\n\r\nBut\r\n\r\n \r\n\r\nI still love you\r\n\r\nEven though I’m afraid of what you can do to me\r\n\r\nI still love you\r\n\r\nEven though I can’t predict the future\r\n\r\n \r\n\r\nYou can be my best hello\r\n\r\nYou could be my hardest goodbye\r\n\r\nYou can be my heaven\r\n\r\nYou can be my hell\r\n\r\n \r\n\r\nMy greatest fear is being hurt\r\n\r\nBut by uttering those words\r\n\r\nI decided that I’d rather face my greatest fear\r\n\r\nThan walk away\r\n\r\n \r\n\r\nI hate how you don’t always let me have my way\r\n\r\nI am annoyed by some of your actions\r\n\r\nI am fearful of you because of the power you have\r\n\r\nBut I stay because of love\r\n\r\n \r\n\r\nThose three words\r\n\r\nWhich tremble as they float on my lips\r\n\r\nSo much truth in those few words\r\n\r\nSo much power I am exchanging to you\r\n\r\n \r\n\r\nPower…\r\n\r\nPower which I trust you with\r\n\r\nPower which is unfathomable\r\n\r\nPower which you could possibly destroy me\r\n\r\n \r\n\r\nBut I love you\r\n\r\nI really really do\r\n\r\nSo I think I will face my deepest fear\r\n\r\nAnd finally let myself fully fall for you\r\n\r\n \r\n\r\n<em>“Sometimes we are so afraid of being hurt that we put up a wall that no one can overcome. In order to fully experience love, you must not be afraid to fall deep in it..” –Monica Renata </em>\r\n\r\n ','Those Three Words','','inherit','open','open','','1055-revision-v1','','','2015-06-25 12:56:21','2015-06-25 17:56:21','',1055,'http://www.monicarenata.com/1055-revision-v1/',0,'revision','',0),(1058,1,'2015-06-30 13:06:15','2015-06-30 18:06:15','Imagine\r\n\r\nImagine a world of beauty\r\nImagine a world of peace\r\nImagine a world of equality\r\nEquality for you and for me\r\n\r\nImagine a world of love\r\nImagine a world void of hate\r\nImagine a world of acceptance\r\nAcceptance for all each and every day\r\n\r\nSo many wish for a perfect word\r\nSo many wish for peace\r\nNeglecting that in order to get this perfect world\r\nIt is something you should be\r\n\r\nImagine a world of love\r\nImagine a world void of hate\r\nImagine a world of beauty\r\nImagine a world of peace\r\nImagine a world of acceptance\r\nImagine a world perfect for you and me\r\n\r\n\r\n','','','inherit','open','open','','1057-revision-v1','','','2015-06-30 13:06:15','2015-06-30 18:06:15','',1057,'http://www.monicarenata.com/1057-revision-v1/',0,'revision','',0),(1066,1,'2015-08-30 22:39:56','2015-08-31 03:39:56','I scream\r\nBut they can’t hear me\r\nThere seems to be a silence about my voice\r\n\r\nI yell\r\nBut I am unheard\r\nIt seems that I don’t have a voice\r\n\r\nYou scream\r\nAnd it is the same thing\r\nSilence is the only sound\r\n\r\nYou yell\r\nBut still nothing\r\nYet they can hear a pen tap the ground\r\n\r\nWe scream\r\nAnd it turns a head\r\nThey wonder what commotion is going on\r\n\r\nWe yell\r\nAnd they think we are crazy\r\nThey question, “What are they yelling for!?”\r\n\r\nBut in our screams and yelling\r\nThey still don’t hear a sound\r\nUntil our friends and family join us\r\nNow we can be heard because we’re loud\r\n\r\nI scream, you scream, we scream\r\nWe then produce a roar\r\nAnd the roar frightens people\r\nBut holds their attention more\r\n\r\nI yell, you yell, we yell\r\nWe can now be heard clear as day\r\nThere is strength in numbers and they will look\r\nBut will they listen to what we say\r\n\r\nBut rally on my friends\r\nOne day we shall be heard\r\nToday we scream and they hear silence\r\nBut soon they will hear words\r\n\r\n<em>\"A person may not be heard if they are alone. However, if their voice is joined with others, change can happen.\" -Monica Renata</em>','Rally On','','publish','open','open','','rally-on','','','2015-08-30 22:39:56','2015-08-31 03:39:56','',0,'http://www.monicarenata.com/?p=1066',0,'post','',0),(1060,1,'2015-07-21 13:37:51','2015-07-21 18:37:51','Falling while conquering the hurdles of life\r\n\r\nLife can seem so hard\r\n\r\n \r\n\r\nThinking of ways to get ahead\r\n\r\nBut your pride is already scared\r\n\r\n \r\n\r\nThe easy way up seems so easy\r\n\r\nBut it requires deceit\r\n\r\n \r\n\r\nYou are debating on what you need to do\r\n\r\nTo get back on your feet\r\n\r\n \r\n\r\nRight is right and this is true\r\n\r\nBut what’s right seems so hard\r\n\r\n \r\n\r\nSo instead you attempt to get up\r\n\r\nBy using your deceit card\r\n\r\n \r\n\r\n“Let’s help each other dear friend”\r\n\r\n“I just need help from this fall”\r\n\r\n \r\n\r\nAnd your new found friend reaches out their hand\r\n\r\nTo the sound of your desperate call\r\n\r\n \r\n\r\nYou rise to your feet\r\n\r\nBut watch as your new friend fall\r\n\r\n \r\n\r\nAnd instead of offering help as they did you\r\n\r\nYou continue to watch him crawl\r\n\r\n \r\n\r\nYou race ahead filled with happiness\r\n\r\nYou believe the race is won\r\n\r\n \r\n\r\nBut sadly you are still in the back\r\n\r\nBecause when it comes to integrity\r\n\r\nYou have none\r\n\r\n \r\n\r\nResponsible for your actions\r\n\r\nBeing open, honest, and true\r\n\r\n \r\n\r\nSpeaking up when others are treated poorly\r\n\r\nAnd don’t let the ones treating others like this be you\r\n\r\n \r\n\r\nRespecting your surroundings\r\n\r\nRespecting everyone including yourself\r\n\r\nAlways doing the right thing\r\n\r\nEven if others don’t want to help\r\n\r\n \r\n\r\nIntegrity sets you apart from others\r\n\r\nIt gives you the edge you need to win\r\n\r\n \r\n\r\n<em>\"Live a life of integrity, and you will live a life of a true winner.\" -Monica Renata </em>\r\n\r\n \r\n\r\n<hr />\r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\"><strong><em>\"Have the courage to say no. Have the courage to face the truth. Do the right thing because it is right. These are the magic keys to living your life with integrity.\" - W. Clement Stone</em></strong></p>','The Race','','publish','open','open','','the-race','','','2015-07-21 13:37:51','2015-07-21 18:37:51','',0,'http://www.monicarenata.com/?p=1060',0,'post','',1),(1061,1,'2015-07-21 13:37:51','2015-07-21 18:37:51','Falling while conquering the hurdles of life\r\n\r\nLife can seem so hard\r\n\r\n \r\n\r\nThinking of ways to get ahead\r\n\r\nBut your pride is already scared\r\n\r\n \r\n\r\nThe easy way up seems so easy\r\n\r\nBut it requires deceit\r\n\r\n \r\n\r\nYou are debating on what you need to do\r\n\r\nTo get back on your feet\r\n\r\n \r\n\r\nRight is right and this is true\r\n\r\nBut what’s right seems so hard\r\n\r\n \r\n\r\nSo instead you attempt to get up\r\n\r\nBy using your deceit card\r\n\r\n \r\n\r\n“Let’s help each other dear friend”\r\n\r\n“I just need help from this fall”\r\n\r\n \r\n\r\nAnd your new found friend reaches out their hand\r\n\r\nTo the sound of your desperate call\r\n\r\n \r\n\r\nYou rise to your feet\r\n\r\nBut watch as your new friend fall\r\n\r\n \r\n\r\nAnd instead of offering help as they did you\r\n\r\nYou continue to watch him crawl\r\n\r\n \r\n\r\nYou race ahead filled with happiness\r\n\r\nYou believe the race is won\r\n\r\n \r\n\r\nBut sadly you are still in the back\r\n\r\nBecause when it comes to integrity\r\n\r\nYou have none\r\n\r\n \r\n\r\nResponsible for your actions\r\n\r\nBeing open, honest, and true\r\n\r\n \r\n\r\nSpeaking up when others are treated poorly\r\n\r\nAnd don’t let the ones treating others like this be you\r\n\r\n \r\n\r\nRespecting your surroundings\r\n\r\nRespecting everyone including yourself\r\n\r\nAlways doing the right thing\r\n\r\nEven if others don’t want to help\r\n\r\n \r\n\r\nIntegrity sets you apart from others\r\n\r\nIt gives you the edge you need to win\r\n\r\n \r\n\r\n<em>\"Live a life of integrity, and you will live a life of a true winner.\" -Monica Renata </em>\r\n\r\n \r\n\r\n<hr />\r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\"><strong><em>\"Have the courage to say no. Have the courage to face the truth. Do the right thing because it is right. These are the magic keys to living your life with integrity.\" - W. Clement Stone</em></strong></p>','The Race','','inherit','open','open','','1060-revision-v1','','','2015-07-21 13:37:51','2015-07-21 18:37:51','',1060,'http://www.monicarenata.com/1060-revision-v1/',0,'revision','',0),(1062,1,'2015-07-28 10:26:50','2015-07-28 15:26:50','Hi, my name is Lovely\r\n\r\nWhen I speak people don’t hear a thing\r\n\r\nThey look in some amazement\r\n\r\nYet their ears close on me\r\n\r\n \r\n\r\nHi, my name is Lovely\r\n\r\nInside I am so unique\r\n\r\nYet my shell hinders me from happiness\r\n\r\nNo one wants to see the real me\r\n\r\n \r\n\r\nHi, my name is Lovely\r\n\r\nMy only value comes from others eyes\r\n\r\nBut oh how I wish others would see deeper\r\n\r\nFor now my beauty I despise\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“At times the most beautiful women become the most insecure because no one truly takes the time to look deeper than their skin… People are more than their looks.” –Monica Renata</em></p>','Hi, My Name Is Lovely','','publish','open','open','','hi-my-name-is-lovely','','','2015-07-28 10:26:50','2015-07-28 15:26:50','',0,'http://www.monicarenata.com/?p=1062',0,'post','',1),(1063,1,'2015-07-28 10:26:50','2015-07-28 15:26:50','Hi, my name is Lovely\r\n\r\nWhen I speak people don’t hear a thing\r\n\r\nThey look in some amazement\r\n\r\nYet their ears close on me\r\n\r\n \r\n\r\nHi, my name is Lovely\r\n\r\nInside I am so unique\r\n\r\nYet my shell hinders me from happiness\r\n\r\nNo one wants to see the real me\r\n\r\n \r\n\r\nHi, my name is Lovely\r\n\r\nMy only value comes from others eyes\r\n\r\nBut oh how I wish others would see deeper\r\n\r\nFor now my beauty I despise\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“At times the most beautiful women become the most insecure because no one truly takes the time to look deeper than their skin… People are more than their looks.” –Monica Renata</em></p>','Hi, My Name Is Lovely','','inherit','open','open','','1062-revision-v1','','','2015-07-28 10:26:50','2015-07-28 15:26:50','',1062,'http://www.monicarenata.com/1062-revision-v1/',0,'revision','',0),(1064,1,'2015-07-28 10:41:03','2015-07-28 15:41:03','Love me till the sky turns gray\r\n\r\nAnd tears fall from the sky\r\n\r\nLove me till the thunder roars\r\n\r\nAnd tells us danger is near by\r\n\r\nLove me till the lightning strikes\r\n\r\nAnd in fear I cover my eyes\r\n\r\nLove me till the storm approaches\r\n\r\nAnd it is only you and I\r\n\r\n \r\n\r\nAnd in that moment kiss me\r\n\r\nBreathe life back into my veins\r\n\r\nReassure me of our purpose\r\n\r\nHold me so tightly in the rain\r\n\r\nNever let go of me\r\n\r\nForever hold me by your side\r\n\r\nShow me that our love can endure the darkest days\r\n\r\nFight for our love to survive\r\n\r\n \r\n\r\nFor it is easy to love when the flowers bloom\r\n\r\nAnd when the birds and the bees sing\r\n\r\nIt is so simple to love a beautiful life\r\n\r\nWhen you are surrounded by beautiful days\r\n\r\nBut if you can love me through the storm as well\r\n\r\nThrough the raging winds and the pounding rain\r\n\r\nI know that our love was meant to be\r\n\r\nFor you and I will forever remain\r\n\r\n \r\n\r\n<em>“It is hard to love on the worst of days, but if it is true love it will endure.\" –Monica Renata</em>','Love Me Through The Storm','','publish','open','open','','love-me-through-the-storm','','','2015-07-28 10:41:03','2015-07-28 15:41:03','',0,'http://www.monicarenata.com/?p=1064',0,'post','',0),(1065,1,'2015-07-28 10:41:03','2015-07-28 15:41:03','Love me till the sky turns gray\r\n\r\nAnd tears fall from the sky\r\n\r\nLove me till the thunder roars\r\n\r\nAnd tells us danger is near by\r\n\r\nLove me till the lightning strikes\r\n\r\nAnd in fear I cover my eyes\r\n\r\nLove me till the storm approaches\r\n\r\nAnd it is only you and I\r\n\r\n \r\n\r\nAnd in that moment kiss me\r\n\r\nBreathe life back into my veins\r\n\r\nReassure me of our purpose\r\n\r\nHold me so tightly in the rain\r\n\r\nNever let go of me\r\n\r\nForever hold me by your side\r\n\r\nShow me that our love can endure the darkest days\r\n\r\nFight for our love to survive\r\n\r\n \r\n\r\nFor it is easy to love when the flowers bloom\r\n\r\nAnd when the birds and the bees sing\r\n\r\nIt is so simple to love a beautiful life\r\n\r\nWhen you are surrounded by beautiful days\r\n\r\nBut if you can love me through the storm as well\r\n\r\nThrough the raging winds and the pounding rain\r\n\r\nI know that our love was meant to be\r\n\r\nFor you and I will forever remain\r\n\r\n \r\n\r\n<em>“It is hard to love on the worst of days, but if it is true love it will endure.\" –Monica Renata</em>','Love Me Through The Storm','','inherit','open','open','','1064-revision-v1','','','2015-07-28 10:41:03','2015-07-28 15:41:03','',1064,'http://www.monicarenata.com/1064-revision-v1/',0,'revision','',0),(1067,1,'2015-07-30 13:44:29','2015-07-30 18:44:29','I scream\r\nBut they can’t hear me\r\nThere seems to be a silence about my voice\r\n\r\nI yell\r\nBut I am unheard\r\nIt seems that I don’t have a voice\r\n\r\nYou scream \r\nAnd it is the same thing\r\nSilence is the only sound\r\n\r\nYou yell\r\nBut still nothing\r\nYet they can hear a pen tap the ground\r\n\r\nWe scream\r\nAnd it turns a head\r\n They wonder what commotion is going on\r\n\r\nWe yell\r\nAnd they think we are crazy\r\nThey question, “What are they yelling for!?”\r\n\r\nBut in our screams and yelling\r\nThey still don’t hear a sound\r\nUntil our friends and family join us\r\nNow we can be heard because we’re loud\r\n\r\nI scream, you scream, we scream\r\nWe then produce a roar\r\nAnd the roar frightens people\r\nBut holds their attention more\r\n\r\nI yell, you yell, we yell\r\nWe can now be heard clear as day\r\nThere is strength in numbers and they will look\r\nBut will they listen to what we say\r\n\r\n\r\n','','','inherit','open','open','','1066-revision-v1','','','2015-07-30 13:44:29','2015-07-30 18:44:29','',1066,'http://www.monicarenata.com/1066-revision-v1/',0,'revision','',0),(1071,1,'2015-08-03 08:22:20','2015-08-03 13:22:20','<div style=\"text-align: center;\">\r\n\r\nStanding face to face\r\n\r\nExpressing words that are true to you\r\n\r\nI wish you could hear my feelings\r\n\r\nI wish that you knew the truth\r\n\r\n \r\n\r\nTelling me what\'s bothering you\r\n\r\nBut not knowing what bothers me\r\n\r\nI can feel myself fall apart\r\n\r\nWhile I am standing on my two feet\r\n\r\n \r\n\r\nYour words they pierce like daggers\r\n\r\nMy heart skips a few beats\r\n\r\nYour words are stinging each part of me\r\n\r\nKilling me softly on repeat\r\n\r\n \r\n\r\nLooking deeply in my eyes\r\n\r\nYou want to make sure your words are known\r\n\r\nYou ask for my response\r\n\r\nYou say you can\'t do this anymore\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut that is not quite true\r\n\r\nFor every time I say that\r\n\r\nI am just trying not to disappoint you\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut in my mind I wonder still\r\n\r\nI can\'t seem to take all of this in\r\n\r\nBut I have no choice but to swallow this pill\r\n\r\n \r\n\r\nI say I understand\r\n\r\nBut I wish you would school me\r\n\r\nOn how you are really feeling\r\n\r\nAbout where you wish you could be\r\n\r\n \r\n\r\nI can\'t comprehend the worse\r\n\r\nI refuse to crush the bit of hope in my hand\r\n\r\nI don\'t understand what you want right now\r\n\r\nBut I will say\r\n\r\nI understand\r\n\r\n</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.bantamapparel.com/sku/2_PI245.jpg\"><img src=\"http://www.bantamapparel.com/sku/2_PI245.jpg\" alt=\"\" width=\"320\" height=\"165\" border=\"0\" /></a></div>\r\n<div style=\"text-align: center;\"></div>','I Understand','','inherit','open','open','','83-revision-v1','','','2015-08-03 08:22:20','2015-08-03 13:22:20','',83,'http://www.monicarenata.com/83-revision-v1/',0,'revision','',0),(1069,1,'2015-08-03 08:20:16','2015-08-03 13:20:16','<div style=\"text-align: center;\">Standing face to face</div>\r\n<div style=\"text-align: center;\">Expressing words that are true to you</div>\r\n<div style=\"text-align: center;\">I wish you could hear my feelings</div>\r\n<div style=\"text-align: center;\">I wish that you knew the truth</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">Telling me what\'s bothering you</div>\r\n<div style=\"text-align: center;\">But not knowing what bothers me</div>\r\n<div style=\"text-align: center;\">I can feel myself fall apart</div>\r\n<div style=\"text-align: center;\">While I am standing on my two feet</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">Your words they pierce like daggers</div>\r\n<div style=\"text-align: center;\">My heart skips a few beats</div>\r\n<div style=\"text-align: center;\">Your words are stinging each part of me</div>\r\n<div style=\"text-align: center;\">Killing me softly on repeat</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">Looking deeply in my eyes</div>\r\n<div style=\"text-align: center;\">You want to make sure your words are known</div>\r\n<div style=\"text-align: center;\">You ask for my response</div>\r\n<div style=\"text-align: center;\">You say you can\'t do this anymore</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">I say I understand</div>\r\n<div style=\"text-align: center;\">But that is not quite true</div>\r\n<div style=\"text-align: center;\">For every time I say that</div>\r\n<div style=\"text-align: center;\">I am just trying not to disappoint you</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">I say I understand</div>\r\n<div style=\"text-align: center;\">But in my mind I wonder still</div>\r\n<div style=\"text-align: center;\">I can\'t seem to take all of this in</div>\r\n<div style=\"text-align: center;\">But I have no choice but to swallow this pill</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">I say I understand</div>\r\n<div style=\"text-align: center;\">But I wish you would school me</div>\r\n<div style=\"text-align: center;\">On how you are really feeling</div>\r\n<div style=\"text-align: center;\">About where you wish you could be</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"text-align: center;\">I can\'t comprehend the worse</div>\r\n<div style=\"text-align: center;\">I refuse to crush the bit of hope in my hand</div>\r\n<div style=\"text-align: center;\">I don\'t understand what you want right now</div>\r\n<div style=\"text-align: center;\">But I will say</div>\r\n<div style=\"text-align: center;\">I understand</div>\r\n<div style=\"text-align: center;\"></div>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.bantamapparel.com/sku/2_PI245.jpg\"><img src=\"http://www.bantamapparel.com/sku/2_PI245.jpg\" alt=\"\" width=\"320\" height=\"165\" border=\"0\" /></a></div>\r\n<div style=\"text-align: center;\"></div>','I Understand','','inherit','open','open','','83-revision-v1','','','2015-08-03 08:20:16','2015-08-03 13:20:16','',83,'http://www.monicarenata.com/83-revision-v1/',0,'revision','',0),(1070,1,'2015-08-03 08:22:11','2015-08-03 13:22:11','<div style=\"text-align: center;\"></div>\n<div style=\"text-align: center;\"></div>\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"http://www.bantamapparel.com/sku/2_PI245.jpg\"><img src=\"http://www.bantamapparel.com/sku/2_PI245.jpg\" alt=\"\" width=\"320\" height=\"165\" border=\"0\" /></a></div>\n<div style=\"text-align: center;\"></div>','I Understand','','inherit','open','open','','83-autosave-v1','','','2015-08-03 08:22:11','2015-08-03 13:22:11','',83,'http://www.monicarenata.com/83-autosave-v1/',0,'revision','',0),(1073,1,'2015-08-07 13:38:19','2015-08-07 18:38:19','<p style=\"text-align: center;\"><em>Fireflies</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Imagine in the dark</p>\r\n<p style=\"text-align: center;\">Opening your eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">And to your surprise</p>\r\n<p style=\"text-align: center;\">You see many fireflies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A word filled with dark</p>\r\n<p style=\"text-align: center;\">Is now anew</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">That’s the same feeling I have</p>\r\n<p style=\"text-align: center;\">When I’m with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Darkness is gone</p>\r\n<p style=\"text-align: center;\">Light shines so bright</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My heart keeps on pounding</p>\r\n<p style=\"text-align: center;\">The feeling of love at first sight</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A beauty before me</p>\r\n<p style=\"text-align: center;\">Glistens in my eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For I love you so much</p>\r\n<p style=\"text-align: center;\">So much that I cry</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For you are the wonder</p>\r\n<p style=\"text-align: center;\">That brightens my day</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">When I am overwhelmed with darkness</p>\r\n<p style=\"text-align: center;\">You are the light that takes the dark away</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My beauty in the night</p>\r\n<p style=\"text-align: center;\">My protector from the storm</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My insulation in the winter</p>\r\n<p style=\"text-align: center;\">For your love keeps me warm</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">In the still of the night</p>\r\n<p style=\"text-align: center;\">I’m so thankful to have you by my side</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As you lay beside me</p>\r\n<p style=\"text-align: center;\">I feel tears form in my eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Nights have always been beautiful</p>\r\n<p style=\"text-align: center;\">But not as beautiful as these</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My nights are filled with fireflies</p>\r\n<p style=\"text-align: center;\">And I thank you for bringing them to me</p>\r\n<p style=\"text-align: center;\"></p>\r\n ','Fireflies','','publish','open','open','','fireflies','','','2015-08-07 13:38:19','2015-08-07 18:38:19','',0,'http://www.monicarenata.com/?p=1073',0,'post','',0),(1074,1,'2015-08-07 13:38:19','2015-08-07 18:38:19','<p style=\"text-align: center;\"><em>Fireflies</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Imagine in the dark</p>\r\n<p style=\"text-align: center;\">Opening your eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">And to your surprise</p>\r\n<p style=\"text-align: center;\">You see many fireflies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A word filled with dark</p>\r\n<p style=\"text-align: center;\">Is now anew</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">That’s the same feeling I have</p>\r\n<p style=\"text-align: center;\">When I’m with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Darkness is gone</p>\r\n<p style=\"text-align: center;\">Light shines so bright</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My heart keeps on pounding</p>\r\n<p style=\"text-align: center;\">The feeling of love at first sight</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A beauty before me</p>\r\n<p style=\"text-align: center;\">Glistens in my eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For I love you so much</p>\r\n<p style=\"text-align: center;\">So much that I cry</p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For you are the wonder</p>\r\n<p style=\"text-align: center;\">That brightens my day</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">When I am overwhelmed with darkness</p>\r\n<p style=\"text-align: center;\">You are the light that takes the dark away</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My beauty in the night</p>\r\n<p style=\"text-align: center;\">My protector from the storm</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My insulation in the winter</p>\r\n<p style=\"text-align: center;\">For your love keeps me warm</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n\r\n\r\n<hr />\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">In the still of the night</p>\r\n<p style=\"text-align: center;\">I’m so thankful to have you by my side</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As you lay beside me</p>\r\n<p style=\"text-align: center;\">I feel tears form in my eyes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Nights have always been beautiful</p>\r\n<p style=\"text-align: center;\">But not as beautiful as these</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My nights are filled with fireflies</p>\r\n<p style=\"text-align: center;\">And I thank you for bringing them to me</p>\r\n<p style=\"text-align: center;\"></p>\r\n ','Fireflies','','inherit','open','open','','1073-revision-v1','','','2015-08-07 13:38:19','2015-08-07 18:38:19','',1073,'http://www.monicarenata.com/1073-revision-v1/',0,'revision','',0),(1075,1,'2015-08-12 10:43:20','2015-08-12 15:43:20','<p style=\"text-align: center;\">They ask me how I’m doing</p>\r\n<p style=\"text-align: center;\">And without a blink in my eyes</p>\r\n<p style=\"text-align: center;\">I say that I am lovely</p>\r\n<p style=\"text-align: center;\">And it takes them by surprise</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For they can’t understand</p>\r\n<p style=\"text-align: center;\">How this is how I see my day</p>\r\n<p style=\"text-align: center;\">But I can’t understand</p>\r\n<p style=\"text-align: center;\">How they let negativity keep happiness away</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As long as the day comes each morning</p>\r\n<p style=\"text-align: center;\">Not even the darkest of nights can dishearten me</p>\r\n<p style=\"text-align: center;\">That’s why forever my days will be lovely</p>\r\n<p style=\"text-align: center;\">From negativity I have been set free</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><em>“The best decision I made in my entire life was to wake up happy each day! I no longer start my day with a negative mind. Instead of focusing on the negatives, I focus on the positives….</em></p>\r\n<p style=\"text-align: center;\"><em>HAPPINESS IS A CHOICE!</em></p>\r\n<p style=\"text-align: center;\"><em>Make a conscious choice to be happy each day and watch how much your life will change for the better.” –Monica Renata</em></p>','I am Lovely','','publish','open','open','','i-am-lovely','','','2015-08-12 10:43:20','2015-08-12 15:43:20','',0,'http://www.monicarenata.com/?p=1075',0,'post','',0),(1076,1,'2015-08-12 10:43:20','2015-08-12 15:43:20','<p style=\"text-align: center;\">They ask me how I’m doing</p>\r\n<p style=\"text-align: center;\">And without a blink in my eyes</p>\r\n<p style=\"text-align: center;\">I say that I am lovely</p>\r\n<p style=\"text-align: center;\">And it takes them by surprise</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For they can’t understand</p>\r\n<p style=\"text-align: center;\">How this is how I see my day</p>\r\n<p style=\"text-align: center;\">But I can’t understand</p>\r\n<p style=\"text-align: center;\">How they let negativity keep happiness away</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As long as the day comes each morning</p>\r\n<p style=\"text-align: center;\">Not even the darkest of nights can dishearten me</p>\r\n<p style=\"text-align: center;\">That’s why forever my days will be lovely</p>\r\n<p style=\"text-align: center;\">From negativity I have been set free</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><em>“The best decision I made in my entire life was to wake up happy each day! I no longer start my day with a negative mind. Instead of focusing on the negatives, I focus on the positives….</em></p>\r\n<p style=\"text-align: center;\"><em>HAPPINESS IS A CHOICE!</em></p>\r\n<p style=\"text-align: center;\"><em>Make a conscious choice to be happy each day and watch how much your life will change for the better.” –Monica Renata</em></p>','I am Lovely','','inherit','open','open','','1075-revision-v1','','','2015-08-12 10:43:20','2015-08-12 15:43:20','',1075,'http://www.monicarenata.com/1075-revision-v1/',0,'revision','',0),(1077,1,'2015-08-14 08:04:45','2015-08-14 13:04:45','Curiosity killed the cat\r\n\r\nBut also fueled the fire\r\n\r\nFor you accomplished many things\r\n\r\nBecause of your hearts desires\r\n\r\n \r\n\r\nA spark of interest here and there\r\n\r\nIs never quite as bad\r\n\r\nFor this propelled you to obtain in life\r\n\r\nThings you never had\r\n\r\n \r\n\r\nCuriosity killed the cat\r\n\r\nBut the death is never truly revealed\r\n\r\nPerhaps it lost its drive in life\r\n\r\nAnd now sit complacent like roadkill\r\n\r\n ','Curiosity','','publish','open','open','','curiosity','','','2015-08-14 08:05:41','2015-08-14 13:05:41','',0,'http://www.monicarenata.com/?p=1077',0,'post','',0),(1078,1,'2015-08-14 08:04:45','2015-08-14 13:04:45','Curiosity killed the cat\r\n\r\nBut also fueled the fire\r\n\r\nFor you accomplished many things\r\n\r\nBecause of your hearts desires\r\n\r\n \r\n\r\nA spark of interest here and there\r\n\r\nIs never quite as bad\r\n\r\nFor this propelled you to obtain in life\r\n\r\nThings you never had\r\n\r\n \r\n\r\nCuriosity killed the cat\r\n\r\nBut the death is never truly revealed\r\n\r\nPerhaps it lost its drive in life\r\n\r\nAnd now sit complacent like roadkill\r\n\r\n ','Curiosity','','inherit','open','open','','1077-revision-v1','','','2015-08-14 08:04:45','2015-08-14 13:04:45','',1077,'http://www.monicarenata.com/1077-revision-v1/',0,'revision','',0),(1080,1,'2015-08-20 11:42:35','2015-08-20 16:42:35','Keep the candle burning\r\nLet that fire shine so bright\r\nLet the wax drip down the sides\r\nLet it descend in height\r\n\r\nAnd when that fire begins to flicker\r\nWatch it closely with your eyes\r\nFor your life is like a burning candle\r\nSo don’t forget to live your life\r\n\r\n<em>“Don’t ever forget to live your life. Don’t wait to start living when your life is slowly flickering out. Live now!!”</em> –Monica Renata','Your Burning Light','','publish','open','open','','your-burning-light','','','2015-08-20 11:43:37','2015-08-20 16:43:37','',0,'http://www.monicarenata.com/?p=1080',0,'post','',0),(1081,1,'2015-08-20 11:42:35','2015-08-20 16:42:35','Keep the candle burning\r\nLet that fire shine so bright\r\nLet the wax drip down the sides\r\nLet it descend in height\r\n\r\nAnd when that fire begins to flicker\r\nWatch it closely with your eyes\r\nFor your life is like a burning candle\r\nSo don’t forget to live your life\r\n\r\n“Don’t ever forget to live your life. Don’t wait to start living when your life is slowly flickering out. Live now!!” –Monica Renata \r\n','Your Burning Light','','inherit','open','open','','1080-revision-v1','','','2015-08-20 11:42:35','2015-08-20 16:42:35','',1080,'http://www.monicarenata.com/1080-revision-v1/',0,'revision','',0),(1082,1,'2015-08-20 11:43:37','2015-08-20 16:43:37','Keep the candle burning\r\nLet that fire shine so bright\r\nLet the wax drip down the sides\r\nLet it descend in height\r\n\r\nAnd when that fire begins to flicker\r\nWatch it closely with your eyes\r\nFor your life is like a burning candle\r\nSo don’t forget to live your life\r\n\r\n<em>“Don’t ever forget to live your life. Don’t wait to start living when your life is slowly flickering out. Live now!!”</em> –Monica Renata','Your Burning Light','','inherit','open','open','','1080-revision-v1','','','2015-08-20 11:43:37','2015-08-20 16:43:37','',1080,'http://www.monicarenata.com/1080-revision-v1/',0,'revision','',0),(1083,1,'2015-08-20 11:44:55','2015-08-20 16:44:55','Toxic air is taking over\r\n\r\nI cannot breathe\r\n\r\n \r\n\r\nThe air is getting slowly thicker\r\n\r\nI also cannot see\r\n\r\n \r\n\r\nThe poison that filled the air\r\n\r\nWas poison meant for me\r\n\r\n \r\n\r\nFor you kill me slowly with the lies you tell\r\n\r\nSlowly crippling me','Toxic Air','','publish','open','open','','toxic-air','','','2015-08-20 11:47:48','2015-08-20 16:47:48','',0,'http://www.monicarenata.com/?p=1083',0,'post','',0),(1084,1,'2015-08-20 11:44:55','2015-08-20 16:44:55','Toxic air is taking over\r\n\r\nI cannot breathe\r\n\r\n \r\n\r\nThe air is getting slowly thicker\r\n\r\nI also cannot see\r\n\r\n \r\n\r\nThe poison that filled the air\r\n\r\nWas poison meant for me\r\n\r\n \r\n\r\nFor you kill me slowly with the lies you tell\r\n\r\nSlowly crippling me','Toxic Air','','inherit','open','open','','1083-revision-v1','','','2015-08-20 11:44:55','2015-08-20 16:44:55','',1083,'http://www.monicarenata.com/1083-revision-v1/',0,'revision','',0),(1086,1,'2015-08-30 22:38:18','2015-08-31 03:38:18','I scream\r\nBut they can’t hear me\r\nThere seems to be a silence about my voice\r\n\r\nI yell\r\nBut I am unheard\r\nIt seems that I don’t have a voice\r\n\r\nYou scream\r\nAnd it is the same thing\r\nSilence is the only sound\r\n\r\nYou yell\r\nBut still nothing\r\nYet they can hear a pen tap the ground\r\n\r\nWe scream\r\nAnd it turns a head\r\nThey wonder what commotion is going on\r\n\r\nWe yell\r\nAnd they think we are crazy\r\nThey question, “What are they yelling for!?”\r\n\r\nBut in our screams and yelling\r\nThey still don’t hear a sound\r\nUntil our friends and family join us\r\nNow we can be heard because we’re loud\r\n\r\nI scream, you scream, we scream\r\nWe then produce a roar\r\nAnd the roar frightens people\r\nBut holds their attention more\r\n\r\nI yell, you yell, we yell\r\nWe can now be heard clear as day\r\nThere is strength in numbers and they will look\r\nBut will they listen to what we say\r\n\r\n \r\n\r\nBut rally on my friends\r\n\r\nOne day we shall be heard\r\n\r\nToday we scream and they hear silence\r\n\r\nBut soon they will hear words\r\n\r\n \r\n\r\n<em>\"A person may not be heard if they are alone. However, if their voice is joined with others, change can happen.\" -Monica Renata</em>','Rally On','','inherit','closed','closed','','1066-revision-v1','','','2015-08-30 22:38:18','2015-08-31 03:38:18','',1066,'http://www.monicarenata.com/1066-revision-v1/',0,'revision','',0),(1087,1,'2015-08-30 22:39:13','2015-08-31 03:39:13','I scream\r\nBut they can’t hear me\r\nThere seems to be a silence about my voice\r\n\r\nI yell\r\nBut I am unheard\r\nIt seems that I don’t have a voice\r\n\r\nYou scream\r\nAnd it is the same thing\r\nSilence is the only sound\r\n\r\nYou yell\r\nBut still nothing\r\nYet they can hear a pen tap the ground\r\n\r\nWe scream\r\nAnd it turns a head\r\nThey wonder what commotion is going on\r\n\r\nWe yell\r\nAnd they think we are crazy\r\nThey question, “What are they yelling for!?”\r\n\r\nBut in our screams and yelling\r\nThey still don’t hear a sound\r\nUntil our friends and family join us\r\nNow we can be heard because we’re loud\r\n\r\nI scream, you scream, we scream\r\nWe then produce a roar\r\nAnd the roar frightens people\r\nBut holds their attention more\r\n\r\nI yell, you yell, we yell\r\nWe can now be heard clear as day\r\nThere is strength in numbers and they will look\r\nBut will they listen to what we say\r\n\r\nBut rally on my friends\r\nOne day we shall be heard\r\nToday we scream and they hear silence\r\nBut soon they will hear words\r\n\r\n<em>\"A person may not be heard if they are alone. However, if their voice is joined with others, change can happen.\" -Monica Renata</em>','Rally On','','inherit','closed','closed','','1066-revision-v1','','','2015-08-30 22:39:13','2015-08-31 03:39:13','',1066,'http://www.monicarenata.com/1066-revision-v1/',0,'revision','',0),(1088,1,'2015-08-30 22:56:05','2015-08-31 03:56:05','Faded petals in the wind\r\nOur paths did intertwine\r\n\r\nUnderneath the shade trees by the water\r\nWhere the birds so loved to fly\r\n\r\nConversation flowed freely\r\nAnd the wind brushed across our cheeks\r\n\r\nPlaying softly in the fall breeze\r\nTil the honey glazed sun set\r\n\r\nThen separated by the elements\r\nOur paths in life made us divide\r\n\r\nBut today we meet again\r\nMy happiness has returned once more inside\r\n\r\nI look into your deep brown eyes\r\nI want you even more\r\n\r\nAnd then as thoughts rush through my head\r\nI cannot find my words\r\n\r\nAnd as I get ready to release my words\r\nYou finally kiss me\r\n\r\nThe softest lips I ever tasted\r\nA flavor I don\'t want to leave\r\n\r\nFaded petals in the wind\r\nOur paths did intertwined\r\n\r\nAnd since our past departure\r\nI always wondered why\r\n\r\nBut since the world brought you back to me\r\nI want you to never go away\r\n\r\nLet\'s take our petals and put them together\r\nAnd form a beautiful bouquet\r\n\r\n<img class=\"aligncenter\" src=\"http://i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg\" alt=\"\" width=\"126\" height=\"190\" />\r\n\r\n<em>\"Life has a way of reintroducing people back in your life....\"</em> -Monica Renata','Petals In The Wind','','publish','open','open','','petals-in-the-wind','','','2015-08-30 23:00:15','2015-08-31 04:00:15','',0,'http://www.monicarenata.com/?p=1088',0,'post','',0),(1089,1,'2015-08-30 22:56:05','2015-08-31 03:56:05','Faded petals in the wind\r\nOur paths did intertwine\r\n\r\nUnderneath the shade trees by the water\r\nWhere the birds so loved to fly\r\n\r\nConversation flowed freely\r\nAnd the wind brushed across our cheeks\r\n\r\nPlaying softly in the fall breeze\r\nTil the honey glazed sun set\r\n\r\nThen separated by the elements\r\nOur paths in life made us divide\r\n\r\nBut today we meet again\r\nMy happiness has returned once more inside\r\n\r\nI look into your deep brown eyes\r\nI want you even more\r\n\r\nAnd then as thoughts rush through my head\r\nI cannot find my words \r\n\r\nAnd as I get ready to release my words\r\nYou finally kiss me\r\n\r\nThe softest lips I ever tasted\r\nA flavor I don\'t want to leave\r\n\r\nFaded petals in the wind\r\nOur paths did intertwined\r\n\r\nAnd since our past departure\r\nI always wondered why\r\n\r\nBut since the world brought you back to me\r\nI want you to never go away\r\n\r\nLet\'s take our petals and put them together\r\nAnd form a beautiful bouquet \r\n\r\n\"Life has a way of reintroducing people back in your life....\" -Monica Renata','Petals In The Wind','','inherit','closed','closed','','1088-revision-v1','','','2015-08-30 22:56:05','2015-08-31 03:56:05','',1088,'http://www.monicarenata.com/1088-revision-v1/',0,'revision','',0),(1090,1,'2015-08-30 22:59:43','2015-08-31 03:59:43','\r\nFaded petals in the wind\r\nOur paths did intertwine\r\n\r\nUnderneath the shade trees by the water\r\nWhere the birds so loved to fly\r\n\r\nConversation flowed freely\r\nAnd the wind brushed across our cheeks\r\n\r\nPlaying softly in the fall breeze\r\nTil the honey glazed sun set\r\n\r\nThen separated by the elements\r\nOur paths in life made us divide\r\n\r\nBut today we meet again\r\nMy happiness has returned once more inside\r\n\r\nI look into your deep brown eyes\r\nI want you even more\r\n\r\nAnd then as thoughts rush through my head\r\nI cannot find my words \r\n\r\nAnd as I get ready to release my words\r\nYou finally kiss me\r\n\r\nThe softest lips I ever tasted\r\nA flavor I don\'t want to leave\r\n\r\nFaded petals in the wind\r\nOur paths did intertwined\r\n\r\nAnd since our past departure\r\nI always wondered why\r\n\r\nBut since the world brought you back to me\r\nI want you to never go away\r\n\r\nLet\'s take our petals and put them together\r\nAnd form a beautiful bouquet \r\n\r\n<img src=\"http://i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg\" width=\"126\" height=\"190\" class=\"aligncenter\" />\r\n\r\n\"Life has a way of reintroducing people back in your life....\" -Monica Renata','Petals In The Wind','','inherit','closed','closed','','1088-autosave-v1','','','2015-08-30 22:59:43','2015-08-31 03:59:43','',1088,'http://www.monicarenata.com/1088-autosave-v1/',0,'revision','',0),(1091,1,'2015-08-30 23:00:15','2015-08-31 04:00:15','Faded petals in the wind\r\nOur paths did intertwine\r\n\r\nUnderneath the shade trees by the water\r\nWhere the birds so loved to fly\r\n\r\nConversation flowed freely\r\nAnd the wind brushed across our cheeks\r\n\r\nPlaying softly in the fall breeze\r\nTil the honey glazed sun set\r\n\r\nThen separated by the elements\r\nOur paths in life made us divide\r\n\r\nBut today we meet again\r\nMy happiness has returned once more inside\r\n\r\nI look into your deep brown eyes\r\nI want you even more\r\n\r\nAnd then as thoughts rush through my head\r\nI cannot find my words\r\n\r\nAnd as I get ready to release my words\r\nYou finally kiss me\r\n\r\nThe softest lips I ever tasted\r\nA flavor I don\'t want to leave\r\n\r\nFaded petals in the wind\r\nOur paths did intertwined\r\n\r\nAnd since our past departure\r\nI always wondered why\r\n\r\nBut since the world brought you back to me\r\nI want you to never go away\r\n\r\nLet\'s take our petals and put them together\r\nAnd form a beautiful bouquet\r\n\r\n<img class=\"aligncenter\" src=\"http://i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg\" alt=\"\" width=\"126\" height=\"190\" />\r\n\r\n<em>\"Life has a way of reintroducing people back in your life....\"</em> -Monica Renata','Petals In The Wind','','inherit','closed','closed','','1088-revision-v1','','','2015-08-30 23:00:15','2015-08-31 04:00:15','',1088,'http://www.monicarenata.com/1088-revision-v1/',0,'revision','',0),(1092,1,'2015-08-31 08:03:23','2015-08-31 13:03:23','I danced in the mirror this morning\r\n\r\nI even began to sing\r\n\r\nI woke up with so much energy\r\n\r\nNo one could tell me any negative things\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI saw myself for who I really am\r\n\r\nA beautiful free spirit\r\n\r\nAnd I continued to wave my hands in the air\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI am so happy and feel so free\r\n\r\nFor my life is like beautiful music\r\n\r\nWhich keeps me dancing on my feet','Beautiful Music: Life','','publish','open','open','','beautiful-music-life','','','2015-08-31 08:05:49','2015-08-31 13:05:49','',0,'http://www.monicarenata.com/?p=1092',0,'post','',0),(1093,1,'2015-08-31 08:03:23','2015-08-31 13:03:23','I danced in the mirror this morning\r\n\r\nI even began to sing\r\n\r\nI woke up with so much energy\r\n\r\nNoone could tell me any negative things\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI saw myself for who I really am\r\n\r\nA beautiful free spirit\r\n\r\nAnd I continued to wave my hands in the air\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI am so happy and feel so free\r\n\r\nFor my life is like beautiful music\r\n\r\nWhich keeps me dancing on my feet','Beautiful Music: Life','','inherit','closed','closed','','1092-revision-v1','','','2015-08-31 08:03:23','2015-08-31 13:03:23','',1092,'http://www.monicarenata.com/1092-revision-v1/',0,'revision','',0),(1094,1,'2015-08-31 08:05:49','2015-08-31 13:05:49','I danced in the mirror this morning\r\n\r\nI even began to sing\r\n\r\nI woke up with so much energy\r\n\r\nNo one could tell me any negative things\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI saw myself for who I really am\r\n\r\nA beautiful free spirit\r\n\r\nAnd I continued to wave my hands in the air\r\n\r\n \r\n\r\nI danced in the mirror this morning\r\n\r\nI am so happy and feel so free\r\n\r\nFor my life is like beautiful music\r\n\r\nWhich keeps me dancing on my feet','Beautiful Music: Life','','inherit','closed','closed','','1092-revision-v1','','','2015-08-31 08:05:49','2015-08-31 13:05:49','',1092,'http://www.monicarenata.com/1092-revision-v1/',0,'revision','',0),(1095,1,'2015-08-31 08:28:28','2015-08-31 13:28:28','I sit here waiting for you\r\n\r\nYet I wait for quite some time\r\n\r\n \r\n\r\nYou call and I answer\r\n\r\nBut your mind seems occupied\r\n\r\n \r\n\r\nI pretend that I’m okay\r\n\r\nBut in truth I’m living a lie\r\n\r\n \r\n\r\nFor you say you care for me deeply\r\n\r\nBut I know I’m an afterthought in your mind\r\n\r\n \r\n\r\nA day passes and you are okay\r\n\r\nYet I’m slowly dying inside\r\n\r\n \r\n\r\nYou say “Baby I’m busy”\r\n\r\nBut I know that is a lie\r\n\r\n \r\n\r\nHeart slowly breaking\r\n\r\nThe beats seem to be no more\r\n\r\n \r\n\r\nYet I still wait for things to change\r\n\r\nBut honestly I can’t do this anymore\r\n\r\n \r\n\r\nYou think of me when it’s convenient\r\n\r\nOther than that you could care the least\r\n\r\n \r\n\r\nSo why think of you constantly\r\n\r\nWhen you can barely think of me?\r\n\r\n \r\n\r\nI’m a person too you know\r\n\r\nI deserve the same things as you\r\n\r\n \r\n\r\nSo don’t expect me to constantly accommodate\r\n\r\nWhen I’m just an afterthought to you\r\n\r\n \r\n\r\n<em>“Stop valuing people who clearly do not value you. Life is too short to waste time waiting for someone to realize your true value! Surround yourself with those who care about you all the time, not when you are ‘convenient’ for them.” –Monica Renata </em>\r\n\r\n \r\n\r\n ','Afterthought','','publish','open','open','','afterthought','','','2015-09-01 12:29:43','2015-09-01 17:29:43','',0,'http://www.monicarenata.com/?p=1095',0,'post','',1),(1096,1,'2015-08-31 08:28:28','2015-08-31 13:28:28','I sit here waiting for you\r\n\r\nYet I wait for quite some time\r\n\r\n \r\n\r\nYou call and I answer\r\n\r\nBut your mind seems occupied\r\n\r\n \r\n\r\nI pretend that I’m okay\r\n\r\nBut in truth I’m living a lie\r\n\r\n \r\n\r\nFor you say you care for me deeply\r\n\r\nBut I know I’m an afterthought in your mind\r\n\r\n \r\n\r\nA day passes and you are okay\r\n\r\nYet I’m slowly dying inside\r\n\r\n \r\n\r\nYou say “Baby I’m busy”\r\n\r\nBut I know that is a lie\r\n\r\n \r\n\r\nHeart slowly breaking\r\n\r\nThe beats seem to be no more\r\n\r\n \r\n\r\nYet I still wait for things to change\r\n\r\nBut honestly I can’t do this anymore\r\n\r\n \r\n\r\nYou think of me when it’s convenient\r\n\r\nOther than that you could care the least\r\n\r\n \r\n\r\nSo why think of you constantly\r\n\r\nWhen you can barely think of me?\r\n\r\n \r\n\r\nI’m a person to you know\r\n\r\nI deserve the same things as you\r\n\r\n \r\n\r\nSo don’t expect me to constantly accommodate\r\n\r\nWhen I’m just an afterthought to you\r\n\r\n \r\n\r\n<em>“Stop valuing people who clearly do not value you. Life is too short to waste time waiting for someone to realize your true value! Surround yourself with those who care about you all the time, not when you are ‘convenient’ for them.” –Monica Renata </em>\r\n\r\n \r\n\r\n ','Afterthought','','inherit','closed','closed','','1095-revision-v1','','','2015-08-31 08:28:28','2015-08-31 13:28:28','',1095,'http://www.monicarenata.com/1095-revision-v1/',0,'revision','',0),(1097,1,'2015-09-01 12:29:43','2015-09-01 17:29:43','I sit here waiting for you\r\n\r\nYet I wait for quite some time\r\n\r\n \r\n\r\nYou call and I answer\r\n\r\nBut your mind seems occupied\r\n\r\n \r\n\r\nI pretend that I’m okay\r\n\r\nBut in truth I’m living a lie\r\n\r\n \r\n\r\nFor you say you care for me deeply\r\n\r\nBut I know I’m an afterthought in your mind\r\n\r\n \r\n\r\nA day passes and you are okay\r\n\r\nYet I’m slowly dying inside\r\n\r\n \r\n\r\nYou say “Baby I’m busy”\r\n\r\nBut I know that is a lie\r\n\r\n \r\n\r\nHeart slowly breaking\r\n\r\nThe beats seem to be no more\r\n\r\n \r\n\r\nYet I still wait for things to change\r\n\r\nBut honestly I can’t do this anymore\r\n\r\n \r\n\r\nYou think of me when it’s convenient\r\n\r\nOther than that you could care the least\r\n\r\n \r\n\r\nSo why think of you constantly\r\n\r\nWhen you can barely think of me?\r\n\r\n \r\n\r\nI’m a person too you know\r\n\r\nI deserve the same things as you\r\n\r\n \r\n\r\nSo don’t expect me to constantly accommodate\r\n\r\nWhen I’m just an afterthought to you\r\n\r\n \r\n\r\n<em>“Stop valuing people who clearly do not value you. Life is too short to waste time waiting for someone to realize your true value! Surround yourself with those who care about you all the time, not when you are ‘convenient’ for them.” –Monica Renata </em>\r\n\r\n \r\n\r\n ','Afterthought','','inherit','closed','closed','','1095-revision-v1','','','2015-09-01 12:29:43','2015-09-01 17:29:43','',1095,'http://www.monicarenata.com/1095-revision-v1/',0,'revision','',0),(1098,1,'2015-09-01 12:33:35','2015-09-01 17:33:35','You miss me in the morning\r\n\r\nYou miss me while you sleep\r\n\r\n \r\n\r\nThose are the few times you say\r\n\r\nThat you actually miss me\r\n\r\n \r\n\r\nWhen the sun descends at night\r\n\r\nAnd in the morning when the sun does rise\r\n\r\n \r\n\r\nThose are the times you miss me\r\n\r\nWhen I’m not laying by your side','You Miss Me','','publish','open','open','','you-miss-me','','','2015-09-01 12:40:44','2015-09-01 17:40:44','',0,'http://www.monicarenata.com/?p=1098',0,'post','',1),(1099,1,'2015-09-01 12:33:35','2015-09-01 17:33:35','You miss me in the morning\r\n\r\nYou miss me while you sleep\r\n\r\n \r\n\r\nThose are the few times you say\r\n\r\nThat you actually miss me\r\n\r\n \r\n\r\nWhen the sun descends at night\r\n\r\nAnd in the morning when the sun does rise\r\n\r\n \r\n\r\nThose are the times you miss me\r\n\r\nWhen I’m not laying by your side','You Miss Me','','inherit','closed','closed','','1098-revision-v1','','','2015-09-01 12:33:35','2015-09-01 17:33:35','',1098,'http://www.monicarenata.com/1098-revision-v1/',0,'revision','',0),(1100,1,'2015-09-04 07:40:34','2015-09-04 12:40:34','Days were always sunny\r\n\r\nThat was until you came\r\n\r\nThen drizzle fell from my sky\r\n\r\nAnd when you got closer it rained\r\n\r\n \r\n\r\nYet you still held me closely\r\n\r\nClose to the heart in your chest\r\n\r\nI can feel your beat on me\r\n\r\nGetting faster with each breath\r\n\r\n \r\n\r\nPouring down its raining\r\n\r\nNo more sunny skies\r\n\r\nDrenched is my body\r\n\r\nAs it rains time seems to fly by\r\n\r\n \r\n\r\nIntertwined like rope\r\n\r\nHands locked and eyes closed\r\n\r\nWe are dancing in the rain today\r\n\r\nSoaked in love as our skins glow\r\n\r\n \r\n\r\n ','Dancing In The Rain','','publish','open','open','','dancing-in-the-rain','','','2015-09-04 07:40:34','2015-09-04 12:40:34','',0,'http://www.monicarenata.com/?p=1100',0,'post','',0),(1101,1,'2015-09-04 07:40:34','2015-09-04 12:40:34','Days were always sunny\r\n\r\nThat was until you came\r\n\r\nThen drizzle fell from my sky\r\n\r\nAnd when you got closer it rained\r\n\r\n \r\n\r\nYet you still held me closely\r\n\r\nClose to the heart in your chest\r\n\r\nI can feel your beat on me\r\n\r\nGetting faster with each breath\r\n\r\n \r\n\r\nPouring down its raining\r\n\r\nNo more sunny skies\r\n\r\nDrenched is my body\r\n\r\nAs it rains time seems to fly by\r\n\r\n \r\n\r\nIntertwined like rope\r\n\r\nHands locked and eyes closed\r\n\r\nWe are dancing in the rain today\r\n\r\nSoaked in love as our skins glow\r\n\r\n \r\n\r\n ','Dancing In The Rain','','inherit','closed','closed','','1100-revision-v1','','','2015-09-04 07:40:34','2015-09-04 12:40:34','',1100,'http://www.monicarenata.com/1100-revision-v1/',0,'revision','',0),(1103,1,'2015-09-04 08:53:28','2015-09-04 13:53:28','<div style=\"text-align: center;\"></div>\r\n<p style=\"text-align: center;\">Completely and utterly interesting</p>\r\n<p style=\"text-align: center;\">The apple of one\'s eye</p>\r\n<p style=\"text-align: center;\">Admiration of so many others</p>\r\n<p style=\"text-align: center;\">But nothing but coldness inside</p>\r\n<p style=\"text-align: center;\">Smile that shines so brightly</p>\r\n<p style=\"text-align: center;\">Followed by a smirk</p>\r\n<p style=\"text-align: center;\">We were warned about this person</p>\r\n<p style=\"text-align: center;\">This person will treat you worst than dirt</p>\r\n<p style=\"text-align: center;\">To take your heart and hold it</p>\r\n<p style=\"text-align: center;\">Hold it so very tight</p>\r\n<p style=\"text-align: center;\">You think this is a loving embrace</p>\r\n<p style=\"text-align: center;\">But it only looks like that to the naive eye</p>\r\n<p style=\"text-align: center;\">Dance with your emotions</p>\r\n<p style=\"text-align: center;\">In a never ending fiery ring</p>\r\n<p style=\"text-align: center;\">You think this is love</p>\r\n<p style=\"text-align: center;\">Because what else could it be?</p>\r\n<p style=\"text-align: center;\">Wrapped up in this whole feeling</p>\r\n<p style=\"text-align: center;\">Then they decide to leave</p>\r\n<p style=\"text-align: center;\">Lost in all confusion</p>\r\n<p style=\"text-align: center;\">You get on your knees and plead</p>\r\n<p style=\"text-align: center;\">\"Why is this happening?\"</p>\r\n<p style=\"text-align: center;\">\"What did I do wrong?\"</p>\r\n<p style=\"text-align: center;\">But in the eyes of the <em>HeartBreaker</em></p>\r\n<p style=\"text-align: center;\">You see a person with no soul</p>\r\n<p style=\"text-align: center;\">Stealing hearts and murdering them</p>\r\n<p style=\"text-align: center;\">Make your emotions cease</p>\r\n<p style=\"text-align: center;\">You can\'t win with the heartbreaker</p>\r\n<p style=\"text-align: center;\">For they will leave your heart decease</p>\r\n \r\n\r\n \r\n\r\n<em>\"Watch who you give your heart to...... Everyone doesn\'t value it the same...........\" - Monica Renata</em>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\"><img src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\" alt=\"\" width=\"391\" height=\"400\" border=\"0\" /></a></div>\r\n ','The HeartBreaker','','inherit','closed','closed','','112-autosave-v1','','','2015-09-04 08:53:28','2015-09-04 13:53:28','',112,'http://www.monicarenata.com/112-autosave-v1/',0,'revision','',0),(1105,1,'2015-09-04 08:57:47','2015-09-04 13:57:47','<div style=\"text-align: center;\"></div>\r\n<p style=\"text-align: center;\">Completely and utterly interesting\r\nThe apple of one\'s eye\r\nAdmiration of so many others\r\nBut nothing but coldness inside</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Smile that shines so brightly\r\nFollowed by a smirk\r\nWe were warned about this person\r\nThis person will treat you worst than dirt</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">To take your heart and hold it\r\nHold it so very tight\r\nYou think this is a loving embrace\r\nBut it only looks like that to the naive eye</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Dance with your emotions\r\nIn a never ending fiery ring\r\nYou think this is love\r\nBecause what else could it be?</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Wrapped up in this whole feeling\r\nThen they decide to leave\r\nLost in all confusion\r\nYou get on your knees and plead</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">\"Why is this happening?\"\r\n\"What did I do wrong?\"\r\nBut in the eyes of the HeartBreaker\r\nYou see a person with no soul</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Stealing hearts and murdering them\r\nMake your emotions cease\r\nYou can\'t win with the heartbreaker\r\nFor they will leave your heart decease</p>\r\n<p style=\"text-align: center;\"></p>\r\n<em>\"Watch who you give your heart to...... Everyone doesn\'t value it the same...........\" - Monica Renata</em>\r\n<div style=\"clear: both; text-align: center;\"><a style=\"margin-left: 1em; margin-right: 1em;\" href=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\"><img src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa\" alt=\"\" width=\"391\" height=\"400\" border=\"0\" /></a></div>\r\n ','The HeartBreaker','','inherit','closed','closed','','112-revision-v1','','','2015-09-04 08:57:47','2015-09-04 13:57:47','',112,'http://www.monicarenata.com/112-revision-v1/',0,'revision','',0),(1107,1,'2015-09-08 13:57:51','2015-09-08 18:57:51','Fairy tales aren\'t real they say\r\n\r\nBut I do disagree\r\n\r\nFor I found my happily ever after\r\n\r\nThe moment you picked me\r\n\r\n \r\n\r\n \r\n\r\nLike a flower in the meadow ahead\r\n\r\nI thought I blended in with the crowd\r\n\r\nBut you picked me from the never-ending bunch\r\n\r\nBecause you said I made you smile\r\n\r\n \r\n\r\n \r\n\r\nAnd every morning when I awake\r\n\r\nI awaken to you watching me sleep\r\n\r\nYou say I am your Sleeping Beauty\r\n\r\nAnd I have tamed your inner beast\r\n\r\n \r\n\r\n \r\n\r\nNo minions shall separate us\r\n\r\nOur love can exist even under the sea\r\n\r\nEvil characters don\'t phase us\r\n\r\nFor I love you and you love me\r\n\r\n \r\n\r\n \r\n\r\nPart of your world I shall always be\r\n\r\nI can see the love tonight\r\n\r\nFairy tales do come true you know\r\n\r\nAnd I know for sure when I look in your eyes\r\n\r\n \r\n\r\n \r\n\r\n<em>\"Fairy tales aren\'t real...but that doesn\'t mean that life doesn\'t end with a \'happily ever after\'.\" -Monica Renata </em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Fairy Tales Aren\'t Real','','publish','open','open','','fairy-tales-arent-real','','','2015-09-08 13:57:51','2015-09-08 18:57:51','',0,'http://www.monicarenata.com/?p=1107',0,'post','',0),(1108,1,'2015-09-08 13:57:51','2015-09-08 18:57:51','Fairy tales aren\'t real they say\r\n\r\nBut I do disagree\r\n\r\nFor I found my happily ever after\r\n\r\nThe moment you picked me\r\n\r\n \r\n\r\n \r\n\r\nLike a flower in the meadow ahead\r\n\r\nI thought I blended in with the crowd\r\n\r\nBut you picked me from the never-ending bunch\r\n\r\nBecause you said I made you smile\r\n\r\n \r\n\r\n \r\n\r\nAnd every morning when I awake\r\n\r\nI awaken to you watching me sleep\r\n\r\nYou say I am your Sleeping Beauty\r\n\r\nAnd I have tamed your inner beast\r\n\r\n \r\n\r\n \r\n\r\nNo minions shall separate us\r\n\r\nOur love can exist even under the sea\r\n\r\nEvil characters don\'t phase us\r\n\r\nFor I love you and you love me\r\n\r\n \r\n\r\n \r\n\r\nPart of your world I shall always be\r\n\r\nI can see the love tonight\r\n\r\nFairy tales do come true you know\r\n\r\nAnd I know for sure when I look in your eyes\r\n\r\n \r\n\r\n \r\n\r\n<em>\"Fairy tales aren\'t real...but that doesn\'t mean that life doesn\'t end with a \'happily ever after\'.\" -Monica Renata </em>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Fairy Tales Aren\'t Real','','inherit','closed','closed','','1107-revision-v1','','','2015-09-08 13:57:51','2015-09-08 18:57:51','',1107,'http://www.monicarenata.com/1107-revision-v1/',0,'revision','',0),(1109,1,'2015-09-09 13:55:50','2015-09-09 18:55:50','If I was standing on the edge of the atmosphere\r\n\r\nAnd I only had one breath left\r\n\r\nI would inhale it so deeply\r\n\r\nTill my lungs burst in my chest\r\n\r\n \r\n\r\nI would feel my body cringe\r\n\r\nFrom pleasure and also pain\r\n\r\nFor that breath represents you in my life\r\n\r\nSomething I lost that I wanted to remain\r\n\r\n \r\n\r\nSomething that once helped me live\r\n\r\nBut now it is the reason I shall die\r\n\r\nFor you slowly weakened me\r\n\r\nHeld hostage by your love and my denial\r\n\r\n \r\n\r\nBut still when I’m given a choice\r\n\r\nEach time I choose to breath\r\n\r\nFor you was once my life-force\r\n\r\nBut now you make it hard to breathe\r\n\r\n \r\n\r\nNo more pleasant dreams\r\n\r\nNothing but heartbreak in the air\r\n\r\nFor happiness use to float about\r\n\r\nBut now we live in this venomous atmosphere\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"Sometimes the ones that we love the most can create the most toxic environments for us......\" -Monica Renata </em>','Atmosphere','','publish','open','open','','atmosphere','','','2015-09-09 13:55:50','2015-09-09 18:55:50','',0,'http://www.monicarenata.com/?p=1109',0,'post','',0),(1110,1,'2015-09-09 13:55:50','2015-09-09 18:55:50','If I was standing on the edge of the atmosphere\r\n\r\nAnd I only had one breath left\r\n\r\nI would inhale it so deeply\r\n\r\nTill my lungs burst in my chest\r\n\r\n \r\n\r\nI would feel my body cringe\r\n\r\nFrom pleasure and also pain\r\n\r\nFor that breath represents you in my life\r\n\r\nSomething I lost that I wanted to remain\r\n\r\n \r\n\r\nSomething that once helped me live\r\n\r\nBut now it is the reason I shall die\r\n\r\nFor you slowly weakened me\r\n\r\nHeld hostage by your love and my denial\r\n\r\n \r\n\r\nBut still when I’m given a choice\r\n\r\nEach time I choose to breath\r\n\r\nFor you was once my life-force\r\n\r\nBut now you make it hard to breathe\r\n\r\n \r\n\r\nNo more pleasant dreams\r\n\r\nNothing but heartbreak in the air\r\n\r\nFor happiness use to float about\r\n\r\nBut now we live in this venomous atmosphere\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"Sometimes the ones that we love the most can create the most toxic environments for us......\" -Monica Renata </em>','Atmosphere','','inherit','closed','closed','','1109-revision-v1','','','2015-09-09 13:55:50','2015-09-09 18:55:50','',1109,'http://www.monicarenata.com/1109-revision-v1/',0,'revision','',0),(1176,1,'2015-11-06 14:35:54','2015-11-06 20:35:54','I’m Broken\r\n\r\nShattered into thousands of pieces\r\n\r\nReparation seem unimaginable\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI have been hurt to the point where my feelings are afraid to be hurt\r\n\r\nBeen hurt to the point that I fear my own feelings because feelings can hurt\r\n\r\nFeelings can hurt me\r\n\r\n \r\n\r\nI’m broken\r\n\r\nJagged at all of my corners\r\n\r\nAnd if touched I might even hurt you\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI remember being whole\r\n\r\nI remember what it felt like to be completely and utterly carefree\r\n\r\nBut that changed when I was hurt\r\n\r\n \r\n\r\nI’m broken\r\n\r\nYet I yearn to be whole again\r\n\r\nBut I am deathly afraid\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI have been placed in a position where I must battle myself daily\r\n\r\nQuestion my own feelings because I do not know the intentions of others\r\n\r\nGuard myself from others and also myself\r\n\r\n \r\n\r\nI’m broken\r\n\r\nBecause I have been hurt\r\n\r\nBut one day I hope this passes\r\n\r\n \r\n\r\nFor I yearn to feel the tender touch that can be felt beyond my flesh\r\n\r\nI yearn to be able to use my heart to its utmost capacity again\r\n\r\nI yearn for that day\r\n\r\n \r\n\r\nBut I’ve been hurt\r\n\r\n \r\n\r\nI am broken\r\n\r\nBut hopefully one day\r\n\r\nSomeday soon\r\n\r\nThe pieces will come together again\r\n\r\n ','I\'m Broken','','publish','open','open','','im-broken','','','2015-11-06 14:35:54','2015-11-06 20:35:54','',0,'http://www.monicarenata.com/?p=1176',0,'post','',1),(1112,1,'2015-09-28 07:51:10','2015-09-28 12:51:10','She is hope after the hurricane\r\n\r\nThe sun after the storm\r\n\r\nThe umbrella on that rainy day\r\n\r\nThat coat to keep you warm\r\n\r\n \r\n\r\nShe is the sparkle in the midnight sky\r\n\r\nThe drop of rain after the drought\r\n\r\nShe is the creator of your life in this world\r\n\r\nShe is love inside and out\r\n\r\n \r\n\r\nA symbol of weakness to some\r\n\r\nBut the strongest being to most\r\n\r\nShe is woman on the outside\r\n\r\nBut in actuality she is so much more','Woman','','publish','open','open','','woman','','','2015-09-28 07:51:10','2015-09-28 12:51:10','',0,'http://www.monicarenata.com/?p=1112',0,'post','',0),(1113,1,'2015-09-28 07:51:10','2015-09-28 12:51:10','She is hope after the hurricane\r\n\r\nThe sun after the storm\r\n\r\nThe umbrella on that rainy day\r\n\r\nThat coat to keep you warm\r\n\r\n \r\n\r\nShe is the sparkle in the midnight sky\r\n\r\nThe drop of rain after the drought\r\n\r\nShe is the creator of your life in this world\r\n\r\nShe is love inside and out\r\n\r\n \r\n\r\nA symbol of weakness to some\r\n\r\nBut the strongest being to most\r\n\r\nShe is woman on the outside\r\n\r\nBut in actuality she is so much more','Woman','','inherit','closed','closed','','1112-revision-v1','','','2015-09-28 07:51:10','2015-09-28 12:51:10','',1112,'http://www.monicarenata.com/1112-revision-v1/',0,'revision','',0),(1114,1,'2015-09-28 09:17:51','2015-09-28 14:17:51','<em>You’re going to love me when it’s too late</em>\r\n\r\nTo: Someone I Love\r\n\r\n \r\n\r\n \r\n\r\nI asked for hugs each time I saw you\r\n\r\nYet you said that was asking for too much\r\n\r\nI wanted to kiss your lips daily\r\n\r\nEven though to me daily wasn’t enough\r\n\r\n \r\n\r\nI wanted to hear your voice often\r\n\r\nYet you would always say\r\n\r\n“Not today, I’m busy”\r\n\r\n“Perhaps another day”\r\n\r\n \r\n\r\nI wanted to lay on your chest\r\n\r\nJust to hear how your heart beats\r\n\r\nI wanted to make you smile\r\n\r\nEven if you weren’t near me\r\n\r\n \r\n\r\nI asked for you to send me pictures\r\n\r\nEach time you went away\r\n\r\nI always tried to encourage you\r\n\r\nBecause I truly believe in better days\r\n\r\n \r\n\r\nIn each second that my heart beat\r\n\r\nA piece of it would beat for you\r\n\r\nFor I cared about your life\r\n\r\nI wanted all of your dreams to come true\r\n\r\n \r\n\r\nBut in my clouds of worry\r\n\r\nI sometimes forgot to worry about one thing\r\n\r\nI forgot to take care of the person who’s caring\r\n\r\nThe person that is me\r\n\r\n \r\n\r\nAnd now the tables have turned\r\n\r\nAnd the past you seem to have forgot\r\n\r\nFor you hug me each time you see me\r\n\r\nAnd your kisses do not stop\r\n\r\n \r\n\r\nYou call me constantly daily\r\n\r\nJust to sometimes hear me breathe\r\n\r\nBut when my love was overflowing\r\n\r\nYou were nowhere to be seen\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nI can see it in your eyes\r\n\r\nYour heart grows more and more daily\r\n\r\nWhile my heart crumbles and dies\r\n\r\n \r\n\r\nEach breathe takes me closer\r\n\r\nTo a place you don’t want me to go\r\n\r\nYou lay by my chest to hear my heartbeat\r\n\r\nFor you know that soon it will be no more\r\n\r\n \r\n\r\n<strong>------</strong>\r\n\r\nNow just imagine if I held this letter\r\n\r\nUntil I knew it was the last of my days\r\n\r\nImagine if I kept these words inside\r\n\r\nAnd never said a thing\r\n\r\n \r\n\r\nYou see life is short yet beautiful\r\n\r\nYou have to appreciate everything\r\n\r\nAnd despite the lack of “I love you” you say\r\n\r\nI will always say it abundantly\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nThat can be a possibility\r\n\r\nBut I’m giving you this letter today\r\n\r\nSo I can open your eyes so you can see\r\n\r\n \r\n\r\nLove the ones who love you daily\r\n\r\nDon’t forget to make some time\r\n\r\nSpeak freely what is in your heart\r\n\r\nLove people while they are alive\r\n\r\n \r\n\r\nFor if you forget about others\r\n\r\nThese words will ring so true\r\n\r\nYou’re going to miss me when I’m gone\r\n\r\nAnd finally love me when it’s too late too\r\n\r\n ','The Letter: You\'re Going To Love Me When It\'s Too Late','','publish','open','open','','the-letter-youre-going-to-love-me-when-its-too-late','','','2015-09-28 09:22:20','2015-09-28 14:22:20','',0,'http://www.monicarenata.com/?p=1114',0,'post','',0),(1117,1,'2015-09-28 09:22:20','2015-09-28 14:22:20','<em>You’re going to love me when it’s too late</em>\r\n\r\nTo: Someone I Love\r\n\r\n \r\n\r\n \r\n\r\nI asked for hugs each time I saw you\r\n\r\nYet you said that was asking for too much\r\n\r\nI wanted to kiss your lips daily\r\n\r\nEven though to me daily wasn’t enough\r\n\r\n \r\n\r\nI wanted to hear your voice often\r\n\r\nYet you would always say\r\n\r\n“Not today, I’m busy”\r\n\r\n“Perhaps another day”\r\n\r\n \r\n\r\nI wanted to lay on your chest\r\n\r\nJust to hear how your heart beats\r\n\r\nI wanted to make you smile\r\n\r\nEven if you weren’t near me\r\n\r\n \r\n\r\nI asked for you to send me pictures\r\n\r\nEach time you went away\r\n\r\nI always tried to encourage you\r\n\r\nBecause I truly believe in better days\r\n\r\n \r\n\r\nIn each second that my heart beat\r\n\r\nA piece of it would beat for you\r\n\r\nFor I cared about your life\r\n\r\nI wanted all of your dreams to come true\r\n\r\n \r\n\r\nBut in my clouds of worry\r\n\r\nI sometimes forgot to worry about one thing\r\n\r\nI forgot to take care of the person who’s caring\r\n\r\nThe person that is me\r\n\r\n \r\n\r\nAnd now the tables have turned\r\n\r\nAnd the past you seem to have forgot\r\n\r\nFor you hug me each time you see me\r\n\r\nAnd your kisses do not stop\r\n\r\n \r\n\r\nYou call me constantly daily\r\n\r\nJust to sometimes hear me breathe\r\n\r\nBut when my love was overflowing\r\n\r\nYou were nowhere to be seen\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nI can see it in your eyes\r\n\r\nYour heart grows more and more daily\r\n\r\nWhile my heart crumbles and dies\r\n\r\n \r\n\r\nEach breathe takes me closer\r\n\r\nTo a place you don’t want me to go\r\n\r\nYou lay by my chest to hear my heartbeat\r\n\r\nFor you know that soon it will be no more\r\n\r\n \r\n\r\n<strong>------</strong>\r\n\r\nNow just imagine if I held this letter\r\n\r\nUntil I knew it was the last of my days\r\n\r\nImagine if I kept these words inside\r\n\r\nAnd never said a thing\r\n\r\n \r\n\r\nYou see life is short yet beautiful\r\n\r\nYou have to appreciate everything\r\n\r\nAnd despite the lack of “I love you” you say\r\n\r\nI will always say it abundantly\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nThat can be a possibility\r\n\r\nBut I’m giving you this letter today\r\n\r\nSo I can open your eyes so you can see\r\n\r\n \r\n\r\nLove the ones who love you daily\r\n\r\nDon’t forget to make some time\r\n\r\nSpeak freely what is in your heart\r\n\r\nLove people while they are alive\r\n\r\n \r\n\r\nFor if you forget about others\r\n\r\nThese words will ring so true\r\n\r\nYou’re going to miss me when I’m gone\r\n\r\nAnd finally love me when it’s too late too\r\n\r\n ','The Letter: You\'re Going To Love Me When It\'s Too Late','','inherit','closed','closed','','1114-revision-v1','','','2015-09-28 09:22:20','2015-09-28 14:22:20','',1114,'http://www.monicarenata.com/1114-revision-v1/',0,'revision','',0),(1115,1,'2015-09-28 09:17:51','2015-09-28 14:17:51','<p style=\"text-align: center;\"><em>You’re going to love me when it’s too late</em></p>\r\n<p style=\"text-align: center;\">To: Someone I Love</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I asked for hugs each time I saw you</p>\r\n<p style=\"text-align: center;\">Yet you said that was asking for too much</p>\r\n<p style=\"text-align: center;\">I wanted to kiss your lips daily</p>\r\n<p style=\"text-align: center;\">Even though to me daily wasn’t enough</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I wanted to hear your voice often</p>\r\n<p style=\"text-align: center;\">Yet you would always say</p>\r\n<p style=\"text-align: center;\">“Not today, I’m busy”</p>\r\n<p style=\"text-align: center;\">“Perhaps another day”</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I wanted to lay on your chest</p>\r\n<p style=\"text-align: center;\">Just to hear how your heart beats</p>\r\n<p style=\"text-align: center;\">I wanted to make you smile</p>\r\n<p style=\"text-align: center;\">Even if you weren’t near me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I asked for you to send me pictures</p>\r\n<p style=\"text-align: center;\">Each time you went away</p>\r\n<p style=\"text-align: center;\">I always tried to encourage you</p>\r\n<p style=\"text-align: center;\">Because I truly believe in better days</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">In each second that my heart beat</p>\r\n<p style=\"text-align: center;\">A piece of it would beat for you</p>\r\n<p style=\"text-align: center;\">For I cared about your life</p>\r\n<p style=\"text-align: center;\">I wanted all of your dreams to come true</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But in my clouds of worry</p>\r\n<p style=\"text-align: center;\">I sometimes forgot to worry about one thing</p>\r\n<p style=\"text-align: center;\">I forgot to take care of the person who’s caring</p>\r\n<p style=\"text-align: center;\">The person that is me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">And now the tables have turned</p>\r\n<p style=\"text-align: center;\">And the past you seem to have forgot</p>\r\n<p style=\"text-align: center;\">For you hug me each time you see me</p>\r\n<p style=\"text-align: center;\">And your kisses do not stop</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You call me constantly daily</p>\r\n<p style=\"text-align: center;\">Just to sometimes hear me breathe</p>\r\n<p style=\"text-align: center;\">But when my love was overflowing</p>\r\n<p style=\"text-align: center;\">You were nowhere to be seen</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You’re going to love me when it’s too late</p>\r\n<p style=\"text-align: center;\">I can see it in your eyes</p>\r\n<p style=\"text-align: center;\">Your heart grows more and more daily</p>\r\n<p style=\"text-align: center;\">While my heart crumbles and dies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Each breathe takes me closer</p>\r\n<p style=\"text-align: center;\">To a place you don’t want me to go</p>\r\n<p style=\"text-align: center;\">You lay by my chest to hear my heartbeat</p>\r\n<p style=\"text-align: center;\">For you know that soon it will be no more</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><strong>------</strong></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Now just imagine if I held this letter</p>\r\n<p style=\"text-align: center;\">Until I knew it was the last of my days</p>\r\n<p style=\"text-align: center;\">Imagine if I kept these words inside</p>\r\n<p style=\"text-align: center;\">And never said a thing</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You see life is short yet beautiful</p>\r\n<p style=\"text-align: center;\">You have to appreciate everything</p>\r\n<p style=\"text-align: center;\">And despite the lack of “I love you” you say</p>\r\n<p style=\"text-align: center;\">I will always say it abundantly</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You’re going to love me when it’s too late</p>\r\n<p style=\"text-align: center;\">That can be a possibility</p>\r\n<p style=\"text-align: center;\">But I’m giving you this letter today</p>\r\n<p style=\"text-align: center;\">So I can open your eyes so you can see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Love the ones who love you daily</p>\r\n<p style=\"text-align: center;\">Don’t forget to make some time</p>\r\n<p style=\"text-align: center;\">Speak freely what is in your heart</p>\r\n<p style=\"text-align: center;\">Love people while they are alive</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For if you forget about others</p>\r\n<p style=\"text-align: center;\">These words will ring so true</p>\r\n<p style=\"text-align: center;\">You’re going to miss me when I’m gone</p>\r\n<p style=\"text-align: center;\">And finally love me when it’s too late too</p>','The Letter: You\'re Going To Love Me When It\'s Too Late','','inherit','closed','closed','','1114-revision-v1','','','2015-09-28 09:17:51','2015-09-28 14:17:51','',1114,'http://www.monicarenata.com/1114-revision-v1/',0,'revision','',0),(1116,1,'2015-09-28 09:22:09','2015-09-28 14:22:09','<em>You’re going to love me when it’s too late</em>\r\n\r\nTo: Someone I Love\r\n\r\n \r\n\r\n \r\n\r\nI asked for hugs each time I saw you\r\n\r\nYet you said that was asking for too much\r\n\r\nI wanted to kiss your lips daily\r\n\r\nEven though to me daily wasn’t enough\r\n\r\n \r\n\r\nI wanted to hear your voice often\r\n\r\nYet you would always say\r\n\r\n“Not today, I’m busy”\r\n\r\n“Perhaps another day”\r\n\r\n \r\n\r\nI wanted to lay on your chest\r\n\r\nJust to hear how your heart beats\r\n\r\nI wanted to make you smile\r\n\r\nEven if you weren’t near me\r\n\r\n \r\n\r\nI asked for you to send me pictures\r\n\r\nEach time you went away\r\n\r\nI always tried to encourage you\r\n\r\nBecause I truly believe in better days\r\n\r\n \r\n\r\nIn each second that my heart beat\r\n\r\nA piece of it would beat for you\r\n\r\nFor I cared about your life\r\n\r\nI wanted all of your dreams to come true\r\n\r\n \r\n\r\nBut in my clouds of worry\r\n\r\nI sometimes forgot to worry about one thing\r\n\r\nI forgot to take care of the person who’s caring\r\n\r\nThe person that is me\r\n\r\n \r\n\r\nAnd now the tables have turned\r\n\r\nAnd the past you seem to have forgot\r\n\r\nFor you hug me each time you see me\r\n\r\nAnd your kisses do not stop\r\n\r\n \r\n\r\nYou call me constantly daily\r\n\r\nJust to sometimes hear me breathe\r\n\r\nBut when my love was overflowing\r\n\r\nYou were nowhere to be seen\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nI can see it in your eyes\r\n\r\nYour heart grows more and more daily\r\n\r\nWhile my heart crumbles and dies\r\n\r\n \r\n\r\nEach breathe takes me closer\r\n\r\nTo a place you don’t want me to go\r\n\r\nYou lay by my chest to hear my heartbeat\r\n\r\nFor you know that soon it will be no more\r\n\r\n \r\n\r\n<strong>------</strong>\r\n\r\nNow just imagine if I held this letter\r\n\r\nUntil I knew it was the last of my days\r\n\r\nImagine if I kept these words inside\r\n\r\nAnd never said a thing\r\n\r\n \r\n\r\nYou see life is short yet beautiful\r\n\r\nYou have to appreciate everything\r\n\r\nAnd despite the lack of “I love you” you say\r\n\r\nI will always say it abundantly\r\n\r\n \r\n\r\nYou’re going to love me when it’s too late\r\n\r\nThat can be a possibility\r\n\r\nBut I’m giving you this letter today\r\n\r\nSo I can open your eyes so you can see\r\n\r\n \r\n\r\nLove the ones who love you daily\r\n\r\nDon’t forget to make some time\r\n\r\nSpeak freely what is in your heart\r\n\r\nLove people while they are alive\r\n\r\n \r\n\r\nFor if you forget about others\r\n\r\nThese words will ring so true\r\n\r\nYou’re going to miss me when I’m gone\r\n\r\nAnd finally love me when it’s too late too\r\n\r\n ','The Letter: You\'re Going To Love Me When It\'s Too Late','','inherit','closed','closed','','1114-autosave-v1','','','2015-09-28 09:22:09','2015-09-28 14:22:09','',1114,'http://www.monicarenata.com/1114-autosave-v1/',0,'revision','',0),(1118,1,'2015-10-01 10:36:59','2015-10-01 15:36:59','<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dread to be the most\r\nThe place where I lose friends</p>\r\n<p style=\"text-align: center;\">Hitting it was the hardest part of my life\r\nBut through it I learned a lot</p>\r\n<p style=\"text-align: center;\">I learned about my inner strength\r\nI learned who my friends are and who are not</p>\r\n<p style=\"text-align: center;\">A blessing yet also a curse\r\nLuckily I was able to overcome</p>\r\n<p style=\"text-align: center;\">I hit it and I honestly thought\r\nIn life I can go no more</p>\r\n<p style=\"text-align: center;\">But when I finally thought I could take it no longer\r\nThat is when I began to soar</p>\r\n<p style=\"text-align: center;\">For my faith in myself began to overflow\r\nI decided to be unhappy no more</p>\r\n<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dreaded to be the most\r\nWhere time revealed my true friends</p>\r\n<p style=\"text-align: center;\">Where I realized my true strength\r\nWhere I learned how to truly live</p>\r\n<p style=\"text-align: center;\">I was afraid to hit Rock Bottom\r\nBut in Rock Bottom I learned how to live</p>\r\n<em><strong>“Sometimes hitting Rock Bottom is the best thing that can happen. Being at your lowest low helps you to realize who are truly your friends and also how strong you really are! Don’t be afraid to hit Rock Bottom… It might be the best trip you ever take.”</strong> –Monica Renata</em>','Rock Bottom','','publish','open','open','','rock-bottom','','','2015-10-01 10:36:59','2015-10-01 15:36:59','',0,'http://www.monicarenata.com/?p=1118',0,'post','',0),(1119,1,'2015-10-01 10:36:11','2015-10-01 15:36:11','The lowest I could ever go\r\nThe beginning of the end\r\n\r\nThe place that I dread to be the most\r\nThe place where I lose friends\r\n\r\nHitting it was the hardest part of my life\r\nBut through it I learned a lot\r\n\r\nI learned about my inner strength\r\nI learned who my friends are and who are not\r\n\r\nA blessing yet also a curse\r\nLuckily I was able to overcome\r\n\r\nI hit it and I honestly thought\r\nIn life I can go no more\r\n\r\nBut when I finally thought I could take it no longer\r\nThat is when I began to soar\r\n\r\nFor my faith in myself began to overflow\r\nI decided to be unhappy no more\r\n\r\nThe lowest I could ever go\r\nThe beginning of the end\r\n\r\nThe place that I dreaded to be the most\r\nWhere time revealed my true friends\r\n\r\nWhere I realized my true strength\r\nWhere I learned how to truly live\r\n\r\nI was afraid to hit Rock Bottom\r\nBut in Rock Bottom I learned how to live\r\n\r\n<em>“Sometimes hitting Rock Bottom is the best thing that can happen. Being at your lowest low helps you to realize who are truly your friends and also how strong you really are! Don’t be afraid to hit Rock Bottom… It might be the best trip you ever take.” –Monica Renata</em>','Rock Bottom','','inherit','closed','closed','','1118-revision-v1','','','2015-10-01 10:36:11','2015-10-01 15:36:11','',1118,'http://www.monicarenata.com/1118-revision-v1/',0,'revision','',0),(1120,1,'2015-10-01 10:36:35','2015-10-01 15:36:35','<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dread to be the most\r\nThe place where I lose friends</p>\r\n<p style=\"text-align: center;\">Hitting it was the hardest part of my life\r\nBut through it I learned a lot</p>\r\n<p style=\"text-align: center;\">I learned about my inner strength\r\nI learned who my friends are and who are not</p>\r\n<p style=\"text-align: center;\">A blessing yet also a curse\r\nLuckily I was able to overcome</p>\r\n<p style=\"text-align: center;\">I hit it and I honestly thought\r\nIn life I can go no more</p>\r\n<p style=\"text-align: center;\">But when I finally thought I could take it no longer\r\nThat is when I began to soar</p>\r\n<p style=\"text-align: center;\">For my faith in myself began to overflow\r\nI decided to be unhappy no more</p>\r\n<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dreaded to be the most\r\nWhere time revealed my true friends</p>\r\n<p style=\"text-align: center;\">Where I realized my true strength\r\nWhere I learned how to truly live</p>\r\n<p style=\"text-align: center;\">I was afraid to hit Rock Bottom\r\nBut in Rock Bottom I learned how to live</p>\r\n<em>“Sometimes hitting Rock Bottom is the best thing that can happen. Being at your lowest low helps you to realize who are truly your friends and also how strong you really are! Don’t be afraid to hit Rock Bottom… It might be the best trip you ever take.” –Monica Renata</em>','Rock Bottom','','inherit','closed','closed','','1118-revision-v1','','','2015-10-01 10:36:35','2015-10-01 15:36:35','',1118,'http://www.monicarenata.com/1118-revision-v1/',0,'revision','',0),(1121,1,'2015-10-01 10:36:59','2015-10-01 15:36:59','<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dread to be the most\r\nThe place where I lose friends</p>\r\n<p style=\"text-align: center;\">Hitting it was the hardest part of my life\r\nBut through it I learned a lot</p>\r\n<p style=\"text-align: center;\">I learned about my inner strength\r\nI learned who my friends are and who are not</p>\r\n<p style=\"text-align: center;\">A blessing yet also a curse\r\nLuckily I was able to overcome</p>\r\n<p style=\"text-align: center;\">I hit it and I honestly thought\r\nIn life I can go no more</p>\r\n<p style=\"text-align: center;\">But when I finally thought I could take it no longer\r\nThat is when I began to soar</p>\r\n<p style=\"text-align: center;\">For my faith in myself began to overflow\r\nI decided to be unhappy no more</p>\r\n<p style=\"text-align: center;\">The lowest I could ever go\r\nThe beginning of the end</p>\r\n<p style=\"text-align: center;\">The place that I dreaded to be the most\r\nWhere time revealed my true friends</p>\r\n<p style=\"text-align: center;\">Where I realized my true strength\r\nWhere I learned how to truly live</p>\r\n<p style=\"text-align: center;\">I was afraid to hit Rock Bottom\r\nBut in Rock Bottom I learned how to live</p>\r\n<em><strong>“Sometimes hitting Rock Bottom is the best thing that can happen. Being at your lowest low helps you to realize who are truly your friends and also how strong you really are! Don’t be afraid to hit Rock Bottom… It might be the best trip you ever take.”</strong> –Monica Renata</em>','Rock Bottom','','inherit','closed','closed','','1118-revision-v1','','','2015-10-01 10:36:59','2015-10-01 15:36:59','',1118,'http://www.monicarenata.com/1118-revision-v1/',0,'revision','',0),(1123,1,'2015-10-05 06:53:17','2015-10-05 11:53:17','<p style=\"text-align: center;\">MASQUERADE</p>\r\n<p style=\"text-align: center;\">You are not who you say you are\r\nYou are not who you claim to be\r\nYou wear a mask daily\r\nYou wear a mask around me</p>\r\n<p style=\"text-align: center;\">Smiling faces shown day-to-day\r\nYet hidden is the face of deceit\r\nA beautiful fake masterpiece\r\nYou put together for me</p>\r\n<p style=\"text-align: center;\">Masquerade! Masquerade!\r\nA beautiful show of deceit\r\nBut now I’m left to pick up the pieces\r\nBecause reality is what I now see</p>\r\n<p style=\"text-align: center;\"><em><strong>“Many wear masks that make them beautiful to the world, but what matters most is what is under that mask. Sometimes the best part of some people is that mask that they wear… while everything underneath is rotten.”</strong> –Monica Renata</em></p>','Masquerade','','publish','open','open','','masquerade','','','2015-10-05 07:02:28','2015-10-05 12:02:28','',0,'http://www.monicarenata.com/?p=1123',0,'post','',0),(1126,1,'2015-10-05 07:02:28','2015-10-05 12:02:28','<p style=\"text-align: center;\">MASQUERADE</p>\r\n<p style=\"text-align: center;\">You are not who you say you are\r\nYou are not who you claim to be\r\nYou wear a mask daily\r\nYou wear a mask around me</p>\r\n<p style=\"text-align: center;\">Smiling faces shown day-to-day\r\nYet hidden is the face of deceit\r\nA beautiful fake masterpiece\r\nYou put together for me</p>\r\n<p style=\"text-align: center;\">Masquerade! Masquerade!\r\nA beautiful show of deceit\r\nBut now I’m left to pick up the pieces\r\nBecause reality is what I now see</p>\r\n<p style=\"text-align: center;\"><em><strong>“Many wear masks that make them beautiful to the world, but what matters most is what is under that mask. Sometimes the best part of some people is that mask that they wear… while everything underneath is rotten.”</strong> –Monica Renata</em></p>','Masquerade','','inherit','closed','closed','','1123-revision-v1','','','2015-10-05 07:02:28','2015-10-05 12:02:28','',1123,'http://www.monicarenata.com/1123-revision-v1/',0,'revision','',0),(1124,1,'2015-10-05 06:53:17','2015-10-05 11:53:17','<p style=\"text-align: center;\">MASQUERADE</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You are not who you say you are</p>\r\n<p style=\"text-align: center;\">You are not who you claim to be</p>\r\n<p style=\"text-align: center;\">You wear a mask daily</p>\r\n<p style=\"text-align: center;\">You wear a mask around me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Smiling faces shown day-to-day</p>\r\n<p style=\"text-align: center;\">Yet hidden is the face of deceit</p>\r\n<p style=\"text-align: center;\">A beautiful fake masterpiece</p>\r\n<p style=\"text-align: center;\">You put together for me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Masquerade! Masquerade!</p>\r\n<p style=\"text-align: center;\">A beautiful show of deceit</p>\r\n<p style=\"text-align: center;\">But now I’m left to pick up the pieces</p>\r\n<p style=\"text-align: center;\">Because reality is what I now see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>“Many wear masks that make them beautiful to the world, but what matters most is what is under that mask. Sometimes the best part of some people is that mask that they wear… while everything underneath is rotten.” –Monica Renata </em></p>','Masquerade','','inherit','closed','closed','','1123-revision-v1','','','2015-10-05 06:53:17','2015-10-05 11:53:17','',1123,'http://www.monicarenata.com/1123-revision-v1/',0,'revision','',0),(1125,1,'2015-10-05 07:02:09','2015-10-05 12:02:09','<p style=\"text-align: center;\">MASQUERADE</p>\r\n<p style=\"text-align: center;\">You are not who you say you are\r\nYou are not who you claim to be\r\nYou wear a mask daily\r\nYou wear a mask around me</p>\r\n<p style=\"text-align: center;\">Smiling faces shown day-to-day\r\nYet hidden is the face of deceit\r\nA beautiful fake masterpiece\r\nYou put together for me</p>\r\n<p style=\"text-align: center;\">Masquerade! Masquerade!\r\nA beautiful show of deceit\r\nBut now I’m left to pick up the pieces\r\nBecause reality is what I now see</p>\r\n<p style=\"text-align: center;\">“Many wear masks that make them beautiful to the world, but what matters most is what is under that mask. Sometimes the best part of some people is that mask that they wear… while everything underneath is rotten.” –Monica Renata</p>','Masquerade','','inherit','closed','closed','','1123-autosave-v1','','','2015-10-05 07:02:09','2015-10-05 12:02:09','',1123,'http://www.monicarenata.com/1123-autosave-v1/',0,'revision','',0),(1127,1,'2015-10-05 08:56:28','2015-10-05 13:56:28','You meet her and she is beautiful\r\n\r\nShe is desirable to your eyes\r\n\r\nHer insides you do not care about\r\n\r\nYet you want to see what’s inside\r\n\r\n \r\n\r\nHer spirit is so free\r\n\r\nShe seems to float on air\r\n\r\nThere is something about her\r\n\r\nThis has been made very clear\r\n\r\n \r\n\r\nShe feels comfort around you\r\n\r\nYou can tell that by looking in her eyes\r\n\r\nShe use to doubt your trust\r\n\r\nBut now she never questions why\r\n\r\n \r\n\r\nAnd in that moment she becomes your prey\r\n\r\nYou have her in a trap\r\n\r\nSomething you admire for purely physically\r\n\r\nAround your finger she is now wrapped\r\n\r\n \r\n\r\nBut stop please, for a second\r\n\r\nJust finally take the time\r\n\r\nTo dwell a little deeper\r\n\r\nLook under the flesh into her mind\r\n\r\nShe is her and HER is beautiful\r\n\r\nAt this moment she is so pure and kind\r\n\r\nHer spirit is beautiful\r\n\r\nAnd so is her mind\r\n\r\n \r\n\r\nHer care for you is genuine\r\n\r\nYour deceit she cannot see\r\n\r\nShe is blinded by her love for you\r\n\r\nYou are blinded by what you can’t see\r\n\r\n \r\n\r\nFrom woman comes all life\r\n\r\nFor man he plants the seed\r\n\r\nAnd then comes you and I\r\n\r\nA product from the life tree\r\n\r\n \r\n\r\nA being that should be esteemed\r\n\r\nBut you are about to treat like trash\r\n\r\nShe is woman like your mother\r\n\r\nBut in your mind she is a piece of ass\r\n\r\n \r\n\r\nA pity that men sometimes can’t respect the bearers\r\n\r\nThe bearers of human life\r\n\r\nTo be treated as toy\r\n\r\nAnd then thrown out of site\r\n\r\n \r\n\r\nBut when the tables turn\r\n\r\nAnd HER becomes she\r\n\r\nEmotions become mixed\r\n\r\nAnd then men finally see\r\n\r\n \r\n\r\nShe is mother\r\n\r\nShe is daughter\r\n\r\nShe is sister\r\n\r\nShe is aunt\r\n\r\n \r\n\r\nShe is cousin\r\n\r\nShe is nanny\r\n\r\nShe is grandma\r\n\r\nShe is niece\r\n\r\n \r\n\r\nShe is HER and HER is She\r\n\r\nSo be careful what you do\r\n\r\nFor the same wrongs you do to HER\r\n\r\nShe will encounter too\r\n\r\n \r\n\r\nYou meet HER and she is beautiful\r\n\r\nShe is desirable to your eyes\r\n\r\nHer insides you do not care about\r\n\r\nYet you want to see what’s inside\r\n\r\n \r\n\r\nBut treat her right young man\r\n\r\nDon’t make that glow in her spirit die\r\n\r\nFor seeds are also planted in actions\r\n\r\nAnd in thoughts they do thrive\r\n\r\n \r\n\r\nDon’t make her fear you and your kind\r\n\r\nDon’t taint her lovely thoughts\r\n\r\nFor man comes from woman\r\n\r\nBut without man she is lost\r\n\r\n \r\n\r\n<em>“Men be careful how you treat women. Be careful what you say. For She can be HER someday, and then you will run out of words to say. For she is someone’s daughter and she is someone’s friend, and the way that you decide to treat her can dictate how she sees other men….” –Monica Renata </em>','HER','','publish','open','open','','her','','','2015-10-05 08:56:28','2015-10-05 13:56:28','',0,'http://www.monicarenata.com/?p=1127',0,'post','',0),(1128,1,'2015-10-05 08:56:28','2015-10-05 13:56:28','You meet her and she is beautiful\r\n\r\nShe is desirable to your eyes\r\n\r\nHer insides you do not care about\r\n\r\nYet you want to see what’s inside\r\n\r\n \r\n\r\nHer spirit is so free\r\n\r\nShe seems to float on air\r\n\r\nThere is something about her\r\n\r\nThis has been made very clear\r\n\r\n \r\n\r\nShe feels comfort around you\r\n\r\nYou can tell that by looking in her eyes\r\n\r\nShe use to doubt your trust\r\n\r\nBut now she never questions why\r\n\r\n \r\n\r\nAnd in that moment she becomes your prey\r\n\r\nYou have her in a trap\r\n\r\nSomething you admire for purely physically\r\n\r\nAround your finger she is now wrapped\r\n\r\n \r\n\r\nBut stop please, for a second\r\n\r\nJust finally take the time\r\n\r\nTo dwell a little deeper\r\n\r\nLook under the flesh into her mind\r\n\r\nShe is her and HER is beautiful\r\n\r\nAt this moment she is so pure and kind\r\n\r\nHer spirit is beautiful\r\n\r\nAnd so is her mind\r\n\r\n \r\n\r\nHer care for you is genuine\r\n\r\nYour deceit she cannot see\r\n\r\nShe is blinded by her love for you\r\n\r\nYou are blinded by what you can’t see\r\n\r\n \r\n\r\nFrom woman comes all life\r\n\r\nFor man he plants the seed\r\n\r\nAnd then comes you and I\r\n\r\nA product from the life tree\r\n\r\n \r\n\r\nA being that should be esteemed\r\n\r\nBut you are about to treat like trash\r\n\r\nShe is woman like your mother\r\n\r\nBut in your mind she is a piece of ass\r\n\r\n \r\n\r\nA pity that men sometimes can’t respect the bearers\r\n\r\nThe bearers of human life\r\n\r\nTo be treated as toy\r\n\r\nAnd then thrown out of site\r\n\r\n \r\n\r\nBut when the tables turn\r\n\r\nAnd HER becomes she\r\n\r\nEmotions become mixed\r\n\r\nAnd then men finally see\r\n\r\n \r\n\r\nShe is mother\r\n\r\nShe is daughter\r\n\r\nShe is sister\r\n\r\nShe is aunt\r\n\r\n \r\n\r\nShe is cousin\r\n\r\nShe is nanny\r\n\r\nShe is grandma\r\n\r\nShe is niece\r\n\r\n \r\n\r\nShe is HER and HER is She\r\n\r\nSo be careful what you do\r\n\r\nFor the same wrongs you do to HER\r\n\r\nShe will encounter too\r\n\r\n \r\n\r\nYou meet HER and she is beautiful\r\n\r\nShe is desirable to your eyes\r\n\r\nHer insides you do not care about\r\n\r\nYet you want to see what’s inside\r\n\r\n \r\n\r\nBut treat her right young man\r\n\r\nDon’t make that glow in her spirit die\r\n\r\nFor seeds are also planted in actions\r\n\r\nAnd in thoughts they do thrive\r\n\r\n \r\n\r\nDon’t make her fear you and your kind\r\n\r\nDon’t taint her lovely thoughts\r\n\r\nFor man comes from woman\r\n\r\nBut without man she is lost\r\n\r\n \r\n\r\n<em>“Men be careful how you treat women. Be careful what you say. For She can be HER someday, and then you will run out of words to say. For she is someone’s daughter and she is someone’s friend, and the way that you decide to treat her can dictate how she sees other men….” –Monica Renata </em>','HER','','inherit','closed','closed','','1127-revision-v1','','','2015-10-05 08:56:28','2015-10-05 13:56:28','',1127,'http://www.monicarenata.com/1127-revision-v1/',0,'revision','',0),(1130,1,'2015-10-08 12:04:04','2015-10-08 17:04:04','A smile that brightens the midnight sky\r\n\r\nTwo eyes that in the dark can be seen\r\n\r\nLips that taste like candy\r\n\r\nSkin the color of chocolate ice cream\r\n\r\n \r\n\r\nA voice that can awaken those who have so long been asleep\r\n\r\nA sway of her hips that hypnotize every man that sees\r\n\r\n \r\n\r\nA masterpiece still in the making\r\n\r\nGrowth every single day\r\n\r\nA woman of such beauty\r\n\r\nA woman of such grace\r\n\r\n \r\n\r\nIn your head she constantly appears even though so many times she was in your face\r\n\r\nYou past her up because you she can’t be this perfect so you rather just daydream\r\n\r\n \r\n\r\nBut in the end you will settle\r\n\r\nBecause you know what you want and it is she\r\n\r\nBut you rather have a carbon copy\r\n\r\nThan to behold your actual dream\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<strong><em>“Stop being afraid to go after who you really want… Many times we give up on what we want and settle for a copy, but why?” –Monica Renata</em></strong>','Carbon Copy of Your Dream','','publish','open','open','','carbon-copy-of-your-dream','','','2015-10-08 12:04:04','2015-10-08 17:04:04','',0,'http://www.monicarenata.com/?p=1130',0,'post','',0),(1131,1,'2015-10-08 12:04:04','2015-10-08 17:04:04','A smile that brightens the midnight sky\r\n\r\nTwo eyes that in the dark can be seen\r\n\r\nLips that taste like candy\r\n\r\nSkin the color of chocolate ice cream\r\n\r\n \r\n\r\nA voice that can awaken those who have so long been asleep\r\n\r\nA sway of her hips that hypnotize every man that sees\r\n\r\n \r\n\r\nA masterpiece still in the making\r\n\r\nGrowth every single day\r\n\r\nA woman of such beauty\r\n\r\nA woman of such grace\r\n\r\n \r\n\r\nIn your head she constantly appears even though so many times she was in your face\r\n\r\nYou past her up because you she can’t be this perfect so you rather just daydream\r\n\r\n \r\n\r\nBut in the end you will settle\r\n\r\nBecause you know what you want and it is she\r\n\r\nBut you rather have a carbon copy\r\n\r\nThan to behold your actual dream\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<strong><em>“Stop being afraid to go after who you really want… Many times we give up on what we want and settle for a copy, but why?” –Monica Renata</em></strong>','Carbon Copy of Your Dream','','inherit','closed','closed','','1130-revision-v1','','','2015-10-08 12:04:04','2015-10-08 17:04:04','',1130,'http://www.monicarenata.com/1130-revision-v1/',0,'revision','',0),(1132,1,'2015-10-14 11:49:21','2015-10-14 16:49:21','Highlighter yellow\r\n\r\nElectric blue\r\n\r\nThe colors I think of\r\n\r\nWhen I think of you\r\n\r\n \r\n\r\nSo bright and radiant\r\n\r\nAlways catches the eyes\r\n\r\nStands out like a sore thumb\r\n\r\nBut that sore thumb is mine\r\n\r\n \r\n\r\nHighlighter yellow\r\n\r\nElectric blue\r\n\r\nLove so radiant\r\n\r\nLove so true\r\n\r\n \r\n\r\nSo eye-catching and radiant\r\n\r\nOur love can’t be denied\r\n\r\nFor others see it clearly\r\n\r\nLike they see florescent lights\r\n\r\n \r\n\r\n<em>“Eyes have a way of recognizing real love if it is in front their face….. Truly happy couples stand out amongst others.” –Monica Renata</em>','Florescent Lights','','publish','open','open','','florescent-lights','','','2015-10-14 11:49:21','2015-10-14 16:49:21','',0,'http://www.monicarenata.com/?p=1132',0,'post','',0),(1133,1,'2015-10-14 11:49:21','2015-10-14 16:49:21','Highlighter yellow\r\n\r\nElectric blue\r\n\r\nThe colors I think of\r\n\r\nWhen I think of you\r\n\r\n \r\n\r\nSo bright and radiant\r\n\r\nAlways catches the eyes\r\n\r\nStands out like a sore thumb\r\n\r\nBut that sore thumb is mine\r\n\r\n \r\n\r\nHighlighter yellow\r\n\r\nElectric blue\r\n\r\nLove so radiant\r\n\r\nLove so true\r\n\r\n \r\n\r\nSo eye-catching and radiant\r\n\r\nOur love can’t be denied\r\n\r\nFor others see it clearly\r\n\r\nLike they see florescent lights\r\n\r\n \r\n\r\n<em>“Eyes have a way of recognizing real love if it is in front their face….. Truly happy couples stand out amongst others.” –Monica Renata</em>','Florescent Lights','','inherit','closed','closed','','1132-revision-v1','','','2015-10-14 11:49:21','2015-10-14 16:49:21','',1132,'http://www.monicarenata.com/1132-revision-v1/',0,'revision','',0),(1135,1,'2015-10-22 07:34:14','2015-10-22 12:34:14','The night knowns me well\r\n\r\nThe moon is my friend\r\n\r\nThis cup holds my tears\r\n\r\nAs emotions pour as the sun sets\r\n\r\n \r\n\r\nMusic plays in the background\r\n\r\nSo calm and so sweet\r\n\r\nLiquor pours in my glass\r\n\r\nAs tears roll down my cheeks\r\n\r\n \r\n\r\nThe night knows me well\r\n\r\nThe moon gazes on me each night\r\n\r\nThis cup keeps getting refills\r\n\r\nAs the emotions continue to pour\r\n\r\n \r\n\r\nCandles burn til there is no more\r\n\r\nMusic continues to play\r\n\r\nEach sip gets sweeter\r\n\r\nAs tears fall in my glass and mix','The Night Knows Me Well','','publish','open','open','','the-night-knows-me-well','','','2015-10-22 07:34:14','2015-10-22 12:34:14','',0,'http://www.monicarenata.com/?p=1135',0,'post','',0),(1136,1,'2015-10-22 07:34:14','2015-10-22 12:34:14','The night knowns me well\r\n\r\nThe moon is my friend\r\n\r\nThis cup holds my tears\r\n\r\nAs emotions pour as the sun sets\r\n\r\n \r\n\r\nMusic plays in the background\r\n\r\nSo calm and so sweet\r\n\r\nLiquor pours in my glass\r\n\r\nAs tears roll down my cheeks\r\n\r\n \r\n\r\nThe night knows me well\r\n\r\nThe moon gazes on me each night\r\n\r\nThis cup keeps getting refills\r\n\r\nAs the emotions continue to pour\r\n\r\n \r\n\r\nCandles burn til there is no more\r\n\r\nMusic continues to play\r\n\r\nEach sip gets sweeter\r\n\r\nAs tears fall in my glass and mix','The Night Knows Me Well','','inherit','closed','closed','','1135-revision-v1','','','2015-10-22 07:34:14','2015-10-22 12:34:14','',1135,'http://www.monicarenata.com/1135-revision-v1/',0,'revision','',0),(1168,1,'2015-10-29 22:36:46','0000-00-00 00:00:00','A pair of heels sky high\r\n\r\nDiamonds that twinkle in your eyes\r\n\r\nAll can be bought then sold\r\n\r\nJust like you and your soul\r\n\r\n \r\n\r\nIn life you only value pretty things\r\n\r\nThese are the true values you believe life can only bring\r\n\r\nBeing bought and sold every night\r\n\r\nJust a hooker living in a made up paradise\r\n\r\n \r\n\r\nOn the outside you are a ten\r\n\r\nBut inside you are truly lacking\r\n\r\nSubstance that can define\r\n\r\nThe woman who you are deep inside\r\n\r\n \r\n\r\nBut that pair of heels that are sky high\r\n\r\nThose bright diamonds that twinkle in your eager hazel eyes\r\n\r\nItems which can be bought and sold\r\n\r\nA reflection of your life; when will this get old?\r\n\r\n \r\n\r\nStop living for beautiful things\r\n\r\nMaterialism in this life never yields good things\r\n\r\nPractice on healing your soul\r\n\r\nBefore your feet start to hurt, and your ring loses its stones\r\n\r\nCause one day your hooker paradise will get really old','Hooker\'s Paradise','','draft','open','open','','','','','2015-10-29 22:36:46','2015-10-30 03:36:46','',0,'http://www.monicarenata.com/?p=1168',0,'post','',0),(1139,1,'2015-10-22 08:16:31','2015-10-22 13:16:31','Petals on the flower\r\n\r\nPretty pieces of me\r\n\r\nPicked by life one by one\r\n\r\nTill a stem is all you see\r\n\r\n \r\n\r\nEach picked and torn to pieces\r\n\r\nIt didn’t hurt when I lost one\r\n\r\nBut as the petals became sparse\r\n\r\nSo did the contents of my heart\r\n\r\n \r\n\r\nPetals on the flower\r\n\r\nPretty pieces of me\r\n\r\nPicked by love that I thought was real\r\n\r\nTo be turned out not to be','Petals on the Flower','','publish','open','open','','petals-on-the-flower','','','2015-10-22 08:16:31','2015-10-22 13:16:31','',0,'http://www.monicarenata.com/?p=1139',0,'post','',0),(1140,1,'2015-10-22 08:16:31','2015-10-22 13:16:31','Petals on the flower\r\n\r\nPretty pieces of me\r\n\r\nPicked by life one by one\r\n\r\nTill a stem is all you see\r\n\r\n \r\n\r\nEach picked and torn to pieces\r\n\r\nIt didn’t hurt when I lost one\r\n\r\nBut as the petals became sparse\r\n\r\nSo did the contents of my heart\r\n\r\n \r\n\r\nPetals on the flower\r\n\r\nPretty pieces of me\r\n\r\nPicked by love that I thought was real\r\n\r\nTo be turned out not to be','Petals on the Flower','','inherit','closed','closed','','1139-revision-v1','','','2015-10-22 08:16:31','2015-10-22 13:16:31','',1139,'http://www.monicarenata.com/1139-revision-v1/',0,'revision','',0),(1141,1,'2015-10-22 09:42:12','2015-10-22 14:42:12','If you ever truly find me\r\n\r\nYou will find me in a dream\r\n\r\n \r\n\r\nIn a made up reality\r\n\r\nWhere hurt and sorrow is unseen\r\n\r\n \r\n\r\nIn a place that emits positivity\r\n\r\nWhere happiness overflows\r\n\r\nThere I am happy and I feel like I belong\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a boat\r\n\r\n \r\n\r\nIn a sea of ecstatic waters\r\n\r\nWhere the sounds calm the weariest heart\r\n\r\n \r\n\r\nIn a location that is always sunny\r\n\r\nWhere gray clouds can never be seen\r\n\r\nThere I am happy and I always dance and sing\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a plane\r\n\r\n \r\n\r\nIn the air floating on blissful winds\r\n\r\nWhere I’m at peace with all around me\r\n\r\n \r\n\r\nIn a place that calms my heart\r\n\r\nWhere I appreciate everything since I can now clearly see\r\n\r\nThere I am happy and I feel like I am finally free\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in my happy place\r\n\r\n \r\n\r\nImmersed in my happiness\r\n\r\nAnd still searching for more happiness each day\r\n\r\n \r\n\r\nLost in a world\r\n\r\nBut in plain site\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find a pure delight\r\n\r\n \r\n\r\n ','If You Ever Find Me','','publish','open','open','','if-you-ever-find-me','','','2015-10-22 13:41:42','2015-10-22 18:41:42','',0,'http://www.monicarenata.com/?p=1141',0,'post','',0),(1142,1,'2015-10-22 09:42:12','2015-10-22 14:42:12','If you ever truly find me\r\n\r\nYou will find me in a dream\r\n\r\n \r\n\r\nIn a made up reality\r\n\r\nWhere hurt and sorrow is unseen\r\n\r\n \r\n\r\nIn a place that emits positivity\r\n\r\nWhere happiness overflows\r\n\r\nThere I am happy and I feel like I belong\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a boat\r\n\r\n \r\n\r\nIn a sea of ecstatic waters\r\n\r\nWhere the sounds calm the weariest heart\r\n\r\n \r\n\r\nIn a location that is always sunny\r\n\r\nWhere gray clouds can never be seen\r\n\r\nThere I am happy and I feel like I belong\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a plane\r\n\r\n \r\n\r\nIn the air floating on blissful winds\r\n\r\nWhere I’m at peace with all around me\r\n\r\n \r\n\r\nIn a place that calms my heart\r\n\r\nWhere I appreciate everything since I can now clearly see\r\n\r\nThere I am happy and I feel like I belong\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in my happy place\r\n\r\n \r\n\r\nImmersed in my happiness\r\n\r\nAnd still searching for more happiness each day\r\n\r\n \r\n\r\nLost in a world\r\n\r\nBut in plain site\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find a pure delight\r\n\r\n \r\n\r\n ','If You Ever Find Me','','inherit','closed','closed','','1141-revision-v1','','','2015-10-22 09:42:12','2015-10-22 14:42:12','',1141,'http://www.monicarenata.com/1141-revision-v1/',0,'revision','',0),(1143,1,'2015-10-22 13:41:42','2015-10-22 18:41:42','If you ever truly find me\r\n\r\nYou will find me in a dream\r\n\r\n \r\n\r\nIn a made up reality\r\n\r\nWhere hurt and sorrow is unseen\r\n\r\n \r\n\r\nIn a place that emits positivity\r\n\r\nWhere happiness overflows\r\n\r\nThere I am happy and I feel like I belong\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a boat\r\n\r\n \r\n\r\nIn a sea of ecstatic waters\r\n\r\nWhere the sounds calm the weariest heart\r\n\r\n \r\n\r\nIn a location that is always sunny\r\n\r\nWhere gray clouds can never be seen\r\n\r\nThere I am happy and I always dance and sing\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in a plane\r\n\r\n \r\n\r\nIn the air floating on blissful winds\r\n\r\nWhere I’m at peace with all around me\r\n\r\n \r\n\r\nIn a place that calms my heart\r\n\r\nWhere I appreciate everything since I can now clearly see\r\n\r\nThere I am happy and I feel like I am finally free\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find me in my happy place\r\n\r\n \r\n\r\nImmersed in my happiness\r\n\r\nAnd still searching for more happiness each day\r\n\r\n \r\n\r\nLost in a world\r\n\r\nBut in plain site\r\n\r\n \r\n\r\nIf you ever truly find me\r\n\r\nYou will find a pure delight\r\n\r\n \r\n\r\n ','If You Ever Find Me','','inherit','closed','closed','','1141-revision-v1','','','2015-10-22 13:41:42','2015-10-22 18:41:42','',1141,'http://www.monicarenata.com/1141-revision-v1/',0,'revision','',0),(1146,1,'2015-10-26 20:34:38','2015-10-27 01:34:38','I don’t ever want to love again\r\n\r\nI don’t even want to see a lover’s smile\r\n\r\nI just want to be in my own little world\r\n\r\nAs the rest of the world spins round and round\r\n\r\n \r\n\r\nI don’t ever want to be happy like that again\r\n\r\nI don’t want someone who completes my world\r\n\r\nI just want what I have made for myself\r\n\r\nAs I continue to walk alone\r\n\r\n \r\n\r\nFor love brings the highest of highs\r\n\r\nBut once its over You are truly down\r\n\r\nA down that seems like you could never recover from\r\n\r\nAnd the world keeps spinning round\r\n\r\n \r\n\r\nI don’t ever want to fall in love again\r\n\r\nI don’t want that possibility\r\n\r\nI just want to live in my own little world\r\n\r\nWhere happiness is solely dependent on me\r\n\r\n \r\n\r\nI don’t ever want to be happy like that\r\n\r\nI don’t want someone who completes my world\r\n\r\nFor when it is all gone away\r\n\r\nThe sands of time in my life seem no more\r\n\r\n \r\n\r\nI don’t ever want to feel that pain again\r\n\r\nI don’t want to ever be hurt\r\n\r\nSo instead of finding a love that is truly mines\r\n\r\nI’ll continue to walk alone on this earth','Don\'t Ever','','publish','open','open','','dont-ever','','','2016-10-26 13:23:37','2016-10-26 18:23:37','',0,'http://www.monicarenata.com/?p=1146',0,'post','',0),(1147,1,'2015-10-26 20:34:38','2015-10-27 01:34:38','I don’t ever want to love again\r\n\r\nI don’t even want to see a lover’s smile\r\n\r\nI just want to be in my own little world\r\n\r\nAs the rest of the world spins round and round\r\n\r\n \r\n\r\nI don’t ever want to be happy like that again\r\n\r\nI don’t want someone who comples my world\r\n\r\nI just want what I have made for myself\r\n\r\nAs I continue to walk alone\r\n\r\n \r\n\r\nFor love brings the highest of highs\r\n\r\nBut once its over You are truly down\r\n\r\nA down that seems like you could never recover from\r\n\r\nAnd the world keeps spinning round\r\n\r\n \r\n\r\nI don’t ever want to fall in love again\r\n\r\nI don’t want that possibility\r\n\r\nI just want to live in my own little world\r\n\r\nWhere happiness is solely dependent on me\r\n\r\n \r\n\r\nI don’t ever want to be happy like that\r\n\r\nI don’t want someone who completes my world\r\n\r\nFor when it is all gone away\r\n\r\nThe sands of time in my life seem no more\r\n\r\n \r\n\r\nI don’t ever want to feel that pain again\r\n\r\nI don’t want to ever be hurt\r\n\r\nSo instead of finding a love that is truly mines\r\n\r\nI’ll continue to walk alone on this earth','Don\'t Ever','','inherit','closed','closed','','1146-revision-v1','','','2015-10-26 20:34:38','2015-10-27 01:34:38','',1146,'http://www.monicarenata.com/1146-revision-v1/',0,'revision','',0),(1148,1,'2015-10-28 19:45:13','2015-10-29 00:45:13','I used to stare at the ceiling fan\r\n\r\nWaiting for the day to come anew\r\n\r\nWatching the blades go round and round\r\n\r\nOn the ceiling fan in my room\r\n\r\n \r\n\r\nRound and round in circles\r\n\r\nSo much like my life\r\n\r\nRevolving doors of memories\r\n\r\nAnd people come and go as they like\r\n\r\n \r\n\r\nI used to stare at the ceiling\r\n\r\nUntil my eyes would dimly shine\r\n\r\nThen wake up to a revolving blade\r\n\r\nStill going round a round\r\n\r\n \r\n\r\nSomewhat like a carousel\r\n\r\nSo many ride and then get off\r\n\r\nI’m waiting for those who stick around\r\n\r\nSo I can finally turn this fan off','Ceiling Fan','','publish','open','open','','ceiling-fan','','','2015-10-28 19:45:13','2015-10-29 00:45:13','',0,'http://www.monicarenata.com/?p=1148',0,'post','',0),(1149,1,'2015-10-28 19:45:13','2015-10-29 00:45:13','I used to stare at the ceiling fan\r\n\r\nWaiting for the day to come anew\r\n\r\nWatching the blades go round and round\r\n\r\nOn the ceiling fan in my room\r\n\r\n \r\n\r\nRound and round in circles\r\n\r\nSo much like my life\r\n\r\nRevolving doors of memories\r\n\r\nAnd people come and go as they like\r\n\r\n \r\n\r\nI used to stare at the ceiling\r\n\r\nUntil my eyes would dimly shine\r\n\r\nThen wake up to a revolving blade\r\n\r\nStill going round a round\r\n\r\n \r\n\r\nSomewhat like a carousel\r\n\r\nSo many ride and then get off\r\n\r\nI’m waiting for those who stick around\r\n\r\nSo I can finally turn this fan off','Ceiling Fan','','inherit','closed','closed','','1148-revision-v1','','','2015-10-28 19:45:13','2015-10-29 00:45:13','',1148,'http://www.monicarenata.com/1148-revision-v1/',0,'revision','',0),(1150,1,'2015-10-28 19:49:21','2015-10-29 00:49:21','My heart used to beat for you, you know\r\n\r\nThe way that yours never do\r\n\r\nFor my heart used to beat with an abundance of excitement\r\n\r\nWhen I seen or even thought of you\r\n\r\n \r\n\r\nMy heart used to beat for you, you know\r\n\r\nWith anticipation and also dread\r\n\r\nMy world would go in a short of disarray\r\n\r\nWhen you threatened not to be there\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nYou said this was the feeling of love\r\n\r\nBut now as I dwell in my dwelling\r\n\r\nI’m not too fond of love\r\n\r\n \r\n\r\nBoom, Boom, Boom, Pat, Pat, Pat\r\n\r\nThat clamor bothered me the most\r\n\r\nYet you sat there calmly\r\n\r\nAnd said I was doing the most\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nYou knew this very well\r\n\r\nMade me believe this was love\r\n\r\nWhen it was actually hell\r\n\r\n \r\n\r\nChanged my whole perspective\r\n\r\nOf what I thought love was and what it should be\r\n\r\nChanged my outlook on my love life\r\n\r\nInside you changed me\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nBut I decided to let that die\r\n\r\nThrow away that concept of fictitious love\r\n\r\nLet the hurt in my heart die\r\n\r\n \r\n\r\nAnd in that very moment\r\n\r\nWhen I thought I was about to take my last breath\r\n\r\nI realized I could go on without you\r\n\r\nAnd I had so much of my life left\r\n\r\n \r\n\r\nGone are the doubts and worries I had about love\r\n\r\nGone are the negativities that I once knew\r\n\r\nGone was the old heart that trembled in fear\r\n\r\nGone was that beat for you\r\n\r\n \r\n\r\nMy heart used to beat for you, you know\r\n\r\nThis is sadly true\r\n\r\nBut now it beats for me again\r\n\r\nFor love has been renewed','My Heart Used to Beat For You','','publish','open','open','','my-heart-used-to-beat-for-you','','','2015-10-28 19:49:21','2015-10-29 00:49:21','',0,'http://www.monicarenata.com/?p=1150',0,'post','',0),(1151,1,'2015-10-28 19:49:21','2015-10-29 00:49:21','My heart used to beat for you, you know\r\n\r\nThe way that yours never do\r\n\r\nFor my heart used to beat with an abundance of excitement\r\n\r\nWhen I seen or even thought of you\r\n\r\n \r\n\r\nMy heart used to beat for you, you know\r\n\r\nWith anticipation and also dread\r\n\r\nMy world would go in a short of disarray\r\n\r\nWhen you threatened not to be there\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nYou said this was the feeling of love\r\n\r\nBut now as I dwell in my dwelling\r\n\r\nI’m not too fond of love\r\n\r\n \r\n\r\nBoom, Boom, Boom, Pat, Pat, Pat\r\n\r\nThat clamor bothered me the most\r\n\r\nYet you sat there calmly\r\n\r\nAnd said I was doing the most\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nYou knew this very well\r\n\r\nMade me believe this was love\r\n\r\nWhen it was actually hell\r\n\r\n \r\n\r\nChanged my whole perspective\r\n\r\nOf what I thought love was and what it should be\r\n\r\nChanged my outlook on my love life\r\n\r\nInside you changed me\r\n\r\n \r\n\r\nMy heart used to beat for you\r\n\r\nBut I decided to let that die\r\n\r\nThrow away that concept of fictitious love\r\n\r\nLet the hurt in my heart die\r\n\r\n \r\n\r\nAnd in that very moment\r\n\r\nWhen I thought I was about to take my last breath\r\n\r\nI realized I could go on without you\r\n\r\nAnd I had so much of my life left\r\n\r\n \r\n\r\nGone are the doubts and worries I had about love\r\n\r\nGone are the negativities that I once knew\r\n\r\nGone was the old heart that trembled in fear\r\n\r\nGone was that beat for you\r\n\r\n \r\n\r\nMy heart used to beat for you, you know\r\n\r\nThis is sadly true\r\n\r\nBut now it beats for me again\r\n\r\nFor love has been renewed','My Heart Used to Beat For You','','inherit','closed','closed','','1150-revision-v1','','','2015-10-28 19:49:21','2015-10-29 00:49:21','',1150,'http://www.monicarenata.com/1150-revision-v1/',0,'revision','',0),(1152,1,'2015-10-28 19:51:06','2015-10-29 00:51:06','He danced with me under the midnight moon\r\n\r\nAs the flare of candles danced on my cheeks\r\n\r\n \r\n\r\nHe brightened the cave within my soul\r\n\r\nSunlight is now what I see\r\n\r\n \r\n\r\nIn an instant he merged two times\r\n\r\nIntertwined day and night\r\n\r\n \r\n\r\nMade me question why I was so hard\r\n\r\nAnd I then became soft as pale blue light\r\n\r\n \r\n\r\nHe danced with me under the midnight moon\r\n\r\nAnd finally that night I smiled\r\n\r\n \r\n\r\nAnd now my night is finally day\r\n\r\nAnd I can live once more now','He Danced','','publish','open','open','','he-danced','','','2015-10-28 19:51:06','2015-10-29 00:51:06','',0,'http://www.monicarenata.com/?p=1152',0,'post','',0),(1153,1,'2015-10-28 19:51:06','2015-10-29 00:51:06','He danced with me under the midnight moon\r\n\r\nAs the flare of candles danced on my cheeks\r\n\r\n \r\n\r\nHe brightened the cave within my soul\r\n\r\nSunlight is now what I see\r\n\r\n \r\n\r\nIn an instant he merged two times\r\n\r\nIntertwined day and night\r\n\r\n \r\n\r\nMade me question why I was so hard\r\n\r\nAnd I then became soft as pale blue light\r\n\r\n \r\n\r\nHe danced with me under the midnight moon\r\n\r\nAnd finally that night I smiled\r\n\r\n \r\n\r\nAnd now my night is finally day\r\n\r\nAnd I can live once more now','He Danced','','inherit','closed','closed','','1152-revision-v1','','','2015-10-28 19:51:06','2015-10-29 00:51:06','',1152,'http://www.monicarenata.com/1152-revision-v1/',0,'revision','',0),(1154,1,'2015-10-28 19:53:26','2015-10-29 00:53:26','Combination\r\n\r\nCombination\r\n\r\nThree numbers that start with three\r\n\r\nRight, left, then round we go\r\n\r\nTo solve the mystery\r\n\r\n \r\n\r\nHidden is a treasure\r\n\r\nThat far too little may ever know\r\n\r\nLocked behind a vessel\r\n\r\nThat is afraid to open once more\r\n\r\n \r\n\r\nCombination\r\n\r\nCombination\r\n\r\nThe first number is 3\r\n\r\nYou hear the clank and you are happy\r\n\r\nI opened up a piece of me\r\n\r\n \r\n\r\nBut turning does so much\r\n\r\nBut also so little at the same time\r\n\r\nFor you open me with the kindness in your heart\r\n\r\nBut I close up from my fears inside\r\n\r\n \r\n\r\nA losing battle you must think\r\n\r\nBut I know someday you’ll win\r\n\r\nJust show me that kindness truly exists\r\n\r\nAnd promise you won’t be like them\r\n\r\n \r\n\r\n“Hurt from the past can end up locking the most precious treasure that is in front of your eyes. Instead of trying to force open this treasure, take the time to emit kindness so that they can realize that kindness truly exists…” –Monica Renata','Combination','','publish','open','open','','combination','','','2015-10-28 19:53:26','2015-10-29 00:53:26','',0,'http://www.monicarenata.com/?p=1154',0,'post','',0),(1155,1,'2015-10-28 19:53:26','2015-10-29 00:53:26','Combination\r\n\r\nCombination\r\n\r\nThree numbers that start with three\r\n\r\nRight, left, then round we go\r\n\r\nTo solve the mystery\r\n\r\n \r\n\r\nHidden is a treasure\r\n\r\nThat far too little may ever know\r\n\r\nLocked behind a vessel\r\n\r\nThat is afraid to open once more\r\n\r\n \r\n\r\nCombination\r\n\r\nCombination\r\n\r\nThe first number is 3\r\n\r\nYou hear the clank and you are happy\r\n\r\nI opened up a piece of me\r\n\r\n \r\n\r\nBut turning does so much\r\n\r\nBut also so little at the same time\r\n\r\nFor you open me with the kindness in your heart\r\n\r\nBut I close up from my fears inside\r\n\r\n \r\n\r\nA losing battle you must think\r\n\r\nBut I know someday you’ll win\r\n\r\nJust show me that kindness truly exists\r\n\r\nAnd promise you won’t be like them\r\n\r\n \r\n\r\n“Hurt from the past can end up locking the most precious treasure that is in front of your eyes. Instead of trying to force open this treasure, take the time to emit kindness so that they can realize that kindness truly exists…” –Monica Renata','Combination','','inherit','closed','closed','','1154-revision-v1','','','2015-10-28 19:53:26','2015-10-29 00:53:26','',1154,'http://www.monicarenata.com/1154-revision-v1/',0,'revision','',0),(1156,1,'2015-10-28 21:09:46','2015-10-29 02:09:46','A black hole going nowhere\r\n\r\nA spec on the canvas we see\r\n\r\nThe spot of growing disdain or comfort\r\n\r\nIts blackness is so deep\r\n\r\n \r\n\r\nCapacity is not met\r\n\r\nYet it’s a shallow, shallow hole\r\n\r\nPulling you in as I speak\r\n\r\nWelcome to my black hole\r\n\r\n \r\n\r\nWords float around freely\r\n\r\nForming my inner most deepest thoughts\r\n\r\nEmitting my greatest triumphs and fears\r\n\r\nSharing the stories of demons I fought\r\n\r\n \r\n\r\nA black hole going nowhere\r\n\r\nBut I hope to constantly pull you in\r\n\r\nSo immerse yourself within my words\r\n\r\nAnd let the true adventures begin\r\n<blockquote> \r\n\r\n<strong>“Welcome to my website. I hope you enjoy! :) “ –Monica Renata</strong></blockquote>\r\n \r\n\r\nJust felt like writing something fun..lol\r\n\r\n \r\n\r\n ','BlackHole','','publish','open','open','','blackhole','','','2015-10-28 21:09:46','2015-10-29 02:09:46','',0,'http://www.monicarenata.com/?p=1156',0,'post','',0),(1157,1,'2015-10-28 21:09:46','2015-10-29 02:09:46','A black hole going nowhere\r\n\r\nA spec on the canvas we see\r\n\r\nThe spot of growing disdain or comfort\r\n\r\nIts blackness is so deep\r\n\r\n \r\n\r\nCapacity is not met\r\n\r\nYet it’s a shallow, shallow hole\r\n\r\nPulling you in as I speak\r\n\r\nWelcome to my black hole\r\n\r\n \r\n\r\nWords float around freely\r\n\r\nForming my inner most deepest thoughts\r\n\r\nEmitting my greatest triumphs and fears\r\n\r\nSharing the stories of demons I fought\r\n\r\n \r\n\r\nA black hole going nowhere\r\n\r\nBut I hope to constantly pull you in\r\n\r\nSo immerse yourself within my words\r\n\r\nAnd let the true adventures begin\r\n<blockquote> \r\n\r\n<strong>“Welcome to my website. I hope you enjoy! :) “ –Monica Renata</strong></blockquote>\r\n \r\n\r\nJust felt like writing something fun..lol\r\n\r\n \r\n\r\n ','BlackHole','','inherit','closed','closed','','1156-revision-v1','','','2015-10-28 21:09:46','2015-10-29 02:09:46','',1156,'http://www.monicarenata.com/1156-revision-v1/',0,'revision','',0),(1158,1,'2015-10-28 21:25:22','2015-10-29 02:25:22','<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">The smoke is now gone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">No more cloudy days</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Now we can see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">The air is now clear</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And now children can play</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And I can finally breathe</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar Man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You were killing this scene</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Had life cloudy </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Like it was a dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Foggy mornings and Foggy nights</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Take me to a place where I can see the light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">I can now see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">No more negativity</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Surrounding me</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You only brought disdain </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Makes me question why when you called my name</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">I came</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Smoke and mirrors</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Hiding secrets</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cloudy rooms</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Hiding all your demons</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Truths are hidden</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Under your cloak</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">It is time for you to go</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar Man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You were killing this scene</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Had life cloudy </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Like it was a dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Foggy mornings and Foggy nights</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Take me to a place where I can see the light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the sun shine</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Over me</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the clouds take away my right to see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the sun shine</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let happiness beam</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Live life</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n<blockquote><strong><span style=\"color: #000000; font-family: Calibri;\"><em>“Stop letting people get in the way of your happiness. Some clouds can go away by simply removing people from your life. Live life.” –Monica Renata</em> </span></strong></blockquote>\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n ','Cigar Man','','publish','open','open','','cigar-man','','','2015-10-28 21:25:22','2015-10-29 02:25:22','',0,'http://www.monicarenata.com/?p=1158',0,'post','',0),(1159,1,'2015-10-28 21:25:22','2015-10-29 02:25:22','<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">The smoke is now gone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">No more cloudy days</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Now we can see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">The air is now clear</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And now children can play</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And I can finally breathe</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar Man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You were killing this scene</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Had life cloudy </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Like it was a dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Foggy mornings and Foggy nights</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Take me to a place where I can see the light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">I can now see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">No more negativity</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Surrounding me</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Puff Puff</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You only brought disdain </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Makes me question why when you called my name</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">I came</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Smoke and mirrors</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Hiding secrets</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cloudy rooms</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Hiding all your demons</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Truths are hidden</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Under your cloak</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">It is time for you to go</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Cigar Man</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">You were killing this scene</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Had life cloudy </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Like it was a dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Foggy mornings and Foggy nights</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Take me to a place where I can see the light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the sun shine</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Over me</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the clouds take away my right to see</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let the sun shine</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Let happiness beam</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Live life</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n<blockquote><strong><span style=\"color: #000000; font-family: Calibri;\"><em>“Stop letting people get in the way of your happiness. Some clouds can go away by simply removing people from your life. Live life.” –Monica Renata</em> </span></strong></blockquote>\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n ','Cigar Man','','inherit','closed','closed','','1158-revision-v1','','','2015-10-28 21:25:22','2015-10-29 02:25:22','',1158,'http://www.monicarenata.com/1158-revision-v1/',0,'revision','',0),(1160,1,'2015-10-28 21:54:51','2015-10-29 02:54:51','<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He visits my thoughts every night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He sings the same song at night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">In a dream, a lovely dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">That my eyes have ever seen</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Lost in the darkness that is so bright</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He holds my hands as the moonlight recedes</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He holds me tight in the still of night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And I thank him for blessing me daily</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Thank you for being my guiding light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n<blockquote><em><span style=\"color: #000000; font-family: Calibri;\"><strong>“No matter what happens in life HE will always be there to comfort you in your time of need.” –Monica Renata</strong> </span></em></blockquote>\r\n ','He Will Never Leave Me Alone','','publish','open','open','','he-will-never-leave-me-alone','','','2015-10-28 21:54:51','2015-10-29 02:54:51','',0,'http://www.monicarenata.com/?p=1160',0,'post','',0),(1161,1,'2015-10-28 21:54:51','2015-10-29 02:54:51','<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He visits my thoughts every night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He sings the same song at night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">In a dream, a lovely dream</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">That my eyes have ever seen</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Lost in the darkness that is so bright</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He holds my hands as the moonlight recedes</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He will never leave me alone</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">He holds me tight in the still of night</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">And I thank him for blessing me daily</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\">Thank you for being my guiding light</span>\r\n\r\n<span style=\"color: #000000; font-family: Calibri;\"> </span>\r\n<blockquote><em><span style=\"color: #000000; font-family: Calibri;\"><strong>“No matter what happens in life HE will always be there to comfort you in your time of need.” –Monica Renata</strong> </span></em></blockquote>\r\n ','He Will Never Leave Me Alone','','inherit','closed','closed','','1160-revision-v1','','','2015-10-28 21:54:51','2015-10-29 02:54:51','',1160,'http://www.monicarenata.com/1160-revision-v1/',0,'revision','',0),(1162,1,'2015-10-28 23:45:05','2015-10-29 04:45:05','<p style=\"text-align: center;\">I’ve lost the feeling of excitement,</p>\r\n<p style=\"text-align: center;\">for now it’s replaced with bittersweet.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Yet I found a place of sweet serenity</p>\r\n<p style=\"text-align: center;\">that resides within me.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Through countless storms I’ve traveled,</p>\r\n<p style=\"text-align: center;\">yet far ahead I can always see.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">That sunny days are ahead</p>\r\n<p style=\"text-align: center;\">and rainy days aren’t as long as they seem.</p>','Bittersweet','','publish','open','open','','bittersweet','','','2015-10-28 23:45:05','2015-10-29 04:45:05','',0,'http://www.monicarenata.com/?p=1162',0,'post','',0),(1163,1,'2015-10-28 23:45:05','2015-10-29 04:45:05','<p style=\"text-align: center;\">I’ve lost the feeling of excitement,</p>\r\n<p style=\"text-align: center;\">for now it’s replaced with bittersweet.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Yet I found a place of sweet serenity</p>\r\n<p style=\"text-align: center;\">that resides within me.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Through countless storms I’ve traveled,</p>\r\n<p style=\"text-align: center;\">yet far ahead I can always see.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">That sunny days are ahead</p>\r\n<p style=\"text-align: center;\">and rainy days aren’t as long as they seem.</p>','Bittersweet','','inherit','closed','closed','','1162-revision-v1','','','2015-10-28 23:45:05','2015-10-29 04:45:05','',1162,'http://www.monicarenata.com/1162-revision-v1/',0,'revision','',0),(1164,1,'2015-10-28 23:51:40','2015-10-29 04:51:40','<p style=\"text-align: center;\">A lonely, sad existence you say</p>\r\n<p style=\"text-align: center;\">Like the clown that puts on a show</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Teardrops painted on his powder white face</p>\r\n<p style=\"text-align: center;\">We continue to laugh at his jokes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But the pain that dweels deep inside</p>\r\n<p style=\"text-align: center;\">Brings laughter to the common man</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For the smile on his face confuses us;</p>\r\n<p style=\"text-align: center;\">his feelings we don\'t know where he stands</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Teardrops showing blatantly</p>\r\n<p style=\"text-align: center;\">On a background the color of snow</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Yet we continue to laugh at his pain,</p>\r\n<p style=\"text-align: center;\">for his sadness is our joke</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A lonely sad existence</p>\r\n<p style=\"text-align: center;\">That far too many understand</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As life seems to crumble in our eyes</p>\r\n<p style=\"text-align: center;\">Instead of help others just laugh</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>\"Others sadness should not be your source of entertainment. Take time to uplift someone instead of being entertained by their downward spiral.\" -Monica Renata </em></p>','Clown','','publish','open','open','','clown','','','2015-10-28 23:51:40','2015-10-29 04:51:40','',0,'http://www.monicarenata.com/?p=1164',0,'post','',0),(1165,1,'2015-10-28 23:51:40','2015-10-29 04:51:40','<p style=\"text-align: center;\">A lonely, sad existence you say</p>\r\n<p style=\"text-align: center;\">Like the clown that puts on a show</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Teardrops painted on his powder white face</p>\r\n<p style=\"text-align: center;\">We continue to laugh at his jokes</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But the pain that dweels deep inside</p>\r\n<p style=\"text-align: center;\">Brings laughter to the common man</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For the smile on his face confuses us;</p>\r\n<p style=\"text-align: center;\">his feelings we don\'t know where he stands</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Teardrops showing blatantly</p>\r\n<p style=\"text-align: center;\">On a background the color of snow</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Yet we continue to laugh at his pain,</p>\r\n<p style=\"text-align: center;\">for his sadness is our joke</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">A lonely sad existence</p>\r\n<p style=\"text-align: center;\">That far too many understand</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">As life seems to crumble in our eyes</p>\r\n<p style=\"text-align: center;\">Instead of help others just laugh</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>\"Others sadness should not be your source of entertainment. Take time to uplift someone instead of being entertained by their downward spiral.\" -Monica Renata </em></p>','Clown','','inherit','closed','closed','','1164-revision-v1','','','2015-10-28 23:51:40','2015-10-29 04:51:40','',1164,'http://www.monicarenata.com/1164-revision-v1/',0,'revision','',0),(1166,1,'2015-10-29 00:12:16','2015-10-29 05:12:16','I said one day you\'ll love me\r\n\r\nAnd one day I realized I was right\r\n\r\n \r\n\r\nFor it took you to finally lose me\r\n\r\nTo miss the smell of my skin at night\r\n\r\n \r\n\r\nI said one day you\'ll love me\r\n\r\nAnd you always responded, \"I already do\"\r\n\r\n \r\n\r\nBut your love was of a fictitious nature\r\n\r\nYet I coyly responded, \"I love you too\"\r\n\r\n \r\n\r\nI said one day you\'ll love me\r\n\r\nI remember tears falling from my eyes\r\n\r\n \r\n\r\nTrapped in a loveless romance\r\n\r\nBut refuses to see this with me eyes\r\n\r\n \r\n\r\nSo instead of hoping and wishing\r\n\r\nI finally got the strength to leave\r\n\r\n \r\n\r\nNow you hold on to memories\r\n\r\nOf what you and I use to be\r\n\r\n \r\n\r\nBut I knew that one day you would love me\r\n\r\nBut that day no longer matters in my life\r\n\r\n \r\n\r\nFor I continue to go on with life\r\n\r\nWhether you love me or love me not','One Day You\'ll Love Me','','publish','open','open','','one-day-youll-love-me','','','2015-10-29 00:12:16','2015-10-29 05:12:16','',0,'http://www.monicarenata.com/?p=1166',0,'post','',0),(1167,1,'2015-10-29 00:12:16','2015-10-29 05:12:16','I said one day you\'ll love me\r\n\r\nAnd one day I realized I was right\r\n\r\n \r\n\r\nFor it took you to finally lose me\r\n\r\nTo miss the smell of my skin at night\r\n\r\n \r\n\r\nI said one day you\'ll love me\r\n\r\nAnd you always responded, \"I already do\"\r\n\r\n \r\n\r\nBut your love was of a fictitious nature\r\n\r\nYet I coyly responded, \"I love you too\"\r\n\r\n \r\n\r\nI said one day you\'ll love me\r\n\r\nI remember tears falling from my eyes\r\n\r\n \r\n\r\nTrapped in a loveless romance\r\n\r\nBut refuses to see this with me eyes\r\n\r\n \r\n\r\nSo instead of hoping and wishing\r\n\r\nI finally got the strength to leave\r\n\r\n \r\n\r\nNow you hold on to memories\r\n\r\nOf what you and I use to be\r\n\r\n \r\n\r\nBut I knew that one day you would love me\r\n\r\nBut that day no longer matters in my life\r\n\r\n \r\n\r\nFor I continue to go on with life\r\n\r\nWhether you love me or love me not','One Day You\'ll Love Me','','inherit','closed','closed','','1166-revision-v1','','','2015-10-29 00:12:16','2015-10-29 05:12:16','',1166,'http://www.monicarenata.com/1166-revision-v1/',0,'revision','',0),(1170,1,'2015-10-29 22:36:46','2015-10-30 03:36:46','A pair of heels sky high\r\n\r\nDiamonds that twinkle in your eyes\r\n\r\nAll can be bought then sold\r\n\r\nJust like you and your soul\r\n\r\n \r\n\r\nIn life you only value pretty things\r\n\r\nThese are the true values you believe life can only bring\r\n\r\nBeing bought and sold every night\r\n\r\nJust a hooker living in a made up paradise\r\n\r\n \r\n\r\nOn the outside you are a ten\r\n\r\nBut inside you are truly lacking\r\n\r\nSubstance that can define\r\n\r\nThe woman who you are deep inside\r\n\r\n \r\n\r\nBut that pair of heels that are sky high\r\n\r\nThose bright diamonds that twinkle in your eager hazel eyes\r\n\r\nItems which can be bought and sold\r\n\r\nA reflection of your life; when will this get old?\r\n\r\n \r\n\r\nStop living for beautiful things\r\n\r\nMaterialism in this life never yields good things\r\n\r\nPractice on healing your soul\r\n\r\nBefore your feet start to hurt, and your ring loses its stones\r\n\r\nCause one day your hooker paradise will get really old','Hooker\'s Paradise','','inherit','closed','closed','','1168-revision-v1','','','2015-10-29 22:36:46','2015-10-30 03:36:46','',1168,'http://www.monicarenata.com/1168-revision-v1/',0,'revision','',0),(1171,1,'2015-10-29 22:37:56','2015-10-30 03:37:56','Best friend, Best friend\r\n\r\nI see the look in your eyes\r\n\r\nWhen I obtain success you want to crumble and die\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nI can finally see\r\n\r\nThat you won’t always be there for me\r\n\r\n \r\n\r\nCatty words\r\n\r\nA little chit chat\r\n\r\nTrying to pierce me words\r\n\r\nBut I just take that\r\n\r\nI won’t allow you to kill\r\n\r\nMy joy inside\r\n\r\nI just want to be loved tonight\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nAt times you are killing me\r\n\r\nMy tears make you happy, as happy as can be\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nI just cannot see\r\n\r\nWhy you are so jealous of me\r\n\r\n \r\n\r\nSmart remarks\r\n\r\nFollowed by pillow talk\r\n\r\nWith those who you truly consider your friend\r\n\r\nMy life you despise\r\n\r\nBut you won’t tell me why\r\n\r\nBut you say were best friends\r\n\r\nRight?\r\n\r\n \r\n\r\nOh Best Friend, Best friend\r\n\r\nYou aren’t the best for me\r\n\r\nI need to move on so I can be free\r\n\r\n \r\n\r\n \r\n\r\nBest friend, best friend\r\n\r\nI guess it’s true when they say\r\n\r\nSometimes you shake the enemies hand each and every day','Best Friend, Best Friend','','publish','open','open','','best-friend-best-friend','','','2015-10-29 22:37:56','2015-10-30 03:37:56','',0,'http://www.monicarenata.com/?p=1171',0,'post','',0),(1172,1,'2015-10-29 22:37:56','2015-10-30 03:37:56','Best friend, Best friend\r\n\r\nI see the look in your eyes\r\n\r\nWhen I obtain success you want to crumble and die\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nI can finally see\r\n\r\nThat you won’t always be there for me\r\n\r\n \r\n\r\nCatty words\r\n\r\nA little chit chat\r\n\r\nTrying to pierce me words\r\n\r\nBut I just take that\r\n\r\nI won’t allow you to kill\r\n\r\nMy joy inside\r\n\r\nI just want to be loved tonight\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nAt times you are killing me\r\n\r\nMy tears make you happy, as happy as can be\r\n\r\n \r\n\r\nBest friend, Best friend\r\n\r\nI just cannot see\r\n\r\nWhy you are so jealous of me\r\n\r\n \r\n\r\nSmart remarks\r\n\r\nFollowed by pillow talk\r\n\r\nWith those who you truly consider your friend\r\n\r\nMy life you despise\r\n\r\nBut you won’t tell me why\r\n\r\nBut you say were best friends\r\n\r\nRight?\r\n\r\n \r\n\r\nOh Best Friend, Best friend\r\n\r\nYou aren’t the best for me\r\n\r\nI need to move on so I can be free\r\n\r\n \r\n\r\n \r\n\r\nBest friend, best friend\r\n\r\nI guess it’s true when they say\r\n\r\nSometimes you shake the enemies hand each and every day','Best Friend, Best Friend','','inherit','closed','closed','','1171-revision-v1','','','2015-10-29 22:37:56','2015-10-30 03:37:56','',1171,'http://www.monicarenata.com/1171-revision-v1/',0,'revision','',0),(1173,1,'2015-10-29 22:39:37','2015-10-30 03:39:37','Eternity etched on the finger\r\n\r\nThe finger that leads to the heart\r\n\r\nYet the placeholder is missing\r\n\r\nHowever it obviously left a mark\r\n\r\n \r\n\r\nThat vein is missing its jacket\r\n\r\nThe blood that runs to the heart now is so cold\r\n\r\nFor when you take off that wedding ring\r\n\r\nThe story of mischief is the one to be told\r\n\r\n \r\n<blockquote><strong><em>“They say that the circle of the wedding band is also a symbol of eternity. The circle has no beginning or end and is, therefore, a symbol of infinity. Traditionally, the wedding ring is worn on the fourth finger of the left hand. This is because the vein in this finger was believed to lead directly to the wearer\'s heart….Is your heart still warm?” –Monica Renata</em></strong></blockquote>','Mischief: Wedding Band Astray','','publish','open','open','','mischief-wedding-band-astray','','','2015-10-29 22:39:37','2015-10-30 03:39:37','',0,'http://www.monicarenata.com/?p=1173',0,'post','',0),(1174,1,'2015-10-29 22:39:37','2015-10-30 03:39:37','Eternity etched on the finger\r\n\r\nThe finger that leads to the heart\r\n\r\nYet the placeholder is missing\r\n\r\nHowever it obviously left a mark\r\n\r\n \r\n\r\nThat vein is missing its jacket\r\n\r\nThe blood that runs to the heart now is so cold\r\n\r\nFor when you take off that wedding ring\r\n\r\nThe story of mischief is the one to be told\r\n\r\n \r\n<blockquote><strong><em>“They say that the circle of the wedding band is also a symbol of eternity. The circle has no beginning or end and is, therefore, a symbol of infinity. Traditionally, the wedding ring is worn on the fourth finger of the left hand. This is because the vein in this finger was believed to lead directly to the wearer\'s heart….Is your heart still warm?” –Monica Renata</em></strong></blockquote>','Mischief: Wedding Band Astray','','inherit','closed','closed','','1173-revision-v1','','','2015-10-29 22:39:37','2015-10-30 03:39:37','',1173,'http://www.monicarenata.com/1173-revision-v1/',0,'revision','',0),(1177,1,'2015-11-06 14:35:54','2015-11-06 20:35:54','I’m Broken\r\n\r\nShattered into thousands of pieces\r\n\r\nReparation seem unimaginable\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI have been hurt to the point where my feelings are afraid to be hurt\r\n\r\nBeen hurt to the point that I fear my own feelings because feelings can hurt\r\n\r\nFeelings can hurt me\r\n\r\n \r\n\r\nI’m broken\r\n\r\nJagged at all of my corners\r\n\r\nAnd if touched I might even hurt you\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI remember being whole\r\n\r\nI remember what it felt like to be completely and utterly carefree\r\n\r\nBut that changed when I was hurt\r\n\r\n \r\n\r\nI’m broken\r\n\r\nYet I yearn to be whole again\r\n\r\nBut I am deathly afraid\r\n\r\n \r\n\r\nI have been hurt\r\n\r\n \r\n\r\nI have been placed in a position where I must battle myself daily\r\n\r\nQuestion my own feelings because I do not know the intentions of others\r\n\r\nGuard myself from others and also myself\r\n\r\n \r\n\r\nI’m broken\r\n\r\nBecause I have been hurt\r\n\r\nBut one day I hope this passes\r\n\r\n \r\n\r\nFor I yearn to feel the tender touch that can be felt beyond my flesh\r\n\r\nI yearn to be able to use my heart to its utmost capacity again\r\n\r\nI yearn for that day\r\n\r\n \r\n\r\nBut I’ve been hurt\r\n\r\n \r\n\r\nI am broken\r\n\r\nBut hopefully one day\r\n\r\nSomeday soon\r\n\r\nThe pieces will come together again\r\n\r\n ','I\'m Broken','','inherit','closed','closed','','1176-revision-v1','','','2015-11-06 14:35:54','2015-11-06 20:35:54','',1176,'http://www.monicarenata.com/1176-revision-v1/',0,'revision','',0),(1206,1,'2015-12-31 14:39:29','2015-12-31 20:39:29','I find it somewhat funny\r\nSomewhat a little complex\r\nThat you can\'t answer the questions\r\nThe questions that I ask\r\n\r\nMy words to you are jumbled\r\nSo complicated to say the least\r\nYet if I say nevermind\r\nNevermind you understand so clearly\r\n\r\nI\'m talking around in circles\r\nI\'m saying things over again\r\nYou say that I am always complaining\r\nSo complain is what I\'ll do again\r\n\r\nYet I find it quite amusing\r\nThat when I say what you want to hear\r\nIt sounds like sweet sweet music\r\nSweet music to your ears\r\n\r\nBut when I have a problem\r\nThat I have to voice again and again\r\nYou can\'t seem to answer the questions\r\nThe questions that I do ask\r\n\r\n<em>“Selective hearing is used frequently. There is no need to let it bother you...”</em> -Monica Renata','Selective Hearing','','publish','open','open','','selective-hearing','','','2015-12-31 14:39:29','2015-12-31 20:39:29','',0,'http://www.monicarenata.com/?p=1206',0,'post','',1),(1181,1,'2015-12-22 21:52:32','2015-12-23 03:52:32','I will make you weak\r\n\r\nWithout a single touch\r\n\r\nWhile my presence floats on air\r\n\r\n \r\n\r\nMy eyes will penetrate your soul\r\n\r\nAnd plant a seed deep in the abyss upstairs\r\n\r\nAs you begin to glare\r\n\r\n \r\n\r\n\r\n\r\nI will wrap you around my finger\r\n\r\nSo tight that you cannot move\r\n\r\n \r\n\r\n\r\n\r\nMy words will soften your cold heart\r\n\r\nAnd it will beat for me soon\r\n\r\n \r\n\r\nI will make you weak\r\n\r\nWithout a single touch\r\n\r\nEach time I walk in the room\r\n\r\n \r\n\r\n\r\n\r\nMy confidence will make you perspire\r\n\r\nYou will become baffled\r\n\r\nAnd you will thirst for me soon\r\n \r\n\r\n\r\n\r\nI know that I am but a woman\r\n\r\nAnd as a man flesh makes you weak\r\n\r\n \r\n\r\n\r\n\r\nBut unfortunately my form of kryptonite\r\n\r\nEncompass more than the eye can see\r\n\r\n \r\n\r\n\r\n\r\nAnd without a single touch\r\n \r\n\r\nI\r\n\r\nMake\r\n\r\nYou\r\n\r\nWeak\r\n\r\n \r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','publish','open','open','','make-you-weak','','','2015-12-22 23:18:43','2015-12-23 05:18:43','',0,'http://www.monicarenata.com/?p=1181',0,'post','',0),(1182,1,'2015-12-22 21:47:27','2015-12-23 03:47:27','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed d','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:47:27','2015-12-23 03:47:27','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1183,1,'2015-12-22 21:47:47','2015-12-23 03:47:47','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo thigh','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:47:47','2015-12-23 03:47:47','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1184,1,'2015-12-22 21:48:07','2015-12-23 03:48:07','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:48:07','2015-12-23 03:48:07','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1185,1,'2015-12-22 21:48:26','2015-12-23 03:48:26','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\n \n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:48:26','2015-12-23 03:48:26','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1186,1,'2015-12-22 21:48:47','2015-12-23 03:48:47','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\n \n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd you will thirst for me soon\n\n \n\nI know that I am but a woman\n\nAnd as','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:48:47','2015-12-23 03:48:47','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1187,1,'2015-12-22 21:49:06','2015-12-23 03:49:06','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\n \n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd you will thirst for me soon\n\n \n\nI know that I am but a woman\n\nAnd as a man flesh makes you weak\n\n \n\nBut unfortunately my form of kryptonite\n\nEncomposes more than the eye can see\n\n \n\nB','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:49:06','2015-12-23 03:49:06','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1188,1,'2015-12-22 21:49:25','2015-12-23 03:49:25','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\n \n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd you will thirst for me soon\n\n \n\nI know that I am but a woman\n\nAnd as a man flesh makes you weak\n\n \n\nBut unfortunately my form of kryptonite\n\nEncomposes more than the eye can see\n\n \n\nAnd without a single touch\n\n \n\nI\n\nMake\n\nYou','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:49:25','2015-12-23 03:49:25','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1189,1,'2015-12-22 21:49:46','2015-12-23 03:49:46','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n \n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n \n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n \n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\n \n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd you will thirst for me soon\n\n \n\nI know that I am but a woman\n\nAnd as a man flesh makes you weak\n\n \n\nBut unfortunately my form of kryptonite\n\nEncompass more than the eye can see\n\n \n\nAnd without a single touch\n\n \n\nI\n\nMake\n\nYou\n\nWeak','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:49:46','2015-12-23 03:49:46','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1190,1,'2015-12-22 21:50:07','2015-12-23 03:50:07','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:50:07','2015-12-23 03:50:07','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1191,1,'2015-12-22 21:52:11','2015-12-23 03:52:11','','26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration','','inherit','open','closed','','26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration','','','2015-12-22 21:52:11','2015-12-23 03:52:11','',1181,'http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg',0,'attachment','image/jpeg',0),(1200,1,'2015-12-22 23:08:08','2015-12-23 05:08:08','I will make you weak\r\n\r\nWithout a single touch\r\n\r\nWhile my presence floats on air\r\n\r\n<br> <br>\r\n\r\nMy eyes will penetrate your soul\r\n\r\nAnd plant a seed deep in the abyss upstairs\r\n\r\nAs you begin to glare\r\n\r\nI will wrap you around my finger\r\n\r\nSo tight that you cannot move\r\n\r\nMy words will soften your cold heart\r\n\r\nAnd it will beat for me soon\r\n\r\nI will make you weak\r\n\r\nWithout a single touch\r\n\r\nEach time I walk in the room\r\n\r\nMy confidence will make you perspire\r\n\r\nYou will become baffled\r\n\r\nAnd you will thirst for me soon\r\n\r\nI know that I am but a woman\r\n\r\nAnd as a man flesh makes you weak\r\n\r\nBut unfortunately my form of kryptonite\r\n\r\nEncompass more than the eye can see\r\n\r\nAnd without a single touch\r\n\r\nI\r\n\r\nMake\r\n\r\nYou\r\n\r\nWeak\r\n\r\n\r\n\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 23:08:08','2015-12-23 05:08:08','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1192,1,'2015-12-22 21:52:23','2015-12-23 03:52:23','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"168\" height=\"168\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:52:23','2015-12-23 03:52:23','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1195,1,'2015-12-22 21:54:48','2015-12-23 03:54:48','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"336\" height=\"336\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:54:48','2015-12-23 03:54:48','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1193,1,'2015-12-22 21:52:32','2015-12-23 03:52:32','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"336\" height=\"336\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:52:32','2015-12-23 03:52:32','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1194,1,'2015-12-22 23:09:19','2015-12-23 05:09:19','I will make you weak\n\nWithout a single touch\n\nWhile my presence floats on air\n\n \n\nMy eyes will penetrate your soul\n\nAnd plant a seed deep in the abyss upstairs\n\nAs you begin to glare\n\n<br> <br>\n\n\n\nI will wrap you around my finger\n\nSo tight that you cannot move\n\n<br> <br>\n\n\n\nMy words will soften your cold heart\n\nAnd it will beat for me soon\n\n<br> <br>\n\nI will make you weak\n\nWithout a single touch\n\nEach time I walk in the room\n\nMy confidence will make you perspire\n\nYou will become baffled\n\nAnd you will thirst for me soon\n\nI know that I am but a woman\n\nAnd as a man flesh makes you weak\n\nBut unfortunately my form of kryptonite\n\nEncompass more than the eye can see\n\nAnd without a single touch\n\nI\n\nMake\n\nYou\n\nWeak\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-autosave-v1','','','2015-12-22 23:09:19','2015-12-23 05:09:19','',1181,'http://www.monicarenata.com/1181-autosave-v1/',0,'revision','',0),(1202,1,'2015-12-22 23:11:12','2015-12-23 05:11:12','I will make you weak\r\n\r\nWithout a single touch\r\n\r\nWhile my presence floats on air\r\n\r\n \r\n\r\nMy eyes will penetrate your soul\r\n\r\nAnd plant a seed deep in the abyss upstairs\r\n\r\nAs you begin to glare\r\n\r\n \r\n\r\n\r\n\r\nI will wrap you around my finger\r\n\r\nSo tight that you cannot move\r\n\r\n \r\n\r\n\r\n\r\nMy words will soften your cold heart\r\n\r\nAnd it will beat for me soon\r\n\r\n \r\n\r\nI will make you weak\r\n\r\nWithout a single touch\r\n\r\nEach time I walk in the room\r\n\r\n \r\n\r\n\r\n\r\nMy confidence will make you perspire\r\n\r\nYou will become baffled\r\n\r\nAnd you will thirst for me soon\r\n \r\n\r\n\r\n\r\nI know that I am but a woman\r\n\r\nAnd as a man flesh makes you weak\r\n\r\n \r\n\r\n\r\n\r\nBut unfortunately my form of kryptonite\r\n\r\nEncompass more than the eye can see\r\n\r\n \r\n\r\n\r\n\r\nAnd without a single touch\r\n \r\n\r\nI\r\n\r\nMake\r\n\r\nYou\r\n\r\nWeak\r\n\r\n \r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 23:11:12','2015-12-23 05:11:12','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1201,1,'2015-12-22 23:10:18','2015-12-23 05:10:18','I will make you weak\r\n\r\nWithout a single touch\r\n\r\nWhile my presence floats on air\r\n\r\n \r\n\r\nMy eyes will penetrate your soul\r\n\r\nAnd plant a seed deep in the abyss upstairs\r\n\r\nAs you begin to glare\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nI will wrap you around my finger\r\n\r\nSo tight that you cannot move\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nMy words will soften your cold heart\r\n\r\nAnd it will beat for me soon\r\n\r\n<br> <br>\r\n\r\nI will make you weak\r\n\r\nWithout a single touch\r\n\r\nEach time I walk in the room\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nMy confidence will make you perspire\r\n\r\nYou will become baffled\r\n\r\nAnd you will thirst for me soon\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nI know that I am but a woman\r\n\r\nAnd as a man flesh makes you weak\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nBut unfortunately my form of kryptonite\r\n\r\nEncompass more than the eye can see\r\n\r\n<br> <br>\r\n\r\n\r\n\r\nAnd without a single touch\r\n<br> <br>\r\n\r\nI\r\n\r\nMake\r\n\r\nYou\r\n\r\nWeak\r\n\r\n<br> <br>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 23:10:18','2015-12-23 05:10:18','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1196,1,'2015-12-22 21:55:53','2015-12-23 03:55:53','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p></p></p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"336\" height=\"336\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:55:53','2015-12-23 03:55:53','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1197,1,'2015-12-22 21:56:20','2015-12-23 03:56:20','<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">While my presence floats on air</p>\n<p style=\"text-align: center;\"></p> </p> </p>\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\n<p style=\"text-align: center;\">As you begin to glare</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\n<p style=\"text-align: center;\">So tight that you cannot move</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\n<p style=\"text-align: center;\">And it will beat for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I will make you weak</p>\n<p style=\"text-align: center;\">Without a single touch</p>\n<p style=\"text-align: center;\">Each time I walk in the room</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\n<p style=\"text-align: center;\">You will become baffled</p>\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I know that I am but a woman</p>\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">And without a single touch</p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\">I</p>\n<p style=\"text-align: center;\">Make</p>\n<p style=\"text-align: center;\">You</p>\n<p style=\"text-align: center;\">Weak</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"336\" height=\"336\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:56:20','2015-12-23 03:56:20','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1199,1,'2015-12-22 22:57:59','2015-12-23 04:57:59','<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\">While my presence floats on air</p>\r\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\r\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\r\n<p style=\"text-align: center;\">As you begin to glare</p>\r\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\r\n<p style=\"text-align: center;\">So tight that you cannot move</p>\r\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\r\n<p style=\"text-align: center;\">And it will beat for me soon</p>\r\n<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\">Each time I walk in the room</p>\r\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\r\n<p style=\"text-align: center;\">You will become baffled</p>\r\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\r\n<p style=\"text-align: center;\">I know that I am but a woman</p>\r\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\r\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\r\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\r\n<p style=\"text-align: center;\">And without a single touch</p>\r\n<p style=\"text-align: center;\">I</p>\r\n<p style=\"text-align: center;\">Make</p>\r\n<p style=\"text-align: center;\">You</p>\r\n<p style=\"text-align: center;\">Weak</p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 22:57:59','2015-12-23 04:57:59','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1198,1,'2015-12-22 21:58:31','2015-12-23 03:58:31','<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\">While my presence floats on air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\r\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\r\n<p style=\"text-align: center;\">As you begin to glare</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\r\n<p style=\"text-align: center;\">So tight that you cannot move</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\r\n<p style=\"text-align: center;\">And it will beat for me soon</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Each time I walk in the room</p>\r\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\r\n<p style=\"text-align: center;\">You will become baffled</p>\r\n<p style=\"text-align: center;\">And you will thirst for me soon</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I know that I am but a woman</p>\r\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\r\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\r\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">And without a single touch</p>\r\n<p style=\"text-align: center;\">I</p>\r\n<p style=\"text-align: center;\">Make</p>\r\n<p style=\"text-align: center;\">You</p>\r\n<p style=\"text-align: center;\">Weak</p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"336\" height=\"336\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 21:58:31','2015-12-23 03:58:31','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1204,1,'2015-12-22 23:18:43','2015-12-23 05:18:43','I will make you weak\r\n\r\nWithout a single touch\r\n\r\nWhile my presence floats on air\r\n\r\n \r\n\r\nMy eyes will penetrate your soul\r\n\r\nAnd plant a seed deep in the abyss upstairs\r\n\r\nAs you begin to glare\r\n\r\n \r\n\r\n\r\n\r\nI will wrap you around my finger\r\n\r\nSo tight that you cannot move\r\n\r\n \r\n\r\n\r\n\r\nMy words will soften your cold heart\r\n\r\nAnd it will beat for me soon\r\n\r\n \r\n\r\nI will make you weak\r\n\r\nWithout a single touch\r\n\r\nEach time I walk in the room\r\n\r\n \r\n\r\n\r\n\r\nMy confidence will make you perspire\r\n\r\nYou will become baffled\r\n\r\nAnd you will thirst for me soon\r\n \r\n\r\n\r\n\r\nI know that I am but a woman\r\n\r\nAnd as a man flesh makes you weak\r\n\r\n \r\n\r\n\r\n\r\nBut unfortunately my form of kryptonite\r\n\r\nEncompass more than the eye can see\r\n\r\n \r\n\r\n\r\n\r\nAnd without a single touch\r\n \r\n\r\nI\r\n\r\nMake\r\n\r\nYou\r\n\r\nWeak\r\n\r\n \r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 23:18:43','2015-12-23 05:18:43','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1203,1,'2015-12-22 23:17:50','2015-12-23 05:17:50','<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\">While my presence floats on air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes will penetrate your soul</p>\r\n<p style=\"text-align: center;\">And plant a seed deep in the abyss upstairs</p>\r\n<p style=\"text-align: center;\">As you begin to glare</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will wrap you around my finger</p>\r\n<p style=\"text-align: center;\">So tight that you cannot move</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My words will soften your cold heart</p>\r\n<p style=\"text-align: center;\">And it will beat for me soon</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will make you weak</p>\r\n<p style=\"text-align: center;\">Without a single touch</p>\r\n<p style=\"text-align: center;\">Each time I walk in the room</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My confidence will make you perspire</p>\r\n<p style=\"text-align: center;\">You will become baffled</p>\r\n<p style=\"text-align: center;\">And you will thirst for me soon\r\n</p>\r\n<p style=\"text-align: center;\">I know that I am but a woman</p>\r\n<p style=\"text-align: center;\">And as a man flesh makes you weak</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But unfortunately my form of kryptonite</p>\r\n<p style=\"text-align: center;\">Encompass more than the eye can see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">And without a single touch\r\n</p>\r\n<p style=\"text-align: center;\">I</p>\r\n<p style=\"text-align: center;\">Make</p>\r\n<p style=\"text-align: center;\">You</p>\r\n<p style=\"text-align: center;\">Weak</p>\r\n \r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1191\" src=\"http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg\" alt=\"26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration\" width=\"300\" height=\"300\" /></p>','Make You Weak','','inherit','closed','closed','','1181-revision-v1','','','2015-12-22 23:17:50','2015-12-23 05:17:50','',1181,'http://www.monicarenata.com/1181-revision-v1/',0,'revision','',0),(1207,1,'2015-12-31 14:39:29','2015-12-31 20:39:29','I find it somewhat funny\r\nSomewhat a little complex\r\nThat you can\'t answer the questions\r\nThe questions that I ask\r\n\r\nMy words to you are jumbled\r\nSo complicated to say the least\r\nYet if I say nevermind\r\nNevermind you understand so clearly\r\n\r\nI\'m talking around in circles\r\nI\'m saying things over again\r\nYou say that I am always complaining\r\nSo complain is what I\'ll do again\r\n\r\nYet I find it quite amusing\r\nThat when I say what you want to hear\r\nIt sounds like sweet sweet music\r\nSweet music to your ears\r\n\r\nBut when I have a problem\r\nThat I have to voice again and again\r\nYou can\'t seem to answer the questions\r\nThe questions that I do ask\r\n\r\n<em>“Selective hearing is used frequently. There is no need to let it bother you...”</em> -Monica Renata','Selective Hearing','','inherit','closed','closed','','1206-revision-v1','','','2015-12-31 14:39:29','2015-12-31 20:39:29','',1206,'http://www.monicarenata.com/1206-revision-v1/',0,'revision','',0),(1208,1,'2015-12-31 20:12:16','2016-01-01 02:12:16','I turned the page this morning\r\nWhile you were standing there\r\nI felt the chills radiate from your spine\r\nI felt your overwhelming sense of care\r\n\r\nI turned the page this morning\r\nAs I told you I would soon do\r\nBut you stand there like a bookmark\r\nThat does not want to be removed\r\n\r\nAn epic love story\r\nOne that lasted for a while\r\nYou were there through all of my tears\r\nYou were the one who made me smile\r\n\r\nBut this chapter needs to end\r\nNo matter how calm and sweet\r\nFor life can\'t stand still for both of us\r\nThis story we must retreat\r\n\r\nSo I\'ll turn the page this morning\r\nLike I told you I would always do\r\nCapacity for our love is overfilled \r\nAnd we must each start a chapter anew\r\n\r\n“Sometimes in order to move forward in life, you must leave an old situation. For a love that\'s new can not grow, if you are still stuck in the past.” -Monica Renata ','Turned The Page','','publish','open','open','','turned-the-page','','','2015-12-31 20:12:16','2016-01-01 02:12:16','',0,'http://www.monicarenata.com/?p=1208',0,'post','',0),(1209,1,'2015-12-31 20:12:06','2016-01-01 02:12:06','I turned the page this morning\r\nWhile you were standing there\r\nI felt the chills radiate from your spine\r\nI felt your overwhelming sense of care\r\n\r\nI turned the page this morning\r\nAs I told you I would soon do\r\nBut you stand there like a bookmark\r\nThat does not want to be removed\r\n\r\nAn epic love story\r\nOne that lasted for a while\r\nYou were there through all of my tears\r\nYou were the one who made me smile\r\n\r\nBut this chapter needs to end\r\nNo matter how calm and sweet\r\nFor life can\'t stand still for both of us\r\nThis story we must retreat\r\n\r\nSo I\'ll turn the page this morning\r\nLike I told you I would always do\r\nCapacity for our love is overfilled \r\nAnd we must each start a chapter anew\r\n\r\n“Sometimes in order to move forward in life, you must leave an old situation. For a love that\'s new can not grow, if you are still stuck in the past.” -Monica Renata ','Turned The Page','','inherit','closed','closed','','1208-revision-v1','','','2015-12-31 20:12:06','2016-01-01 02:12:06','',1208,'http://www.monicarenata.com/1208-revision-v1/',0,'revision','',0),(1211,1,'2016-01-02 21:18:46','2016-01-03 03:18:46','Turn off everything\r\nTurn off the lights\r\nAnd turn on that desire\r\nThat I see in your eyes\r\n\r\nTake me away\r\nTo a place only we know\r\nHold me tight forever\r\nNever let me go\r\n\r\nTurn off your doubts and insecurities\r\nTurn on that spark in your mind\r\nAs I grab your body\r\nPull mines by your side\r\n\r\nTake me away\r\nTo a place only we know\r\nHold me tight forever\r\nNever let me go\r\n\r\nMake love to me\r\nLike a love you never knew \r\nBrighten up this darkness\r\nI am waiting on you\r\n\r\nSpark that fire\r\nWe shall blaze til the morning light\r\nWe will light the world \r\nEven though we turned off the lights\r\n\r\n\r\n<img src=\"http://s2.favim.com/orig/32/beautiful-couple-dark-follow-foolme-kiss-Favim.com-254908.jpg\" width=\"400\" height=\"267\" class=\"aligncenter\" />','Turn Off Everything','','publish','open','open','','turn-off-everything','','','2016-01-02 21:18:46','2016-01-03 03:18:46','',0,'http://www.monicarenata.com/?p=1211',0,'post','',0),(1212,1,'2016-01-02 21:18:34','2016-01-03 03:18:34','Turn off everything\r\nTurn off the lights\r\nAnd turn on that desire\r\nThat I see in your eyes\r\n\r\nTake me away\r\nTo a place only we know\r\nHold me tight forever\r\nNever let me go\r\n\r\nTurn off your doubts and insecurities\r\nTurn on that spark in your mind\r\nAs I grab your body\r\nPull mines by your side\r\n\r\nTake me away\r\nTo a place only we know\r\nHold me tight forever\r\nNever let me go\r\n\r\nMake love to me\r\nLike a love you never knew \r\nBrighten up this darkness\r\nI am waiting on you\r\n\r\nSpark that fire\r\nWe shall blaze til the morning light\r\nWe will light the world \r\nEven though we turned off the lights\r\n\r\n\r\n<img src=\"http://s2.favim.com/orig/32/beautiful-couple-dark-follow-foolme-kiss-Favim.com-254908.jpg\" width=\"400\" height=\"267\" class=\"aligncenter\" />','Turn Off Everything','','inherit','closed','closed','','1211-revision-v1','','','2016-01-02 21:18:34','2016-01-03 03:18:34','',1211,'http://www.monicarenata.com/1211-revision-v1/',0,'revision','',0),(1213,1,'2016-01-02 21:27:42','2016-01-03 03:27:42','I miss you\r\nIn many ways\r\n\r\nThe words you said \r\nI remember\r\n\r\nI miss you\r\nEven your old, old ways\r\n\r\nHow you use pace deep in thought\r\nIn our old kitchen\r\n\r\nI miss you \r\nI wonder at times\r\n\r\nDo I be \r\non your mind\r\n\r\nCause at times \r\nWhen I sit at home and cry\r\n\r\nI just think about how I miss you\r\n\r\nI miss you \r\nEven on your most aggravating days\r\n\r\nOh how much I loved \r\nTo be annoyed\r\n\r\nI miss you baby\r\nSo won\'t you come back honey\r\n\r\nJust come home\r\nTo where you belong\r\n\r\n<img src=\"http://images6.fanpop.com/image/photos/35600000/Just-Come-Home-tiva-35696368-500-333.jpg\" width=\"500\" height=\"333\" class=\"aligncenter\" />\r\n\r\n\r\n','Just Come Home: I Miss You','','publish','open','open','','just-come-home-i-miss-you','','','2016-01-02 21:27:42','2016-01-03 03:27:42','',0,'http://www.monicarenata.com/?p=1213',0,'post','',0),(1214,1,'2016-01-02 21:27:42','2016-01-03 03:27:42','I miss you\r\nIn many ways\r\n\r\nThe words you said \r\nI remember\r\n\r\nI miss you\r\nEven your old, old ways\r\n\r\nHow you use pace deep in thought\r\nIn our old kitchen\r\n\r\nI miss you \r\nI wonder at times\r\n\r\nDo I be \r\non your mind\r\n\r\nCause at times \r\nWhen I sit at home and cry\r\n\r\nI just think about how I miss you\r\n\r\nI miss you \r\nEven on your most aggravating days\r\n\r\nOh how much I loved \r\nTo be annoyed\r\n\r\nI miss you baby\r\nSo won\'t you come back honey\r\n\r\nJust come home\r\nTo where you belong\r\n\r\n<img src=\"http://images6.fanpop.com/image/photos/35600000/Just-Come-Home-tiva-35696368-500-333.jpg\" width=\"500\" height=\"333\" class=\"aligncenter\" />\r\n\r\n\r\n','Just Come Home: I Miss You','','inherit','closed','closed','','1213-revision-v1','','','2016-01-02 21:27:42','2016-01-03 03:27:42','',1213,'http://www.monicarenata.com/1213-revision-v1/',0,'revision','',0),(1215,1,'2016-01-03 13:57:46','2016-01-03 19:57:46','Your heart is in a closet\r\nA closet that I can\'t see\r\nBut I know that it is locked away \r\nAnd someone has the key\r\n\r\nYour heart beats fiercely\r\nBut around me I can\'t hear a peep\r\nI guess I know that your heart beats\r\nBut it does not beat for me\r\n\r\nYour heart is in a closet\r\nAnd I don\'t have the key\r\nBut you show me that your heart is in purgatory\r\nBut you still can\'t move your feet\r\n\r\nTo be trapped in a love that has come and gone\r\nTo find something a new\r\nYour heart is stuck in a closet\r\nThe key is held by someone you once knew\r\n\r\nTo move forward or stay in the past\r\nThe choice is up to you\r\nJust decide if you want to get out of that closet\r\nOr stay locked up by love you once knew\r\n\r\n“You can never truly move on in your love life if you are still locked down by a lover of past” -Monica Renata \r\n\r\n\r\n\r\n\r\n\r\n<img src=\"http://love.catchsmile.com/wp-content/uploads/Love-Hurts-40.jpg\" width=\"694\" height=\"519\" class=\"aligncenter\" />','Your Heart Is In A Closet','','publish','open','open','','your-heart-is-in-a-closet','','','2016-01-03 22:34:25','2016-01-04 04:34:25','',0,'http://www.monicarenata.com/?p=1215',0,'post','',0),(1216,1,'2016-01-03 13:57:27','2016-01-03 19:57:27','Your heart is in a closet\r\nA closet that I can\'t see\r\nBut I know that it is locked away \r\nAnd someone has the key\r\n\r\nYour heart beats fiercely\r\nBut around me I can\'t hear a peep\r\nI guess I know that your heart beats\r\nBut it does not beat for me\r\n\r\nYour heart is in a closet\r\nAnd I don\'t have the key\r\nBut you show me that your heart is in purgatory\r\nBut you still can\'t move your feet\r\n\r\nTo be trapped in a love that has come and gone\r\nTo find something a new\r\nYour heart is stuck in a closet\r\nThe key is held by someone you once knew\r\n\r\nTo move forward or stay in the past\r\nThe choice is up to you\r\nJust decide if you want to get out of that closet\r\nOr stay locked up by love you once knew\r\n\r\n“You can never truly move on in your love life if you are still locked down by a lover of past” -Monica Renata \r\n\r\n\r\n<img src=\"http://love.catchsmile.com/wp-content/uploads/Love-Hurts-40.jpg\" width=\"694\" height=\"519\" class=\"aligncenter\" />','Your Heart Is In A Closet','','inherit','closed','closed','','1215-revision-v1','','','2016-01-03 13:57:27','2016-01-03 19:57:27','',1215,'http://www.monicarenata.com/1215-revision-v1/',0,'revision','',0),(1217,1,'2016-01-03 22:33:47','2016-01-04 04:33:47','Rolling down the sandy beaches\r\nI am but a grain of sand\r\nI look like the very others\r\nAs I roll across this land\r\n\r\nTo you I am intriguing\r\nBut that feeling won\'t last long\r\nBecause sand is sand to you\r\nAnd soon I will blend in with all\r\n\r\nBut what happiness it brought me\r\nWhen I laid intertwined in your hair\r\nFor that moment I was close to you\r\nI was no longer just sand\r\n\r\nBut alas just like the others\r\nYou will soon brush me away\r\nBecause at the end of the day sand is sand\r\nAnd you were only at the beach to play\r\n\r\n“Sometimes a person cannot identify the beauty of another person because they are focused moreso on enjoyment than depth.” -Monica Renata \r\n\r\n<img src=\"http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG\" width=\"1000\" height=\"670\" class=\"aligncenter\" />\r\n','Sand Is Sand','','publish','open','open','','sand-is-sand','','','2016-01-03 22:53:09','2016-01-04 04:53:09','',0,'http://www.monicarenata.com/?p=1217',0,'post','',0),(1218,1,'2016-01-03 22:33:47','2016-01-04 04:33:47','Rolling down the sandy beaches\r\nI am but a grain of sand\r\nI look like the very others\r\nAs I roll across this land\r\n\r\nTo you I am intriguing\r\nBut that feeling won\'t last long\r\nBecause sand is sand to you\r\nAnd soon I will blend in with all\r\n\r\nBut what happiness it brought me\r\nWhen I laid intertwined in your hair\r\nFor that moment I was close to you\r\nI was no longer just sand\r\n\r\nBut alas just like the others\r\nYou will soon brush me away\r\nBecause at the end of the day sand is sand\r\nAnd you were only at the beach to play\r\n<img src=\"http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG\" width=\"1000\" height=\"670\" class=\"aligncenter\" />\r\n“Sometimes a person cannot identify the beauty of another person because they are focused moreso on enjoyment than depth.” -Monica Renata \r\n\r\n\r\n','Sand Is Sand','','inherit','closed','closed','','1217-revision-v1','','','2016-01-03 22:33:47','2016-01-04 04:33:47','',1217,'http://www.monicarenata.com/1217-revision-v1/',0,'revision','',0),(1219,1,'2016-01-03 22:34:49','2016-01-04 04:34:49','Rolling down the sandy beaches\r\nI am but a grain of sand\r\nI look like the very others\r\nAs I roll across this land\r\n\r\nTo you I am intriguing\r\nBut that feeling won\'t last long\r\nBecause sand is sand to you\r\nAnd soon I will blend in with all\r\n\r\nBut what happiness it brought me\r\nWhen I laid intertwined in your hair\r\nFor that moment I was close to you\r\nI was no longer just sand\r\n\r\nBut alas just like the others\r\nYou will soon brush me away\r\nBecause at the end of the day sand is sand\r\nAnd you were only at the beach to play\r\n\r\n“Sometimes a person cannot identify the beauty of another person because they are focused moreso on enjoyment than depth.” -Monica Renata \r\n\r\n<img src=\"http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG\" width=\"1000\" height=\"670\" class=\"aligncenter\" />\r\n','Sand Is Sand','','inherit','closed','closed','','1217-revision-v1','','','2016-01-03 22:34:49','2016-01-04 04:34:49','',1217,'http://www.monicarenata.com/1217-revision-v1/',0,'revision','',0),(1221,1,'2016-01-03 22:53:09','2016-01-04 04:53:09','Rolling down the sandy beaches\r\nI am but a grain of sand\r\nI look like the very others\r\nAs I roll across this land\r\n\r\nTo you I am intriguing\r\nBut that feeling won\'t last long\r\nBecause sand is sand to you\r\nAnd soon I will blend in with all\r\n\r\nBut what happiness it brought me\r\nWhen I laid intertwined in your hair\r\nFor that moment I was close to you\r\nI was no longer just sand\r\n\r\nBut alas just like the others\r\nYou will soon brush me away\r\nBecause at the end of the day sand is sand\r\nAnd you were only at the beach to play\r\n\r\n“Sometimes a person cannot identify the beauty of another person because they are focused moreso on enjoyment than depth.” -Monica Renata \r\n\r\n<img src=\"http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG\" width=\"1000\" height=\"670\" class=\"aligncenter\" />\r\n','Sand Is Sand','','inherit','closed','closed','','1217-revision-v1','','','2016-01-03 22:53:09','2016-01-04 04:53:09','',1217,'http://www.monicarenata.com/1217-revision-v1/',0,'revision','',0),(1220,1,'2016-01-03 22:40:20','2016-01-04 04:40:20','Rolling down the sandy beaches\r\nI am but a grain of sand\r\nI look like the very others\r\nAs I roll across this land\r\n\r\nTo you I am intriguing\r\nBut that feeling won\'t last long\r\nBecause sand is sand to you\r\nAnd soon I will blend in with all\r\n\r\nBut what happiness it brought me\r\nWhen I laid intertwined in your hair\r\nFor that moment I was close to you\r\nI was no longer just sand\r\n\r\nBut alas just like the others\r\nYou will soon brush me away\r\nBecause at the end of the day sand is sand\r\nAnd you were only at the beach to have fun\r\n\r\n“Sometimes a person cannot identify the beauty of another person because they are focused moreso on enjoyment than depth.” -Monica Renata \r\n\r\n<img src=\"http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG\" width=\"1000\" height=\"670\" class=\"aligncenter\" />\r\n','Sand Is Sand','','inherit','closed','closed','','1217-revision-v1','','','2016-01-03 22:40:20','2016-01-04 04:40:20','',1217,'http://www.monicarenata.com/1217-revision-v1/',0,'revision','',0),(1222,1,'2016-01-04 19:07:58','2016-01-05 01:07:58','I\'d love to really love you\r\n\r\nThe way that lovers do\r\n\r\nKiss the pink of your lips\r\n\r\nWhile my hands caress you\r\n\r\n \r\n\r\nI\'d really love to kiss you\r\n\r\nThe way Scarlett did when she kissed Rhett\r\n\r\nI want to be gone in the wind with you\r\n\r\nAnd float on love till there is no more left\r\n\r\n \r\n\r\nI\'d love to take your hands\r\n\r\nAnd intertwine them with mine\r\n\r\nHold them together tightly\r\n\r\nFeel the pulse of our veins unit\r\n\r\n \r\n\r\nI\'d really love to love you\r\n\r\nI think I\'m ready to give this a chance\r\n\r\nSo shower me with your kindness\r\n\r\nAnd let this romance begin\r\n\r\n<img class=\"aligncenter\" src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxAQEBAPDxIPDxANDg0ODw8NDw8NDQ0PFREWFhURFRUYHSggGBolGxUVLTUhJSkrLi4uFx82OTMtNygtLisBCgoKDg0OFxAQFysdHR8tKy0rLS0tLS0rKy0tLS0tLS0rKy0tLS0rLSstLS0rLS0tLS0tKy0rKy0tLS01LSstLf/AABEIALcBEwMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAADAAECBAUGBwj/xAA8EAACAgEBBgQDBQcEAQUAAAABAgADEQQFBhIhMVETQWFxIjKRUoGhseEHFCNCcsHRFTNDYqIWU4Ky8P/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf/EACMRAAICAgIDAQEAAwAAAAAAAAABAhEDMRIhBBNBUUIiYZH/2gAMAwEAAhEDEQA/AIqkIqySrCKs8+zooZVhFWSVYRVgsJFVhAsdVhAsUIkEsqBAhYRRAEJ4QjhMRKTCAwBEFkgkQEmsUJDw4uCFEfEFhAhJIJDBJIJBZgPBH4IcJJBILCVuCLglrw4vDms1FXgkSktlJEpNZioUkCkuFJApNYCmUkCsu+FBvTGsxTKSBWXDVAskNgKrLBsstMsGywgKrLBMstssgUjWApskE6S44gHWFMBTKx4YpFGsFFkJJqsKUiVYLDQwWTCyQWTCwGGCyYWSVZMLAEZVkwscLJhYAjBZMLHAkwsARgIQLHVYQLFbCRCyYWSVYVUi2EGEkwkKqQq1wBACuTFcsLXCrVAYqCuLw5dFMfwZjFA1yJrmgaZBqZjGc1cgUl9qoJq5jFdFisQQrJAvmExXsEqustOIJlhQpVZYMpLZrg2jgKzLiBcSwywbCEBVZYF1ltlgWWEBWKxQpWNGsBZUyarFwSaiAI4WSAiAhFExhASYEcCTAgCMBCKIgJMCAwgsmFjgSaiK2ESrCKsSrDKsVsYZVhkSOiQ9aRQkUrlTam1qNNjxCSx5itAGsI748h7yjvJvCNPmmnDXEfE3VaAe4829Pr2PA6m1nJZmJZjlmY5Zj3Jgb+INfp6xsnXValPEpbiAOGB5MjdmHlNAVzyHYO0rdJaLU5g8rEJwti9j69j5T13Zetr1FK31n4CCTxYBQj5g3YiXhHkSlKiTKACTgADJJ5ADuZz9e9ukNpry6jOBayjwmPvnIHqRMfereI3k0UEigHDN0N3+F9PP8JzPgRZNJ9DK/p66qggEYIIyCOYI7iM1c882Dtu3SkDm9JPxVk8h6r9k/gZ6Po9RXdWtlR4lb6g+YI8jGilLQrbRWeqAeqaTVwLpFlChlKzPZJXdJfsrgHriUMZ71wTLiXbBKzrMAquIFlllhBMIyYpWYQTCWWWCYRjFZhBMJZZYJlhAVsRQhWKEBdeuQCSSvCAxQjKknwR1hBNZiAEkokuGSVZrCICEURASarBYRAQiiJVhVWK2ESiGRYkSC2htCnTJ4l7hB5Dq7nsqjmYNhLigAEnAAGSTyAHczldvb5KM06Ih3PJr+qJ/R9o+vT3nNbx70W6zNaA1afPyZ+OzHQuR+Q5e8oaGkAFjGa4qzRVssMx9SSSWYnJYnqSfOR8MyQaWKViRVIL7I1JNPTau1KrKEYiu8qXUeeP8+ffAgaqgZcqoM3KtAaALTJjTzSr03pDNpuXSLZjEeqXNjbUt0r8VZyrY462+Rx/Y+ssPp5XfSwptPoDVnf7J2rVqlyhw4Hx1t86+vqPWWnSecUVtWQ6sUZeYZTgidHs7e9OSankeniqPhP8AUB09x+E6Y5FLqXTJODWjedZUtWXFsV1DIyurcwykMp9iIG1Yk0PFmdYsrusvWLK1iyQ5SdYFhLbrAOIUwFdhAsJYYQbCNYCuwgmEsMINhDYCuRFCERQgJAQiiMFk1E1mCIkMlcEkOjxWwkvDklqjh5NWi2MN4UkqyYMkFgswyrFqdTXShstda0XqznA9h3PoJi7e3qo0mUH8a8f8aHkh/wC7eXt1nne09pXap/EvbiPPhUcq6x2VfL84yjezHYbU3/HNdJXny8W/kPdUHP6ke05HV6q29zZc7WOfNvIdgOgHoIBEhVEdf6DRJBiaSjCgTPWaJ6CLNaGWmWdmaFr7EqrGWsYKO3qT6AZ+k9W2Juxp9MgBVbXPzWWKDk9lB6Cct+zOhWutsI511qF9OI8z/wCP4z0WdvjY01yZy55NOkYO8G76XJxVKqXIPh4QFFgH8h/sZzGztOSWUggp8wI5rzxz7cyJ6LI+GuScDLDBOBkjsY2XxVN2uhYZWlT7MPZ2x1OC3y9u/pNxUAGAAB2AAEkIpXFhjjVISc3JmHtPYyc3QY7qOg9ROf1Nap7zuyJwm00wxHYmcXlY4waaWy2KTl0zH1VhPtM21Jo3LKtizibOlAdDtO/THNLlQTllPOtvden39Z1Gzd8arMLqB4LdOMZNR9/NfxHrOSsSVrq/hPtFeRoKgmz1MkMAykMrDIZSCpHcEdZXsWeT7L21qNI2aX+HOWqf4qm/+PkfUYM2tZ+0KwgMlVScNZ41s47OKzPIqQR8IHkefOWasmdrYsAyTjNkftF4m4dVWoXzsoDfBz6lCTkex+6dvRaliLZWyujjKspyrCBpx2ZdldqjAuk0SIC1IOQaM9hBsJcZIJljKQtFTEUMRFDZqGAhAIgJMCDkahAQirGUQqQWYSiEURAQoGOZwAOZJ5ADvBYR0WcRvdvccnTaRsdRbeh5+qVn82+neUd7N7WuLafSsVpGVe1eTX9wD5J+ftOXrTEdKthHRIVBIkxw0ZDJBxHDQBsk6+fOMhWyzV3mnjIEzqxNPT81i5HpjR+nWfs31PBqWrP/ADVMB/Up4vy4p6ZPE9De9Vi2Vkq9bBlI8jPStjb203KBcRTZ0PF/tMe4by+/8Z1+NlilxZzZ4NvkjoooysCAQQQeYI5giPO05hRRQWo1CVjidgo7k9fbvA3WzE7HCgseQUEn2E4nWa4MTkCWtt7fFg4K8hPMnkX+7yE5y66eZ5WZTaUdI68UHFWw9tqea/SVXeuVbLpXa/vON9lkW7OAypqKhwmC8QeRgddfhcSX9JFoGbdpe0z9TTiXbNVjrKd1vF16TpV/SLRjXVgEkfpNzcreVtHcEck6a1gLF/8AaJ5eKvtyz3HsJm6hQeQmdqKCDxDqJdVJUyb60fQ/DyyOeeYI6GBtWUd2mddFpRbkONPWCG6gY5A+uMS1bbORlADrAWSdjwDmMgMGTFGMUaxQ4EIBGEIok7GoQEIqx1WTZ1QAuyqCcAsQoJ645+xmsNElE873z3q8fOm0x/gg4tsX/nP2V/6fn7dY75b2+OW02mOKByssHI3/APUf9Pz9uvK1rKpV2wE61k2aRLYleyyFdhbok9mTJLZK/FO83I3I8cDU6wMKTg1U5KtcPtN5he3mfbrRtJCptnGq8tV2T2b/ANMaAjH7rp/urUH6jnKw3G2dnPgnmc4F12P/ALReaZtHldVk6XdrQtexA6AczPQNHuvoa8cOmq5dC4Np/wDPM1NNs+hPkppTPXgrRM/QQuHJUhHOjzXaWk8I4/GASyenarYGlu/3Ks/0vYv5GY20Nw6mBOnsetvJbP4lf16j8Zl4+SvjD7onO7L25dp2Brb4fOtsmtvu8j6iehbD2zXqk4l+F1xx1k5Knv6j1nmG1tlX6RuG5cA/K6/FW/sf7HnJbH2u+mtFq88BlK5wGBHQ/fg/dHw5pY5U9AnjU1aPQNv7xrQTVXh7f5ifkr9+59Jx+q2g9hLOxZj5k9PQDyEyW1BYlmOWYlmJ6kk5Jm/sPdm7UgWOfBqPMEjLuP8Aqvb1P4xZznmlS/4MoxxoyrL4qNNdb/tV2P6ojMPr0no+ztgaajHDWGYfz2Yd/fnyH3YmpKx8J/0yTz/iPKbd39bjPgWfdgn6AzPfZWqBwdPqO3+zZ/ieymQYwz8OKXTAsz/Dx6jYWsc8tPcP60asfVsCZ28mxtVplW29VRXbgVfERnzjPQH8Z7Y5nA/tN2BdqUrvo+M6dWD1ADjKE54l8yR9n6evN6Iwd3ZVZW1R5Ubf0ERszL+l3Z1ltVt602BKVDHjUo1gPM8Cnm2BzmUnKF0FMOK5XvSWA8HaItjUdbuRvbw8Oj1TcuS0XMfl7Vue3Y/d2nd2LPCrlnb7k73/AC6TVt2Wi5z9K3P5H7oJQ+oFnbOsCwluxZXcSVhAERSREUNmDrCqINYQsFBZiFVQSzMcKoHUkyVj0FyACzEAKCSScAAdSTPLt+t5F1hFVI/hUMXV+Ya5sYJA8lwY++G9Z1RNFBK6dTzPRtQR5nsvYfefTm618zOnHDj/AJPYku+kTqXIBhs4gKzwk1nqjEe48vwknaFq2ZPoVjwBMZ2nSbibufvt/FYD+70ENb2sbyqHv5+nvH6irYu2bX7Ptzhdw6zVL/CBzRUw5XEf8jD7HYeft19TAkEAAAAAAAAA5AAeQkxOZzcnZRKiYk1kBCLHiKwiwywKwimXgyMg6wqmV1aEVp1QkSkharTV2oa7VV0bqrDI/Q+s4DaG414u4aCrUsch3YA1D7LDqfcfhPQg0lmPOEMmwRnKGjkt3dzRUwt1RSxl+StctWD9piRzPpidfI5j5lMcYwVRBKTk7Y8bMbMYmFzFoRMG7RM0GxnPOY8URYwLmTYwTGck5F4oGxnln7RN2PBJ1mnX+E7fx0UcqnJ+cD7JP0Pvy9RaAvqV1ZHAZXUqysMhlIwQZDlTLVZ8+o8ITmX97dhtodQa+Zqsy9DHzTPyn1HT6HzmSrym1aANasp2rLzGV7RGi6A0druRvf8ALpNW3ZaLmPXtW5/I/dO6sE8FsWd7uRvhnh0mrbnyWi5j83atz37Hz6H1TJj/AKiZP4ztiI8IUjTnsahPaqKXchVQFmZjhVA8yZ5pvbvS2rJppymnU+zXkfzN2HYfX0BvVvK+rbw0yunQ/CvQ2kfzt/YeUwkE6MePj29gbvQStYVun/4SKxrDkY9frG2zPXQNySQSc4OPIY7dPSPY8XXI+0OXoRzH9/rK4Ynl59MeeZSrE0XNmaCzU3JRUMvY2B2UebHsAJ7tsPZlekoTT19EHxN52Ofmc+5nO7g7vLpKBc+DfqEVievh1nmEB+hP6Tqw0482Xk6WkWhGkWAZMGAVoRWklIeg4MmpgA0mGlIyJtFgGTDSuGkw0spk3EsBpMNK4aTDSsZk3EsBpINK4aSDyyyCOIfij8UBxxccb2g4huKRLQReMXivIZRJs0GzSJaQZpKWQoojsYJjEzQbNOeUysYjMYNjHZoJmkJSKpGPvXsRdbp2qOBYvx0uf5LAOh9D0P6TxGxGrdkcFXRirKeqsDggz6CLTzz9pu7+R+/VDmMLqAPMdFs/IH7vWUw5O+LFnH6cCGkXgleTzOmhLA2LKzrLjQFix4sVo3NFv1rqq1rDVuKxwhrUL2EeWTnn+kU5wrFD64fgLf6XEEKJERExH2UJ8UgzyDPAu8MYgbCcYzg8XpwEK2ffBk2IA+AfEpJIPDnwyrcS5OcnGMEjl+c9j6D94tVTyUfE5+yo6/f/AJmhqtlMWbw2CVvd4Ae0vZbwtjhwOmMHqD3j2k6Eaez1jdXXeNotNYSDxVAZUcPJSVAI8iABnyznE1RYJxOytWulor09eStS8IJ6sc5LH1JJP3y1/rhnnTxtybWjojNUrOvWwQi2CccNuGEXbkThIPNHYrYIQPOOG3ZNduzcZGtHYB5MPORXbsIu3IbkjdHWiySFk5Vdtwq7Zh9jF4o6cWSQsnOptWHTaGY3tYPWjb8SP4kwztGP/qMPuB6za8SRNkxTtOCba4EHuYfWjdNkgXmE22RBnbS94ryMKijeLwbPMM7aXvIHbK94jbYyo22eDZ5jHbC95E7XXuItMa0a5eQsAZSrAMrAqynmGUjBBmT/AKqvcSQ2ovcTUwWjyjezYh0WoasZNT/HSx80J+UnuOn07zJVp6rvbpk1mnZBjxa8vSfPi819iP7dp5JnBx2noYpc497RCSphyYNouKMxlEgAyI0eKOAscUizSDNBO8VRC2Sd4PMgzTR2PRlvEbop+EHzb9P8StUhLNzZVXg14/nbDOfPPkv3fmTLXidMk/C3EMktz+/pKYti44vAHI0DqMx/EmerGFWyDgay8tsl40pq8kYjiGy6tphEslBHlqnnElEZMuq8PW0pBfeWq2xIyQyZZSXahK2lYGW/D5STHRboYASzRaMzHXJOM4mhRUAM5POKMXiRB2WCCQgnBJkr1GOsxiv4oz2kbVBgCpzyjuxUZmACvTEoWNiHOr4jjEFemYyQCs9kB4phH9eUrviVSQjYmvMGdQYG5sQJeUUEK2Wm1WJH97PeUGaLij+tA5GgutPeczvDpwH8ZflsPxY8n/X/ADNQmAvUOpRujDHt2MaMK7QORzoaOTIXIUYq3VTiRDSlBsnFI8UU1BGZ4JmiijpCsnpqi7qo/mOOflN6vCgKPlUYH+Y0UP0V6CB5INHimFCIZMtFFFCIND12xRQMJYQgiFptGcRRSTQxp1ER1YGKKczKGho0HWaBXljn+cUUkx0F0umBPlL1tJA8vpFFFGFRpG9PORuoPniKKJyG4gGUKJV1NgIMUUcRmO1ihj/iJrcx4pShCraPT6yncuIopSIrM3Utzg+KKKdK0TIhTIPyiihQGB4jEcxopQBQ2nRxLx/zJ19V/SY4aKKZDIlxRoooQn//2Q==\" alt=\"\" width=\"275\" height=\"183\" />','I\'d Love to Really Love You','','publish','open','open','','id-love-to-really-love-you','','','2016-01-04 19:07:58','2016-01-05 01:07:58','',0,'http://www.monicarenata.com/?p=1222',0,'post','',0),(1223,1,'2016-01-04 19:04:00','2016-01-05 01:04:00','I’d love to really love you\r\n\r\nThe way that lovers do\r\n\r\nKiss the pink of your lips\r\n\r\nWhile my hands caress you\r\n\r\n \r\n\r\nI’d really love to kiss you\r\n\r\nThe way Scarlett did when she kissed Rhett\r\n\r\nI want to be gone in the wind with you\r\n\r\nAnd float on love till there’s no more left\r\n\r\n \r\n\r\nI’d love to take your hands\r\n\r\nAnd intertwine them with mine\r\n\r\nHold them together tightly\r\n\r\nFeel the pulse of our veins unit\r\n\r\n \r\n\r\nI’d really love to love you\r\n\r\nI think I’m ready to give this a chance\r\n\r\nSo shower me with your kindness\r\n\r\nAnd let this romance begin\r\n\r\n\r\n\r\n\r\n<img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxAQEBAPDxIPDxANDg0ODw8NDw8NDQ0PFREWFhURFRUYHSggGBolGxUVLTUhJSkrLi4uFx82OTMtNygtLisBCgoKDg0OFxAQFysdHR8tKy0rLS0tLS0rKy0tLS0tLS0rKy0tLS0rLSstLS0rLS0tLS0tKy0rKy0tLS01LSstLf/AABEIALcBEwMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAADAAECBAUGBwj/xAA8EAACAgEBBgQDBQcEAQUAAAABAgADEQQFBhIhMVETQWFxIjKRUoGhseEHFCNCcsHRFTNDYqIWU4Ky8P/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf/EACMRAAICAgIDAQEAAwAAAAAAAAABAhEDMRIhBBNBUUIiYZH/2gAMAwEAAhEDEQA/AIqkIqySrCKs8+zooZVhFWSVYRVgsJFVhAsdVhAsUIkEsqBAhYRRAEJ4QjhMRKTCAwBEFkgkQEmsUJDw4uCFEfEFhAhJIJDBJIJBZgPBH4IcJJBILCVuCLglrw4vDms1FXgkSktlJEpNZioUkCkuFJApNYCmUkCsu+FBvTGsxTKSBWXDVAskNgKrLBsstMsGywgKrLBMstssgUjWApskE6S44gHWFMBTKx4YpFGsFFkJJqsKUiVYLDQwWTCyQWTCwGGCyYWSVZMLAEZVkwscLJhYAjBZMLHAkwsARgIQLHVYQLFbCRCyYWSVYVUi2EGEkwkKqQq1wBACuTFcsLXCrVAYqCuLw5dFMfwZjFA1yJrmgaZBqZjGc1cgUl9qoJq5jFdFisQQrJAvmExXsEqustOIJlhQpVZYMpLZrg2jgKzLiBcSwywbCEBVZYF1ltlgWWEBWKxQpWNGsBZUyarFwSaiAI4WSAiAhFExhASYEcCTAgCMBCKIgJMCAwgsmFjgSaiK2ESrCKsSrDKsVsYZVhkSOiQ9aRQkUrlTam1qNNjxCSx5itAGsI748h7yjvJvCNPmmnDXEfE3VaAe4829Pr2PA6m1nJZmJZjlmY5Zj3Jgb+INfp6xsnXValPEpbiAOGB5MjdmHlNAVzyHYO0rdJaLU5g8rEJwti9j69j5T13Zetr1FK31n4CCTxYBQj5g3YiXhHkSlKiTKACTgADJJ5ADuZz9e9ukNpry6jOBayjwmPvnIHqRMfereI3k0UEigHDN0N3+F9PP8JzPgRZNJ9DK/p66qggEYIIyCOYI7iM1c882Dtu3SkDm9JPxVk8h6r9k/gZ6Po9RXdWtlR4lb6g+YI8jGilLQrbRWeqAeqaTVwLpFlChlKzPZJXdJfsrgHriUMZ71wTLiXbBKzrMAquIFlllhBMIyYpWYQTCWWWCYRjFZhBMJZZYJlhAVsRQhWKEBdeuQCSSvCAxQjKknwR1hBNZiAEkokuGSVZrCICEURASarBYRAQiiJVhVWK2ESiGRYkSC2htCnTJ4l7hB5Dq7nsqjmYNhLigAEnAAGSTyAHczldvb5KM06Ih3PJr+qJ/R9o+vT3nNbx70W6zNaA1afPyZ+OzHQuR+Q5e8oaGkAFjGa4qzRVssMx9SSSWYnJYnqSfOR8MyQaWKViRVIL7I1JNPTau1KrKEYiu8qXUeeP8+ffAgaqgZcqoM3KtAaALTJjTzSr03pDNpuXSLZjEeqXNjbUt0r8VZyrY462+Rx/Y+ssPp5XfSwptPoDVnf7J2rVqlyhw4Hx1t86+vqPWWnSecUVtWQ6sUZeYZTgidHs7e9OSankeniqPhP8AUB09x+E6Y5FLqXTJODWjedZUtWXFsV1DIyurcwykMp9iIG1Yk0PFmdYsrusvWLK1iyQ5SdYFhLbrAOIUwFdhAsJYYQbCNYCuwgmEsMINhDYCuRFCERQgJAQiiMFk1E1mCIkMlcEkOjxWwkvDklqjh5NWi2MN4UkqyYMkFgswyrFqdTXShstda0XqznA9h3PoJi7e3qo0mUH8a8f8aHkh/wC7eXt1nne09pXap/EvbiPPhUcq6x2VfL84yjezHYbU3/HNdJXny8W/kPdUHP6ke05HV6q29zZc7WOfNvIdgOgHoIBEhVEdf6DRJBiaSjCgTPWaJ6CLNaGWmWdmaFr7EqrGWsYKO3qT6AZ+k9W2Juxp9MgBVbXPzWWKDk9lB6Cct+zOhWutsI511qF9OI8z/wCP4z0WdvjY01yZy55NOkYO8G76XJxVKqXIPh4QFFgH8h/sZzGztOSWUggp8wI5rzxz7cyJ6LI+GuScDLDBOBkjsY2XxVN2uhYZWlT7MPZ2x1OC3y9u/pNxUAGAAB2AAEkIpXFhjjVISc3JmHtPYyc3QY7qOg9ROf1Nap7zuyJwm00wxHYmcXlY4waaWy2KTl0zH1VhPtM21Jo3LKtizibOlAdDtO/THNLlQTllPOtvden39Z1Gzd8arMLqB4LdOMZNR9/NfxHrOSsSVrq/hPtFeRoKgmz1MkMAykMrDIZSCpHcEdZXsWeT7L21qNI2aX+HOWqf4qm/+PkfUYM2tZ+0KwgMlVScNZ41s47OKzPIqQR8IHkefOWasmdrYsAyTjNkftF4m4dVWoXzsoDfBz6lCTkex+6dvRaliLZWyujjKspyrCBpx2ZdldqjAuk0SIC1IOQaM9hBsJcZIJljKQtFTEUMRFDZqGAhAIgJMCDkahAQirGUQqQWYSiEURAQoGOZwAOZJ5ADvBYR0WcRvdvccnTaRsdRbeh5+qVn82+neUd7N7WuLafSsVpGVe1eTX9wD5J+ftOXrTEdKthHRIVBIkxw0ZDJBxHDQBsk6+fOMhWyzV3mnjIEzqxNPT81i5HpjR+nWfs31PBqWrP/ADVMB/Up4vy4p6ZPE9De9Vi2Vkq9bBlI8jPStjb203KBcRTZ0PF/tMe4by+/8Z1+NlilxZzZ4NvkjoooysCAQQQeYI5giPO05hRRQWo1CVjidgo7k9fbvA3WzE7HCgseQUEn2E4nWa4MTkCWtt7fFg4K8hPMnkX+7yE5y66eZ5WZTaUdI68UHFWw9tqea/SVXeuVbLpXa/vON9lkW7OAypqKhwmC8QeRgddfhcSX9JFoGbdpe0z9TTiXbNVjrKd1vF16TpV/SLRjXVgEkfpNzcreVtHcEck6a1gLF/8AaJ5eKvtyz3HsJm6hQeQmdqKCDxDqJdVJUyb60fQ/DyyOeeYI6GBtWUd2mddFpRbkONPWCG6gY5A+uMS1bbORlADrAWSdjwDmMgMGTFGMUaxQ4EIBGEIok7GoQEIqx1WTZ1QAuyqCcAsQoJ645+xmsNElE873z3q8fOm0x/gg4tsX/nP2V/6fn7dY75b2+OW02mOKByssHI3/APUf9Pz9uvK1rKpV2wE61k2aRLYleyyFdhbok9mTJLZK/FO83I3I8cDU6wMKTg1U5KtcPtN5he3mfbrRtJCptnGq8tV2T2b/ANMaAjH7rp/urUH6jnKw3G2dnPgnmc4F12P/ALReaZtHldVk6XdrQtexA6AczPQNHuvoa8cOmq5dC4Np/wDPM1NNs+hPkppTPXgrRM/QQuHJUhHOjzXaWk8I4/GASyenarYGlu/3Ks/0vYv5GY20Nw6mBOnsetvJbP4lf16j8Zl4+SvjD7onO7L25dp2Brb4fOtsmtvu8j6iehbD2zXqk4l+F1xx1k5Knv6j1nmG1tlX6RuG5cA/K6/FW/sf7HnJbH2u+mtFq88BlK5wGBHQ/fg/dHw5pY5U9AnjU1aPQNv7xrQTVXh7f5ifkr9+59Jx+q2g9hLOxZj5k9PQDyEyW1BYlmOWYlmJ6kk5Jm/sPdm7UgWOfBqPMEjLuP8Aqvb1P4xZznmlS/4MoxxoyrL4qNNdb/tV2P6ojMPr0no+ztgaajHDWGYfz2Yd/fnyH3YmpKx8J/0yTz/iPKbd39bjPgWfdgn6AzPfZWqBwdPqO3+zZ/ieymQYwz8OKXTAsz/Dx6jYWsc8tPcP60asfVsCZ28mxtVplW29VRXbgVfERnzjPQH8Z7Y5nA/tN2BdqUrvo+M6dWD1ADjKE54l8yR9n6evN6Iwd3ZVZW1R5Ubf0ERszL+l3Z1ltVt602BKVDHjUo1gPM8Cnm2BzmUnKF0FMOK5XvSWA8HaItjUdbuRvbw8Oj1TcuS0XMfl7Vue3Y/d2nd2LPCrlnb7k73/AC6TVt2Wi5z9K3P5H7oJQ+oFnbOsCwluxZXcSVhAERSREUNmDrCqINYQsFBZiFVQSzMcKoHUkyVj0FyACzEAKCSScAAdSTPLt+t5F1hFVI/hUMXV+Ya5sYJA8lwY++G9Z1RNFBK6dTzPRtQR5nsvYfefTm618zOnHDj/AJPYku+kTqXIBhs4gKzwk1nqjEe48vwknaFq2ZPoVjwBMZ2nSbibufvt/FYD+70ENb2sbyqHv5+nvH6irYu2bX7Ptzhdw6zVL/CBzRUw5XEf8jD7HYeft19TAkEAAAAAAAAA5AAeQkxOZzcnZRKiYk1kBCLHiKwiwywKwimXgyMg6wqmV1aEVp1QkSkharTV2oa7VV0bqrDI/Q+s4DaG414u4aCrUsch3YA1D7LDqfcfhPQg0lmPOEMmwRnKGjkt3dzRUwt1RSxl+StctWD9piRzPpidfI5j5lMcYwVRBKTk7Y8bMbMYmFzFoRMG7RM0GxnPOY8URYwLmTYwTGck5F4oGxnln7RN2PBJ1mnX+E7fx0UcqnJ+cD7JP0Pvy9RaAvqV1ZHAZXUqysMhlIwQZDlTLVZ8+o8ITmX97dhtodQa+Zqsy9DHzTPyn1HT6HzmSrym1aANasp2rLzGV7RGi6A0druRvf8ALpNW3ZaLmPXtW5/I/dO6sE8FsWd7uRvhnh0mrbnyWi5j83atz37Hz6H1TJj/AKiZP4ztiI8IUjTnsahPaqKXchVQFmZjhVA8yZ5pvbvS2rJppymnU+zXkfzN2HYfX0BvVvK+rbw0yunQ/CvQ2kfzt/YeUwkE6MePj29gbvQStYVun/4SKxrDkY9frG2zPXQNySQSc4OPIY7dPSPY8XXI+0OXoRzH9/rK4Ynl59MeeZSrE0XNmaCzU3JRUMvY2B2UebHsAJ7tsPZlekoTT19EHxN52Ofmc+5nO7g7vLpKBc+DfqEVievh1nmEB+hP6Tqw0482Xk6WkWhGkWAZMGAVoRWklIeg4MmpgA0mGlIyJtFgGTDSuGkw0spk3EsBpMNK4aTDSsZk3EsBpINK4aSDyyyCOIfij8UBxxccb2g4huKRLQReMXivIZRJs0GzSJaQZpKWQoojsYJjEzQbNOeUysYjMYNjHZoJmkJSKpGPvXsRdbp2qOBYvx0uf5LAOh9D0P6TxGxGrdkcFXRirKeqsDggz6CLTzz9pu7+R+/VDmMLqAPMdFs/IH7vWUw5O+LFnH6cCGkXgleTzOmhLA2LKzrLjQFix4sVo3NFv1rqq1rDVuKxwhrUL2EeWTnn+kU5wrFD64fgLf6XEEKJERExH2UJ8UgzyDPAu8MYgbCcYzg8XpwEK2ffBk2IA+AfEpJIPDnwyrcS5OcnGMEjl+c9j6D94tVTyUfE5+yo6/f/AJmhqtlMWbw2CVvd4Ae0vZbwtjhwOmMHqD3j2k6Eaez1jdXXeNotNYSDxVAZUcPJSVAI8iABnyznE1RYJxOytWulor09eStS8IJ6sc5LH1JJP3y1/rhnnTxtybWjojNUrOvWwQi2CccNuGEXbkThIPNHYrYIQPOOG3ZNduzcZGtHYB5MPORXbsIu3IbkjdHWiySFk5Vdtwq7Zh9jF4o6cWSQsnOptWHTaGY3tYPWjb8SP4kwztGP/qMPuB6za8SRNkxTtOCba4EHuYfWjdNkgXmE22RBnbS94ryMKijeLwbPMM7aXvIHbK94jbYyo22eDZ5jHbC95E7XXuItMa0a5eQsAZSrAMrAqynmGUjBBmT/AKqvcSQ2ovcTUwWjyjezYh0WoasZNT/HSx80J+UnuOn07zJVp6rvbpk1mnZBjxa8vSfPi819iP7dp5JnBx2noYpc497RCSphyYNouKMxlEgAyI0eKOAscUizSDNBO8VRC2Sd4PMgzTR2PRlvEbop+EHzb9P8StUhLNzZVXg14/nbDOfPPkv3fmTLXidMk/C3EMktz+/pKYti44vAHI0DqMx/EmerGFWyDgay8tsl40pq8kYjiGy6tphEslBHlqnnElEZMuq8PW0pBfeWq2xIyQyZZSXahK2lYGW/D5STHRboYASzRaMzHXJOM4mhRUAM5POKMXiRB2WCCQgnBJkr1GOsxiv4oz2kbVBgCpzyjuxUZmACvTEoWNiHOr4jjEFemYyQCs9kB4phH9eUrviVSQjYmvMGdQYG5sQJeUUEK2Wm1WJH97PeUGaLij+tA5GgutPeczvDpwH8ZflsPxY8n/X/ADNQmAvUOpRujDHt2MaMK7QORzoaOTIXIUYq3VTiRDSlBsnFI8UU1BGZ4JmiijpCsnpqi7qo/mOOflN6vCgKPlUYH+Y0UP0V6CB5INHimFCIZMtFFFCIND12xRQMJYQgiFptGcRRSTQxp1ER1YGKKczKGho0HWaBXljn+cUUkx0F0umBPlL1tJA8vpFFFGFRpG9PORuoPniKKJyG4gGUKJV1NgIMUUcRmO1ihj/iJrcx4pShCraPT6yncuIopSIrM3Utzg+KKKdK0TIhTIPyiihQGB4jEcxopQBQ2nRxLx/zJ19V/SY4aKKZDIlxRoooQn//2Q==\" width=\"275\" height=\"183\" class=\"aligncenter\" />\r\n','I\'d Love to Really Love You','','inherit','closed','closed','','1222-revision-v1','','','2016-01-04 19:04:00','2016-01-05 01:04:00','',1222,'http://www.monicarenata.com/1222-revision-v1/',0,'revision','',0),(1224,1,'2016-01-04 19:05:10','2016-01-05 01:05:10','I’d love to really love you\r\n\r\nThe way that lovers do\r\n\r\nKiss the pink of your lips\r\n\r\nWhile my hands caress you\r\n\r\n\r\nI’d really love to kiss you\r\n\r\nThe way Scarlett did when she kissed Rhett\r\n\r\nI want to be gone in the wind with you\r\n\r\nAnd float on love till there’s no more left\r\n\r\n\r\nI’d love to take your hands\r\n\r\nAnd intertwine them with mine\r\n\r\nHold them together tightly\r\n\r\nFeel the pulse of our veins unit\r\n\r\n\r\nI’d really love to love you\r\n\r\nI think I’m ready to give this a chance\r\n\r\nSo shower me with your kindness\r\n\r\nAnd let this romance begin\r\n\r\n\r\n\r\n\r\n<img class=\"aligncenter\" src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxAQEBAPDxIPDxANDg0ODw8NDw8NDQ0PFREWFhURFRUYHSggGBolGxUVLTUhJSkrLi4uFx82OTMtNygtLisBCgoKDg0OFxAQFysdHR8tKy0rLS0tLS0rKy0tLS0tLS0rKy0tLS0rLSstLS0rLS0tLS0tKy0rKy0tLS01LSstLf/AABEIALcBEwMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAADAAECBAUGBwj/xAA8EAACAgEBBgQDBQcEAQUAAAABAgADEQQFBhIhMVETQWFxIjKRUoGhseEHFCNCcsHRFTNDYqIWU4Ky8P/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf/EACMRAAICAgIDAQEAAwAAAAAAAAABAhEDMRIhBBNBUUIiYZH/2gAMAwEAAhEDEQA/AIqkIqySrCKs8+zooZVhFWSVYRVgsJFVhAsdVhAsUIkEsqBAhYRRAEJ4QjhMRKTCAwBEFkgkQEmsUJDw4uCFEfEFhAhJIJDBJIJBZgPBH4IcJJBILCVuCLglrw4vDms1FXgkSktlJEpNZioUkCkuFJApNYCmUkCsu+FBvTGsxTKSBWXDVAskNgKrLBsstMsGywgKrLBMstssgUjWApskE6S44gHWFMBTKx4YpFGsFFkJJqsKUiVYLDQwWTCyQWTCwGGCyYWSVZMLAEZVkwscLJhYAjBZMLHAkwsARgIQLHVYQLFbCRCyYWSVYVUi2EGEkwkKqQq1wBACuTFcsLXCrVAYqCuLw5dFMfwZjFA1yJrmgaZBqZjGc1cgUl9qoJq5jFdFisQQrJAvmExXsEqustOIJlhQpVZYMpLZrg2jgKzLiBcSwywbCEBVZYF1ltlgWWEBWKxQpWNGsBZUyarFwSaiAI4WSAiAhFExhASYEcCTAgCMBCKIgJMCAwgsmFjgSaiK2ESrCKsSrDKsVsYZVhkSOiQ9aRQkUrlTam1qNNjxCSx5itAGsI748h7yjvJvCNPmmnDXEfE3VaAe4829Pr2PA6m1nJZmJZjlmY5Zj3Jgb+INfp6xsnXValPEpbiAOGB5MjdmHlNAVzyHYO0rdJaLU5g8rEJwti9j69j5T13Zetr1FK31n4CCTxYBQj5g3YiXhHkSlKiTKACTgADJJ5ADuZz9e9ukNpry6jOBayjwmPvnIHqRMfereI3k0UEigHDN0N3+F9PP8JzPgRZNJ9DK/p66qggEYIIyCOYI7iM1c882Dtu3SkDm9JPxVk8h6r9k/gZ6Po9RXdWtlR4lb6g+YI8jGilLQrbRWeqAeqaTVwLpFlChlKzPZJXdJfsrgHriUMZ71wTLiXbBKzrMAquIFlllhBMIyYpWYQTCWWWCYRjFZhBMJZZYJlhAVsRQhWKEBdeuQCSSvCAxQjKknwR1hBNZiAEkokuGSVZrCICEURASarBYRAQiiJVhVWK2ESiGRYkSC2htCnTJ4l7hB5Dq7nsqjmYNhLigAEnAAGSTyAHczldvb5KM06Ih3PJr+qJ/R9o+vT3nNbx70W6zNaA1afPyZ+OzHQuR+Q5e8oaGkAFjGa4qzRVssMx9SSSWYnJYnqSfOR8MyQaWKViRVIL7I1JNPTau1KrKEYiu8qXUeeP8+ffAgaqgZcqoM3KtAaALTJjTzSr03pDNpuXSLZjEeqXNjbUt0r8VZyrY462+Rx/Y+ssPp5XfSwptPoDVnf7J2rVqlyhw4Hx1t86+vqPWWnSecUVtWQ6sUZeYZTgidHs7e9OSankeniqPhP8AUB09x+E6Y5FLqXTJODWjedZUtWXFsV1DIyurcwykMp9iIG1Yk0PFmdYsrusvWLK1iyQ5SdYFhLbrAOIUwFdhAsJYYQbCNYCuwgmEsMINhDYCuRFCERQgJAQiiMFk1E1mCIkMlcEkOjxWwkvDklqjh5NWi2MN4UkqyYMkFgswyrFqdTXShstda0XqznA9h3PoJi7e3qo0mUH8a8f8aHkh/wC7eXt1nne09pXap/EvbiPPhUcq6x2VfL84yjezHYbU3/HNdJXny8W/kPdUHP6ke05HV6q29zZc7WOfNvIdgOgHoIBEhVEdf6DRJBiaSjCgTPWaJ6CLNaGWmWdmaFr7EqrGWsYKO3qT6AZ+k9W2Juxp9MgBVbXPzWWKDk9lB6Cct+zOhWutsI511qF9OI8z/wCP4z0WdvjY01yZy55NOkYO8G76XJxVKqXIPh4QFFgH8h/sZzGztOSWUggp8wI5rzxz7cyJ6LI+GuScDLDBOBkjsY2XxVN2uhYZWlT7MPZ2x1OC3y9u/pNxUAGAAB2AAEkIpXFhjjVISc3JmHtPYyc3QY7qOg9ROf1Nap7zuyJwm00wxHYmcXlY4waaWy2KTl0zH1VhPtM21Jo3LKtizibOlAdDtO/THNLlQTllPOtvden39Z1Gzd8arMLqB4LdOMZNR9/NfxHrOSsSVrq/hPtFeRoKgmz1MkMAykMrDIZSCpHcEdZXsWeT7L21qNI2aX+HOWqf4qm/+PkfUYM2tZ+0KwgMlVScNZ41s47OKzPIqQR8IHkefOWasmdrYsAyTjNkftF4m4dVWoXzsoDfBz6lCTkex+6dvRaliLZWyujjKspyrCBpx2ZdldqjAuk0SIC1IOQaM9hBsJcZIJljKQtFTEUMRFDZqGAhAIgJMCDkahAQirGUQqQWYSiEURAQoGOZwAOZJ5ADvBYR0WcRvdvccnTaRsdRbeh5+qVn82+neUd7N7WuLafSsVpGVe1eTX9wD5J+ftOXrTEdKthHRIVBIkxw0ZDJBxHDQBsk6+fOMhWyzV3mnjIEzqxNPT81i5HpjR+nWfs31PBqWrP/ADVMB/Up4vy4p6ZPE9De9Vi2Vkq9bBlI8jPStjb203KBcRTZ0PF/tMe4by+/8Z1+NlilxZzZ4NvkjoooysCAQQQeYI5giPO05hRRQWo1CVjidgo7k9fbvA3WzE7HCgseQUEn2E4nWa4MTkCWtt7fFg4K8hPMnkX+7yE5y66eZ5WZTaUdI68UHFWw9tqea/SVXeuVbLpXa/vON9lkW7OAypqKhwmC8QeRgddfhcSX9JFoGbdpe0z9TTiXbNVjrKd1vF16TpV/SLRjXVgEkfpNzcreVtHcEck6a1gLF/8AaJ5eKvtyz3HsJm6hQeQmdqKCDxDqJdVJUyb60fQ/DyyOeeYI6GBtWUd2mddFpRbkONPWCG6gY5A+uMS1bbORlADrAWSdjwDmMgMGTFGMUaxQ4EIBGEIok7GoQEIqx1WTZ1QAuyqCcAsQoJ645+xmsNElE873z3q8fOm0x/gg4tsX/nP2V/6fn7dY75b2+OW02mOKByssHI3/APUf9Pz9uvK1rKpV2wE61k2aRLYleyyFdhbok9mTJLZK/FO83I3I8cDU6wMKTg1U5KtcPtN5he3mfbrRtJCptnGq8tV2T2b/ANMaAjH7rp/urUH6jnKw3G2dnPgnmc4F12P/ALReaZtHldVk6XdrQtexA6AczPQNHuvoa8cOmq5dC4Np/wDPM1NNs+hPkppTPXgrRM/QQuHJUhHOjzXaWk8I4/GASyenarYGlu/3Ks/0vYv5GY20Nw6mBOnsetvJbP4lf16j8Zl4+SvjD7onO7L25dp2Brb4fOtsmtvu8j6iehbD2zXqk4l+F1xx1k5Knv6j1nmG1tlX6RuG5cA/K6/FW/sf7HnJbH2u+mtFq88BlK5wGBHQ/fg/dHw5pY5U9AnjU1aPQNv7xrQTVXh7f5ifkr9+59Jx+q2g9hLOxZj5k9PQDyEyW1BYlmOWYlmJ6kk5Jm/sPdm7UgWOfBqPMEjLuP8Aqvb1P4xZznmlS/4MoxxoyrL4qNNdb/tV2P6ojMPr0no+ztgaajHDWGYfz2Yd/fnyH3YmpKx8J/0yTz/iPKbd39bjPgWfdgn6AzPfZWqBwdPqO3+zZ/ieymQYwz8OKXTAsz/Dx6jYWsc8tPcP60asfVsCZ28mxtVplW29VRXbgVfERnzjPQH8Z7Y5nA/tN2BdqUrvo+M6dWD1ADjKE54l8yR9n6evN6Iwd3ZVZW1R5Ubf0ERszL+l3Z1ltVt602BKVDHjUo1gPM8Cnm2BzmUnKF0FMOK5XvSWA8HaItjUdbuRvbw8Oj1TcuS0XMfl7Vue3Y/d2nd2LPCrlnb7k73/AC6TVt2Wi5z9K3P5H7oJQ+oFnbOsCwluxZXcSVhAERSREUNmDrCqINYQsFBZiFVQSzMcKoHUkyVj0FyACzEAKCSScAAdSTPLt+t5F1hFVI/hUMXV+Ya5sYJA8lwY++G9Z1RNFBK6dTzPRtQR5nsvYfefTm618zOnHDj/AJPYku+kTqXIBhs4gKzwk1nqjEe48vwknaFq2ZPoVjwBMZ2nSbibufvt/FYD+70ENb2sbyqHv5+nvH6irYu2bX7Ptzhdw6zVL/CBzRUw5XEf8jD7HYeft19TAkEAAAAAAAAA5AAeQkxOZzcnZRKiYk1kBCLHiKwiwywKwimXgyMg6wqmV1aEVp1QkSkharTV2oa7VV0bqrDI/Q+s4DaG414u4aCrUsch3YA1D7LDqfcfhPQg0lmPOEMmwRnKGjkt3dzRUwt1RSxl+StctWD9piRzPpidfI5j5lMcYwVRBKTk7Y8bMbMYmFzFoRMG7RM0GxnPOY8URYwLmTYwTGck5F4oGxnln7RN2PBJ1mnX+E7fx0UcqnJ+cD7JP0Pvy9RaAvqV1ZHAZXUqysMhlIwQZDlTLVZ8+o8ITmX97dhtodQa+Zqsy9DHzTPyn1HT6HzmSrym1aANasp2rLzGV7RGi6A0druRvf8ALpNW3ZaLmPXtW5/I/dO6sE8FsWd7uRvhnh0mrbnyWi5j83atz37Hz6H1TJj/AKiZP4ztiI8IUjTnsahPaqKXchVQFmZjhVA8yZ5pvbvS2rJppymnU+zXkfzN2HYfX0BvVvK+rbw0yunQ/CvQ2kfzt/YeUwkE6MePj29gbvQStYVun/4SKxrDkY9frG2zPXQNySQSc4OPIY7dPSPY8XXI+0OXoRzH9/rK4Ynl59MeeZSrE0XNmaCzU3JRUMvY2B2UebHsAJ7tsPZlekoTT19EHxN52Ofmc+5nO7g7vLpKBc+DfqEVievh1nmEB+hP6Tqw0482Xk6WkWhGkWAZMGAVoRWklIeg4MmpgA0mGlIyJtFgGTDSuGkw0spk3EsBpMNK4aTDSsZk3EsBpINK4aSDyyyCOIfij8UBxxccb2g4huKRLQReMXivIZRJs0GzSJaQZpKWQoojsYJjEzQbNOeUysYjMYNjHZoJmkJSKpGPvXsRdbp2qOBYvx0uf5LAOh9D0P6TxGxGrdkcFXRirKeqsDggz6CLTzz9pu7+R+/VDmMLqAPMdFs/IH7vWUw5O+LFnH6cCGkXgleTzOmhLA2LKzrLjQFix4sVo3NFv1rqq1rDVuKxwhrUL2EeWTnn+kU5wrFD64fgLf6XEEKJERExH2UJ8UgzyDPAu8MYgbCcYzg8XpwEK2ffBk2IA+AfEpJIPDnwyrcS5OcnGMEjl+c9j6D94tVTyUfE5+yo6/f/AJmhqtlMWbw2CVvd4Ae0vZbwtjhwOmMHqD3j2k6Eaez1jdXXeNotNYSDxVAZUcPJSVAI8iABnyznE1RYJxOytWulor09eStS8IJ6sc5LH1JJP3y1/rhnnTxtybWjojNUrOvWwQi2CccNuGEXbkThIPNHYrYIQPOOG3ZNduzcZGtHYB5MPORXbsIu3IbkjdHWiySFk5Vdtwq7Zh9jF4o6cWSQsnOptWHTaGY3tYPWjb8SP4kwztGP/qMPuB6za8SRNkxTtOCba4EHuYfWjdNkgXmE22RBnbS94ryMKijeLwbPMM7aXvIHbK94jbYyo22eDZ5jHbC95E7XXuItMa0a5eQsAZSrAMrAqynmGUjBBmT/AKqvcSQ2ovcTUwWjyjezYh0WoasZNT/HSx80J+UnuOn07zJVp6rvbpk1mnZBjxa8vSfPi819iP7dp5JnBx2noYpc497RCSphyYNouKMxlEgAyI0eKOAscUizSDNBO8VRC2Sd4PMgzTR2PRlvEbop+EHzb9P8StUhLNzZVXg14/nbDOfPPkv3fmTLXidMk/C3EMktz+/pKYti44vAHI0DqMx/EmerGFWyDgay8tsl40pq8kYjiGy6tphEslBHlqnnElEZMuq8PW0pBfeWq2xIyQyZZSXahK2lYGW/D5STHRboYASzRaMzHXJOM4mhRUAM5POKMXiRB2WCCQgnBJkr1GOsxiv4oz2kbVBgCpzyjuxUZmACvTEoWNiHOr4jjEFemYyQCs9kB4phH9eUrviVSQjYmvMGdQYG5sQJeUUEK2Wm1WJH97PeUGaLij+tA5GgutPeczvDpwH8ZflsPxY8n/X/ADNQmAvUOpRujDHt2MaMK7QORzoaOTIXIUYq3VTiRDSlBsnFI8UU1BGZ4JmiijpCsnpqi7qo/mOOflN6vCgKPlUYH+Y0UP0V6CB5INHimFCIZMtFFFCIND12xRQMJYQgiFptGcRRSTQxp1ER1YGKKczKGho0HWaBXljn+cUUkx0F0umBPlL1tJA8vpFFFGFRpG9PORuoPniKKJyG4gGUKJV1NgIMUUcRmO1ihj/iJrcx4pShCraPT6yncuIopSIrM3Utzg+KKKdK0TIhTIPyiihQGB4jEcxopQBQ2nRxLx/zJ19V/SY4aKKZDIlxRoooQn//2Q==\" alt=\"\" width=\"275\" height=\"183\" />','I\'d Love to Really Love You','','inherit','closed','closed','','1222-revision-v1','','','2016-01-04 19:05:10','2016-01-05 01:05:10','',1222,'http://www.monicarenata.com/1222-revision-v1/',0,'revision','',0),(1225,1,'2016-01-04 19:07:42','2016-01-05 01:07:42','I\'d love to really love you\r\n\r\nThe way that lovers do\r\n\r\nKiss the pink of your lips\r\n\r\nWhile my hands caress you\r\n\r\n \r\n\r\nI\'d really love to kiss you\r\n\r\nThe way Scarlett did when she kissed Rhett\r\n\r\nI want to be gone in the wind with you\r\n\r\nAnd float on love till there is no more left\r\n\r\n \r\n\r\nI\'d love to take your hands\r\n\r\nAnd intertwine them with mine\r\n\r\nHold them together tightly\r\n\r\nFeel the pulse of our veins unit\r\n\r\n \r\n\r\nI\'d really love to love you\r\n\r\nI think I\'m ready to give this a chance\r\n\r\nSo shower me with your kindness\r\n\r\nAnd let this romance begin\r\n\r\n<img class=\"aligncenter\" src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxAQEBAPDxIPDxANDg0ODw8NDw8NDQ0PFREWFhURFRUYHSggGBolGxUVLTUhJSkrLi4uFx82OTMtNygtLisBCgoKDg0OFxAQFysdHR8tKy0rLS0tLS0rKy0tLS0tLS0rKy0tLS0rLSstLS0rLS0tLS0tKy0rKy0tLS01LSstLf/AABEIALcBEwMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAADAAECBAUGBwj/xAA8EAACAgEBBgQDBQcEAQUAAAABAgADEQQFBhIhMVETQWFxIjKRUoGhseEHFCNCcsHRFTNDYqIWU4Ky8P/EABkBAAMBAQEAAAAAAAAAAAAAAAECAwAEBf/EACMRAAICAgIDAQEAAwAAAAAAAAABAhEDMRIhBBNBUUIiYZH/2gAMAwEAAhEDEQA/AIqkIqySrCKs8+zooZVhFWSVYRVgsJFVhAsdVhAsUIkEsqBAhYRRAEJ4QjhMRKTCAwBEFkgkQEmsUJDw4uCFEfEFhAhJIJDBJIJBZgPBH4IcJJBILCVuCLglrw4vDms1FXgkSktlJEpNZioUkCkuFJApNYCmUkCsu+FBvTGsxTKSBWXDVAskNgKrLBsstMsGywgKrLBMstssgUjWApskE6S44gHWFMBTKx4YpFGsFFkJJqsKUiVYLDQwWTCyQWTCwGGCyYWSVZMLAEZVkwscLJhYAjBZMLHAkwsARgIQLHVYQLFbCRCyYWSVYVUi2EGEkwkKqQq1wBACuTFcsLXCrVAYqCuLw5dFMfwZjFA1yJrmgaZBqZjGc1cgUl9qoJq5jFdFisQQrJAvmExXsEqustOIJlhQpVZYMpLZrg2jgKzLiBcSwywbCEBVZYF1ltlgWWEBWKxQpWNGsBZUyarFwSaiAI4WSAiAhFExhASYEcCTAgCMBCKIgJMCAwgsmFjgSaiK2ESrCKsSrDKsVsYZVhkSOiQ9aRQkUrlTam1qNNjxCSx5itAGsI748h7yjvJvCNPmmnDXEfE3VaAe4829Pr2PA6m1nJZmJZjlmY5Zj3Jgb+INfp6xsnXValPEpbiAOGB5MjdmHlNAVzyHYO0rdJaLU5g8rEJwti9j69j5T13Zetr1FK31n4CCTxYBQj5g3YiXhHkSlKiTKACTgADJJ5ADuZz9e9ukNpry6jOBayjwmPvnIHqRMfereI3k0UEigHDN0N3+F9PP8JzPgRZNJ9DK/p66qggEYIIyCOYI7iM1c882Dtu3SkDm9JPxVk8h6r9k/gZ6Po9RXdWtlR4lb6g+YI8jGilLQrbRWeqAeqaTVwLpFlChlKzPZJXdJfsrgHriUMZ71wTLiXbBKzrMAquIFlllhBMIyYpWYQTCWWWCYRjFZhBMJZZYJlhAVsRQhWKEBdeuQCSSvCAxQjKknwR1hBNZiAEkokuGSVZrCICEURASarBYRAQiiJVhVWK2ESiGRYkSC2htCnTJ4l7hB5Dq7nsqjmYNhLigAEnAAGSTyAHczldvb5KM06Ih3PJr+qJ/R9o+vT3nNbx70W6zNaA1afPyZ+OzHQuR+Q5e8oaGkAFjGa4qzRVssMx9SSSWYnJYnqSfOR8MyQaWKViRVIL7I1JNPTau1KrKEYiu8qXUeeP8+ffAgaqgZcqoM3KtAaALTJjTzSr03pDNpuXSLZjEeqXNjbUt0r8VZyrY462+Rx/Y+ssPp5XfSwptPoDVnf7J2rVqlyhw4Hx1t86+vqPWWnSecUVtWQ6sUZeYZTgidHs7e9OSankeniqPhP8AUB09x+E6Y5FLqXTJODWjedZUtWXFsV1DIyurcwykMp9iIG1Yk0PFmdYsrusvWLK1iyQ5SdYFhLbrAOIUwFdhAsJYYQbCNYCuwgmEsMINhDYCuRFCERQgJAQiiMFk1E1mCIkMlcEkOjxWwkvDklqjh5NWi2MN4UkqyYMkFgswyrFqdTXShstda0XqznA9h3PoJi7e3qo0mUH8a8f8aHkh/wC7eXt1nne09pXap/EvbiPPhUcq6x2VfL84yjezHYbU3/HNdJXny8W/kPdUHP6ke05HV6q29zZc7WOfNvIdgOgHoIBEhVEdf6DRJBiaSjCgTPWaJ6CLNaGWmWdmaFr7EqrGWsYKO3qT6AZ+k9W2Juxp9MgBVbXPzWWKDk9lB6Cct+zOhWutsI511qF9OI8z/wCP4z0WdvjY01yZy55NOkYO8G76XJxVKqXIPh4QFFgH8h/sZzGztOSWUggp8wI5rzxz7cyJ6LI+GuScDLDBOBkjsY2XxVN2uhYZWlT7MPZ2x1OC3y9u/pNxUAGAAB2AAEkIpXFhjjVISc3JmHtPYyc3QY7qOg9ROf1Nap7zuyJwm00wxHYmcXlY4waaWy2KTl0zH1VhPtM21Jo3LKtizibOlAdDtO/THNLlQTllPOtvden39Z1Gzd8arMLqB4LdOMZNR9/NfxHrOSsSVrq/hPtFeRoKgmz1MkMAykMrDIZSCpHcEdZXsWeT7L21qNI2aX+HOWqf4qm/+PkfUYM2tZ+0KwgMlVScNZ41s47OKzPIqQR8IHkefOWasmdrYsAyTjNkftF4m4dVWoXzsoDfBz6lCTkex+6dvRaliLZWyujjKspyrCBpx2ZdldqjAuk0SIC1IOQaM9hBsJcZIJljKQtFTEUMRFDZqGAhAIgJMCDkahAQirGUQqQWYSiEURAQoGOZwAOZJ5ADvBYR0WcRvdvccnTaRsdRbeh5+qVn82+neUd7N7WuLafSsVpGVe1eTX9wD5J+ftOXrTEdKthHRIVBIkxw0ZDJBxHDQBsk6+fOMhWyzV3mnjIEzqxNPT81i5HpjR+nWfs31PBqWrP/ADVMB/Up4vy4p6ZPE9De9Vi2Vkq9bBlI8jPStjb203KBcRTZ0PF/tMe4by+/8Z1+NlilxZzZ4NvkjoooysCAQQQeYI5giPO05hRRQWo1CVjidgo7k9fbvA3WzE7HCgseQUEn2E4nWa4MTkCWtt7fFg4K8hPMnkX+7yE5y66eZ5WZTaUdI68UHFWw9tqea/SVXeuVbLpXa/vON9lkW7OAypqKhwmC8QeRgddfhcSX9JFoGbdpe0z9TTiXbNVjrKd1vF16TpV/SLRjXVgEkfpNzcreVtHcEck6a1gLF/8AaJ5eKvtyz3HsJm6hQeQmdqKCDxDqJdVJUyb60fQ/DyyOeeYI6GBtWUd2mddFpRbkONPWCG6gY5A+uMS1bbORlADrAWSdjwDmMgMGTFGMUaxQ4EIBGEIok7GoQEIqx1WTZ1QAuyqCcAsQoJ645+xmsNElE873z3q8fOm0x/gg4tsX/nP2V/6fn7dY75b2+OW02mOKByssHI3/APUf9Pz9uvK1rKpV2wE61k2aRLYleyyFdhbok9mTJLZK/FO83I3I8cDU6wMKTg1U5KtcPtN5he3mfbrRtJCptnGq8tV2T2b/ANMaAjH7rp/urUH6jnKw3G2dnPgnmc4F12P/ALReaZtHldVk6XdrQtexA6AczPQNHuvoa8cOmq5dC4Np/wDPM1NNs+hPkppTPXgrRM/QQuHJUhHOjzXaWk8I4/GASyenarYGlu/3Ks/0vYv5GY20Nw6mBOnsetvJbP4lf16j8Zl4+SvjD7onO7L25dp2Brb4fOtsmtvu8j6iehbD2zXqk4l+F1xx1k5Knv6j1nmG1tlX6RuG5cA/K6/FW/sf7HnJbH2u+mtFq88BlK5wGBHQ/fg/dHw5pY5U9AnjU1aPQNv7xrQTVXh7f5ifkr9+59Jx+q2g9hLOxZj5k9PQDyEyW1BYlmOWYlmJ6kk5Jm/sPdm7UgWOfBqPMEjLuP8Aqvb1P4xZznmlS/4MoxxoyrL4qNNdb/tV2P6ojMPr0no+ztgaajHDWGYfz2Yd/fnyH3YmpKx8J/0yTz/iPKbd39bjPgWfdgn6AzPfZWqBwdPqO3+zZ/ieymQYwz8OKXTAsz/Dx6jYWsc8tPcP60asfVsCZ28mxtVplW29VRXbgVfERnzjPQH8Z7Y5nA/tN2BdqUrvo+M6dWD1ADjKE54l8yR9n6evN6Iwd3ZVZW1R5Ubf0ERszL+l3Z1ltVt602BKVDHjUo1gPM8Cnm2BzmUnKF0FMOK5XvSWA8HaItjUdbuRvbw8Oj1TcuS0XMfl7Vue3Y/d2nd2LPCrlnb7k73/AC6TVt2Wi5z9K3P5H7oJQ+oFnbOsCwluxZXcSVhAERSREUNmDrCqINYQsFBZiFVQSzMcKoHUkyVj0FyACzEAKCSScAAdSTPLt+t5F1hFVI/hUMXV+Ya5sYJA8lwY++G9Z1RNFBK6dTzPRtQR5nsvYfefTm618zOnHDj/AJPYku+kTqXIBhs4gKzwk1nqjEe48vwknaFq2ZPoVjwBMZ2nSbibufvt/FYD+70ENb2sbyqHv5+nvH6irYu2bX7Ptzhdw6zVL/CBzRUw5XEf8jD7HYeft19TAkEAAAAAAAAA5AAeQkxOZzcnZRKiYk1kBCLHiKwiwywKwimXgyMg6wqmV1aEVp1QkSkharTV2oa7VV0bqrDI/Q+s4DaG414u4aCrUsch3YA1D7LDqfcfhPQg0lmPOEMmwRnKGjkt3dzRUwt1RSxl+StctWD9piRzPpidfI5j5lMcYwVRBKTk7Y8bMbMYmFzFoRMG7RM0GxnPOY8URYwLmTYwTGck5F4oGxnln7RN2PBJ1mnX+E7fx0UcqnJ+cD7JP0Pvy9RaAvqV1ZHAZXUqysMhlIwQZDlTLVZ8+o8ITmX97dhtodQa+Zqsy9DHzTPyn1HT6HzmSrym1aANasp2rLzGV7RGi6A0druRvf8ALpNW3ZaLmPXtW5/I/dO6sE8FsWd7uRvhnh0mrbnyWi5j83atz37Hz6H1TJj/AKiZP4ztiI8IUjTnsahPaqKXchVQFmZjhVA8yZ5pvbvS2rJppymnU+zXkfzN2HYfX0BvVvK+rbw0yunQ/CvQ2kfzt/YeUwkE6MePj29gbvQStYVun/4SKxrDkY9frG2zPXQNySQSc4OPIY7dPSPY8XXI+0OXoRzH9/rK4Ynl59MeeZSrE0XNmaCzU3JRUMvY2B2UebHsAJ7tsPZlekoTT19EHxN52Ofmc+5nO7g7vLpKBc+DfqEVievh1nmEB+hP6Tqw0482Xk6WkWhGkWAZMGAVoRWklIeg4MmpgA0mGlIyJtFgGTDSuGkw0spk3EsBpMNK4aTDSsZk3EsBpINK4aSDyyyCOIfij8UBxxccb2g4huKRLQReMXivIZRJs0GzSJaQZpKWQoojsYJjEzQbNOeUysYjMYNjHZoJmkJSKpGPvXsRdbp2qOBYvx0uf5LAOh9D0P6TxGxGrdkcFXRirKeqsDggz6CLTzz9pu7+R+/VDmMLqAPMdFs/IH7vWUw5O+LFnH6cCGkXgleTzOmhLA2LKzrLjQFix4sVo3NFv1rqq1rDVuKxwhrUL2EeWTnn+kU5wrFD64fgLf6XEEKJERExH2UJ8UgzyDPAu8MYgbCcYzg8XpwEK2ffBk2IA+AfEpJIPDnwyrcS5OcnGMEjl+c9j6D94tVTyUfE5+yo6/f/AJmhqtlMWbw2CVvd4Ae0vZbwtjhwOmMHqD3j2k6Eaez1jdXXeNotNYSDxVAZUcPJSVAI8iABnyznE1RYJxOytWulor09eStS8IJ6sc5LH1JJP3y1/rhnnTxtybWjojNUrOvWwQi2CccNuGEXbkThIPNHYrYIQPOOG3ZNduzcZGtHYB5MPORXbsIu3IbkjdHWiySFk5Vdtwq7Zh9jF4o6cWSQsnOptWHTaGY3tYPWjb8SP4kwztGP/qMPuB6za8SRNkxTtOCba4EHuYfWjdNkgXmE22RBnbS94ryMKijeLwbPMM7aXvIHbK94jbYyo22eDZ5jHbC95E7XXuItMa0a5eQsAZSrAMrAqynmGUjBBmT/AKqvcSQ2ovcTUwWjyjezYh0WoasZNT/HSx80J+UnuOn07zJVp6rvbpk1mnZBjxa8vSfPi819iP7dp5JnBx2noYpc497RCSphyYNouKMxlEgAyI0eKOAscUizSDNBO8VRC2Sd4PMgzTR2PRlvEbop+EHzb9P8StUhLNzZVXg14/nbDOfPPkv3fmTLXidMk/C3EMktz+/pKYti44vAHI0DqMx/EmerGFWyDgay8tsl40pq8kYjiGy6tphEslBHlqnnElEZMuq8PW0pBfeWq2xIyQyZZSXahK2lYGW/D5STHRboYASzRaMzHXJOM4mhRUAM5POKMXiRB2WCCQgnBJkr1GOsxiv4oz2kbVBgCpzyjuxUZmACvTEoWNiHOr4jjEFemYyQCs9kB4phH9eUrviVSQjYmvMGdQYG5sQJeUUEK2Wm1WJH97PeUGaLij+tA5GgutPeczvDpwH8ZflsPxY8n/X/ADNQmAvUOpRujDHt2MaMK7QORzoaOTIXIUYq3VTiRDSlBsnFI8UU1BGZ4JmiijpCsnpqi7qo/mOOflN6vCgKPlUYH+Y0UP0V6CB5INHimFCIZMtFFFCIND12xRQMJYQgiFptGcRRSTQxp1ER1YGKKczKGho0HWaBXljn+cUUkx0F0umBPlL1tJA8vpFFFGFRpG9PORuoPniKKJyG4gGUKJV1NgIMUUcRmO1ihj/iJrcx4pShCraPT6yncuIopSIrM3Utzg+KKKdK0TIhTIPyiihQGB4jEcxopQBQ2nRxLx/zJ19V/SY4aKKZDIlxRoooQn//2Q==\" alt=\"\" width=\"275\" height=\"183\" />','I\'d Love to Really Love You','','inherit','closed','closed','','1222-revision-v1','','','2016-01-04 19:07:42','2016-01-05 01:07:42','',1222,'http://www.monicarenata.com/1222-revision-v1/',0,'revision','',0),(1226,1,'2016-01-04 19:13:28','2016-01-05 01:13:28','Can you feel me?\r\n\r\nBeyond what your eyes can see\r\n\r\nBeyond the warmth you feel when you touch my flesh\r\n\r\nBeyond every molecule that comprises the essence of my entire being\r\n\r\nCan you feel me?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest things\r\n\r\nThe simplest things that compose me\r\n\r\nThe very quintessence of who I am\r\n\r\nCan you understand the complexity?\r\n\r\n \r\n\r\nYou know\r\n\r\nEach forest contains a collection of trees\r\n\r\nEach tree has bark which covers its interiors and root like a wool jacket in the winter\r\n\r\nAnd each tree has leaves that change colors as the seasons pass by\r\n\r\nWe see these things\r\n\r\nBut we forget to acknowledge the cambium which brings true life\r\n\r\nThat’s what I want you to understand about me\r\n\r\n \r\n\r\nI want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nCultivate me\r\n\r\nNourish me\r\n\r\nUnderstand me\r\n\r\nAnd then with you\r\n\r\nI can grow\r\n\r\n \r\n\r\nSo again I ask\r\n\r\nCan you feel me?\r\n\r\nCan you feel me beyond what your eyes can see?\r\n\r\nBeyond the warmth of my skin?\r\n\r\nBeyond the tissue and bones that make me human?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest piece of me?\r\n\r\nThe very quintessence of who I am?\r\n\r\nIf not\r\n\r\nThen you shall never know my true beauty\r\n\r\n \r\n\r\n \r\n\r\nFor I want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nAnd in your recognition you will see the growth that your eyes cannot see\r\n\r\nYou will understand the complexity of the simplest aspect of me\r\n\r\nAnd once you get to that very point\r\n\r\nYou will finally feel the deepest part of me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://i.ytimg.com/vi/VOdCTNTjXOY/hqdefault.jpg\" alt=\"\" width=\"480\" height=\"360\" />\r\n\r\n \r\n\r\n \r\n\r\n ','Feel Me','','publish','open','open','','feel-me','','','2016-03-13 23:42:55','2016-03-14 04:42:55','',0,'http://www.monicarenata.com/?p=1226',0,'post','',0),(1227,1,'2016-01-04 19:13:16','2016-01-05 01:13:16','Can you feel me?\r\n\r\nBeyond what your eyes can see\r\n\r\nBeyond the warmth you feel when you touch my flesh\r\n\r\nBeyond every molecule that compromises the essence of my entire being\r\n\r\nCan you feel me?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest things\r\n\r\nThe simplest things that compose me\r\n\r\nThe very quintessence of who I am\r\n\r\nCan you understand the complexity?\r\n\r\n \r\n\r\nYou know\r\n\r\nEach forest contains a collection of trees\r\n\r\nEach tree has bark which covers its interiors and root like a wool jacket in the winter\r\n\r\nAnd each tree has leaves that change colors of the seasons pass by\r\n\r\nWe see these things\r\n\r\nBut we forget to acknowledge the cambium which brings true life\r\n\r\nThat’s what I want you to understand about me\r\n\r\n \r\n\r\nI want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nCultivate me\r\n\r\nNourish me\r\n\r\nUnderstand me\r\n\r\nAnd then with you\r\n\r\nI can grow\r\n\r\n \r\n\r\nSo again I ask\r\n\r\nCan you feel me?\r\n\r\nCan you feel me beyond what your eyes can see?\r\n\r\nBeyond the warmth of my skin?\r\n\r\nBeyond the tissue and bones that make me human?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest piece of me?\r\n\r\nThe very quintessence of who I am?\r\n\r\nIf not\r\n\r\nThen you shall never know my true beauty\r\n\r\n \r\n\r\n \r\n\r\nFor I want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nAnd in your recognition you will see the growth that your eyes cannot see\r\n\r\nYou will understand the complexity of the simplest aspect of me\r\n\r\nAnd once you get to that very point\r\n\r\nYou will finally feel the deepest part of me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://images.sodahead.com/polls/001449291/bionic_eye_xlarge.jpeg\" alt=\"\" width=\"350\" height=\"262\" />\r\n\r\n \r\n\r\n \r\n\r\n ','Feel Me','','inherit','closed','closed','','1226-revision-v1','','','2016-01-04 19:13:16','2016-01-05 01:13:16','',1226,'http://www.monicarenata.com/1226-revision-v1/',0,'revision','',0),(1228,1,'2016-01-04 19:17:07','2016-01-05 01:17:07','There are many things\r\n\r\nThat I am capable\r\n\r\nBut to hold your hand is a crime\r\n\r\nWhen you are able\r\n\r\n \r\n\r\nI can cheer you on from the sidewalk\r\n\r\nI can be your biggest fan\r\n\r\nBut if you don’t want to help yourself\r\n\r\nI just can’t hold your hand\r\n\r\n \r\n\r\nThere are times when maybe\r\n\r\nI can assist you\r\n\r\nI can show you little tips and tricks\r\n\r\nShow you anything you want me to\r\n\r\n \r\n\r\nI can teach you like a teacher\r\n\r\nI can guide you to great things\r\n\r\nBut if you don’t believe in yourself\r\n\r\nMy help will all mean not a thing\r\n\r\n \r\n\r\nThere are many things\r\n\r\nThat I am capable\r\n\r\nBut to hold your hand is a crime\r\n\r\nWhen you are able\r\n\r\n \r\n\r\nI can’t help you\r\n\r\nUnless you help me\r\n\r\nAnd in order to help me\r\n\r\nYou have to get on your two feet\r\n\r\n \r\n\r\nI can cheer you on from the sidewalk\r\n\r\nI can be your biggest fan\r\n\r\nI can teach you like a teacher\r\n\r\nI can guide you to great things\r\n\r\n \r\n\r\nBut what are my efforts\r\n\r\nIf you are afraid to stand tall\r\n\r\nJust stop being afraid to stand\r\n\r\nAnd I will help you when you fall\r\n\r\n \r\n\r\n“I can’t help you unless you are willing to help yourself……” –Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://www.diannesvegankitchen.com/wp-content/uploads/2015/06/Help-Me-Help-You1.jpg\" alt=\"\" width=\"576\" height=\"315\" />','I Can\'t Help You','','publish','open','open','','i-cant-help-you','','','2016-01-04 19:17:07','2016-01-05 01:17:07','',0,'http://www.monicarenata.com/?p=1228',0,'post','',0),(1229,1,'2016-01-04 19:16:35','2016-01-05 01:16:35','There are many things\r\n\r\nThat I am capable\r\n\r\nBut to hold your hand is a crime\r\n\r\nWhen you are able\r\n\r\n \r\n\r\nI can cheer you on from the sidewalk\r\n\r\nI can be your biggest fan\r\n\r\nBut if you don’t want to help yourself\r\n\r\nI just can’t hold your hand\r\n\r\n \r\n\r\nThere are times when maybe\r\n\r\nI can assist you\r\n\r\nI can show you little tips and tricks\r\n\r\nShow you anything you want me to\r\n\r\n \r\n\r\nI can teach you like a teacher\r\n\r\nI can guide you to great things\r\n\r\nBut if you don’t believe in yourself\r\n\r\nMy help will all mean not a thing\r\n\r\n \r\n\r\nThere are many things\r\n\r\nThat I am capable\r\n\r\nBut to hold your hand is a crime\r\n\r\nWhen you are able\r\n\r\n \r\n\r\nI can’t help you\r\n\r\nUnless you help me\r\n\r\nAnd in order to help me\r\n\r\nYou have to get on your two feet\r\n\r\n \r\n\r\nI can cheer you on from the sidewalk\r\n\r\nI can be your biggest fan\r\n\r\nI can teach you like a teacher\r\n\r\nI can guide you to great things\r\n\r\n \r\n\r\nBut what are my efforts\r\n\r\nIf you are afraid to stand tall\r\n\r\nJust stop being afraid to stand\r\n\r\nAnd I will help you when you fall\r\n\r\n \r\n\r\n“I can’t help you unless you are willing to help yourself……” –Monica Renata\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://www.diannesvegankitchen.com/wp-content/uploads/2015/06/Help-Me-Help-You1.jpg\" alt=\"\" width=\"576\" height=\"315\" />','I Can\'t Help You','','inherit','closed','closed','','1228-revision-v1','','','2016-01-04 19:16:35','2016-01-05 01:16:35','',1228,'http://www.monicarenata.com/1228-revision-v1/',0,'revision','',0),(1231,1,'2016-01-15 15:05:29','2016-01-15 21:05:29','I hate how much I like you\r\n\r\nI hate how it makes me feel\r\n\r\nAll soft and mushy inside\r\n\r\nAnd also filled with lots of fear\r\n\r\n \r\n\r\nI hate how you make me happy\r\n\r\nI hate that I can’t make this feeling go away\r\n\r\nAnd I wonder how long this will last\r\n\r\nUntil my thoughts cause a big headache\r\n\r\n \r\n\r\nI like to like many things\r\n\r\nBut I dislike being hurt\r\n\r\nBut they say in life you have to take chances\r\n\r\nBut will this chance make me feel good or hurt?\r\n\r\n \r\n\r\nI hate how much I like you\r\n\r\nI hate that this feeling is true\r\n\r\nBut maybe I should stop letting fear hold me back\r\n\r\nAnd admit that I just like you\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://data.whicdn.com/images/15419150/original.jpg\" alt=\"\" width=\"362\" height=\"275\" />','I Hate How Much I Like You','','publish','open','open','','i-hate-how-much-i-like-you','','','2016-01-15 15:05:29','2016-01-15 21:05:29','',0,'http://www.monicarenata.com/?p=1231',0,'post','',0),(1232,1,'2016-01-15 15:05:29','2016-01-15 21:05:29','I hate how much I like you\r\n\r\nI hate how it makes me feel\r\n\r\nAll soft and mushy inside\r\n\r\nAnd also filled with lots of fear\r\n\r\n \r\n\r\nI hate how you make me happy\r\n\r\nI hate that I can’t make this feeling go away\r\n\r\nAnd I wonder how long this will last\r\n\r\nUntil my thoughts cause a big headache\r\n\r\n \r\n\r\nI like to like many things\r\n\r\nBut I dislike being hurt\r\n\r\nBut they say in life you have to take chances\r\n\r\nBut will this chance make me feel good or hurt?\r\n\r\n \r\n\r\nI hate how much I like you\r\n\r\nI hate that this feeling is true\r\n\r\nBut maybe I should stop letting fear hold me back\r\n\r\nAnd admit that I just like you\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://data.whicdn.com/images/15419150/original.jpg\" alt=\"\" width=\"362\" height=\"275\" />','I Hate How Much I Like You','','inherit','closed','closed','','1231-revision-v1','','','2016-01-15 15:05:29','2016-01-15 21:05:29','',1231,'http://www.monicarenata.com/1231-revision-v1/',0,'revision','',0),(1233,1,'2016-01-15 15:20:29','2016-01-15 21:20:29','My wait doesn’t last forever\r\n\r\nNeither does the morning dew\r\n\r\nFor in the heat of the moment\r\n\r\nI may disappear\r\n\r\nAnd become but a memory to you\r\n\r\n \r\n\r\nSo hold me tight forever\r\n\r\nPromise not to leave my side\r\n\r\nFor when the sun rises\r\n\r\nAs it do every other day\r\n\r\nI don’t want to leave you high and dry\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"alignleft\" src=\"https://austinblevins.files.wordpress.com/2014/10/img_8780.jpg?w=625\" alt=\"\" width=\"600\" height=\"422\" />','My Wait Doesn\'t Last','','publish','open','open','','my-wait-doesnt-last','','','2016-01-15 15:20:29','2016-01-15 21:20:29','',0,'http://www.monicarenata.com/?p=1233',0,'post','',0),(1234,1,'2016-01-15 15:20:03','2016-01-15 21:20:03','My wait doesn’t last forever\r\n\r\nNeither does the morning dew\r\n\r\nFor in the heat of the moment\r\n\r\nI may disappear\r\n\r\nAnd become but a memory to you\r\n\r\n \r\n\r\nSo hold me tight forever\r\n\r\nPromise not to leave my side\r\n\r\nFor when the sun rises\r\n\r\nAs it do every other day\r\n\r\nI don’t want to leave you high and dry\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"alignleft\" src=\"https://austinblevins.files.wordpress.com/2014/10/img_8780.jpg?w=625\" alt=\"\" width=\"600\" height=\"422\" />','My Wait Doesn\'t Last','','inherit','closed','closed','','1233-revision-v1','','','2016-01-15 15:20:03','2016-01-15 21:20:03','',1233,'http://www.monicarenata.com/1233-revision-v1/',0,'revision','',0),(1235,1,'2016-01-15 15:27:30','2016-01-15 21:27:30','He resides within my bed\r\n\r\nAt my loneliest hours\r\n\r\nHe consumes my head\r\n\r\nDay after Day\r\n\r\nHe fills my heart\r\n\r\nWith so many desires\r\n\r\nBut he is still\r\n\r\nJust a stranger in my bed\r\n\r\n \r\n\r\nHe resides within my bed\r\n\r\nWhen my heart’s weak\r\n\r\nHe kisses me\r\n\r\nMore and More\r\n\r\nHe warms me up\r\n\r\nAnd my heart melts\r\n\r\nBut he is still\r\n\r\nJust a stranger in my bed\r\n\r\n \r\n\r\nHe touches me\r\n\r\nBut we aren’t touching\r\n\r\nWe connect\r\n\r\nBut then again we don’t\r\n\r\nOur love is pseudo silent\r\n\r\nPractically invisible to me and most\r\n\r\n \r\n\r\nHe resides within my bed\r\n\r\nHe at times consume my head\r\n\r\nBut he is still\r\n\r\nJust a stranger\r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://c2.staticflickr.com/2/1253/5099707442_4f29b5abe8_b.jpg\" alt=\"\" width=\"324\" height=\"432\" />','Stranger In My Bed','','publish','open','open','','stranger-in-my-bed','','','2016-01-15 15:27:30','2016-01-15 21:27:30','',0,'http://www.monicarenata.com/?p=1235',0,'post','',0),(1236,1,'2016-01-15 15:27:30','2016-01-15 21:27:30','He resides within my bed\r\n\r\nAt my loneliest hours\r\n\r\nHe consumes my head\r\n\r\nDay after Day\r\n\r\nHe fills my heart\r\n\r\nWith so many desires\r\n\r\nBut he is still\r\n\r\nJust a stranger in my bed\r\n\r\n \r\n\r\nHe resides within my bed\r\n\r\nWhen my heart’s weak\r\n\r\nHe kisses me\r\n\r\nMore and More\r\n\r\nHe warms me up\r\n\r\nAnd my heart melts\r\n\r\nBut he is still\r\n\r\nJust a stranger in my bed\r\n\r\n \r\n\r\nHe touches me\r\n\r\nBut we aren’t touching\r\n\r\nWe connect\r\n\r\nBut then again we don’t\r\n\r\nOur love is pseudo silent\r\n\r\nPractically invisible to me and most\r\n\r\n \r\n\r\nHe resides within my bed\r\n\r\nHe at times consume my head\r\n\r\nBut he is still\r\n\r\nJust a stranger\r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://c2.staticflickr.com/2/1253/5099707442_4f29b5abe8_b.jpg\" alt=\"\" width=\"324\" height=\"432\" />','Stranger In My Bed','','inherit','closed','closed','','1235-revision-v1','','','2016-01-15 15:27:30','2016-01-15 21:27:30','',1235,'http://www.monicarenata.com/1235-revision-v1/',0,'revision','',0),(1238,1,'2016-02-01 20:19:04','2016-02-02 02:19:04','I saw you sitting calmly\r\n\r\nEven though the world was on your back\r\n\r\nSorrows have formed deep burrows under your eyes\r\n\r\nSweat trickles down your back\r\n\r\n \r\n\r\nTears filled your eyes like overflowing rivers\r\n\r\nBut your pride did not allow them to fall\r\n\r\nI saw you sitting calmly\r\n\r\nWhile in front your face your world did fall\r\n\r\n \r\n\r\nI saw you sitting calmly\r\n\r\nSo much pain you tried not to reveal\r\n\r\nI know your heart was beating fiercely\r\n\r\nBut you won\'t let the emotions of your heart be revealed\r\n\r\n \r\n\r\nThe emotion I see it consume you\r\n\r\nSo much that you seem like a statue of stone\r\n\r\nOh how I wish I could help you\r\n\r\nSo that you won\'t face this alone\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://i.ytimg.com/vi/wBRa5S8DfBk/maxresdefault.jpg\" alt=\"\" width=\"512\" height=\"288\" />','I Saw You','','publish','open','open','','i-saw-you','','','2016-02-01 20:19:04','2016-02-02 02:19:04','',0,'http://www.monicarenata.com/?p=1238',0,'post','',0),(1239,1,'2016-02-01 20:18:01','2016-02-02 02:18:01','I saw you sitting calmly\r\n\r\nEven though the world was on your back\r\n\r\nSorrows have formed deep burrows under your eyes\r\n\r\nSweat trickles down your back\r\n\r\n \r\n\r\nTears filled your eyes like overflowing rivers\r\n\r\nBut your pride did not allow them to fall\r\n\r\nI saw you sitting calmly\r\n\r\nWhile in front your face your world did fall\r\n\r\n \r\n\r\nI saw you sitting calmly\r\n\r\nSo much pain you tried not to reveal\r\n\r\nI know your heart was beating fiercely\r\n\r\nBut you won\'t let the emotions of your heart be revealed\r\n\r\n \r\n\r\nThe emotion I see it consume you\r\n\r\nSo much that you seem like a statue of stone\r\n\r\nOh how I wish I could help you\r\n\r\nSo that you won\'t face this alone\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://i.ytimg.com/vi/wBRa5S8DfBk/maxresdefault.jpg\" alt=\"\" width=\"512\" height=\"288\" />','I Saw You','','inherit','closed','closed','','1238-revision-v1','','','2016-02-01 20:18:01','2016-02-02 02:18:01','',1238,'http://www.monicarenata.com/1238-revision-v1/',0,'revision','',0),(1245,1,'2016-02-23 18:17:20','2016-02-24 00:17:20','Ashes on the Dove\'s two wings\r\nWhat as pure white\r\nit is now taint\r\n\r\nNo longer pure as it was before\r\nLightly touched with darkness\r\nA smudge of woe\r\n\r\nYet the Dove will continue to fly\r\nHigh and Higher\r\nIn the deep blue sky\r\n\r\nBut the ashes left a mark on those wings\r\nA once peaceful soul\r\nTainted by dark things\r\n\r\nHappiness at times burned to dust\r\nLeaves marks on us all\r\nBut some go untouched\r\n\r\nI wish you could somehow see it my way\r\nInstead of throwing ashes\r\nOn my Dove\'s two wings\r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg\" alt=\"\" width=\"387\" height=\"290\" />\r\n\r\n ','Black Dove','','inherit','closed','closed','','1243-revision-v1','','','2016-02-23 18:17:20','2016-02-24 00:17:20','',1243,'http://www.monicarenata.com/1243-revision-v1/',0,'revision','',0),(1241,1,'2016-02-15 10:50:47','2016-02-15 16:50:47','Dig my hole as you did\r\nSo many times before\r\nPlace the shovel on the tainted earth\r\nAnd keep digging down for more\r\n\r\nUntil you reached the level\r\nThat you believe that I should meet\r\nKeep me lower than you always keep me\r\nUnder your dirty feet\r\n\r\nAnd when the song plays\r\nPlease do not cry\r\nI wish for you to stand still and tall\r\n\r\nFor my existence you made hard each day\r\nUntil your actions finally killed\r\nAnd robbed me of all\r\n\r\nAs black as the tar on the train tracks of hell\r\nWas the color of your heart\r\nAnd now I lay underneath the earth\r\nLike a beautiful peace of art\r\n\r\nSo step on me one last time\r\nMake me feel like I\'m the rug underneath your feet\r\nIt isn\'t nice to kill someone\'s heart\r\nWith the words that you do speak\r\n\r\nWords sometimes can kill someone\r\nStanding in front your very eyes\r\nThey may still breath in and out\r\nBut the bein inside has died\r\n\r\nSo think about your actions\r\nBe mindful of the way you speak\r\nFor it is so easy to kill someone\r\nWith the words that you do speak\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg\" alt=\"\" width=\"393\" height=\"489\" />','Dig My Hole','','publish','open','open','','dig-my-hole','','','2016-03-13 23:23:15','2016-03-14 04:23:15','',0,'http://www.monicarenata.com/?p=1241',0,'post','',0),(1242,1,'2016-02-15 10:50:34','2016-02-15 16:50:34','Dig my hole as you did\r\nSo many times before\r\nPlace the shovel on the tainted earth\r\nAnd keep digging down for more\r\n\r\nUntil you reached the level\r\nThat you believe that I should meet\r\nKeep me lower than you always keep me\r\nUnder your dirty feet\r\n\r\nAnd when the song plays\r\nPlease do not cry\r\nI wish for you to stand still and tall\r\n\r\nFor my existence you made hard each day\r\nUntil your actiions finally killed\r\nAnd robbed me of all\r\n\r\nAs black as the tar on the train tracks of hell\r\nWas the color of your heart\r\nAnd now I lay underneath the earth\r\nLike a beautiful peace of art\r\n\r\nSo step on me one last time\r\nMake me feel like I\'m the rug underneath your feet\r\nIt isn\'t nice to kill someone\'s heart\r\nWith the words that you do speak\r\n\r\nWords sometimes can kill someone\r\nStanding in front your very eyes\r\nThey may still breath in and out\r\nBut the bein inside has died\r\n\r\nSo think about your actions\r\nBe mindful of the way you speak\r\nFor it is so easy to kill someone\r\nWith the words that you do speak\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg\" alt=\"\" width=\"393\" height=\"489\" />','Dig My Hole','','inherit','closed','closed','','1241-revision-v1','','','2016-02-15 10:50:34','2016-02-15 16:50:34','',1241,'http://www.monicarenata.com/1241-revision-v1/',0,'revision','',0),(1243,1,'2016-02-21 14:56:25','2016-02-21 20:56:25','Ashes on the Dove\'s two wings\r\nWhat as pure white\r\nit is now taint\r\n\r\nNo longer pure as it was before\r\nLightly touched with darkness\r\nA smudge of woe\r\n\r\nYet the Dove will continue to fly\r\nHigh and Higher\r\nIn the deep blue sky\r\n\r\nBut the ashes left a mark on those wings\r\nA once peaceful soul\r\nTainted by dark things\r\n\r\nHappiness at times burned to dust\r\nLeaves marks on us all\r\nBut some go untouched\r\n\r\nI wish you could somehow see it my way\r\nInstead of throwing ashes\r\nOn my Dove\'s two wings\r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg\" alt=\"\" width=\"387\" height=\"290\" />\r\n\r\n ','Black Dove','','publish','open','open','','black-dove','','','2016-02-23 18:17:20','2016-02-24 00:17:20','',0,'http://www.monicarenata.com/?p=1243',0,'post','',0),(1244,1,'2016-02-21 14:56:08','2016-02-21 20:56:08','Ashes on the Dove\'s two wings\r\nWhite is gone\r\nit is now taint\r\n\r\nNo longer pure as it was before\r\nLightly touched with darkness\r\nA smudge of woe\r\n\r\nYet the Dove will continue to fly\r\nHigh and Higher\r\nIn the deep blue sky\r\n\r\nBut the ashes left a mark on those wings\r\nA peaceful soul\r\nTainted by dark things\r\n\r\nHappiness at times burned to dust\r\nLeaves marks on us all\r\nBut some go untouched\r\n\r\nI wish you could somehow see it my way\r\nInstead of throwing ashes\r\nOn my Dove\'s two wings\r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg\" alt=\"\" width=\"387\" height=\"290\" />\r\n\r\n ','Black Dove','','inherit','closed','closed','','1243-revision-v1','','','2016-02-21 14:56:08','2016-02-21 20:56:08','',1243,'http://www.monicarenata.com/1243-revision-v1/',0,'revision','',0),(1247,1,'2016-03-13 23:19:36','2016-03-14 04:19:36','Can you feel me?\n\nBeyond what your eyes can see\n\nBeyond the warmth you feel when you touch my flesh\n\nBeyond every molecule that comprises the essence of my entire being\n\nCan you feel me?\n\n \n\nCan you understand the complexity?\n\nThe complexity of the simplest things\n\nThe simplest things that compose me\n\nThe very quintessence of who I am\n\nCan you understand the complexity?\n\n \n\nYou know\n\nEach forest contains a collection of trees\n\nEach tree has bark which covers its interiors and root like a wool jacket in the winter\n\nAnd each tree has leaves that change colors of the seasons pass by\n\nWe see these things\n\nBut we forget to acknowledge the cambium which brings true life\n\nThat’s what I want you to understand about me\n\n \n\nI want you to recognize the smallest particles in my body\n\nThe particles that allows me to continue to grow\n\nCultivate me\n\nNourish me\n\nUnderstand me\n\nAnd then with you\n\nI can grow\n\n \n\nSo again I ask\n\nCan you feel me?\n\nCan you feel me beyond what your eyes can see?\n\nBeyond the warmth of my skin?\n\nBeyond the tissue and bones that make me human?\n\n \n\nCan you understand the complexity?\n\nThe complexity of the simplest piece of me?\n\nThe very quintessence of who I am?\n\nIf not\n\nThen you shall never know my true beauty\n\n \n\n \n\nFor I want you to recognize the smallest particles in my body\n\nThe particles that allows me to continue to grow\n\nAnd in your recognition you will see the growth that your eyes cannot see\n\nYou will understand the complexity of the simplest aspect of me\n\nAnd once you get to that very point\n\nYou will finally feel the deepest part of me\n\n \n\n \n\n \n\n<img class=\"aligncenter\" src=\"http://images.sodahead.com/polls/001449291/bionic_eye_xlarge.jpeg\" alt=\"\" width=\"350\" height=\"262\" />\n\n \n\n \n\n ','Feel Me','','inherit','closed','closed','','1226-autosave-v1','','','2016-03-13 23:19:36','2016-03-14 04:19:36','',1226,'http://www.monicarenata.com/1226-autosave-v1/',0,'revision','',0),(1248,1,'2016-03-13 23:21:27','2016-03-14 04:21:27','Can you feel me?\r\n\r\nBeyond what your eyes can see\r\n\r\nBeyond the warmth you feel when you touch my flesh\r\n\r\nBeyond every molecule that comprises the essence of my entire being\r\n\r\nCan you feel me?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest things\r\n\r\nThe simplest things that compose me\r\n\r\nThe very quintessence of who I am\r\n\r\nCan you understand the complexity?\r\n\r\n \r\n\r\nYou know\r\n\r\nEach forest contains a collection of trees\r\n\r\nEach tree has bark which covers its interiors and root like a wool jacket in the winter\r\n\r\nAnd each tree has leaves that change colors as the seasons pass by\r\n\r\nWe see these things\r\n\r\nBut we forget to acknowledge the cambium which brings true life\r\n\r\nThat’s what I want you to understand about me\r\n\r\n \r\n\r\nI want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nCultivate me\r\n\r\nNourish me\r\n\r\nUnderstand me\r\n\r\nAnd then with you\r\n\r\nI can grow\r\n\r\n \r\n\r\nSo again I ask\r\n\r\nCan you feel me?\r\n\r\nCan you feel me beyond what your eyes can see?\r\n\r\nBeyond the warmth of my skin?\r\n\r\nBeyond the tissue and bones that make me human?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest piece of me?\r\n\r\nThe very quintessence of who I am?\r\n\r\nIf not\r\n\r\nThen you shall never know my true beauty\r\n\r\n \r\n\r\n \r\n\r\nFor I want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nAnd in your recognition you will see the growth that your eyes cannot see\r\n\r\nYou will understand the complexity of the simplest aspect of me\r\n\r\nAnd once you get to that very point\r\n\r\nYou will finally feel the deepest part of me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://images.sodahead.com/polls/001449291/bionic_eye_xlarge.jpeg\" alt=\"\" width=\"350\" height=\"262\" />\r\n\r\n \r\n\r\n \r\n\r\n ','Feel Me','','inherit','closed','closed','','1226-revision-v1','','','2016-03-13 23:21:27','2016-03-14 04:21:27','',1226,'http://www.monicarenata.com/1226-revision-v1/',0,'revision','',0),(1249,1,'2016-03-13 23:23:15','2016-03-14 04:23:15','Dig my hole as you did\r\nSo many times before\r\nPlace the shovel on the tainted earth\r\nAnd keep digging down for more\r\n\r\nUntil you reached the level\r\nThat you believe that I should meet\r\nKeep me lower than you always keep me\r\nUnder your dirty feet\r\n\r\nAnd when the song plays\r\nPlease do not cry\r\nI wish for you to stand still and tall\r\n\r\nFor my existence you made hard each day\r\nUntil your actions finally killed\r\nAnd robbed me of all\r\n\r\nAs black as the tar on the train tracks of hell\r\nWas the color of your heart\r\nAnd now I lay underneath the earth\r\nLike a beautiful peace of art\r\n\r\nSo step on me one last time\r\nMake me feel like I\'m the rug underneath your feet\r\nIt isn\'t nice to kill someone\'s heart\r\nWith the words that you do speak\r\n\r\nWords sometimes can kill someone\r\nStanding in front your very eyes\r\nThey may still breath in and out\r\nBut the bein inside has died\r\n\r\nSo think about your actions\r\nBe mindful of the way you speak\r\nFor it is so easy to kill someone\r\nWith the words that you do speak\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg\" alt=\"\" width=\"393\" height=\"489\" />','Dig My Hole','','inherit','closed','closed','','1241-revision-v1','','','2016-03-13 23:23:15','2016-03-14 04:23:15','',1241,'http://www.monicarenata.com/1241-revision-v1/',0,'revision','',0),(1252,1,'2016-03-13 23:41:19','2016-03-14 04:41:19','Holes in my Sunday dress\r\nSandals on my feet\r\nHair a tangled, matted mess\r\nNo one wants to see me\r\n\r\nMy car\r\nI don’t have one\r\nBut my pride\r\nIs bursting at the seams\r\n\r\nI am but a homeless woman to you\r\nBut in God’s eyes I am a queen\r\n<p style=\"text-align: center;\">Holes in my Sunday suit\r\nNo shoes on my feet\r\nHair is unkempt and not groomed\r\nNo one wants to see me</p>\r\n<p style=\"text-align: center;\">Walked here\r\nMy feet are my transportation\r\nMy life is hard\r\nBut I refuse to weep</p>\r\n<p style=\"text-align: center;\">I am but a homeless man to you\r\nBut in God’s eyes I am a king</p>\r\n<p style=\"text-align: right;\">Holes in my once beautiful soul\r\nThe nicest shoes on my feet\r\nHair in the nicest style\r\nEveryone wants to see me</p>\r\n<p style=\"text-align: right;\">Drove here in my newest ride\r\nMy sports car is very neat\r\nMy life, so many envy\r\nBut It is crashing at my feet</p>\r\n<p style=\"text-align: right;\">I am but a rich person to you\r\nBut I am praying God heals me</p>','In God\'s Eyes','','publish','open','open','','in-gods-eyes','','','2016-10-26 13:01:05','2016-10-26 18:01:05','',0,'http://www.monicarenata.com/?p=1252',0,'post','',0),(1254,1,'2016-03-13 23:40:52','2016-03-14 04:40:52','Holes in my Sunday dress\r\nSandals on my feet\r\nHair a tangled, matted mess\r\nNo one wants to see me\r\n\r\nMy car\r\nI don’t have one\r\nBut my pride\r\nIs bursting at the seams\r\n\r\nI am but a homeless woman to you\r\nBut in God’s eyes I am a queen\r\n<p style=\"text-align: center;\">Holes in my Sunday suit\r\nNo shoes on my feet\r\nHair is unkempt and not groomed\r\nNo one wants to see me</p>\r\n<p style=\"text-align: center;\">Walked here\r\nMy feet are my transportation\r\nMy life is hard\r\nBut I refuse to weep</p>\r\n<p style=\"text-align: center;\">I am but a homeless man to you\r\nBut in God’s eyes I am a king</p>\r\n<p style=\"text-align: right;\">Holes in my once beautiful soul\r\nThe nicest shoes on my feet\r\nHair in the nicest style\r\nEveryone wants to see me</p>\r\n<p style=\"text-align: right;\">Drove here in my newest ride\r\nMy sports car is very neat\r\nMy life, so many envy\r\nBut It is crashing at me feet</p>\r\n<p style=\"text-align: right;\">I am but a rich person to you\r\nBut I am praying God heals me</p>','','','inherit','closed','closed','','1252-revision-v1','','','2016-03-13 23:40:52','2016-03-14 04:40:52','',1252,'http://www.monicarenata.com/1252-revision-v1/',0,'revision','',0),(1253,1,'2016-03-13 23:39:13','2016-03-14 04:39:13','Holes in my Sunday dress\r\n\r\nSandals on my feet\r\n\r\nHair a tangled, matted mess\r\n\r\nNo one wants to see me\r\n\r\n \r\n\r\nMy car\r\n\r\nI don’t have one\r\n\r\nBut my pride\r\n\r\nIs bursting at the seams\r\n\r\n \r\n\r\nI am but a homeless woman to you\r\n\r\nBut in God’s eyes I am a queen\r\n\r\n \r\n<p style=\"text-align: center;\">Holes in my Sunday suit</p>\r\n<p style=\"text-align: center;\">No shoes on my feet</p>\r\n<p style=\"text-align: center;\">Hair is unkempt and not groomed</p>\r\n<p style=\"text-align: center;\">No one wants to see me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Walked here</p>\r\n<p style=\"text-align: center;\">My feet are my transportation</p>\r\n<p style=\"text-align: center;\">My life is hard</p>\r\n<p style=\"text-align: center;\">But I refuse to weep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I am but a homeless man to you</p>\r\n<p style=\"text-align: center;\">But in God’s eyes I am a king</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: right;\">Holes in my once beautiful soul</p>\r\n<p style=\"text-align: right;\">The nicest shoes on my feet</p>\r\n<p style=\"text-align: right;\">Hair in the nicest style</p>\r\n<p style=\"text-align: right;\">Everyone wants to see me</p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\">Drove here in my newest ride</p>\r\n<p style=\"text-align: right;\">My sports car is very neat</p>\r\n<p style=\"text-align: right;\">My life, so many envy</p>\r\n<p style=\"text-align: right;\">But It is crashing at me feet</p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\">I am but a rich person to you</p>\r\n<p style=\"text-align: right;\">But I am praying God heals me</p>','','','inherit','closed','closed','','1252-revision-v1','','','2016-03-13 23:39:13','2016-03-14 04:39:13','',1252,'http://www.monicarenata.com/1252-revision-v1/',0,'revision','',0),(1255,1,'2016-03-13 23:41:19','2016-03-14 04:41:19','Holes in my Sunday dress\r\nSandals on my feet\r\nHair a tangled, matted mess\r\nNo one wants to see me\r\n\r\nMy car\r\nI don’t have one\r\nBut my pride\r\nIs bursting at the seams\r\n\r\nI am but a homeless woman to you\r\nBut in God’s eyes I am a queen\r\n<p style=\"text-align: center;\">Holes in my Sunday suit\r\nNo shoes on my feet\r\nHair is unkempt and not groomed\r\nNo one wants to see me</p>\r\n<p style=\"text-align: center;\">Walked here\r\nMy feet are my transportation\r\nMy life is hard\r\nBut I refuse to weep</p>\r\n<p style=\"text-align: center;\">I am but a homeless man to you\r\nBut in God’s eyes I am a king</p>\r\n<p style=\"text-align: right;\">Holes in my once beautiful soul\r\nThe nicest shoes on my feet\r\nHair in the nicest style\r\nEveryone wants to see me</p>\r\n<p style=\"text-align: right;\">Drove here in my newest ride\r\nMy sports car is very neat\r\nMy life, so many envy\r\nBut It is crashing at me feet</p>\r\n<p style=\"text-align: right;\">I am but a rich person to you\r\nBut I am praying God heals me</p>','In God\'s Eyes','','inherit','closed','closed','','1252-revision-v1','','','2016-03-13 23:41:19','2016-03-14 04:41:19','',1252,'http://www.monicarenata.com/1252-revision-v1/',0,'revision','',0),(1256,1,'2016-03-13 23:42:55','2016-03-14 04:42:55','Can you feel me?\r\n\r\nBeyond what your eyes can see\r\n\r\nBeyond the warmth you feel when you touch my flesh\r\n\r\nBeyond every molecule that comprises the essence of my entire being\r\n\r\nCan you feel me?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest things\r\n\r\nThe simplest things that compose me\r\n\r\nThe very quintessence of who I am\r\n\r\nCan you understand the complexity?\r\n\r\n \r\n\r\nYou know\r\n\r\nEach forest contains a collection of trees\r\n\r\nEach tree has bark which covers its interiors and root like a wool jacket in the winter\r\n\r\nAnd each tree has leaves that change colors as the seasons pass by\r\n\r\nWe see these things\r\n\r\nBut we forget to acknowledge the cambium which brings true life\r\n\r\nThat’s what I want you to understand about me\r\n\r\n \r\n\r\nI want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nCultivate me\r\n\r\nNourish me\r\n\r\nUnderstand me\r\n\r\nAnd then with you\r\n\r\nI can grow\r\n\r\n \r\n\r\nSo again I ask\r\n\r\nCan you feel me?\r\n\r\nCan you feel me beyond what your eyes can see?\r\n\r\nBeyond the warmth of my skin?\r\n\r\nBeyond the tissue and bones that make me human?\r\n\r\n \r\n\r\nCan you understand the complexity?\r\n\r\nThe complexity of the simplest piece of me?\r\n\r\nThe very quintessence of who I am?\r\n\r\nIf not\r\n\r\nThen you shall never know my true beauty\r\n\r\n \r\n\r\n \r\n\r\nFor I want you to recognize the smallest particles in my body\r\n\r\nThe particles that allows me to continue to grow\r\n\r\nAnd in your recognition you will see the growth that your eyes cannot see\r\n\r\nYou will understand the complexity of the simplest aspect of me\r\n\r\nAnd once you get to that very point\r\n\r\nYou will finally feel the deepest part of me\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<img class=\"alignnone\" src=\"https://i.ytimg.com/vi/VOdCTNTjXOY/hqdefault.jpg\" alt=\"\" width=\"480\" height=\"360\" />\r\n\r\n \r\n\r\n \r\n\r\n ','Feel Me','','inherit','closed','closed','','1226-revision-v1','','','2016-03-13 23:42:55','2016-03-14 04:42:55','',1226,'http://www.monicarenata.com/1226-revision-v1/',0,'revision','',0),(1271,1,'2016-04-05 14:51:54','2016-04-05 19:51:54','Take me to a place of peace\r\n\r\nThe place I\'ve always known\r\n\r\nThe place where grass is always green\r\n\r\nAnd my caramel skin glows\r\n\r\n \r\n\r\nA place where I am happy\r\n\r\nWhere I can feel the air touch my cheeks\r\n\r\nThe playground is the place\r\n\r\nThat I always yearn to be\r\n\r\n \r\n\r\nBut at times I want to be accompanied\r\n\r\nBy someone who is my friend\r\n\r\nTo hold my hand through my adventures\r\n\r\nAnd gaze upon the land\r\n\r\n \r\n\r\nSo I ask you to the playground\r\n\r\nAnd you gleefully agree\r\n\r\nFor you said playgrounds are wonderful places\r\n\r\nAnd you can\'t wait to go there with me\r\n\r\n \r\n\r\nUnderneath the amber glaze of the sun\r\n\r\nI smile and then you smile\r\n\r\nI am in my happy place\r\n\r\nAs I watch the lake move like the Nile\r\n\r\n \r\n\r\nBut I can tell you are uneasy\r\n\r\nAs your hand takes a slide\r\n\r\nGripping me closer with each second\r\n\r\nSuffocating me with your mouth\r\n\r\n \r\n\r\nA peaceful place of tranquility\r\n\r\nIs quickly becoming a scene\r\n\r\nFor I loved the visit the playground\r\n\r\nBut your playground happens to be me\r\n\r\n \r\n\r\nPerspiration from your pursuit\r\n\r\nI am totally out of breath\r\n\r\nI just stop fighting you\r\n\r\nFor the fight in me has left\r\n\r\n \r\n\r\nA playground is suppose to be peaceful\r\n\r\nI guess today it wasn\'t meant to be\r\n\r\nFor your playground is my body\r\n\r\nAnd happiness you robbed from me','PlayGround','','publish','open','open','','playground','','','2016-04-05 14:51:54','2016-04-05 19:51:54','',0,'http://www.monicarenata.com/?p=1271',0,'post','',0),(1259,1,'2016-03-31 07:09:08','2016-03-31 12:09:08','They say look and you shall find\r\n\r\nAnd I have hidden here\r\n\r\nWrapped around my choice of words\r\n\r\nWhich sometimes hides my fears\r\n\r\n \r\n\r\nYet you were given the very map\r\n\r\nThat leads to the treasure of me\r\n\r\nThey say look and you shall find\r\n\r\nYet you won’t find anything\r\n\r\n \r\n\r\nEyes are so wide open\r\n\r\nBut your mind is shut\r\n\r\nYou refuse to use your brain to wonder\r\n\r\nSo all you see is a cloud of dust\r\n\r\n \r\n\r\nTo find me\r\n\r\nYou were given a map\r\n\r\nJust like to a lock\r\n\r\nYou were given a key\r\n\r\n \r\n\r\nBut still I fear\r\n\r\nAnd I know this well\r\n\r\nThat still yet\r\n\r\nYou cannot find me','Look And You Shall Find','','publish','open','open','','look-and-you-shall-find','','','2016-08-10 11:21:25','2016-08-10 16:21:26','',0,'http://www.monicarenata.com/look-and-you-shall-find/',0,'post','',0),(1260,1,'2016-03-31 07:12:06','2016-03-31 12:12:06','They say look and you shall find\r\n\r\nAnd I have hidden here\r\n\r\nWrapped around my choice of words\r\n\r\nWhich sometimes hides my fears\r\n\r\n \r\n\r\nYet you were given the very map\r\n\r\nThat leads to the treasure of me\r\n\r\nThey say look and you shall find\r\n\r\nYet you won’t find anything\r\n\r\n \r\n\r\nEyes are so wide open\r\n\r\nBut your mind is shut\r\n\r\nYou refuse to use your brain to wonder\r\n\r\nSo all you see is a cloud of dust\r\n\r\n \r\n\r\nTo find me\r\n\r\nYou were given a map\r\n\r\nJust like to a lock\r\n\r\nYou were given a key\r\n\r\n \r\n\r\nBut still I fear\r\n\r\nAnd I know this well\r\n\r\nThat still yet\r\n\r\nYou cannot find me','Look And You Shall Find','','inherit','closed','closed','','1259-revision-v1','','','2016-03-31 07:12:06','2016-03-31 12:12:06','',1259,'http://www.monicarenata.com/1259-revision-v1/',0,'revision','',0),(1261,1,'2016-03-31 07:14:07','2016-03-31 12:14:07','Why won’t you let the sun shine on me\r\n\r\nAs it has shined on me so many times before?\r\n\r\nWhy must your turn my white clouds gray\r\n\r\nEach time I walk out my door?\r\n\r\n \r\n\r\n \r\n\r\nTo say love is supposed to be simple\r\n\r\nI find it hard, yet unique\r\n\r\nWhat’s joyous is now a burden\r\n\r\nAnd it is not brought on by me\r\n\r\n \r\n\r\n \r\n\r\nSnatch my words from my lungs\r\n\r\nBefore I can even speak\r\n\r\nI’m speechless by your actions\r\n\r\nAnd now you have me questioning me\r\n\r\n \r\n\r\n \r\n\r\nIs this karma in the nastiest form?\r\n\r\nOr is this how life is supposed to be\r\n\r\nI’m drowning in your thunderstorm\r\n\r\nEach time you steal happiness from me','Let The Sun Shine','','publish','open','open','','let-the-sun-shine','','','2016-03-31 07:15:42','2016-03-31 12:15:42','',0,'http://www.monicarenata.com/let-the-sun-shine/',0,'post','',0),(1262,1,'2016-03-31 07:15:42','2016-03-31 12:15:42','Why won’t you let the sun shine on me\r\n\r\nAs it has shined on me so many times before?\r\n\r\nWhy must your turn my white clouds gray\r\n\r\nEach time I walk out my door?\r\n\r\n \r\n\r\n \r\n\r\nTo say love is supposed to be simple\r\n\r\nI find it hard, yet unique\r\n\r\nWhat’s joyous is now a burden\r\n\r\nAnd it is not brought on by me\r\n\r\n \r\n\r\n \r\n\r\nSnatch my words from my lungs\r\n\r\nBefore I can even speak\r\n\r\nI’m speechless by your actions\r\n\r\nAnd now you have me questioning me\r\n\r\n \r\n\r\n \r\n\r\nIs this karma in the nastiest form?\r\n\r\nOr is this how life is supposed to be\r\n\r\nI’m drowning in your thunderstorm\r\n\r\nEach time you steal happiness from me','Let The Sun Shine','','inherit','closed','closed','','1261-revision-v1','','','2016-03-31 07:15:42','2016-03-31 12:15:42','',1261,'http://www.monicarenata.com/1261-revision-v1/',0,'revision','',0),(1263,1,'2016-03-31 07:37:22','2016-03-31 12:37:22','My time is very precious\r\n\r\nThis I won’t deny\r\n\r\nI give my time to you\r\n\r\nBut you think that is a crime\r\n\r\n \r\n\r\nBecause to you it doesn\'t add up\r\n\r\nBut it adds up to me\r\n\r\nI can see the effect of my lack of time\r\n\r\nIn my endeavors that I seek\r\n\r\n \r\n\r\nMy time is very precious\r\n\r\nThis I won’t deny\r\n\r\nBut I make time for you\r\n\r\nYet you always question why\r\n\r\n \r\n\r\nWhy are you doing this?\r\n\r\nWhy does it make that noise all the time?\r\n\r\nWhy do you entertain others?\r\n\r\nWhy Why Why?\r\n\r\n \r\n\r\nMy time is very precious\r\n\r\nThis I won’t deny\r\n\r\nBut I have goals in life\r\n\r\nAnd they cannot be accomplished with just I\r\n\r\n \r\n\r\nEmails coming in daily\r\n\r\nNotifications sounding through\r\n\r\nI want success for my future\r\n\r\nAnd if I have to choose it won’t be you\r\n\r\n \r\n\r\nBecause my time is very precious\r\n\r\nBy now you should know this is true\r\n\r\nAnd I can’t keep making time\r\n\r\nTo go through the emotional stress you put me through\r\n\r\n \r\n\r\nI have a life; I have goals\r\n\r\nMy life is more than me and you\r\n\r\nAnd I can’t keep making time\r\n\r\nTo go through the stress you put me through','My Time Is Very Precious','','publish','open','open','','my-time-is-very-precious','','','2016-03-31 07:43:32','2016-03-31 12:43:32','',0,'http://www.monicarenata.com/my-time-is-very-precious/',0,'post','',0),(1264,1,'2016-03-31 07:43:32','2016-03-31 12:43:32','My time is very precious\r\n\r\nThis I won’t deny\r\n\r\nI give my time to you\r\n\r\nBut you think that is a crime\r\n\r\n \r\n\r\nBecause to you it doesn\'t add up\r\n\r\nBut it adds up to me\r\n\r\nI can see the effect of my lack of time\r\n\r\nIn my endeavors that I seek\r\n\r\n \r\n\r\nMy time is very precious\r\n\r\nThis I won’t deny\r\n\r\nBut I make time for you\r\n\r\nYet you always question why\r\n\r\n \r\n\r\nWhy are you doing this?\r\n\r\nWhy does it make that noise all the time?\r\n\r\nWhy do you entertain others?\r\n\r\nWhy Why Why?\r\n\r\n \r\n\r\nMy time is very precious\r\n\r\nThis I won’t deny\r\n\r\nBut I have goals in life\r\n\r\nAnd they cannot be accomplished with just I\r\n\r\n \r\n\r\nEmails coming in daily\r\n\r\nNotifications sounding through\r\n\r\nI want success for my future\r\n\r\nAnd if I have to choose it won’t be you\r\n\r\n \r\n\r\nBecause my time is very precious\r\n\r\nBy now you should know this is true\r\n\r\nAnd I can’t keep making time\r\n\r\nTo go through the emotional stress you put me through\r\n\r\n \r\n\r\nI have a life; I have goals\r\n\r\nMy life is more than me and you\r\n\r\nAnd I can’t keep making time\r\n\r\nTo go through the stress you put me through','My Time Is Very Precious','','inherit','closed','closed','','1263-revision-v1','','','2016-03-31 07:43:32','2016-03-31 12:43:32','',1263,'http://www.monicarenata.com/1263-revision-v1/',0,'revision','',0),(1265,1,'2016-03-31 09:28:40','2016-03-31 14:28:40','You are thirsty\nBut you will not drink\nYou fear what’s in your cup\n\nDying of dehydration\nBut afraid to take a sip from your cup\n\nI assure you it isn’t poison\nYet you will doubt me still\nI swallow all of my confidence as if it were large lethal pills\n\nA thirst that cannot be quenched\nBecause you do not trust me so\n\nYou are thirsty\nBut you will not drink\nI see you wither in front of my eyes\n\nDying of dehydration\nAll because you do not trust I\n\nA cup of water I gave to you\nThis cup of water was my last\nYet you will not take a sip because your trust I do not have','Trust The Cup','','publish','open','open','','trust-the-cup','','','2016-03-31 09:28:40','2016-03-31 14:28:40','',0,'http://www.monicarenata.com/trust-the-cup/',0,'post','',0),(1267,1,'2016-04-04 11:28:22','2016-04-04 16:28:22','<hr />\r\n\r\nYou drain me\r\n\r\nOf the lifeforce that God has given me\r\n\r\nThe essence that makes me smile\r\n\r\nThe embodiment of joy within\r\n\r\nYou drain me\r\n\r\n \r\n\r\nYou rob me of my words\r\n\r\nAnd force silence upon me\r\n\r\nBecause to you what I say doesn’t matter\r\n\r\nAnd what you believe is considered actualities\r\n\r\n \r\n\r\nYou rob me\r\n\r\nOf the joyful spirit I have for years yearned for\r\n\r\nThe beautiful butterfly that finally can fly\r\n\r\nThe jubilant dove on the clouds of serenity\r\n\r\nYou rob me\r\n\r\n \r\n\r\nMy peace\r\n\r\nMy happiness\r\n\r\nShattered\r\n\r\n \r\n\r\nLoyalty questioned daily\r\n\r\nWhen I know what loyalty is\r\n\r\nWhen loyalty is something that I have held close to my heart\r\n\r\nFor so long that it had the ability of crushing my heart\r\n\r\nBecause loyalty enabled me to stay loyal so long\r\n\r\nTo the wrong one\r\n\r\n \r\n\r\nTrust is easy to lose\r\n\r\nEspecially when you break trust to disprove loyalty\r\n\r\nLoyalty which is fabricated in your mind\r\n\r\nBut means everything to me\r\n\r\nTrust is easy to lose\r\n\r\n \r\n\r\nYou drain me\r\n\r\nYou rob me\r\n\r\nI am at a lost\r\n\r\nI don’t know what to do\r\n\r\n \r\n\r\nTo stay whole would be ideal\r\n\r\nBut then again to stay here means I shall become a chiseled statue of my former self\r\n\r\nStill happy\r\n\r\nBut not as happy as I was before\r\n\r\nYet can something that isn’t whole\r\n\r\nBe beautiful to you?\r\n\r\n \r\n\r\nActions speak louder than words\r\n\r\nAnd loyalty is hard to find\r\n\r\nInsecurity can lead to trust being easily lost\r\n\r\nAnd if it is lost, why try?','Trust: Loyalty Is Hard To Find','','publish','open','open','','trust-loyalty-is-hard-to-find','','','2016-04-04 11:40:16','2016-04-04 16:40:16','',0,'http://www.monicarenata.com/trust-loyalty-is-hard-to-find/',0,'post','',0),(1268,1,'2016-04-04 11:39:46','2016-04-04 16:39:46','<hr />\r\n\r\nYou drain me\r\n\r\nOf the lifeforce that God has given me\r\n\r\nThe essence that makes me smile\r\n\r\nThe embodiment of joy within\r\n\r\nYou drain me\r\n\r\n \r\n\r\nYou rob me of my words\r\n\r\nAnd force silence upon me\r\n\r\nBecause to you what I say doesn’t matter\r\n\r\nAnd what you believe is considered actualities\r\n\r\n \r\n\r\nYou rob me\r\n\r\nOf the joyful spirit I have for years yearned for\r\n\r\nThe beautiful butterfly that finally can fly\r\n\r\nThe jubilant dove on the clouds of serenity\r\n\r\nYou rob me\r\n\r\n \r\n\r\nMy peace\r\n\r\nMy happiness\r\n\r\nShattered\r\n\r\n \r\n\r\nLoyalty questioned daily\r\n\r\nWhen I know what loyalty is\r\n\r\nWhen loyalty is something that I have held close to my heart\r\n\r\nFor so long that it had the ability of crushing my heart\r\n\r\nBecause loyalty enabled me to stay loyal so long\r\n\r\nTo the wrong one\r\n\r\n \r\n\r\nTrust is easy to lose\r\n\r\nEspecially when you break trust to disprove loyalty\r\n\r\nLoyalty which is fabricated in your mind\r\n\r\nBut means everything to me\r\n\r\nTrust is easy to lose\r\n\r\n \r\n\r\nYou drain me\r\n\r\nYou rob me\r\n\r\nI am at a lost\r\n\r\nI don’t know what to do\r\n\r\n \r\n\r\nTo stay whole would be ideal\r\n\r\nBut then again to stay here means I shall become a chiseled statue of my former self\r\n\r\nStill happy\r\n\r\nBut not as happy as I was before\r\n\r\nYet can something that isn’t whole\r\n\r\nBe beautiful to you?\r\n\r\n \r\n\r\nActions speak louder than words\r\n\r\nAnd loyalty is hard to find\r\n\r\nInsecurity can lead to trust being easily lost\r\n\r\nAnd if it is lost, why try?','Trust: Loyalty Is Hard To Find','','inherit','closed','closed','','1267-autosave-v1','','','2016-04-04 11:39:46','2016-04-04 16:39:46','',1267,'http://www.monicarenata.com/1267-autosave-v1/',0,'revision','',0),(1269,1,'2016-04-04 11:40:16','2016-04-04 16:40:16','<hr />\r\n\r\nYou drain me\r\n\r\nOf the lifeforce that God has given me\r\n\r\nThe essence that makes me smile\r\n\r\nThe embodiment of joy within\r\n\r\nYou drain me\r\n\r\n \r\n\r\nYou rob me of my words\r\n\r\nAnd force silence upon me\r\n\r\nBecause to you what I say doesn’t matter\r\n\r\nAnd what you believe is considered actualities\r\n\r\n \r\n\r\nYou rob me\r\n\r\nOf the joyful spirit I have for years yearned for\r\n\r\nThe beautiful butterfly that finally can fly\r\n\r\nThe jubilant dove on the clouds of serenity\r\n\r\nYou rob me\r\n\r\n \r\n\r\nMy peace\r\n\r\nMy happiness\r\n\r\nShattered\r\n\r\n \r\n\r\nLoyalty questioned daily\r\n\r\nWhen I know what loyalty is\r\n\r\nWhen loyalty is something that I have held close to my heart\r\n\r\nFor so long that it had the ability of crushing my heart\r\n\r\nBecause loyalty enabled me to stay loyal so long\r\n\r\nTo the wrong one\r\n\r\n \r\n\r\nTrust is easy to lose\r\n\r\nEspecially when you break trust to disprove loyalty\r\n\r\nLoyalty which is fabricated in your mind\r\n\r\nBut means everything to me\r\n\r\nTrust is easy to lose\r\n\r\n \r\n\r\nYou drain me\r\n\r\nYou rob me\r\n\r\nI am at a lost\r\n\r\nI don’t know what to do\r\n\r\n \r\n\r\nTo stay whole would be ideal\r\n\r\nBut then again to stay here means I shall become a chiseled statue of my former self\r\n\r\nStill happy\r\n\r\nBut not as happy as I was before\r\n\r\nYet can something that isn’t whole\r\n\r\nBe beautiful to you?\r\n\r\n \r\n\r\nActions speak louder than words\r\n\r\nAnd loyalty is hard to find\r\n\r\nInsecurity can lead to trust being easily lost\r\n\r\nAnd if it is lost, why try?','Trust: Loyalty Is Hard To Find','','inherit','closed','closed','','1267-revision-v1','','','2016-04-04 11:40:16','2016-04-04 16:40:16','',1267,'http://www.monicarenata.com/1267-revision-v1/',0,'revision','',0),(1270,1,'2016-04-04 11:41:40','2016-04-04 16:41:40','On Wednesdays I get question\r\n\r\nAs if I have to pass a test\r\n\r\nI used to get so nervous\r\n\r\nBut now I’m quite relaxed\r\n\r\n \r\n\r\nBecause the questions are so mind-numbing\r\n\r\nAnd they really don’t mean a thing\r\n\r\nThey stem from someone’s insecurities\r\n\r\nAnd the answer exist in their head\r\n\r\n \r\n\r\nOn Wednesdays I get questions\r\n\r\nI now realize that each time my answers will be incorrect\r\n\r\nSo what’s the point in trying to pass\r\n\r\nA mindless unpassable test','Wednesday\'s Test','','inherit','closed','closed','','1266-revision-v1','','','2016-04-04 11:41:40','2016-04-04 16:41:40','',1266,'http://www.monicarenata.com/1266-revision-v1/',0,'revision','',0),(1272,1,'2016-04-05 14:51:54','2016-04-05 19:51:54','Take me to a place of peace\r\n\r\nThe place I\'ve always known\r\n\r\nThe place where grass is always green\r\n\r\nAnd my caramel skin glows\r\n\r\n \r\n\r\nA place where I am happy\r\n\r\nWhere I can feel the air touch my cheeks\r\n\r\nThe playground is the place\r\n\r\nThat I always yearn to be\r\n\r\n \r\n\r\nBut at times I want to be accompanied\r\n\r\nBy someone who is my friend\r\n\r\nTo hold my hand through my adventures\r\n\r\nAnd gaze upon the land\r\n\r\n \r\n\r\nSo I ask you to the playground\r\n\r\nAnd you gleefully agree\r\n\r\nFor you said playgrounds are wonderful places\r\n\r\nAnd you can\'t wait to go there with me\r\n\r\n \r\n\r\nUnderneath the amber glaze of the sun\r\n\r\nI smile and then you smile\r\n\r\nI am in my happy place\r\n\r\nAs I watch the lake move like the Nile\r\n\r\n \r\n\r\nBut I can tell you are uneasy\r\n\r\nAs your hand takes a slide\r\n\r\nGripping me closer with each second\r\n\r\nSuffocating me with your mouth\r\n\r\n \r\n\r\nA peaceful place of tranquility\r\n\r\nIs quickly becoming a scene\r\n\r\nFor I loved the visit the playground\r\n\r\nBut your playground happens to be me\r\n\r\n \r\n\r\nPerspiration from your pursuit\r\n\r\nI am totally out of breath\r\n\r\nI just stop fighting you\r\n\r\nFor the fight in me has left\r\n\r\n \r\n\r\nA playground is suppose to be peaceful\r\n\r\nI guess today it wasn\'t meant to be\r\n\r\nFor your playground is my body\r\n\r\nAnd happiness you robbed from me','PlayGround','','inherit','closed','closed','','1271-revision-v1','','','2016-04-05 14:51:54','2016-04-05 19:51:54','',1271,'http://www.monicarenata.com/1271-revision-v1/',0,'revision','',0),(1273,1,'2016-04-05 15:00:03','2016-04-05 20:00:03','I wish you didn\'t call me beautiful\r\n\r\nBecause that is not what I want you to see\r\n\r\nI want you to look further\r\n\r\nAnd recognize every piece of me\r\n\r\n \r\n\r\nLook beyond my flesh\r\n\r\nLook beyond my brown eyes\r\n\r\nTry to find out what makes me tick\r\n\r\nRealize that words make me paralyzed\r\n\r\nAnd speak to make me stay still\r\n\r\n \r\n\r\nI wish you saw more than the surface level\r\n\r\nYou know, the things that are obvious to know\r\n\r\nBecause even though I seem complicated\r\n\r\nI\'m not at all hard to get to know\r\n\r\n \r\n\r\nLook beyond what you see in front of you\r\n\r\nLook beyond the words I write on this page\r\n\r\nTry to read between the lines\r\n\r\nAnd speak up\r\n\r\nTo make me stay\r\n\r\n \r\n\r\nI move freely like a butterfly\r\n\r\nI leave as quick as the wind\r\n\r\nI grow with each second of each minute of each hour\r\n\r\nYet the right words can immobilize me\r\n\r\n \r\n\r\nSpeak to my heart\r\n\r\nSpeak to my mind\r\n\r\nSpeak to peak my curiosity\r\n\r\nFor I wish you really didn\'t call me beautiful\r\n\r\nI wish you could just speak on other things\r\n\r\n \r\n\r\n ','I Wish You Didn\'t Call Me Beautiful','','publish','open','open','','i-wish-you-didnt-call-me-beautiful','','','2016-04-05 15:00:03','2016-04-05 20:00:03','',0,'http://www.monicarenata.com/?p=1273',0,'post','',0),(1274,1,'2016-04-05 15:00:03','2016-04-05 20:00:03','I wish you didn\'t call me beautiful\r\n\r\nBecause that is not what I want you to see\r\n\r\nI want you to look further\r\n\r\nAnd recognize every piece of me\r\n\r\n \r\n\r\nLook beyond my flesh\r\n\r\nLook beyond my brown eyes\r\n\r\nTry to find out what makes me tick\r\n\r\nRealize that words make me paralyzed\r\n\r\nAnd speak to make me stay still\r\n\r\n \r\n\r\nI wish you saw more than the surface level\r\n\r\nYou know, the things that are obvious to know\r\n\r\nBecause even though I seem complicated\r\n\r\nI\'m not at all hard to get to know\r\n\r\n \r\n\r\nLook beyond what you see in front of you\r\n\r\nLook beyond the words I write on this page\r\n\r\nTry to read between the lines\r\n\r\nAnd speak up\r\n\r\nTo make me stay\r\n\r\n \r\n\r\nI move freely like a butterfly\r\n\r\nI leave as quick as the wind\r\n\r\nI grow with each second of each minute of each hour\r\n\r\nYet the right words can immobilize me\r\n\r\n \r\n\r\nSpeak to my heart\r\n\r\nSpeak to my mind\r\n\r\nSpeak to peak my curiosity\r\n\r\nFor I wish you really didn\'t call me beautiful\r\n\r\nI wish you could just speak on other things\r\n\r\n \r\n\r\n ','I Wish You Didn\'t Call Me Beautiful','','inherit','closed','closed','','1273-revision-v1','','','2016-04-05 15:00:03','2016-04-05 20:00:03','',1273,'http://www.monicarenata.com/1273-revision-v1/',0,'revision','',0),(1275,1,'2016-04-07 08:10:44','2016-04-07 13:10:44','Cold\r\n\r\nBlistering\r\n\r\nSilence\r\n\r\n \r\n\r\nAs paint dries on the wall\r\n\r\nAir stale as week old bread\r\n\r\nMy mind is in a fog\r\n\r\n \r\n\r\nTo venture forward\r\n\r\nI must not do\r\n\r\nSo today I sit and wait\r\n\r\n \r\n\r\nFor a new color to unfold before me\r\n\r\nFor within darkness\r\n\r\nI cannot speak','Sitting In a Box','','publish','open','open','','sitting-in-a-box','','','2016-04-07 08:20:12','2016-04-07 13:20:12','',0,'http://www.monicarenata.com/sitting-in-a-box/',0,'post','',0),(1277,1,'2016-04-07 08:20:12','2016-04-07 13:20:12','Cold\r\n\r\nBlistering\r\n\r\nSilence\r\n\r\n \r\n\r\nAs paint dries on the wall\r\n\r\nAir stale as week old bread\r\n\r\nMy mind is in a fog\r\n\r\n \r\n\r\nTo venture forward\r\n\r\nI must not do\r\n\r\nSo today I sit and wait\r\n\r\n \r\n\r\nFor a new color to unfold before me\r\n\r\nFor within darkness\r\n\r\nI cannot speak','Sitting In a Box','','inherit','closed','closed','','1275-revision-v1','','','2016-04-07 08:20:12','2016-04-07 13:20:12','',1275,'http://www.monicarenata.com/1275-revision-v1/',0,'revision','',0),(1278,1,'2016-04-12 08:30:24','2016-04-12 13:30:24','I’m fighting a never-ending battle\r\n\r\nThe battle to be by your side\r\n\r\nYet the one that I am competing with\r\n\r\nDoesn’t even have two eyes\r\n\r\n \r\n\r\nShe grips your arm ever tightly\r\n\r\nShe covers your ears when I try to speak\r\n\r\nShe tells you to question my actions\r\n\r\nShe pushes you away from me\r\n\r\n \r\n\r\nI’m fighting a never-ending battle\r\n\r\nNo matter what I do she is always a step ahead\r\n\r\nThis is getting pretty exhausting\r\n\r\nBut I keep trying again and again\r\n\r\n \r\n\r\nYou place more trust in her\r\n\r\nYou had her in your life far longer than me\r\n\r\nYou cannot easily let her go\r\n\r\nYet you can easily let go of me..\r\n\r\n \r\n\r\nAnd I know this yet I keep fighting\r\n\r\nAnd I shall hide every tear on my cheek\r\n\r\nBut I know this battle can’t be won\r\n\r\nAnd that will forever baffle me\r\n\r\n \r\n\r\nI’m fighting a never-ending battle\r\n\r\nThe battle to be by your side\r\n\r\nYet the one that I am competing with\r\n\r\nHas won more battles than I','Battling Miss T','','publish','open','open','','battling-miss-t','','','2016-04-12 08:33:55','2016-04-12 13:33:55','',0,'http://www.monicarenata.com/battling-miss-t/',0,'post','',1),(1279,1,'2016-04-12 08:33:55','2016-04-12 13:33:55','I’m fighting a never-ending battle\r\n\r\nThe battle to be by your side\r\n\r\nYet the one that I am competing with\r\n\r\nDoesn’t even have two eyes\r\n\r\n \r\n\r\nShe grips your arm ever tightly\r\n\r\nShe covers your ears when I try to speak\r\n\r\nShe tells you to question my actions\r\n\r\nShe pushes you away from me\r\n\r\n \r\n\r\nI’m fighting a never-ending battle\r\n\r\nNo matter what I do she is always a step ahead\r\n\r\nThis is getting pretty exhausting\r\n\r\nBut I keep trying again and again\r\n\r\n \r\n\r\nYou place more trust in her\r\n\r\nYou had her in your life far longer than me\r\n\r\nYou cannot easily let her go\r\n\r\nYet you can easily let go of me..\r\n\r\n \r\n\r\nAnd I know this yet I keep fighting\r\n\r\nAnd I shall hide every tear on my cheek\r\n\r\nBut I know this battle can’t be won\r\n\r\nAnd that will forever baffle me\r\n\r\n \r\n\r\nI’m fighting a never-ending battle\r\n\r\nThe battle to be by your side\r\n\r\nYet the one that I am competing with\r\n\r\nHas won more battles than I','Battling Miss T','','inherit','closed','closed','','1278-revision-v1','','','2016-04-12 08:33:55','2016-04-12 13:33:55','',1278,'http://www.monicarenata.com/1278-revision-v1/',0,'revision','',0),(1280,1,'2016-04-14 12:30:40','2016-04-14 17:30:40','Have you ever been afraid to be happy?\nSo afraid to crack open a smile\nBecause the times when you were once happy\nSomeone turned that smile into a frown?\n\nHave you ever been afraid to be around someone\nWho gives you butterflies and makes you sing?\nHave you ever been afraid to fully love?\nI know that person was once me\n\nTrapped in the past\nBut walking into the future\nAfraid to just LET GO\n\nHolding on to memories that scarred you\nConstantly reopening those same wounds\nInstead of letting them heal on their own\n\nHave you ever been afraid to be happy?\nSo afraid that you questioned why you smile?\nBecause in the past happiness didn\'t last forever\nAnd you always ended up with tears and frowns\n\nHave you ever been afraid to be around someone\nWho you can\'t go a day without thinking about?\nStop being like the old me\nBecause sooner or later you will miss out\n\n"Stop being afraid to fully love someone, for one day that someone may be gone." -Monica Renata','Have You Ever Been Afraid To Be Happy?','','publish','open','open','','have-you-ever-been-afraid-to-be-happy','','','2016-04-14 12:30:40','2016-04-14 17:30:40','',0,'http://www.monicarenata.com/have-you-ever-been-afraid-to-be-happy/',0,'post','',0),(1281,1,'2016-04-26 12:51:45','2016-04-26 17:51:45','Isn\'t it funny\nHow the tables turn\nOnce you were feasting\nNow your hunger pains roar\n\nIsn\'t it funny\nHow you made me cry\nBut now my teardrops have turned to rain\nIn your thundering skies\n\nI loved you\nI really did\nI thought we had forever\nBut you made time stand still\n\nBut isn\'t it funny\nWhere I sit now\nI am still a Queen\nAnd I still wear my crown\n\nBut in the darkness\nYou will always be\nSight has been taken\nYou will no longer see me\n\nIsn\'t it funny\nHow I don\'t care\nHow love for you is gone\nBecause I value my respect\n\nIsn\'t it funny\nHow you tried to play me like a fool\nAnd now you are the one\nLooking sad and confused\n\nTables turn\nCircles come full\nLife always balances out\nLife always goes on\n\nSo do onto others as you would want done to you\nAnd watch the words in which you spew\nMake sure you do not spill malevolence or hate\nFrom those lips which can be sweet to taste\n\nMake sure you use your hands for creation of good\nInstead of tearing down God\'s gifts and making them weak\nUse your heart once more instead of your eyes\nSee beyond the flesh with your inner eye\n\nRealize that there is time to repent\nAnd your past is your past\nSo you must move on from it\n\nLeave me in the past where I belong\nI forgave you once\nAnd I need to no more\n\nYour seat on the side of me has been filled\nThe king wears his crown\nSo to it you must kneel\n\nRespect what I have\nFor you now it is too late\nBut isn\'t it funny\nHow you hunger for your old plate\n\n"It is too late to dwell on a past relationship that you ruined. Never rip away someone\'s happiness and try to reenter their life when you see that they have finally put themselves back together. For by then, your spot may have already been taken. " -Monica Renata','Isn\'t It Funny: Tables Turned','','publish','open','open','','isnt-it-funny-tables-turned','','','2016-04-26 12:51:45','2016-04-26 17:51:45','',0,'http://www.monicarenata.com/isnt-it-funny-tables-turned/',0,'post','',0),(1282,1,'2016-05-31 09:08:25','2016-05-31 14:08:25','I dug you two deep rivers\r\n\r\nWith the strength of my two hands\r\n\r\nTore through the earth with my fingers\r\n\r\nGathering particles under my nails\r\n\r\n \r\n\r\nI stood over my creation\r\n\r\nAnd then you looked at it in disgust\r\n\r\nI guess nothing is ever good enough\r\n\r\nSoon you see my anguish and my hurt\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nWhich I begin to fill with my tears\r\n\r\nTrickling down from those brown eyes you claimed to love\r\n\r\nAnd still you do not care\r\n\r\n \r\n\r\nFor in life no matter what\r\n\r\nYou can always be you\r\n\r\nBe happy with your accomplishments\r\n\r\nBecause you can’t expect others to\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nBut I should have dug them for myself\r\n\r\nFor now my world is flooding\r\n\r\nBecause of the calamity you left','Unrequited Misfortune','','publish','open','open','','unrequited-misfortune','','','2016-05-31 09:18:51','2016-05-31 14:18:51','',0,'http://www.monicarenata.com/unrequited-misfortune/',0,'post','',0),(1288,1,'2016-06-09 08:03:35','2016-06-09 13:03:35','The key doesn’t fit\r\n\r\nYet I try anyways\r\n\r\nHolding it in my hand tightly\r\n\r\nTurning with all my strength\r\n\r\n \r\n\r\nI want to reach the contents\r\n\r\nI want to reach what is inside\r\n\r\nI want you to let me in\r\n\r\nI want you to let the hurt die\r\n\r\n \r\n\r\nThe key I have doesn’t fit\r\n\r\nEven though everything else seems to be a match\r\n\r\nOff by a single groove\r\n\r\nThe one groove I’ll never have\r\n\r\n \r\n\r\nI can’t give you what you want\r\n\r\nI can’t make you see what I see\r\n\r\nI can’t produce the key of trust\r\n\r\nFor that key resides in you, and not me\r\n\r\n \r\n\r\n \r\n\r\n<em>“Sometimes no matter what you do, you cannot get someone to trust you if they are not willing to trust anyone at all. The truth is, trust may be the key to their heart but that key is held within themselves and they refuse to entrust others with it and by doing so they will never let anyone truly in.” –Monica Renata </em>','The Key Doesn\'t Fit','','publish','open','open','','the-key-doesnt-fit','','','2016-06-09 08:09:52','2016-06-09 13:09:52','',0,'http://www.monicarenata.com/the-key-doesnt-fit/',0,'post','',0),(1284,1,'2016-05-31 09:18:35','2016-05-31 14:18:35','I dug you two deep rivers\r\n\r\nWith the strength of my two hands\r\n\r\nTore through the earth with my fingers\r\n\r\nGathering particles under my nails\r\n\r\n \r\n\r\nI stood over my creation\r\n\r\nAnd then you looked at it in disgust\r\n\r\nI guess nothing is ever good enough\r\n\r\nSoon you see my anguish and my hurt\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nWhich I begin to fill with my tears\r\n\r\nTrickling down from those brown eyes you claimed to love\r\n\r\nAnd still you do not care\r\n\r\n \r\n\r\nFor in life no matter what\r\n\r\nYou can always be you\r\n\r\nBe happy with your accomplishments\r\n\r\nBecause you can’t expect others to\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nBut I should have dug them for myself\r\n\r\nFor now my world is flooding\r\n\r\nBecause of the calamity you left','Unrequited Misfortune','','inherit','closed','closed','','1282-autosave-v1','','','2016-05-31 09:18:35','2016-05-31 14:18:35','',1282,'http://www.monicarenata.com/1282-autosave-v1/',0,'revision','',0),(1285,1,'2016-05-31 09:18:51','2016-05-31 14:18:51','I dug you two deep rivers\r\n\r\nWith the strength of my two hands\r\n\r\nTore through the earth with my fingers\r\n\r\nGathering particles under my nails\r\n\r\n \r\n\r\nI stood over my creation\r\n\r\nAnd then you looked at it in disgust\r\n\r\nI guess nothing is ever good enough\r\n\r\nSoon you see my anguish and my hurt\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nWhich I begin to fill with my tears\r\n\r\nTrickling down from those brown eyes you claimed to love\r\n\r\nAnd still you do not care\r\n\r\n \r\n\r\nFor in life no matter what\r\n\r\nYou can always be you\r\n\r\nBe happy with your accomplishments\r\n\r\nBecause you can’t expect others to\r\n\r\n \r\n\r\nI dug you two deep rivers\r\n\r\nBut I should have dug them for myself\r\n\r\nFor now my world is flooding\r\n\r\nBecause of the calamity you left','Unrequited Misfortune','','inherit','closed','closed','','1282-revision-v1','','','2016-05-31 09:18:51','2016-05-31 14:18:51','',1282,'http://www.monicarenata.com/1282-revision-v1/',0,'revision','',0),(1286,1,'2016-06-07 01:26:28','2016-06-07 06:26:28','Closed I keep it around my neck\r\nNever to reveal what\'s inside\r\nFor if I reveal what\'s in that locket\r\nTrue feelings will multiply\r\n\r\nBut in order to maintain my sanity\r\nI will always keep it locked\r\nFor I rather those feelings be hidden away\r\nThan to make me do things that I should not\r\n\r\nClosed I keep it around my neck\r\nSo many memories contained\r\nI close my eyes sometimes and see them\r\nBut I wish they would go away\r\n\r\nFor what\'s the point in dwelling\r\nOn what shall never be\r\nMemories locked in my locket\r\nMemories of you and of me\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://www.heartsmith.com/blog/wp-content/uploads/2012/05/IMG_20120204_22626414455-1.jpg\" alt=\"\" />','Locket','','publish','open','open','','locket','','','2016-06-07 01:26:28','2016-06-07 06:26:28','',0,'http://www.monicarenata.com/?p=1286',0,'post','',0),(1287,1,'2016-06-07 01:26:07','2016-06-07 06:26:07','Closed I keep it around my neck\r\nNever to reveal what\'s inside\r\nFor if I reveal what\'s in that locket\r\nTrue feelings will multiply\r\n\r\nBut in order to maintain my sanity\r\nI will always keep it locked\r\nFor I rather those feelings be hidden away\r\nThan to make me do things that I should not\r\n\r\nClosed I keep it around my neck\r\nSo many memories contained\r\nI close my eyes sometimes and see them\r\nBut I wish they would go away\r\n\r\nFor what\'s the point in dwelling\r\nOn what shall never be\r\nMemories locked in my locket\r\nMemories of you and of me\r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://www.heartsmith.com/blog/wp-content/uploads/2012/05/IMG_20120204_22626414455-1.jpg\" alt=\"\" />','Locket','','inherit','closed','closed','','1286-revision-v1','','','2016-06-07 01:26:07','2016-06-07 06:26:07','',1286,'http://www.monicarenata.com/1286-revision-v1/',0,'revision','',0),(1294,1,'2016-06-17 10:47:10','2016-06-17 15:47:10','Full to the top\nTo the very rim\nCan be warm and sometimes cold\n\nEuphoric taste\nAlmost exotic\nSun-kissed skin that never gets old\n\nTo many you represent evil\nBut to me you are the light\nBlack is the color of my savior\nFrom black comes all life\n\nStrong like my coffee every morning\nSweet like the chocolate I love to taste\nBlack is beautiful darling\nI wish others felt the same\n\n<img src=\"http://grandpasart.com/images/dayonewomen.jpg\" width=\"314\" height=\"316\" alt=\"dayonewomen.jpg\" />','Black','','publish','open','open','','black','','','2016-06-17 10:47:10','2016-06-17 15:47:10','',0,'http://www.monicarenata.com/black/',0,'post','',0),(1290,1,'2016-06-09 08:09:52','2016-06-09 13:09:52','The key doesn’t fit\r\n\r\nYet I try anyways\r\n\r\nHolding it in my hand tightly\r\n\r\nTurning with all my strength\r\n\r\n \r\n\r\nI want to reach the contents\r\n\r\nI want to reach what is inside\r\n\r\nI want you to let me in\r\n\r\nI want you to let the hurt die\r\n\r\n \r\n\r\nThe key I have doesn’t fit\r\n\r\nEven though everything else seems to be a match\r\n\r\nOff by a single groove\r\n\r\nThe one groove I’ll never have\r\n\r\n \r\n\r\nI can’t give you what you want\r\n\r\nI can’t make you see what I see\r\n\r\nI can’t produce the key of trust\r\n\r\nFor that key resides in you, and not me\r\n\r\n \r\n\r\n \r\n\r\n<em>“Sometimes no matter what you do, you cannot get someone to trust you if they are not willing to trust anyone at all. The truth is, trust may be the key to their heart but that key is held within themselves and they refuse to entrust others with it and by doing so they will never let anyone truly in.” –Monica Renata </em>','The Key Doesn\'t Fit','','inherit','closed','closed','','1288-revision-v1','','','2016-06-09 08:09:52','2016-06-09 13:09:52','',1288,'http://www.monicarenata.com/1288-revision-v1/',0,'revision','',0),(1291,1,'2016-06-10 08:58:47','2016-06-10 13:58:47','I\'m afraid to hold your hand\nI\'m afraid to feel your touch\nFor I might be reminded of how I miss you so much\n\nI\'m afraid to hear your voice\nI\'m afraid to pick up the phone\nFor your voice warms me up but right now I wish to be cold\n\nI\'m terrified of encountering any beautiful essence of you\nI dread the day our paths cross\nYet I do not hate you\n\nIt is just so disappoint to everyone\nPerhaps even for you and for me\nI really, really like you\nBut I don\'t think you\'re meant for me','Not Meant for Me','','publish','open','open','','not-meant-for-me','','','2016-06-10 08:58:47','2016-06-10 13:58:47','',0,'http://www.monicarenata.com/not-meant-for-me/',0,'post','',0),(1292,1,'2016-06-10 13:18:36','2016-06-10 18:18:36','You\'ll never know\nIf you did hurt me\n\nYou\'ll never know\nIf you made me cry\n\nYou\'ll never know\nWhat my thoughts contained\n\nYou will never know\nThe echo of my soul\'s cry\n\nFor just like dirt in the forest\nYou had me at your feet\n\nBut the rivers made from your actions\nCaused sediment to leave from around your feet\n\nYou\'ll look at me\nAnd see nothing\n\nYou\'ll hear me\nAnd you won\'t hear a sound\n\nYou\'ll see me alive\nBut I am dead\n\nYou have what you wanted now\n\nBut you\'ll never if you did hurt me\nYou\'ll never know if you made me cry\nYou\'ll never know what my thoughts contained\nYou\'ll never hear the desolation of my soul\'s cry\n\nYou\'ll look at me and see nothing\nYou will hear me but won\'t hear a sound\nFor I am alive, but to you I am dead\nYou have what you wanted now\n\nFated Dissolution\nA separation that puts me at peace','Fated Dissolution','','publish','open','open','','fated-dissolution','','','2016-06-10 13:18:36','2016-06-10 18:18:36','',0,'http://www.monicarenata.com/fated-dissolution/',0,'post','',0),(1293,1,'2016-06-10 13:33:43','2016-06-10 18:33:43','If you knew\nHow my heart rumbled\nEvery time you were near\n\nIf you knew\nHow your scent\nHad me wish I was always near\n\nIf you knew\nHow your touch\nRadiated through my body even after you were gone\n\nIf you knew these things\nthen maybe you wouldn\'t have questioned the extent of my love\n\nIf you knew\nHow much I prayed\nFor progression in all you do\n\nIf you knew\nHow I smiled\nEvery time I spoke of you\n\nIf you knew\nHow just being around you\nMade my whole world at peace\n\nIf only you knew\nThat you were my shelter from the cruel world we see\n\nIf you knew\nHow I felt\nWhen my shelter no longer hid me from the storm\n\nIf you knew\nHow I doubted\nWhen i realized my prison was my home\n\nIf you knew\nHow much I wanted to stay\nAnd how painful it is for me to leave\n\nIf you knew these very few things\nYou would know the truest of me\n\nHowever my candor wasn\'t enough\nSo now it is time to desert me','Unspoken Candor','','publish','open','open','','unspoken-candor','','','2016-06-10 13:33:43','2016-06-10 18:33:43','',0,'http://www.monicarenata.com/unspoken-candor/',0,'post','',0),(1295,1,'2016-06-22 09:32:30','2016-06-22 14:32:30','Each day the sun rose\nAnd on the same day it did set\nMy memories grow old\nBut these memories I shall not forget\n\nTo have a foot in purgatory\nBut the other in heaven\nI don\'t want to give up\n\nBut I must give up in order to win\n\nEach day the sun rose\nAnd I hoped the day would be different\nAnd on the same day it did set\nBut nothing was at all different\n\nTo battle with emotions\nTo stay or to leave\nI don\'t want to give up\nBut my sadness must be relieved\n\nEach day is always the same\nEach night it doesn\'t get better\nI\'m persecuted for actions\nIn which I have partaken in never\n\nTo put up with this affliction\nTo hide my sorrow under a sleeve\nI really wanted to stay\nBut I think I might have to leave\n\n<em>"Sometimes no matter how hard you try, things just won\'t work out. Some problems can only be fixed by the person who has them." -<strong>Monica Renata</strong></em>','The Decision: Should I Stay or Should I Leave','','publish','open','open','','the-decision-should-i-stay-or-should-i-leave','','','2016-06-22 09:32:30','2016-06-22 14:32:30','',0,'http://www.monicarenata.com/the-decision-should-i-stay-or-should-i-leave/',0,'post','',0),(1296,1,'2016-06-22 09:47:12','2016-06-22 14:47:12','I hope you never lose that smile\nThat smile I so dearly love\n\nI hope your life is full of happiness\nAnd sunny skies are always above\n\nI hope you find that love\nThat I wish for you to find\n\nI hope you will forever forget\nThe times I made you frown\n\nFor in life there are many things\nThings that are good and things that are bad\nBut what upset me most of all\nIs that it was I who made you sad\n\nAnd to see that frown slowly move\nInto a stale beautiful face\nYour happiness is important to me\nAnd something I hope to never erase\n\nSo I hope you never lose your smile\nI hope happiness shines down on you daily\n\nI hope you find all the love you want in life\nI hope you shall never forget me\n\nFor I wanted the best\nAnd now I still very well do\n\nI hope you find what you are looking for\nAnd I hope that I do too','I Hope You Never Lose That Smile','','publish','open','open','','i-hope-you-never-lose-that-smile','','','2016-06-22 09:47:12','2016-06-22 14:47:12','',0,'http://www.monicarenata.com/i-hope-you-never-lose-that-smile/',0,'post','',0),(1297,1,'2016-06-24 07:32:23','2016-06-24 12:32:23','The pain was overwhelming\nLike hot tea burning flesh\n\n<blockquote>Toxic like poison\n</blockquote> <blockquote>Venom from the serpent\'s nest\n\n</blockquote>\nAs cute as a baby bear\n\nBut ferocious as an adult\n\n<blockquote>\n</blockquote> <blockquote>Memories both good and bad\n\n</blockquote> <blockquote>Unfold when I think of us\n\n</blockquote> <blockquote><blockquote>\n</blockquote></blockquote>Green light, Yellow light, Red light\nThe world comes to a stop\n\n<blockquote>Pain overlaps pleasure\n</blockquote> <blockquote>And there is only one way out\n\n</blockquote>Once upon a time\nBut no happily ever after\n\n<blockquote></blockquote> <blockquote>Of all the good in life remember\n</blockquote> <blockquote>That nothing lasts forever\n</blockquote>','Pernicious Recollection','','publish','open','open','','pernicious-recollection','','','2016-06-24 07:32:23','2016-06-24 12:32:23','',0,'http://www.monicarenata.com/pernicious-recollection/',0,'post','',0),(1322,1,'2016-07-26 09:04:16','2016-07-26 14:04:16','If I gave you 88 keys\nAs we stand alone in a room\nYou would play me softly\nTil sweat perspires from you\n\nIf 52 of those keys were the keys to happiness\nAnd 36 were the keys to disdain\nYou would play one and not the other\nAnd then try to alternate\n\nTease me and then spoil me\nShower me with love\nTouch the keys ever so softly\nThen exert an incredible force\n\nCreate an unforgettable performance\nControl my mind from what I hear\nProduce beautiful sweet music\nMake love to my mind while you caress my ears\n\nMelodies of love\nYou will continue to play and play\nIf I gave you 88 keys\nIt would be my body you would take\n\n<img src=\"http://www.mychristianpsychic.com/wp-content/uploads/2013/12/lovers-piano.jpg\" width=\"412\" height=\"275\" alt=\"lovers-piano.jpg\" />','88 Keys','','publish','open','open','','88-keys','','','2016-07-26 09:04:16','2016-07-26 14:04:16','',0,'http://www.monicarenata.com/88-keys/',0,'post','',0),(1342,1,'2016-08-10 09:05:36','2016-08-10 14:05:36','Shoe strings on my shoes\nButtons on my shirt\nWater on a hot summer day\nSunlight on God\'s green earth\nYou are indispensable and all-important\nThat you are to me\nInvaluable camaraderie\nYou are that friend to me\n\n<img src=\"http://az616578.vo.msecnd.net/files/2016/05/23/635996432757898094-39361363_pinky%20promise.jpg\" width=\"338\" height=\"225\" alt=\"635996432757898094-39361363_pinky%20promise.jpg\" />','Invaluable Camaraderie','','publish','open','open','','invaluable-camaraderie','','','2016-08-10 09:05:36','2016-08-10 14:05:36','',0,'http://www.monicarenata.com/invaluable-camaraderie/',0,'post','',0),(1301,1,'2016-07-10 10:59:58','2016-07-10 15:59:58','','My Books','','publish','closed','closed','','my-books','','','2016-07-10 10:59:58','2016-07-10 15:59:58','',0,'http://www.monicarenata.com/?page_id=1301',0,'page','',0),(1302,1,'2016-07-10 10:59:58','2016-07-10 15:59:58',' ','','','publish','closed','closed','','1302','','','2016-07-10 10:59:58','2016-07-10 15:59:58','',0,'http://www.monicarenata.com/1302/',7,'nav_menu_item','',0),(1303,1,'2016-07-10 10:59:58','2016-07-10 15:59:58','','My Books','','inherit','closed','closed','','1301-revision-v1','','','2016-07-10 10:59:58','2016-07-10 15:59:58','',1301,'http://www.monicarenata.com/1301-revision-v1/',0,'revision','',0),(1304,1,'2016-07-10 11:01:41','2016-07-10 16:01:41','','The Awkward Butterfly','','publish','closed','closed','','the-awkward-butterfly','','','2016-07-10 11:18:36','2016-07-10 16:18:36','',1301,'http://www.monicarenata.com/?page_id=1304',0,'page','',0),(1305,1,'2016-07-10 11:01:41','2016-07-10 16:01:41','','The Awkward Butterfly','','inherit','closed','closed','','1304-revision-v1','','','2016-07-10 11:01:41','2016-07-10 16:01:41','',1304,'http://www.monicarenata.com/1304-revision-v1/',0,'revision','',0),(1306,1,'2016-07-10 11:02:42','2016-07-10 16:02:42','','Keyword: Inner Strength','','publish','closed','closed','','keyword-inner-strength','','','2016-07-10 11:19:25','2016-07-10 16:19:25','',1301,'http://www.monicarenata.com/?page_id=1306',2,'page','',0),(1307,1,'2016-07-10 11:02:42','2016-07-10 16:02:42','','Keyword: Inner Strength','','inherit','closed','closed','','1306-revision-v1','','','2016-07-10 11:02:42','2016-07-10 16:02:42','',1306,'http://www.monicarenata.com/1306-revision-v1/',0,'revision','',0),(1308,1,'2016-07-10 11:03:34','2016-07-10 16:03:34','','Keyword: Love','','publish','closed','closed','','keyword-love','','','2016-07-10 11:20:10','2016-07-10 16:20:10','',1301,'http://www.monicarenata.com/?page_id=1308',3,'page','',0),(1309,1,'2016-07-10 11:03:34','2016-07-10 16:03:34','','Keyword: Love','','inherit','closed','closed','','1308-revision-v1','','','2016-07-10 11:03:34','2016-07-10 16:03:34','',1308,'http://www.monicarenata.com/1308-revision-v1/',0,'revision','',0),(1310,1,'2016-07-11 09:24:42','2016-07-11 14:24:42','I pray you catch me when I fall\nFall from your dear arms\nAs my cold body drops\nFeeling loveless and too far gone\n\nI pray you see my teardrops\nAs they pool around my face\nAnd try not to wipe them away\nBut instead let them stay\n\nSee rose leave from my lips\nTil they turn gray like stone\nSee my eyes shut forever\nFor my hope in love is gone\n\nI pray you catch me when I fall\nFor this time I will fall deep\nSo please be careful with your arms\nAnd promise not to drop me\n\n<img src=\"http://img09.deviantart.net/3107/i/2010/320/c/5/catch_me_if_i_fall_by_amethyst_raindrops-d330axz.jpg\" width=\"309\" height=\"406\" alt=\"catch_me_if_i_fall_by_amethyst_raindrops-d330axz.jpg\" />','I Pray You Catch Me When I Fall','','publish','open','open','','i-pray-you-catch-me-when-i-fall','','','2016-07-11 09:24:42','2016-07-11 14:24:42','',0,'http://www.monicarenata.com/i-pray-you-catch-me-when-i-fall/',0,'post','',0),(1311,1,'2016-07-13 09:15:26','2016-07-13 14:15:26','You bring me to the highest peak\nThen have my life quickly dropping down\nThen round and round I cannot see\nFeet can\'t touch the ground\n\nAir gets trapped in screams\nI feel like I can\'t breath\nThen a calm comes once again\nBut it\'s just a joke it seems\n\nIt\'s all the same\nIt never stops\n\nRound and round and round\n\nMy insides trembling rapidly\nI can hear my hearts thumping sound\n\nYou bring me to the highest peak\nThen have my world tumbling down\nYou give me a taste of heaven\nAnd then hell the next round\n\nI\'m slowly losing my breathe\nI feel like I can\'t breathe\nIt\'s always an emotional rollercoaster\nAgony of asphyxiation is what you do to me\n\n<img src=\"https://hotrfm.files.wordpress.com/2014/08/rollercoaster.jpg\" width=\"264\" height=\"267\" alt=\"rollercoaster.jpg\" />','Agony of Asphyxiation','','publish','open','open','','agony-of-asphyxiation','','','2016-07-13 09:15:26','2016-07-13 14:15:26','',0,'http://www.monicarenata.com/agony-of-asphyxiation/',0,'post','',0),(1312,1,'2016-07-14 13:25:15','2016-07-14 18:25:15','Feel my love\r\n\r\nDrench you like sweat\r\n\r\nOn a hot sunny day\r\n\r\n \r\n\r\nSavor me\r\n\r\nLike cooking\r\n\r\nThat is only cooked on holidays\r\n\r\n \r\n\r\nCaress me\r\n\r\nLike a baby\r\n\r\nThat was freshly born\r\n\r\n \r\n\r\nLove me\r\n\r\nForever and ever\r\n\r\nTil we are both dead and gone\r\n\r\n<img src=\"http://www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg\" alt=\"The-Flip-Side-of-Love.jpg\" width=\"352\" height=\"220\" />','Limitless Love','','publish','open','open','','limitless-love','','','2016-12-09 07:43:04','2016-12-09 13:43:04','',0,'http://www.monicarenata.com/limitless-love/',0,'post','',1),(1314,1,'2016-07-18 00:38:07','2016-07-18 05:38:07','Feel my love\r\n\r\nDrench you like sweat\r\n\r\nOn a hot summary day\r\n\r\n \r\n\r\nSavor me\r\n\r\nLike cooking\r\n\r\nThat is only cooked on holidays\r\n\r\n \r\n\r\nCaress me\r\n\r\nLike a baby\r\n\r\nThat was freshly born\r\n\r\n \r\n\r\nLove me\r\n\r\nForever and ever\r\n\r\nTil we are both dead and gone\r\n\r\n<img src=\"http://www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg\" alt=\"The-Flip-Side-of-Love.jpg\" width=\"352\" height=\"220\" />','Limitless Love','','inherit','closed','closed','','1312-revision-v1','','','2016-07-18 00:38:07','2016-07-18 05:38:07','',1312,'http://www.monicarenata.com/1312-revision-v1/',0,'revision','',0),(1391,1,'2016-12-09 07:43:04','2016-12-09 13:43:04','Feel my love\r\n\r\nDrench you like sweat\r\n\r\nOn a hot sunny day\r\n\r\n \r\n\r\nSavor me\r\n\r\nLike cooking\r\n\r\nThat is only cooked on holidays\r\n\r\n \r\n\r\nCaress me\r\n\r\nLike a baby\r\n\r\nThat was freshly born\r\n\r\n \r\n\r\nLove me\r\n\r\nForever and ever\r\n\r\nTil we are both dead and gone\r\n\r\n<img src=\"http://www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg\" alt=\"The-Flip-Side-of-Love.jpg\" width=\"352\" height=\"220\" />','Limitless Love','','inherit','closed','closed','','1312-revision-v1','','','2016-12-09 07:43:04','2016-12-09 13:43:04','',1312,'http://www.monicarenata.com/1312-revision-v1/',0,'revision','',0),(1316,1,'2016-07-18 08:50:32','2016-07-18 13:50:32','If you knew the way I was feeling\nIf you only knew my thoughts\nThen maybe\nJust maybe\nWe would have never grown apart\n\nIf you knew how much I missed you\nHow I missed your kisses upon my cheeks\nThen maybe\nJust maybe\nYou would finally believe me\n\nTo want and be denied\nTo yearn but never retrieve\nI waited and waited for our love to bloom\nBut it is dying on the branch as we breath\n\nIf you knew how I hurt inside\nIf you only knew how much I didn\'t want to let you go\nThen maybe\nJust maybe\nYou wouldn\'t have pushed me and forced me to go','If You Knew','','publish','open','open','','if-you-knew','','','2016-07-18 08:50:32','2016-07-18 13:50:32','',0,'http://www.monicarenata.com/if-you-knew/',0,'post','',0),(1317,1,'2016-07-20 13:20:59','2016-07-20 18:20:59','<pre>I see you within me\r\n\r\nI see me within you\r\n\r\nHeld tight together\r\n\r\nStuck like glue\r\n\r\n\r\n\r\nTied together like two pieces of rope\r\n\r\nKnotted with such a bond\r\n\r\nA bond that is strengthened as we pull away\r\n\r\nBut remains the same when we are close together\r\n\r\n\r\n\r\nI breathe your air\r\n\r\nYou breathe mines\r\n\r\nCoexisting in the same world\r\n\r\nHoping to make this world ours\r\n\r\n\r\n\r\nWe have chemistry\r\n\r\nWe go together like caramel and chocolate\r\n\r\nWe both lust physically and mentally\r\n\r\n\r\nFor we are both delicious to the body but sweet to the mind\r\n\r\n\r\n\r\nI yearn for the day that I taste the essence of your being\r\n\r\nBreathe in the words you speak that were meant for me\r\n\r\nBecome one\r\n\r\nAnd finally unite\r\n\r\n\r\n\r\nI see you with me\r\n\r\nI see me with you\r\n\r\nTied tightly together\r\n\r\nAnd Stuck Like Glue</pre>','Stuck Like Glue','','publish','open','open','','stuck-like-glue','','','2016-07-21 19:41:36','2016-07-22 00:41:36','',0,'http://www.monicarenata.com/stuck-like-glue/',0,'post','',0),(1318,1,'2016-07-21 19:41:26','2016-07-22 00:41:26','<pre>I see you within me\r\n\r\nI see me within you\r\n\r\nHeld tight together\r\n\r\nStuck like glue\r\n\r\n\r\n\r\nTied together like two pieces of rope\r\n\r\nKnotted with such a bond\r\n\r\nA bond that is strengthened as we pull away\r\n\r\nBut remains the same when we are close together\r\n\r\n\r\n\r\nI breathe your air\r\n\r\nYou breathe mines\r\n\r\nCoexisting in the same world\r\n\r\nHoping to make this world ours\r\n\r\n\r\n\r\nWe have chemistry\r\n\r\nWe go together like caramel and chocolate\r\n\r\nWe both lust physically and mentally\r\n\r\n\r\nFor we are both delicious to the body but sweet to the mind\r\n\r\n\r\n\r\nI yearn for the day that I taste the essence of your being\r\n\r\nBreathe in the words you speak that were meant for me\r\n\r\nBecome one\r\n\r\nAnd finally unite\r\n\r\n\r\n\r\nI see you with me\r\n\r\nI see me with you\r\n\r\nTied tightly together\r\n\r\nAnd Stuck Like Glue</pre>','Stuck Like Glue','','inherit','closed','closed','','1317-autosave-v1','','','2016-07-21 19:41:26','2016-07-22 00:41:26','',1317,'http://www.monicarenata.com/1317-autosave-v1/',0,'revision','',0),(1319,1,'2016-07-21 19:41:36','2016-07-22 00:41:36','<pre>I see you within me\r\n\r\nI see me within you\r\n\r\nHeld tight together\r\n\r\nStuck like glue\r\n\r\n\r\n\r\nTied together like two pieces of rope\r\n\r\nKnotted with such a bond\r\n\r\nA bond that is strengthened as we pull away\r\n\r\nBut remains the same when we are close together\r\n\r\n\r\n\r\nI breathe your air\r\n\r\nYou breathe mines\r\n\r\nCoexisting in the same world\r\n\r\nHoping to make this world ours\r\n\r\n\r\n\r\nWe have chemistry\r\n\r\nWe go together like caramel and chocolate\r\n\r\nWe both lust physically and mentally\r\n\r\n\r\nFor we are both delicious to the body but sweet to the mind\r\n\r\n\r\n\r\nI yearn for the day that I taste the essence of your being\r\n\r\nBreathe in the words you speak that were meant for me\r\n\r\nBecome one\r\n\r\nAnd finally unite\r\n\r\n\r\n\r\nI see you with me\r\n\r\nI see me with you\r\n\r\nTied tightly together\r\n\r\nAnd Stuck Like Glue</pre>','Stuck Like Glue','','inherit','closed','closed','','1317-revision-v1','','','2016-07-21 19:41:36','2016-07-22 00:41:36','',1317,'http://www.monicarenata.com/1317-revision-v1/',0,'revision','',0),(1320,1,'2016-07-25 12:50:03','2016-07-25 17:50:03','In God I trust\nthis is true\nBut my trust has been shattered\nAnd it\'s not because of you\nTo give you a chance\nI really want to\nBut doubt clouds my mind\nAnd hinders you\n\nYou see trust has been given\nFrom me of course\nI was milked of my innocence\nThen discarded like dirt\nTo reap a love that I thought I\'d never have\nTo turn out to be something I never had\n\nSee\nI\'m all f**ked up\n\nI like and then I pull away\nSo afraid of the past and my dumb mistakes\nYou know those memories of the bad\nI\'m scared they might come back\nAnd you will just be the new main character\nand the story\'s the same as the last\n\nLove given and then love taken away\nI have feelings of happiness\nThen feelings of disdain\nI give my all\nAnd still it isn\'t enough\nSo instead of trying\nI consume myself with work\n\nYou see\nIn God I trust\nThis is so true\nBut what I fear is man\nAnd that is you\nYou could abandon me in purgatory\nYou could rob me of my peace\nBut you always say "You should trust me"\n\nBut what good is trust\nTo give to a man\nWhen so many proven themselves unworthy\nOver and Over again\nRobbed me of my joys\nRobbed me of my peace\nThen get upset when I say I only trust God and M-E\n\nBut they aren\'t all to blame\nI made mistakes too\nDisregarded red flags that was as bright as the sky is blue\nI shrugged my shoulders\nI batted my eyes\nI said "Men will be men"\nAnd then when men were men I cried\n\nSee\nI\'m all f**ked up\nAnd that\'s plain to see\nI will always be doubtful\nUntil I finally open up to truly see\nSo sad a journey\nBut hopefully everyone sees\nThis is what happens when one decides to cheat','Trust In Me','','publish','open','open','','trust-in-me','','','2016-07-25 12:50:03','2016-07-25 17:50:03','',0,'http://www.monicarenata.com/trust-in-me/',0,'post','',0),(1321,1,'2016-07-25 13:21:44','2016-07-25 18:21:44','Plant your seed and water it\nWatch your seedling grow\n\nAdmire how it sprouts from soil\nAnd sometimes without rain continues to grow\n\nObserve how tall it gets\nUnderground and over your roof\n\nReaching for the future stars\nBut also cherishing its roots\n\nBloom into the greatness\nThat you were always destined to be\n\nLeave a seed for your future\nAnd once planted tell them of your good deeds\n\nLife is just like plants\nLife continues over and over again\n\nAnd despite the bad things that happen\nLife goes on my friend\n\n<img src=\"http://www.soulseeds.com/wp-content/uploads/2013/05/plant-heart.jpg\" width=\"276\" height=\"276\" alt=\"plant-heart.jpg\" />','Grow','','publish','open','open','','grow','','','2016-07-25 13:21:44','2016-07-25 18:21:44','',0,'http://www.monicarenata.com/grow/',0,'post','',0),(1335,1,'2016-08-08 12:02:45','2016-08-08 17:02:45','Wrong\r\n\r\nYou will always find something wrong\r\n\r\nWhether it is her misplaced hair\r\n\r\nOr the way she double blinks her eyes when she is excited\r\n\r\nSomething will always be wrong\r\n\r\n \r\n\r\n \r\n\r\nShe will make you happy\r\n\r\nShe will make you so happy that you doubt if a greater happiness can exist\r\n\r\nShe will cloak you in love\r\n\r\nStroke your ego\r\n\r\nAnd cultivate your dreams\r\n\r\nBut still\r\n\r\nShe will be wrong\r\n\r\n \r\n\r\n \r\n\r\nSee\r\n\r\nSomething is always wrong\r\n\r\nSomething won\'t add up in your head\r\n\r\nYou will find her fault\r\n\r\nPerhaps it is her zodiac sign\r\n\r\nBecause that sign is so stubborn\r\n\r\nor perhaps it is her race\r\n\r\nBecause those women are so hard\r\n\r\nYou might even blame her age\r\n\r\nFor she is too old to be so dumb\r\n\r\nBut too young to be naive\r\n\r\n \r\n\r\n \r\n\r\nWrong\r\n\r\nYou will always find something wrong\r\n\r\nShe loves you too much\r\n\r\nShe cares about you too much\r\n\r\nShe prays for you too much\r\n\r\nAnd when others look at the bigger picture\r\n\r\nThe only thing she ever did wrong\r\n\r\nWas love you\r\n\r\n \r\n\r\n \r\n\r\nShe tied her happiness into your happiness\r\n\r\nShe smothered you in a love so pure that you didn\'t deserve\r\n\r\nShe stroked your ego and also cultivated your dreams\r\n\r\nHelped push you to be greater than you are today\r\n\r\nAnd no matter the love that left her lips\r\n\r\nOr the warmth that exuded from her heart\r\n\r\nIt wasn\'t enough\r\n\r\n \r\n\r\n \r\n\r\nBecause to you\r\n\r\nShe was wrong\r\n\r\n \r\n\r\n \r\n\r\nPerfection doesn\'t exist\r\n\r\nBut even if it did\r\n\r\nYour sight would neglect that\r\n\r\nHer efforts and tears as she tries to be better\r\n\r\nDoesn\'t phase you because you don\'t care\r\n\r\n \r\n\r\n \r\n\r\nBut in the end\r\n\r\nIt\'s clear\r\n\r\nthat her greatest wrong\r\n\r\nWas giving her love to you\r\n\r\n<img src=\"http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg\" alt=\"walking+alone+in+rain+(2).jpg\" width=\"370\" height=\"253\" />','Wrong','','publish','open','open','','wrong','','','2016-08-08 16:34:55','2016-08-08 21:34:55','',0,'http://www.monicarenata.com/wrong/',0,'post','',0),(1324,1,'2016-07-30 19:15:58','2016-07-31 00:15:58','You don\'t know me anymore\r\n\r\nYou don\'t know me at all\r\n\r\nMy eyes now shine different\r\n\r\nMy smile is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nAll my happiness has been stripped\r\n\r\nI am a hallow being\r\n\r\nThe old me will be missed\r\n\r\n \r\n\r\nMy eyes lost their glow\r\n\r\nI have finally lost my charm\r\n\r\nI can no longer smile the same\r\n\r\nThe old me is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nYou don\'t me at all\r\n\r\nFor you killed the old me\r\n\r\nAnd the old me no longer lives on\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','publish','open','open','','you-dont-know-me','','','2016-07-30 19:15:58','2016-07-31 00:15:58','',0,'http://www.monicarenata.com/?p=1324',0,'post','',0),(1330,1,'2016-07-30 19:11:23','2016-07-31 00:11:23','You don\'t know me anymore\r\n\r\nYou don\'t know me at all\r\n\r\nMy eyes now shine different\r\n\r\nMy smile is long gone\r\n\r\n\r\nYou don\'t know me anymore\r\n\r\nAll my happiness has been stripped\r\n\r\nI am a hallow being\r\n\r\nThe old me will be missed\r\n\r\n\r\nMy eyes lost their glow\r\n\r\nI have finally lost my charm\r\n\r\nI can no longer smile the same\r\n\r\nThe old me is long gone\r\n\r\n\r\nYou don\'t know me anymore\r\n\r\nYou don\'t me at all\r\n\r\nFor you killed the old me\r\n\r\nAnd the old me no longer lives on\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:11:23','2016-07-31 00:11:23','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1325,1,'2016-07-30 19:05:49','2016-07-31 00:05:49','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:05:49','2016-07-31 00:05:49','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1327,1,'2016-07-30 19:07:26','2016-07-31 00:07:26','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:07:26','2016-07-31 00:07:26','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1326,1,'2016-07-30 19:06:24','2016-07-31 00:06:24','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:06:24','2016-07-31 00:06:24','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1328,1,'2016-07-30 19:08:05','2016-07-31 00:08:05','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></ln></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:08:05','2016-07-31 00:08:05','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1329,1,'2016-07-30 19:09:02','2016-07-31 00:09:02','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:09:02','2016-07-31 00:09:02','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1331,1,'2016-07-30 19:15:06','2016-07-31 00:15:06','You don\'t know me anymore\r\n\r\nYou don\'t know me at all\r\n\r\nMy eyes now shine different\r\n\r\nMy smile is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nAll my happiness has been stripped\r\n\r\nI am a hallow being\r\n\r\nThe old me will be missed\r\n\r\n \r\n\r\nMy eyes lost their glow\r\n\r\nI have finally lost my charm\r\n\r\nI can no longer smile the same\r\n\r\nThe old me is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nYou don\'t me at all\r\n\r\nFor you killed the old me\r\n\r\nAnd the old me no longer lives on\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:15:06','2016-07-31 00:15:06','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1333,1,'2016-07-30 19:15:37','2016-07-31 00:15:37','You don\'t know me anymore\r\n\r\nYou don\'t know me at all\r\n\r\nMy eyes now shine different\r\n\r\nMy smile is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nAll my happiness has been stripped\r\n\r\nI am a hallow being\r\n\r\nThe old me will be missed\r\n\r\n \r\n\r\nMy eyes lost their glow\r\n\r\nI have finally lost my charm\r\n\r\nI can no longer smile the same\r\n\r\nThe old me is long gone\r\n\r\n \r\n\r\nYou don\'t know me anymore\r\n\r\nYou don\'t me at all\r\n\r\nFor you killed the old me\r\n\r\nAnd the old me no longer lives on\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:15:37','2016-07-31 00:15:37','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1332,1,'2016-07-30 19:15:21','2016-07-31 00:15:21','<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t know me at all</p>\r\n<p style=\"text-align: center;\">My eyes now shine different</p>\r\n<p style=\"text-align: center;\">My smile is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">All my happiness has been stripped</p>\r\n<p style=\"text-align: center;\">I am a hallow being</p>\r\n<p style=\"text-align: center;\">The old me will be missed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">My eyes lost their glow</p>\r\n<p style=\"text-align: center;\">I have finally lost my charm</p>\r\n<p style=\"text-align: center;\">I can no longer smile the same</p>\r\n<p style=\"text-align: center;\">The old me is long gone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You don\'t know me anymore</p>\r\n<p style=\"text-align: center;\">You don\'t me at all</p>\r\n<p style=\"text-align: center;\">For you killed the old me</p>\r\n<p style=\"text-align: center;\">And the old me no longer lives on</p>\r\n<img class=\"alignnone aligncenter\" src=\"https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02\" width=\"336\" height=\"189\" />','You Don\'t Know Me','','inherit','closed','closed','','1324-revision-v1','','','2016-07-30 19:15:21','2016-07-31 00:15:21','',1324,'http://www.monicarenata.com/1324-revision-v1/',0,'revision','',0),(1334,1,'2016-08-05 10:52:42','2016-08-05 15:52:42','In a world of grief and sorrow\nIn a world where leaves fall from trees\nDo remember that life goes on\nAs another life may leave\n\nIn an hour things can tumble\nIn a minute things can be sunny and bright\nLife will go on regardless\nSo don\'t forget to live your life\n\nSmile when it is raining\nLaugh when you feel like falling apart\nSpread kindness each and every day\nNever disregard your heart\n\nFor life is a beautiful thing\nAnd sure it can be rough\nBut life is what you make of it\nAnd your happiness is your choice\n\n<img src=\"http://www.success.com/sites/default/files/styles/article_main/public/main/articles/CanMoneyBuyHappiness.jpg?itok=SuXi_Jnq\" width=\"278\" height=\"203\" alt=\"CanMoneyBuyHappiness.jpg?itok=SuXi_Jnq\" />','The Art of Life','','publish','open','open','','the-art-of-life','','','2016-08-05 10:52:42','2016-08-05 15:52:42','',0,'http://www.monicarenata.com/the-art-of-life/',0,'post','',1),(1337,1,'2016-08-08 12:10:44','2016-08-08 17:10:44','Wrong\n\nYou will always find something wrong\n\nWhether it is her misplaced hair\n\nOr the way she double blinks her eyes when she is excited\n\nSomething will always be wrong\n\n \n\n \n\nShe will make you happy\n\nShe will make you so happy that you doubt if a greater happiness can exist\n\nShe will cloak you in love\n\nStroke your ego\n\nAnd cultivate your dreams\n\nBut still\n\nShe will be wrong\n\n \n\n \n\nSee\n\nSomething is always wrong\n\nSomething won\'t add up in your head\n\nYou will find her fault\n\nPerhaps it is her zodaic sign\n\nBecause that sign is so stubborn\n\nor perhaps it is her race\n\nBecause those women are so hard\n\nYou might even blame her age\n\nFor she is too old to be so dumb\n\nBut too young to be naive\n\n \n\n \n\nWrong\n\nYou will always find something wrong\n\nShe loves you too much\n\nShe cares about you too much\n\nShe prays for you too much\n\nAnd when others look at the bigger picture\n\nThe only thing she ever did wrong\n\nWas love you\n\n \n\n \n\nShe tied her happiness into your happiness\n\nShe smothered you in a love so pure that you didn\'t deserve\n\nShe stroked your ego and also cultivated your dreams\n\nHelped push you to be greater than you are today\n\nAnd no matter the love that left her lips\n\nOr the warmth the exuded from her heart\n\nIt wasn\'t enough\n\n \n\n \n\nBecause to you\n\nShe was wrong\n\n \n\n \n\nPerfection doesn\'t exist\n\nBut even if it did\n\nYour sight would neglect that\n\nHer efforts and tears as she tries to be better\n\nDoesn\'t phase you because you don\'t care\n\nBut in the end\n\nI see\n\nthat her greatest wrong\n\nWas giving her love to you\n\n<img src=\"http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg\" alt=\"walking+alone+in+rain+(2).jpg\" width=\"370\" height=\"253\" />','Wrong','','inherit','closed','closed','','1335-autosave-v1','','','2016-08-08 12:10:44','2016-08-08 17:10:44','',1335,'http://www.monicarenata.com/1335-autosave-v1/',0,'revision','',0),(1338,1,'2016-08-08 12:11:36','2016-08-08 17:11:36','Wrong\r\n\r\nYou will always find something wrong\r\n\r\nWhether it is her misplaced hair\r\n\r\nOr the way she double blinks her eyes when she is excited\r\n\r\nSomething will always be wrong\r\n\r\n \r\n\r\n \r\n\r\nShe will make you happy\r\n\r\nShe will make you so happy that you doubt if a greater happiness can exist\r\n\r\nShe will cloak you in love\r\n\r\nStroke your ego\r\n\r\nAnd cultivate your dreams\r\n\r\nBut still\r\n\r\nShe will be wrong\r\n\r\n \r\n\r\n \r\n\r\nSee\r\n\r\nSomething is always wrong\r\n\r\nSomething won\'t add up in your head\r\n\r\nYou will find her fault\r\n\r\nPerhaps it is her zodaic sign\r\n\r\nBecause that sign is so stubborn\r\n\r\nor perhaps it is her race\r\n\r\nBecause those women are so hard\r\n\r\nYou might even blame her age\r\n\r\nFor she is too old to be so dumb\r\n\r\nBut too young to be naive\r\n\r\n \r\n\r\n \r\n\r\nWrong\r\n\r\nYou will always find something wrong\r\n\r\nShe loves you too much\r\n\r\nShe cares about you too much\r\n\r\nShe prays for you too much\r\n\r\nAnd when others look at the bigger picture\r\n\r\nThe only thing she ever did wrong\r\n\r\nWas love you\r\n\r\n \r\n\r\n \r\n\r\nShe tied her happiness into your happiness\r\n\r\nShe smothered you in a love so pure that you didn\'t deserve\r\n\r\nShe stroked your ego and also cultivated your dreams\r\n\r\nHelped push you to be greater than you are today\r\n\r\nAnd no matter the love that left her lips\r\n\r\nOr the warmth the exuded from her heart\r\n\r\nIt wasn\'t enough\r\n\r\n \r\n\r\n \r\n\r\nBecause to you\r\n\r\nShe was wrong\r\n\r\n \r\n\r\n \r\n\r\nPerfection doesn\'t exist\r\n\r\nBut even if it did\r\n\r\nYour sight would neglect that\r\n\r\nHer efforts and tears as she tries to be better\r\n\r\nDoesn\'t phase you because you don\'t care\r\n\r\n \r\n\r\n \r\n\r\nBut in the end\r\n\r\nIt\'s cleae\r\n\r\nthat her greatest wrong\r\n\r\nWas giving her love to you\r\n\r\n<img src=\"http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg\" alt=\"walking+alone+in+rain+(2).jpg\" width=\"370\" height=\"253\" />','Wrong','','inherit','closed','closed','','1335-revision-v1','','','2016-08-08 12:11:36','2016-08-08 17:11:36','',1335,'http://www.monicarenata.com/1335-revision-v1/',0,'revision','',0),(1339,1,'2016-08-08 12:13:15','2016-08-08 17:13:15','Wrong\r\n\r\nYou will always find something wrong\r\n\r\nWhether it is her misplaced hair\r\n\r\nOr the way she double blinks her eyes when she is excited\r\n\r\nSomething will always be wrong\r\n\r\n \r\n\r\n \r\n\r\nShe will make you happy\r\n\r\nShe will make you so happy that you doubt if a greater happiness can exist\r\n\r\nShe will cloak you in love\r\n\r\nStroke your ego\r\n\r\nAnd cultivate your dreams\r\n\r\nBut still\r\n\r\nShe will be wrong\r\n\r\n \r\n\r\n \r\n\r\nSee\r\n\r\nSomething is always wrong\r\n\r\nSomething won\'t add up in your head\r\n\r\nYou will find her fault\r\n\r\nPerhaps it is her zodaic sign\r\n\r\nBecause that sign is so stubborn\r\n\r\nor perhaps it is her race\r\n\r\nBecause those women are so hard\r\n\r\nYou might even blame her age\r\n\r\nFor she is too old to be so dumb\r\n\r\nBut too young to be naive\r\n\r\n \r\n\r\n \r\n\r\nWrong\r\n\r\nYou will always find something wrong\r\n\r\nShe loves you too much\r\n\r\nShe cares about you too much\r\n\r\nShe prays for you too much\r\n\r\nAnd when others look at the bigger picture\r\n\r\nThe only thing she ever did wrong\r\n\r\nWas love you\r\n\r\n \r\n\r\n \r\n\r\nShe tied her happiness into your happiness\r\n\r\nShe smothered you in a love so pure that you didn\'t deserve\r\n\r\nShe stroked your ego and also cultivated your dreams\r\n\r\nHelped push you to be greater than you are today\r\n\r\nAnd no matter the love that left her lips\r\n\r\nOr the warmth the exuded from her heart\r\n\r\nIt wasn\'t enough\r\n\r\n \r\n\r\n \r\n\r\nBecause to you\r\n\r\nShe was wrong\r\n\r\n \r\n\r\n \r\n\r\nPerfection doesn\'t exist\r\n\r\nBut even if it did\r\n\r\nYour sight would neglect that\r\n\r\nHer efforts and tears as she tries to be better\r\n\r\nDoesn\'t phase you because you don\'t care\r\n\r\n \r\n\r\n \r\n\r\nBut in the end\r\n\r\nIt\'s clear\r\n\r\nthat her greatest wrong\r\n\r\nWas giving her love to you\r\n\r\n<img src=\"http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg\" alt=\"walking+alone+in+rain+(2).jpg\" width=\"370\" height=\"253\" />','Wrong','','inherit','closed','closed','','1335-revision-v1','','','2016-08-08 12:13:15','2016-08-08 17:13:15','',1335,'http://www.monicarenata.com/1335-revision-v1/',0,'revision','',0),(1340,1,'2016-08-08 12:18:09','2016-08-08 17:18:09','The dagger feels so good\npressed against my flesh\nSignifying our undying love\nLove that cuts deeper than flesh\n\nTwo souls tied together forever\nFacing forthcoming doom\nA love that has no happy ending\nA love that will end soon\n\nYour kisses feel so good\nPressed against my flesh\nSignifying our undying love\nEmotions deeper than anything I\'ve ever felt\n\nTwo souls tied together\nFor it seems we were meant to be\nBut your kisses cut like daggers\nBecause you will never belong to me\n\nFarewell my dear love\nA slow death that now must end\nFor I played with daggers for far too long\nAnd this cut I just can\'t take\n\n<em>"Sometimes the love that burns the brightest leaves the deepest cut......" -</em>Monica Renata','Dagger\'s Kiss','','publish','open','open','','daggers-kiss','','','2016-08-08 12:18:09','2016-08-08 17:18:09','',0,'http://www.monicarenata.com/daggers-kiss/',0,'post','',0),(1341,1,'2016-08-08 16:34:55','2016-08-08 21:34:55','Wrong\r\n\r\nYou will always find something wrong\r\n\r\nWhether it is her misplaced hair\r\n\r\nOr the way she double blinks her eyes when she is excited\r\n\r\nSomething will always be wrong\r\n\r\n \r\n\r\n \r\n\r\nShe will make you happy\r\n\r\nShe will make you so happy that you doubt if a greater happiness can exist\r\n\r\nShe will cloak you in love\r\n\r\nStroke your ego\r\n\r\nAnd cultivate your dreams\r\n\r\nBut still\r\n\r\nShe will be wrong\r\n\r\n \r\n\r\n \r\n\r\nSee\r\n\r\nSomething is always wrong\r\n\r\nSomething won\'t add up in your head\r\n\r\nYou will find her fault\r\n\r\nPerhaps it is her zodiac sign\r\n\r\nBecause that sign is so stubborn\r\n\r\nor perhaps it is her race\r\n\r\nBecause those women are so hard\r\n\r\nYou might even blame her age\r\n\r\nFor she is too old to be so dumb\r\n\r\nBut too young to be naive\r\n\r\n \r\n\r\n \r\n\r\nWrong\r\n\r\nYou will always find something wrong\r\n\r\nShe loves you too much\r\n\r\nShe cares about you too much\r\n\r\nShe prays for you too much\r\n\r\nAnd when others look at the bigger picture\r\n\r\nThe only thing she ever did wrong\r\n\r\nWas love you\r\n\r\n \r\n\r\n \r\n\r\nShe tied her happiness into your happiness\r\n\r\nShe smothered you in a love so pure that you didn\'t deserve\r\n\r\nShe stroked your ego and also cultivated your dreams\r\n\r\nHelped push you to be greater than you are today\r\n\r\nAnd no matter the love that left her lips\r\n\r\nOr the warmth that exuded from her heart\r\n\r\nIt wasn\'t enough\r\n\r\n \r\n\r\n \r\n\r\nBecause to you\r\n\r\nShe was wrong\r\n\r\n \r\n\r\n \r\n\r\nPerfection doesn\'t exist\r\n\r\nBut even if it did\r\n\r\nYour sight would neglect that\r\n\r\nHer efforts and tears as she tries to be better\r\n\r\nDoesn\'t phase you because you don\'t care\r\n\r\n \r\n\r\n \r\n\r\nBut in the end\r\n\r\nIt\'s clear\r\n\r\nthat her greatest wrong\r\n\r\nWas giving her love to you\r\n\r\n<img src=\"http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg\" alt=\"walking+alone+in+rain+(2).jpg\" width=\"370\" height=\"253\" />','Wrong','','inherit','closed','closed','','1335-revision-v1','','','2016-08-08 16:34:55','2016-08-08 21:34:55','',1335,'http://www.monicarenata.com/1335-revision-v1/',0,'revision','',0),(1343,1,'2016-08-10 11:21:07','2016-08-10 16:21:07','','Screenshot_20160810-111425','','inherit','open','closed','','screenshot_20160810-111425','','','2016-08-10 11:21:07','2016-08-10 16:21:07','',1259,'http://www.monicarenata.com/wp-content/uploads/2016/03/Screenshot_20160810-111425.jpg',0,'attachment','image/jpeg',0),(1344,1,'2016-08-22 10:59:34','2016-08-22 15:59:34','Exception\r\n\r\nI cannot say I wanted you fully\r\nBecause that is not the case\r\nYou were part of my imagined figure\r\nThat took a slight fall from grace\r\n\r\nYour eyes were as I imagined\r\nBut they glistened even as you lied\r\nAlas you were an exception\r\nSo I never questioned why\r\n\r\nBeing puzzled by a puzzle\r\nLost in a location that is marked\r\nHeart not really attached\r\nSo no love found nor even lost\r\n\r\nI cannot say I wanted you fully\r\nBecause that is not the case\r\nYou were an exception to my desires\r\nSomething sweet that had a bitter taste\r\n\r\n<em>\"Sometimes what you get isn\'t as sweet as what you truly want... \"</em> -Monica Renata','Exception','','publish','open','open','','exception','','','2016-09-06 15:31:33','2016-09-06 20:31:33','',0,'http://www.monicarenata.com/exception/',0,'post','',0),(1346,1,'2016-09-06 15:31:33','2016-09-06 20:31:33','Exception\r\n\r\nI cannot say I wanted you fully\r\nBecause that is not the case\r\nYou were part of my imagined figure\r\nThat took a slight fall from grace\r\n\r\nYour eyes were as I imagined\r\nBut they glistened even as you lied\r\nAlas you were an exception\r\nSo I never questioned why\r\n\r\nBeing puzzled by a puzzle\r\nLost in a location that is marked\r\nHeart not really attached\r\nSo no love found nor even lost\r\n\r\nI cannot say I wanted you fully\r\nBecause that is not the case\r\nYou were an exception to my desires\r\nSomething sweet that had a bitter taste\r\n\r\n<em>\"Sometimes what you get isn\'t as sweet as what you truly want... \"</em> -Monica Renata','Exception','','inherit','closed','closed','','1344-revision-v1','','','2016-09-06 15:31:33','2016-09-06 20:31:33','',1344,'http://www.monicarenata.com/1344-revision-v1/',0,'revision','',0),(1347,1,'2016-10-05 08:55:46','2016-10-05 13:55:46','You lack a bit of kindness\r\n\r\nBecause you lack high self-esteem\r\n\r\n \r\n\r\nYou constantly treat others ugly\r\n\r\nBecause nice you can not be\r\n\r\n \r\n\r\nYou can\'t treat others with generosity and kindness\r\n\r\nBecause you can not see the good in you\r\n\r\n \r\n\r\nYour reflection is a bit fuzzy\r\n\r\nBut cleaning your mirror is all up to you\r\n\r\n \r\n\r\n<img src=\"http://img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg\" alt=\"Image result for dirty mirror\" width=\"241\" height=\"341\" />\r\n\r\n<em>\"A higher self-esteem will likely enable you to be kinder to others.\"</em> -Monica Renata','Dirty Mirror - Self-Esteem','','publish','open','open','','dirty-mirror-self-esteem','','','2016-10-05 08:59:57','2016-10-05 13:59:57','',0,'http://www.monicarenata.com/dirty-mirror-self-esteem/',0,'post','',0),(1349,1,'2016-10-05 08:59:26','2016-10-05 13:59:26','You lack a bit of kindness\r\n\r\nBecause you lack high self-esteem\r\n\r\n \r\n\r\nYou constantly treat others ugly\r\n\r\nBecause nice you can not be\r\n\r\n \r\n\r\nYou can\'t treat others with generosity and kindness\r\n\r\nBecause you can not see the good in you\r\n\r\n \r\n\r\nYour reflection is a bit fuzzy\r\n\r\nBut cleaning your mirror is all up to you\r\n\r\n \r\n\r\n<img src=\"http://img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg\" alt=\"Image result for dirty mirror\" width=\"241\" height=\"341\" />\r\n\r\n<em>\"A higher self-esteem will likely enable you to be kinder to others.\"</em> -Monica Renata','Dirty Mirror - Self-Esteem','','inherit','closed','closed','','1347-autosave-v1','','','2016-10-05 08:59:26','2016-10-05 13:59:26','',1347,'http://www.monicarenata.com/1347-autosave-v1/',0,'revision','',0),(1350,1,'2016-10-05 08:59:57','2016-10-05 13:59:57','You lack a bit of kindness\r\n\r\nBecause you lack high self-esteem\r\n\r\n \r\n\r\nYou constantly treat others ugly\r\n\r\nBecause nice you can not be\r\n\r\n \r\n\r\nYou can\'t treat others with generosity and kindness\r\n\r\nBecause you can not see the good in you\r\n\r\n \r\n\r\nYour reflection is a bit fuzzy\r\n\r\nBut cleaning your mirror is all up to you\r\n\r\n \r\n\r\n<img src=\"http://img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg\" alt=\"Image result for dirty mirror\" width=\"241\" height=\"341\" />\r\n\r\n<em>\"A higher self-esteem will likely enable you to be kinder to others.\"</em> -Monica Renata','Dirty Mirror - Self-Esteem','','inherit','closed','closed','','1347-revision-v1','','','2016-10-05 08:59:57','2016-10-05 13:59:57','',1347,'http://www.monicarenata.com/1347-revision-v1/',0,'revision','',0),(1351,1,'2016-10-18 12:20:48','2016-10-18 17:20:48','<p style=\"text-align: center;\">Painful,eerie silence\r\nHear the needle drop</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Not letting the mind go idle\r\nConsuming all time with work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Surrounded by so many\r\nYet feel so alone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Text read to yourself aloud\r\nSince conversation is no longer parol</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">This is what it\'s like\r\nWhen true communication dies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">When we feel that we can get to know others\r\nBy texting instead of calling and saying \"hi\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But spoken word can feed the soul\r\nYet many cannot give your soul food to eat</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Assembling many acquaintances\r\nInstead of building bonds that are deep</p>\r\n<p style=\"text-align: center;\"><img src=\"http://media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg\" alt=\"Image result for text messages\" width=\"385\" height=\"216\" /></p>\r\n<p style=\"text-align: center;\"><em>\"Conversation is food for the soul...\"</em></p>','Open Messages','','publish','open','open','','open-messages','','','2016-10-18 12:25:52','2016-10-18 17:25:52','',0,'http://www.monicarenata.com/open-messages/',0,'post','',0),(1353,1,'2016-10-18 12:25:30','2016-10-18 17:25:30','<p style=\"text-align: center;\">Painful,eerie silence\r\nHear the needle drop</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Not letting the mind go idle\r\nConsuming all time with work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Surrounded by so many\r\nYet feel so alone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Text read to yourself aloud\r\nSince conversation is no longer parol</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">This is what it\'s like\r\nWhen true communication dies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">When we feel that we can get to know others\r\nBy texting instead of calling and saying \"hi\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But spoken word can feed the soul\r\nYet many cannot give your soul food to eat</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Assembling many acquaintances\r\nInstead of building bonds that are deep</p>\r\n<p style=\"text-align: center;\"><img src=\"http://media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg\" alt=\"Image result for text messages\" width=\"385\" height=\"216\" /></p>\r\n<p style=\"text-align: center;\"><em>\"Conversation is food for the soul...\"</em></p>','Open Messages','','inherit','closed','closed','','1351-autosave-v1','','','2016-10-18 12:25:30','2016-10-18 17:25:30','',1351,'http://www.monicarenata.com/1351-autosave-v1/',0,'revision','',0),(1354,1,'2016-10-18 12:25:52','2016-10-18 17:25:52','<p style=\"text-align: center;\">Painful,eerie silence\r\nHear the needle drop</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Not letting the mind go idle\r\nConsuming all time with work</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Surrounded by so many\r\nYet feel so alone</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Text read to yourself aloud\r\nSince conversation is no longer parol</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">This is what it\'s like\r\nWhen true communication dies</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">When we feel that we can get to know others\r\nBy texting instead of calling and saying \"hi\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But spoken word can feed the soul\r\nYet many cannot give your soul food to eat</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Assembling many acquaintances\r\nInstead of building bonds that are deep</p>\r\n<p style=\"text-align: center;\"><img src=\"http://media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg\" alt=\"Image result for text messages\" width=\"385\" height=\"216\" /></p>\r\n<p style=\"text-align: center;\"><em>\"Conversation is food for the soul...\"</em></p>','Open Messages','','inherit','closed','closed','','1351-revision-v1','','','2016-10-18 12:25:52','2016-10-18 17:25:52','',1351,'http://www.monicarenata.com/1351-revision-v1/',0,'revision','',0),(1356,1,'2016-10-26 13:01:05','2016-10-26 18:01:05','Holes in my Sunday dress\r\nSandals on my feet\r\nHair a tangled, matted mess\r\nNo one wants to see me\r\n\r\nMy car\r\nI don’t have one\r\nBut my pride\r\nIs bursting at the seams\r\n\r\nI am but a homeless woman to you\r\nBut in God’s eyes I am a queen\r\n<p style=\"text-align: center;\">Holes in my Sunday suit\r\nNo shoes on my feet\r\nHair is unkempt and not groomed\r\nNo one wants to see me</p>\r\n<p style=\"text-align: center;\">Walked here\r\nMy feet are my transportation\r\nMy life is hard\r\nBut I refuse to weep</p>\r\n<p style=\"text-align: center;\">I am but a homeless man to you\r\nBut in God’s eyes I am a king</p>\r\n<p style=\"text-align: right;\">Holes in my once beautiful soul\r\nThe nicest shoes on my feet\r\nHair in the nicest style\r\nEveryone wants to see me</p>\r\n<p style=\"text-align: right;\">Drove here in my newest ride\r\nMy sports car is very neat\r\nMy life, so many envy\r\nBut It is crashing at my feet</p>\r\n<p style=\"text-align: right;\">I am but a rich person to you\r\nBut I am praying God heals me</p>','In God\'s Eyes','','inherit','closed','closed','','1252-revision-v1','','','2016-10-26 13:01:05','2016-10-26 18:01:05','',1252,'http://www.monicarenata.com/1252-revision-v1/',0,'revision','',0),(1357,1,'2016-10-26 13:23:37','2016-10-26 18:23:37','I don’t ever want to love again\r\n\r\nI don’t even want to see a lover’s smile\r\n\r\nI just want to be in my own little world\r\n\r\nAs the rest of the world spins round and round\r\n\r\n \r\n\r\nI don’t ever want to be happy like that again\r\n\r\nI don’t want someone who completes my world\r\n\r\nI just want what I have made for myself\r\n\r\nAs I continue to walk alone\r\n\r\n \r\n\r\nFor love brings the highest of highs\r\n\r\nBut once its over You are truly down\r\n\r\nA down that seems like you could never recover from\r\n\r\nAnd the world keeps spinning round\r\n\r\n \r\n\r\nI don’t ever want to fall in love again\r\n\r\nI don’t want that possibility\r\n\r\nI just want to live in my own little world\r\n\r\nWhere happiness is solely dependent on me\r\n\r\n \r\n\r\nI don’t ever want to be happy like that\r\n\r\nI don’t want someone who completes my world\r\n\r\nFor when it is all gone away\r\n\r\nThe sands of time in my life seem no more\r\n\r\n \r\n\r\nI don’t ever want to feel that pain again\r\n\r\nI don’t want to ever be hurt\r\n\r\nSo instead of finding a love that is truly mines\r\n\r\nI’ll continue to walk alone on this earth','Don\'t Ever','','inherit','closed','closed','','1146-revision-v1','','','2016-10-26 13:23:37','2016-10-26 18:23:37','',1146,'http://www.monicarenata.com/1146-revision-v1/',0,'revision','',0),(1360,1,'2016-11-29 22:05:03','2016-11-30 04:05:03','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that’s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don’t want darkness to consume my life\r\nFor in the darkness I can’t see\r\n\r\nSo instead I’ll write my life\r\nIn the colors that radiates joy within\r\nFor I’d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n \r\n<blockquote> \r\n\r\n<em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','publish','open','open','','i-write-my-wrongs-in-color','','','2016-11-29 22:05:03','2016-11-30 04:05:03','',0,'http://www.monicarenata.com/?p=1360',0,'post','',0),(1361,1,'2016-11-29 21:53:06','2016-11-30 03:53:06','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that\'s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don\'t want darkness to consume my life\r\nFor in the darkness I can\'t see\r\n\r\nSo instead I\'ll write my life\r\nIn the colors that radiates joy within\r\nFor I\'d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n<em><strong>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \" -Monica Renata</strong></em>\r\n\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"688\" height=\"361\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 21:53:06','2016-11-30 03:53:06','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1365,1,'2016-11-29 22:01:12','2016-11-30 04:01:12','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that’s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don’t want darkness to consume my life\r\nFor in the darkness I can’t see\r\n\r\nSo instead I’ll write my life\r\nIn the colors that radiates joy within\r\nFor I’d rather live a happy life\r\nThan one bogged down with sin\r\n<blockquote> \r\n\r\n<em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 22:01:12','2016-11-30 04:01:12','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1362,1,'2016-11-29 21:54:40','2016-11-30 03:54:40','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that\'s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don\'t want darkness to consume my life\r\nFor in the darkness I can\'t see\r\n\r\nSo instead I\'ll write my life\r\nIn the colors that radiates joy within\r\nFor I\'d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\">\r\n\r\n<em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em></p>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 21:54:40','2016-11-30 03:54:40','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1363,1,'2016-11-29 22:00:11','2016-11-30 04:00:11','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that’s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don’t want darkness to consume my life\r\nFor in the darkness I can’t see\r\n\r\nSo instead I’ll write my life\r\nIn the colors that radiates joy within\r\nFor I’d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n \r\n\r\n \r\n\r\n \r\n<blockquote><em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 22:00:11','2016-11-30 04:00:11','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1364,1,'2016-11-29 22:00:42','2016-11-30 04:00:42','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that’s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don’t want darkness to consume my life\r\nFor in the darkness I can’t see\r\n\r\nSo instead I’ll write my life\r\nIn the colors that radiates joy within\r\nFor I’d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n \r\n\r\n \r\n<blockquote><em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 22:00:42','2016-11-30 04:00:42','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1388,1,'2016-12-09 07:36:27','2016-12-09 13:36:27','Silence speaks\r\n\r\nAs words do not\r\n\r\nStanding in the room\r\n\r\n \r\n\r\nThe eyes may wander\r\n\r\nBut the heart does not\r\n\r\nYet no flowers bloom\r\n\r\n \r\n\r\nA tinge of ice cold air\r\n\r\nBitterness like sour fruit\r\n\r\n \r\n\r\nI can tell how you see me\r\n\r\nEven though your lips don’t move\r\n\r\n \r\n\r\n \r\n\r\n<em>\"Sometimes sight can tell us what words may not.\"</em> -Monica Renata\r\n\r\n<img src=\"http://picsoverflow.com/wp-content/uploads/2015/02/Eyes-of-Sadness.jpg\" alt=\"Image result for sadness in eye\" width=\"496\" height=\"310\" />','Optical Interpretation','','publish','open','open','','optical-interpretation','','','2016-12-09 07:41:12','2016-12-09 13:41:12','',0,'http://www.monicarenata.com/optical-interpretation/',0,'post','',0),(1366,1,'2016-11-29 22:01:33','2016-11-30 04:01:33','I write my wrongs in color\r\nSo that I can clearly see\r\nThe tragedy I caused to others\r\nAnd also caused to me\r\n\r\nI see traces of red that’s dark as blood\r\nFrom when my anger reached its peak\r\nAnd many lines of solid black\r\nFrom when I was consumed with grief\r\n\r\nNeglected was the shade of yellow\r\nThat exudes creativity and joy\r\nAbandoned was the hue of green\r\nThat symbolizes harmony and growth\r\n\r\nI write my wrongs in color\r\nSo that I can clearly see\r\nThat I don’t want darkness to consume my life\r\nFor in the darkness I can’t see\r\n\r\nSo instead I’ll write my life\r\nIn the colors that radiates joy within\r\nFor I’d rather live a happy life\r\nThan one bogged down with sin\r\n\r\n \r\n<blockquote> \r\n\r\n<em>\"The final artwork of your life is a collection of your personal decisions and thoughts. Positivity yields a beautiful picture, but negativity can create a gloomy portrait. \"</em>\r\n<p style=\"text-align: center;\"><em> -Monica Renata</em></p>\r\n</blockquote>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg\" width=\"591\" height=\"310\" />','I Write My Wrongs In Color','','inherit','closed','closed','','1360-revision-v1','','','2016-11-29 22:01:33','2016-11-30 04:01:33','',1360,'http://www.monicarenata.com/1360-revision-v1/',0,'revision','',0),(1368,1,'2016-12-03 11:20:03','2016-12-03 17:20:03','<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me</p>\r\n<p style=\"text-align: center;\">With words so cold they pierced my soul\r\nAnd now I cannot speak</p>\r\n<p style=\"text-align: center;\">Drowning in overwhelming sadness\r\nBut you pretend to not see me</p>\r\n<p style=\"text-align: center;\">Emotions consume my mind\r\nOver-thinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" Monica Renata</blockquote>','Inordinate Contemplation','','publish','open','open','','inordinate-contemplation','','','2016-12-03 11:21:00','2016-12-03 17:21:00','',0,'http://www.monicarenata.com/?p=1368',0,'post','',0),(1369,1,'2016-12-03 11:06:35','2016-12-03 17:06:35','','fall','','inherit','open','closed','','fall','','','2016-12-03 11:06:35','2016-12-03 17:06:35','',1368,'http://www.monicarenata.com/wp-content/uploads/2016/12/fall.jpg',0,'attachment','image/jpeg',0),(1370,1,'2016-12-03 11:07:50','2016-12-03 17:07:50','','fall','','inherit','open','closed','','fall-2','','','2016-12-03 11:07:50','2016-12-03 17:07:50','',1368,'http://www.monicarenata.com/wp-content/uploads/2016/12/fall.png',0,'attachment','image/png',0),(1371,1,'2016-12-03 11:14:50','2016-12-03 17:14:50','I reached for you and you let me fall\r\nFall into the sadness of me\r\n\r\nWith words so cold they piereced my soul\r\nAnd now I cannot speak\r\n\r\nDrowing in overwhelming sadness\r\nBut you pretend to not see me\r\n\r\nEmotions consume my mind\r\nOverthinking will be the death of me\r\n\r\n \r\n\r\n<img class=\"alignnone size-medium wp-image-1370\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n\r\n\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:14:50','2016-12-03 17:14:50','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1372,1,'2016-12-03 11:15:39','2016-12-03 17:15:39','<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me\r\n\r\nWith words so cold they piereced my soul\r\nAnd now I cannot speak\r\n\r\nDrowing in overwhelming sadness\r\nBut you pretend to not see me\r\n\r\nEmotions consume my mind\r\nOverthinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:15:39','2016-12-03 17:15:39','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1373,1,'2016-12-03 11:16:10','2016-12-03 17:16:10','<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me\r\n\r\nWith words so cold they pierced my soul\r\nAnd now I cannot speak\r\n\r\nDrowing in overwhelming sadness\r\nBut you pretend to not see me\r\n\r\nEmotions consume my mind\r\nOverthinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:16:10','2016-12-03 17:16:10','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1374,1,'2016-12-03 11:16:56','2016-12-03 17:16:56','<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me</p>\r\nWith words so cold they pierced my soul\r\nAnd now I cannot speak\r\n\r\nDrowning in overwhelming sadness\r\nBut you pretend to not see me\r\n\r\nEmotions consume my mind\r\nOverthinking will be the death of me\r\n\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:16:56','2016-12-03 17:16:56','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1375,1,'2016-12-03 11:17:47','2016-12-03 17:17:47','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me</p>\r\n<p style=\"text-align: center;\">With words so cold they piereced my soul\r\nAnd now I cannot speak</p>\r\n<p style=\"text-align: center;\">Drowning in overwhelming sadness\r\nBut you pretend to not see me</p>\r\n<p style=\"text-align: center;\">Emotions consume my mind\r\nOver-thinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:17:47','2016-12-03 17:17:47','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1376,1,'2016-12-03 11:18:19','2016-12-03 17:18:19','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">With words so cold they piereced my soul\r\nAnd now I cannot speak</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Drowning in overwhelming sadness\r\nBut you pretend to not see me</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Emotions consume my mind\r\nOver-thinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" -Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:18:19','2016-12-03 17:18:19','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1377,1,'2016-12-03 11:21:00','2016-12-03 17:21:00','<p style=\"text-align: center;\">I reached for you and you let me fall\r\nFall into the sadness of me</p>\r\n<p style=\"text-align: center;\">With words so cold they pierced my soul\r\nAnd now I cannot speak</p>\r\n<p style=\"text-align: center;\">Drowning in overwhelming sadness\r\nBut you pretend to not see me</p>\r\n<p style=\"text-align: center;\">Emotions consume my mind\r\nOver-thinking will be the death of me</p>\r\n \r\n\r\n<img class=\"size-medium wp-image-1370 aligncenter\" src=\"http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png\" alt=\"fall\" width=\"300\" height=\"252\" />\r\n\r\n \r\n<blockquote>\"Over-analyzing a situation can put you against yourself. This way of thinking destroys you as a person because you are too consumed with the thought of \"what if\".... It is not always wise to be in a state of Inordinate Contemplation. \" Monica Renata</blockquote>','Inordinate Contemplation','','inherit','closed','closed','','1368-revision-v1','','','2016-12-03 11:21:00','2016-12-03 17:21:00','',1368,'http://www.monicarenata.com/1368-revision-v1/',0,'revision','',0),(1378,1,'2016-12-03 16:47:07','2016-12-03 22:47:07','<p style=\"text-align: left;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: left;\"><span style=\"color: #ffffff;\">.</span></p>\r\n<p style=\"text-align: left;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://data.whicdn.com/images/236722809/large.jpg\" alt=\"Related image\" width=\"332\" height=\"332\" />','I See You','','publish','open','open','','i-see-you','','','2016-12-03 16:47:46','2016-12-03 22:47:46','',0,'http://www.monicarenata.com/?p=1378',0,'post','',0),(1379,1,'2016-12-03 16:42:00','2016-12-03 22:42:00','I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are\r\n\r\n \r\n\r\nFor I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:42:00','2016-12-03 22:42:00','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1380,1,'2016-12-03 16:43:35','2016-12-03 22:43:35','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:43:35','2016-12-03 22:43:35','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1381,1,'2016-12-03 16:43:48','2016-12-03 22:43:48','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:43:48','2016-12-03 22:43:48','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1382,1,'2016-12-03 16:44:02','2016-12-03 22:44:02','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:44:02','2016-12-03 22:44:02','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1383,1,'2016-12-03 16:44:20','2016-12-03 22:44:20','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\"></p></p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:44:20','2016-12-03 22:44:20','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1384,1,'2016-12-03 16:44:45','2016-12-03 22:44:45','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\"></ln></p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:44:45','2016-12-03 22:44:45','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1385,1,'2016-12-03 16:45:00','2016-12-03 22:45:00','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\">.</p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n<img class=\"aligncenter\" src=\"https://pbs.twimg.com/media/BkWgH9aCEAAvXC1.jpg\" alt=\"Image result for love in the stars\" width=\"228\" height=\"272\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:45:00','2016-12-03 22:45:00','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1387,1,'2016-12-03 16:47:46','2016-12-03 22:47:46','<p style=\"text-align: left;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: left;\"><span style=\"color: #ffffff;\">.</span></p>\r\n<p style=\"text-align: left;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://data.whicdn.com/images/236722809/large.jpg\" alt=\"Related image\" width=\"332\" height=\"332\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:47:46','2016-12-03 22:47:46','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1386,1,'2016-12-03 16:47:07','2016-12-03 22:47:07','<p style=\"text-align: center;\">I see you in the morning\r\nI see you in the stars\r\nI see you where you are standing\r\nI see you every place you are</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">.</span></p>\r\n<p style=\"text-align: center;\">For I am with you when you are here\r\nI am with you when you are there\r\nMy love for you is a stain on your lips\r\nAnd I am with you everywhere</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n\r\n<img class=\"aligncenter\" src=\"http://data.whicdn.com/images/236722809/large.jpg\" alt=\"Related image\" width=\"332\" height=\"332\" />','I See You','','inherit','closed','closed','','1378-revision-v1','','','2016-12-03 16:47:07','2016-12-03 22:47:07','',1378,'http://www.monicarenata.com/1378-revision-v1/',0,'revision','',0),(1413,1,'2016-12-27 13:23:18','2016-12-27 19:23:18','To sit in my chair waiting\r\n\r\nTears trickle down my breast\r\n\r\nMy heart is fiercely pounding\r\n\r\nThis is anticipation at its best\r\n\r\n \r\n\r\nBut as time slowly moves forward\r\n\r\nAs I know it will always do\r\n\r\nI hesitate in my knowing\r\n\r\nMy knowing of what will soon ensue\r\n\r\n \r\n\r\nBreathing gets faster and labored\r\n\r\nSoon your hands are turning the key in the latch\r\n\r\nI can’t wait for the moment you return\r\n\r\nBut in the meantime I will relax\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/236x/48/db/c3/48dbc3452bdb636e017924fb2038a607.jpg\" alt=\"Image result for sitting in the kitchen sad painting\" width=\"236\" height=\"314\" />','In The Meantime','','publish','open','open','','in-the-meantime','','','2016-12-27 20:15:50','2016-12-28 02:15:50','',0,'http://www.monicarenata.com/in-the-meantime/',0,'post','',0),(1390,1,'2016-12-09 07:41:12','2016-12-09 13:41:12','Silence speaks\r\n\r\nAs words do not\r\n\r\nStanding in the room\r\n\r\n \r\n\r\nThe eyes may wander\r\n\r\nBut the heart does not\r\n\r\nYet no flowers bloom\r\n\r\n \r\n\r\nA tinge of ice cold air\r\n\r\nBitterness like sour fruit\r\n\r\n \r\n\r\nI can tell how you see me\r\n\r\nEven though your lips don’t move\r\n\r\n \r\n\r\n \r\n\r\n<em>\"Sometimes sight can tell us what words may not.\"</em> -Monica Renata\r\n\r\n<img src=\"http://picsoverflow.com/wp-content/uploads/2015/02/Eyes-of-Sadness.jpg\" alt=\"Image result for sadness in eye\" width=\"496\" height=\"310\" />','Optical Interpretation','','inherit','closed','closed','','1388-revision-v1','','','2016-12-09 07:41:12','2016-12-09 13:41:12','',1388,'http://www.monicarenata.com/1388-revision-v1/',0,'revision','',0),(1392,1,'2016-12-09 08:41:18','2016-12-09 14:41:18','I felt you before you touched me\r\n\r\nYour words danced like fingers on my skin\r\n\r\nYou deeply kissed my brain with your knowledge\r\n\r\nAnd my body became ripe from within\r\n\r\n \r\n\r\nYou hugged me with your manners\r\n\r\nAnd gripped me tightly with your displays of protection and strength\r\n\r\nYou caressed me with your kindness\r\n\r\nAnd my body quivered in anticipation of what’s next\r\n\r\n \r\n\r\nI felt you before you touched me\r\n\r\nAll of my senses were at their peak\r\n\r\nI had seen you, heard you, and smelled you\r\n\r\nBut I couldn’t wait to touch and taste\r\n\r\n \r\n\r\nYou made me break down my walls\r\n\r\nAnd in this moment as we both lay\r\n\r\nFlesh will unite and turn to one\r\n\r\nLong awaited ecstasy shall take place\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"Connections come in many forms. Some are shallow, while others are deep. But physical excitement can only be exacerbated when all five sense are at their peak. A purely physical connection can be enjoyable and fun, but sexual climaxes peak when all senses are in tune and become one. \" - Monica Renata </em>\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" />','Before You Touched Me','','publish','open','open','','before-you-touched-me','','','2016-12-09 09:54:49','2016-12-09 15:54:49','',0,'http://www.monicarenata.com/before-you-touched-me/',0,'post','',0),(1393,1,'2016-12-09 08:43:55','2016-12-09 14:43:55','<p style=\"text-align: center;\">I felt you before you touched me</p>\r\n<p style=\"text-align: center;\">Your words danced like fingers on my skin</p>\r\n<p style=\"text-align: center;\">You deeply kissed my brain with your knowledge</p>\r\n<p style=\"text-align: center;\">And my body became ripe from within</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You hugged me with your manners</p>\r\n<p style=\"text-align: center;\">And gripped me tightly with your displays of protection and strength</p>\r\n<p style=\"text-align: center;\">You caressed me with your kindness</p>\r\n<p style=\"text-align: center;\">And my body quivered in anticipation of what’s next</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I felt you before you touched me</p>\r\n<p style=\"text-align: center;\">All of my senses were at their peak</p>\r\n<p style=\"text-align: center;\">I had seen you, heard you, and smelled you</p>\r\n<p style=\"text-align: center;\">But I couldn’t wait to touch and taste</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You made me break down my falls</p>\r\n<p style=\"text-align: center;\">And in this moment as we both lay</p>\r\n<p style=\"text-align: center;\">Flesh will unite and turn to one</p>\r\n<p style=\"text-align: center;\">Long awaited ecstasy shall take place</p>\r\n<p style=\"text-align: center;\"><img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" /></p>','Before You Touched Me','','inherit','closed','closed','','1392-revision-v1','','','2016-12-09 08:43:55','2016-12-09 14:43:55','',1392,'http://www.monicarenata.com/1392-revision-v1/',0,'revision','',0),(1396,1,'2016-12-09 08:49:42','2016-12-09 14:49:42','I felt you before you touched me\r\n\r\nYour words danced like fingers on my skin\r\n\r\nYou deeply kissed my brain with your knowledge\r\n\r\nAnd my body became ripe from within\r\n\r\n \r\n\r\nYou hugged me with your manners\r\n\r\nAnd gripped me tightly with your displays of protection and strength\r\n\r\nYou caressed me with your kindness\r\n\r\nAnd my body quivered in anticipation of what’s next\r\n\r\n \r\n\r\nI felt you before you touched me\r\n\r\nAll of my senses were at their peak\r\n\r\nI had seen you, heard you, and smelled you\r\n\r\nBut I couldn’t wait to touch and taste\r\n\r\n \r\n\r\nYou made me break down my falls\r\n\r\nAnd in this moment as we both lay\r\n\r\nFlesh will unite and turn to one\r\n\r\nLong awaited ecstasy shall take place\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" />','Before You Touched Me','','inherit','closed','closed','','1392-revision-v1','','','2016-12-09 08:49:42','2016-12-09 14:49:42','',1392,'http://www.monicarenata.com/1392-revision-v1/',0,'revision','',0),(1394,1,'2016-12-09 08:45:21','2016-12-09 14:45:21','<p style=\"text-align: center;\">I felt you before you touched me</p>\r\n<p style=\"text-align: center;\">Your words danced like fingers on my skin</p>\r\n<p style=\"text-align: center;\">You deeply kissed my brain with your knowledge</p>\r\n<p style=\"text-align: center;\">And my body became ripe from within</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You hugged me with your manners</p>\r\n<p style=\"text-align: center;\">And gripped me tightly with your displays of protection and strength</p>\r\n<p style=\"text-align: center;\">You caressed me with your kindness</p>\r\n<p style=\"text-align: center;\">And my body quivered in anticipation of what’s next</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I felt you before you touched me</p>\r\n<p style=\"text-align: center;\">All of my senses were at their peak</p>\r\n<p style=\"text-align: center;\">I had seen you, heard you, and smelled you</p>\r\n<p style=\"text-align: center;\">But I couldn’t wait to touch and taste</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">You made me break down my falls</p>\r\n<p style=\"text-align: center;\">And in this moment as we both lay</p>\r\n<p style=\"text-align: center;\">Flesh will unite and turn to one</p>\r\n<p style=\"text-align: center;\">Long awaited ecstasy shall take place</p>\r\n<p style=\"text-align: center;\"><img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" /></p>','Before You Touched Me','','inherit','closed','closed','','1392-revision-v1','','','2016-12-09 08:45:21','2016-12-09 14:45:21','',1392,'http://www.monicarenata.com/1392-revision-v1/',0,'revision','',0),(1395,1,'2016-12-09 08:49:09','2016-12-09 14:49:09','I felt you before you touched me\n\nYour words danced like fingers on my skin\n\nYou deeply kissed my brain with your knowledge\n\nAnd my body became ripe from within\n\n \n\nYou hugged me with your manners\n\nAnd gripped me tightly with your displays of protection and strength\n\nYou caressed me with your kindness\n\nAnd my body quivered in anticipation of what’s next\n\n \n\nI felt you before you touched me\n\nAll of my senses were at their peak\n\nI had seen you, heard you, and smelled you\n\nBut I couldn’t wait to touch and taste\n\n \n\nYou made me break down my falls\n\nAnd in this moment as we both lay\n\nFlesh will unite and turn to one\n\nLong awaited ecstasy shall take place\n\n<img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" />','Before You Touched Me','','inherit','closed','closed','','1392-autosave-v1','','','2016-12-09 08:49:09','2016-12-09 14:49:09','',1392,'http://www.monicarenata.com/1392-autosave-v1/',0,'revision','',0),(1397,1,'2016-12-09 09:01:46','2016-12-09 15:01:46','I felt you before you touched me\r\n\r\nYour words danced like fingers on my skin\r\n\r\nYou deeply kissed my brain with your knowledge\r\n\r\nAnd my body became ripe from within\r\n\r\n \r\n\r\nYou hugged me with your manners\r\n\r\nAnd gripped me tightly with your displays of protection and strength\r\n\r\nYou caressed me with your kindness\r\n\r\nAnd my body quivered in anticipation of what’s next\r\n\r\n \r\n\r\nI felt you before you touched me\r\n\r\nAll of my senses were at their peak\r\n\r\nI had seen you, heard you, and smelled you\r\n\r\nBut I couldn’t wait to touch and taste\r\n\r\n \r\n\r\nYou made me break down my walls\r\n\r\nAnd in this moment as we both lay\r\n\r\nFlesh will unite and turn to one\r\n\r\nLong awaited ecstasy shall take place\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" />','Before You Touched Me','','inherit','closed','closed','','1392-revision-v1','','','2016-12-09 09:01:46','2016-12-09 15:01:46','',1392,'http://www.monicarenata.com/1392-revision-v1/',0,'revision','',0),(1398,1,'2016-12-09 09:54:49','2016-12-09 15:54:49','I felt you before you touched me\r\n\r\nYour words danced like fingers on my skin\r\n\r\nYou deeply kissed my brain with your knowledge\r\n\r\nAnd my body became ripe from within\r\n\r\n \r\n\r\nYou hugged me with your manners\r\n\r\nAnd gripped me tightly with your displays of protection and strength\r\n\r\nYou caressed me with your kindness\r\n\r\nAnd my body quivered in anticipation of what’s next\r\n\r\n \r\n\r\nI felt you before you touched me\r\n\r\nAll of my senses were at their peak\r\n\r\nI had seen you, heard you, and smelled you\r\n\r\nBut I couldn’t wait to touch and taste\r\n\r\n \r\n\r\nYou made me break down my walls\r\n\r\nAnd in this moment as we both lay\r\n\r\nFlesh will unite and turn to one\r\n\r\nLong awaited ecstasy shall take place\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"Connections come in many forms. Some are shallow, while others are deep. But physical excitement can only be exacerbated when all five sense are at their peak. A purely physical connection can be enjoyable and fun, but sexual climaxes peak when all senses are in tune and become one. \" - Monica Renata </em>\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg\" alt=\"Image result for silhouette of couple\" width=\"340\" height=\"511\" />','Before You Touched Me','','inherit','closed','closed','','1392-revision-v1','','','2016-12-09 09:54:49','2016-12-09 15:54:49','',1392,'http://www.monicarenata.com/1392-revision-v1/',0,'revision','',0),(1399,1,'2016-12-12 14:30:48','2016-12-12 20:30:48','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n \r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n \r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n \r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n \r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n \r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always be you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n<blockquote>“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata</blockquote>\r\n\r\n<img class=\"aligncenter\" src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lover\'s Remorse','','publish','open','open','','lovers-remorse','','','2016-12-16 09:01:41','2016-12-16 15:01:41','',0,'http://www.monicarenata.com/lovers-remorse/',0,'post','',0),(1400,1,'2016-12-12 20:39:10','2016-12-13 02:39:10','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n \r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n \r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n \r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n \r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n \r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n<blockquote>“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata</blockquote>\r\n\r\n<img class=\"aligncenter\" src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lovers\' Remorse','','inherit','closed','closed','','1399-autosave-v1','','','2016-12-12 20:39:10','2016-12-13 02:39:10','',1399,'http://www.monicarenata.com/1399-autosave-v1/',0,'revision','',0),(1412,1,'2016-12-16 20:13:11','2016-12-17 02:13:11','Each day I awaken\r\nI slowly open my eyes\r\nAnd life is yet again beautiful\r\nMy life is always a surprise\r\n\r\nEach day I walk out my door\r\nI smile for the world to see\r\nAnd some people smile back\r\nWhile others frown at me\r\n\r\nThere is beauty in the ugliest things\r\nAnd some ugly things are absolutely beautiful\r\nA voice can be used to sing a lovely song\r\nOr a voice can be used to speak something hurtful\r\n\r\nKindness is taken for granted at times\r\nTears of sadness are deemed to others as weak\r\nChildren are bullied because of who they are\r\nWe walk by people who are truly in need\r\n\r\nYou are ridiculed for having feelings\r\nThey say \"feelings\" are for the weak\r\nThis world is so very twisted\r\nThis world tells you to be everyone but the person you know as M-E\r\n\r\nA robot in an emotional world\r\nFull of emotions people say you shouldn\'t feel\r\nYou shall be a warrior in your own beautiful world\r\nThat can overcome all since you cannot feel\r\n\r\nIn a world of so much drama\r\nYou are now unable to feel\r\nFor life doesn\'t disappoint you\r\nTo be Invincible, You now know how that feels\r\n\r\nBut what is the point of being that way?\r\nFor sometimes pain makes you feel alive\r\nAnd would you honestly think that you are living\r\nIf a tear never left your beautiful eye?\r\n\r\nLife and Death are circles\r\nIn Happiness there is always pain\r\nAnd you are human\r\nYou feel pleasure and also pain\r\n\r\nIt is nice to never be broken\r\nBut sometimes being broken is what we need\r\nFor why be invincible in a world\r\nAnd miss out on happiness because you\'re scared of pain\r\n\r\nLet the world scar you at times\r\nBut let yourself also smile\r\nEach day awaken with a positive mind\r\nFor that mind will help pick you up when your down\r\n\r\n<strong><em>\"I never truly understand what others find so appealing about being emotionless in the world. It is said that feelings are for the weak, but feelings make you feel alive. I would rather be scarred by the world and recover than be truly invincible.....For every painful moment and happy occasion in life has made me feel the most alive..\"</em> --Monica Renata</strong>','Invincible','','inherit','closed','closed','','795-revision-v1','','','2016-12-16 20:13:11','2016-12-17 02:13:11','',795,'http://www.monicarenata.com/795-revision-v1/',0,'revision','',0),(1404,1,'2016-12-12 20:38:21','2016-12-13 02:38:21','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n \r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n \r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n \r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n \r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n \r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n<blockquote>“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata</blockquote>\r\n\r\n<img class=\"aligncenter\" src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lovers\' Remorse','','inherit','closed','closed','','1399-revision-v1','','','2016-12-12 20:38:21','2016-12-13 02:38:21','',1399,'http://www.monicarenata.com/1399-revision-v1/',0,'revision','',0),(1403,1,'2016-12-12 14:43:51','2016-12-12 20:43:51','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\"></p>\r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n\r\n“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata\r\n\r\n\r\n<img src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lovers\' Remorse','','inherit','closed','closed','','1399-revision-v1','','','2016-12-12 14:43:51','2016-12-12 20:43:51','',1399,'http://www.monicarenata.com/1399-revision-v1/',0,'revision','',0),(1405,1,'2016-12-12 20:39:46','2016-12-13 02:39:46','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n \r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n \r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n \r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n \r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n \r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n<blockquote>“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata</blockquote>\r\n\r\n<img class=\"aligncenter\" src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lover\'s Remorse','','inherit','closed','closed','','1399-revision-v1','','','2016-12-12 20:39:46','2016-12-13 02:39:46','',1399,'http://www.monicarenata.com/1399-revision-v1/',0,'revision','',0),(1406,1,'2016-12-15 10:03:08','2016-12-15 16:03:08','<pre style=\"text-align: center;\">He claimed he wanted many things\r\n\r\nNight and day he worked and would rarely sleep\r\n\r\nFor money was his motivation\r\n\r\nAnd rich is what he aspired to be\r\n\r\n\r\n\r\n\r\nForgoing birthday celebrations\r\n\r\nAnd births of cousins and a new niece\r\n\r\nMissing all of life’s wonders\r\n\r\nFor dollars was all he could see\r\n\r\n\r\n\r\n\r\nChasing coins here and there\r\n\r\nWhile life just passed him by\r\n\r\nNever celebrated his own successes\r\n\r\nBecause all he wanted to do was grind\r\n\r\n\r\n\r\n\r\nHe claimed he wanted many things\r\n\r\nSpent years and years trying to become what he aspired to be\r\n\r\nBut now as he lays on his deathbed\r\n\r\nHe realizes that he forgot to be happy\r\n\r\n\r\n\r\n\r\n<strong><em>“The greatest misfortune in life is that too many people aspire to be rich, than to be happy.”</em></strong> –Monica Renata\r\n\r\n<img src=\"http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg\" alt=\"Related image\" width=\"561\" height=\"346\" />\r\n\r\n</pre>','Aspiration\'s Misfortune','','publish','open','open','','aspirations-misfortune','','','2016-12-15 10:23:00','2016-12-15 16:23:00','',0,'http://www.monicarenata.com/aspirations-misfortune/',0,'post','',0),(1409,1,'2016-12-15 10:23:00','2016-12-15 16:23:00','<pre style=\"text-align: center;\">He claimed he wanted many things\r\n\r\nNight and day he worked and would rarely sleep\r\n\r\nFor money was his motivation\r\n\r\nAnd rich is what he aspired to be\r\n\r\n\r\n\r\n\r\nForgoing birthday celebrations\r\n\r\nAnd births of cousins and a new niece\r\n\r\nMissing all of life’s wonders\r\n\r\nFor dollars was all he could see\r\n\r\n\r\n\r\n\r\nChasing coins here and there\r\n\r\nWhile life just passed him by\r\n\r\nNever celebrated his own successes\r\n\r\nBecause all he wanted to do was grind\r\n\r\n\r\n\r\n\r\nHe claimed he wanted many things\r\n\r\nSpent years and years trying to become what he aspired to be\r\n\r\nBut now as he lays on his deathbed\r\n\r\nHe realizes that he forgot to be happy\r\n\r\n\r\n\r\n\r\n<strong><em>“The greatest misfortune in life is that too many people aspire to be rich, than to be happy.”</em></strong> –Monica Renata\r\n\r\n<img src=\"http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg\" alt=\"Related image\" width=\"561\" height=\"346\" />\r\n\r\n</pre>','Aspiration\'s Misfortune','','inherit','closed','closed','','1406-revision-v1','','','2016-12-15 10:23:00','2016-12-15 16:23:00','',1406,'http://www.monicarenata.com/1406-revision-v1/',0,'revision','',0),(1407,1,'2016-12-15 10:11:49','2016-12-15 16:11:49','<p style=\"text-align: center;\">He claimed he wanted many things</p>\r\n<p style=\"text-align: center;\">Night and day he worked and would rarely sleep</p>\r\n<p style=\"text-align: center;\">For money was his motivation</p>\r\n<p style=\"text-align: center;\">And rich is what he aspired to be</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Forgoing birthday celebrations</p>\r\n<p style=\"text-align: center;\">And births of cousins and a new niece</p>\r\n<p style=\"text-align: center;\">Missing all of life’s wonders</p>\r\n<p style=\"text-align: center;\">For dollars was all he could see</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Chasing coins here and there</p>\r\n<p style=\"text-align: center;\">While life just passed him by</p>\r\n<p style=\"text-align: center;\">Never celebrated his own successes</p>\r\n<p style=\"text-align: center;\">Because all he wanted to do was grind</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">He claimed he wanted many things</p>\r\n<p style=\"text-align: center;\">Spent years and years trying to become what he aspired to be</p>\r\n<p style=\"text-align: center;\">But now as he lays on his deathbed</p>\r\n<p style=\"text-align: center;\">He realizes that he forgot to be happy</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><strong><em>“The greatest misfortune in life is that too many people aspire to be rich, than to be happy.”</em></strong> –Monica Renata</p>\r\n<p style=\"text-align: center;\"><img src=\"http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg\" alt=\"Related image\" width=\"561\" height=\"346\" /></p>\r\n<p style=\"text-align: center;\"></p>','Aspiration\'s Misfortune','','inherit','closed','closed','','1406-revision-v1','','','2016-12-15 10:11:49','2016-12-15 16:11:49','',1406,'http://www.monicarenata.com/1406-revision-v1/',0,'revision','',0),(1408,1,'2016-12-15 10:22:33','2016-12-15 16:22:33','<pre style=\"text-align: center;\">He claimed he wanted many things\r\n\r\nNight and day he worked and would rarely sleep\r\n\r\nFor money was his motivation\r\n\r\nAnd rich is what he aspired to be\r\n\r\n\r\n\r\n\r\nForgoing birthday celebrations\r\n\r\nAnd births of cousins and a new niece\r\n\r\nMissing all of life’s wonders\r\n\r\nFor dollars was all he could see\r\n\r\n\r\n\r\n\r\nChasing coins here and there\r\n\r\nWhile life just passed him by\r\n\r\nNever celebrated his own successes\r\n\r\nBecause all he wanted to do was grind\r\n\r\n\r\n\r\n\r\nHe claimed he wanted many things\r\n\r\nSpent years and years trying to become what he aspired to be\r\n\r\nBut now as he lays on his deathbed\r\n\r\nHe realizes that he forgot to be happy\r\n\r\n\r\n\r\n\r\n<strong><em>“The greatest misfortune in life is that too many people aspire to be rich, than to be happy.”</em></strong> –Monica Renata\r\n\r\n<img src=\"http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg\" alt=\"Related image\" width=\"561\" height=\"346\" />\r\n\r\n</pre>','Aspiration\'s Misfortune','','inherit','closed','closed','','1406-autosave-v1','','','2016-12-15 10:22:33','2016-12-15 16:22:33','',1406,'http://www.monicarenata.com/1406-autosave-v1/',0,'revision','',0),(1410,1,'2016-12-16 09:01:41','2016-12-16 15:01:41','It has always been you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nStare me down\r\n\r\nAnd question my actions\r\n\r\nKnowing that their reason is because\r\n\r\nI fear you\r\n\r\n \r\n\r\nWe weren’t water and oil\r\n\r\nAnd you knew this\r\n\r\nCompatibility was concentrated\r\n\r\nAnd then you ran away\r\n\r\n \r\n\r\nI fear you\r\n\r\nYet you fear us\r\n\r\nBecause you are scared\r\n\r\nOf possibilities\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Nonetheless you stare in my face</em></p>\r\n<p style=\"text-align: center;\"><em>And still contest me</em></p>\r\n<p style=\"text-align: center;\"><em>You gaze at me</em></p>\r\n<p style=\"text-align: center;\"><em>And say</em></p>\r\n \r\n<p style=\"text-align: right;\">It has always been you</p>\r\n<p style=\"text-align: right;\">The one that can speak to my soul</p>\r\n<p style=\"text-align: right;\">Make my heart scream</p>\r\n<p style=\"text-align: right;\">And drown me in my own tears</p>\r\n \r\n<p style=\"text-align: right;\">Stare me down</p>\r\n<p style=\"text-align: right;\">And question my actions</p>\r\n<p style=\"text-align: right;\">Knowing that their reason is because</p>\r\n<p style=\"text-align: right;\">I fear you</p>\r\n \r\n<p style=\"text-align: right;\">We are not fire and ice</p>\r\n<p style=\"text-align: right;\">And you know this</p>\r\n<p style=\"text-align: right;\">Our attraction is magnetic</p>\r\n<p style=\"text-align: right;\">But in your eyes there is doubt</p>\r\n \r\n<p style=\"text-align: right;\">I fear us</p>\r\n<p style=\"text-align: right;\">Yet you me</p>\r\n<p style=\"text-align: right;\">Because you are scared</p>\r\n<p style=\"text-align: right;\">Of possibilities</p>\r\n \r\n<p style=\"text-align: center;\"><em>And he is right</em></p>\r\n<p style=\"text-align: center;\"><em>I am scared of him</em></p>\r\n<p style=\"text-align: center;\"><em>Because I just don’t know</em></p>\r\n<p style=\"text-align: center;\"><em>But together we are both scared of possibilities</em></p>\r\n \r\n<p style=\"text-align: center;\"><em>Lost in a bubble that just won’t pop</em></p>\r\n<p style=\"text-align: center;\"><em>We are both trapped </em></p>\r\n<p style=\"text-align: center;\"><em>In a prison created in our minds </em></p>\r\n<p style=\"text-align: center;\"><em>Repeating the same script</em></p>\r\n \r\n\r\nIt will always be you\r\n\r\nThe one that can speak to my soul\r\n\r\nMake my heart scream\r\n\r\nAnd drown me in my own tears\r\n\r\n \r\n\r\nThe one I will think about daily\r\n\r\nThe one who I let go of because of fear\r\n\r\nThe one who unlocked me completely\r\n\r\nThe one who I loved and forever will…\r\n\r\n \r\n<p style=\"text-align: center;\"><em>Two souls standing side by side</em></p>\r\n<p style=\"text-align: center;\"><em>Pupil to Pupil and so many tears cried</em></p>\r\n<p style=\"text-align: center;\"><em>Both afraid of love because they are scared to get hurt</em></p>\r\n<p style=\"text-align: center;\"><em>True lover’s doom is sometimes Lover’s Remorse</em></p>\r\n \r\n<blockquote>“Do not let fear hold you back from the person you truly love. Your fear could end up hurting you in the long run. Remorse is everlasting when it comes to matters of the heart.” –Monica Renata</blockquote>\r\n\r\n<img class=\"aligncenter\" src=\"http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg\" alt=\"Image result for silhouette of couple breaking up\" width=\"300\" height=\"337\" />','Lover\'s Remorse','','inherit','closed','closed','','1399-revision-v1','','','2016-12-16 09:01:41','2016-12-16 15:01:41','',1399,'http://www.monicarenata.com/1399-revision-v1/',0,'revision','',0),(1415,1,'2016-12-27 20:15:50','2016-12-28 02:15:50','To sit in my chair waiting\r\n\r\nTears trickle down my breast\r\n\r\nMy heart is fiercely pounding\r\n\r\nThis is anticipation at its best\r\n\r\n \r\n\r\nBut as time slowly moves forward\r\n\r\nAs I know it will always do\r\n\r\nI hesitate in my knowing\r\n\r\nMy knowing of what will soon ensue\r\n\r\n \r\n\r\nBreathing gets faster and labored\r\n\r\nSoon your hands are turning the key in the latch\r\n\r\nI can’t wait for the moment you return\r\n\r\nBut in the meantime I will relax\r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/236x/48/db/c3/48dbc3452bdb636e017924fb2038a607.jpg\" alt=\"Image result for sitting in the kitchen sad painting\" width=\"236\" height=\"314\" />','In The Meantime','','inherit','closed','closed','','1413-revision-v1','','','2016-12-27 20:15:50','2016-12-28 02:15:50','',1413,'http://www.monicarenata.com/1413-revision-v1/',0,'revision','',0),(1427,1,'2017-01-16 10:54:31','2017-01-16 16:54:31','','winter-to-spring','','inherit','open','closed','','winter-to-spring-3','','','2017-01-16 10:54:31','2017-01-16 16:54:31','',0,'http://www.monicarenata.com/wp-content/uploads/2017/01/winter-to-spring.jpg',0,'attachment','image/jpeg',0),(1432,1,'2017-01-16 15:16:12','2017-01-16 21:16:12','','vintage_paper_cameo_key_pen_book_76277_3840x2400','','inherit','open','closed','','vintage_paper_cameo_key_pen_book_76277_3840x2400','','','2017-01-16 15:16:12','2017-01-16 21:16:12','',0,'http://www.monicarenata.com/wp-content/uploads/2017/01/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg',0,'attachment','image/jpeg',0),(1433,1,'2017-01-16 15:16:52','2017-01-16 21:16:52','','The-key-of-your-soul-and-the-vintage-paper_5120x3200','','inherit','open','closed','','the-key-of-your-soul-and-the-vintage-paper_5120x3200','','','2017-01-16 15:16:52','2017-01-16 21:16:52','',0,'http://www.monicarenata.com/wp-content/uploads/2017/01/The-key-of-your-soul-and-the-vintage-paper_5120x3200.jpg',0,'attachment','image/jpeg',0),(1472,1,'2017-02-09 10:34:49','2017-02-09 16:34:49','Who am I when darkness falls\r\n\r\nOr when the bough may break?\r\n\r\n \r\n\r\nWho am I when the sun shines bright\r\n\r\nAnd the waters of earth evaporate?\r\n\r\n \r\n\r\nWho am I when all is good\r\n\r\nBut venality is raging within?\r\n\r\n \r\n\r\nWho am I when I ask for forgiveness\r\n\r\nWhen I am drowned with sin?\r\n\r\n \r\n\r\nBlood running through my veins\r\n\r\nThe same way as it does for you\r\n\r\n \r\n\r\nI feel joy and sadness\r\n\r\nI even love like you do\r\n\r\n \r\n\r\nWho am I, I ask myself\r\n\r\nFor you say I am different\r\n\r\n \r\n\r\nBut when I cast my eyes on you\r\n\r\nI see no enemy, but a brother or sister\r\n\r\n \r\n\r\nSo who am I when I stand before you\r\n\r\nWith tears pouring from my eyes?\r\n\r\n \r\n\r\nWho am I when I cry for a mother\r\n\r\nWhose last son has just died ?\r\n\r\n \r\n\r\nWho am I when I wish for better\r\n\r\nBecause we aren’t in the best of times?\r\n\r\n \r\n\r\nWho am I?\r\n\r\nIs what you desire to know\r\n\r\n \r\n\r\nI feel and care\r\n\r\nAnd so do you\r\n\r\n \r\n\r\nSo to answer the question you desire\r\n\r\nWell I am just like you\r\n\r\n<em><strong></strong></em>\r\n<em><strong>“Though there are many things that may make us different, we are more alike than we think. “</strong></em> –Monica Renata\r\n\r\n<img src=\"https://img.clipartfest.com/7ae29d851a10ec172a32bed9d47feb16_395855b08cea1c02d517adaae6ac04-two-people-talking-clip-art_649-495.jpeg\" alt=\"Image result for two different people\" width=\"477\" height=\"364\" />','Who Am I?','','inherit','closed','closed','','1471-revision-v1','','','2017-02-09 10:34:49','2017-02-09 16:34:49','',1471,'http://www.monicarenata.com/1471-revision-v1/',0,'revision','',0),(1473,1,'2017-02-09 10:37:09','2017-02-09 16:37:09','From tattered clothes\r\n\r\nTo holes in shoes\r\n\r\nI have and still endured\r\n\r\n \r\n\r\nThe blood that courses through my veins\r\n\r\nPumps fiercely as it boils\r\n\r\n \r\n\r\nDetermination in my eyes\r\n\r\nAs tears may trickle down\r\n\r\nI will be the best I can be\r\n\r\nI can’t and won’t give up now\r\n\r\n \r\n\r\nFrom unkempt hair\r\n\r\nTo shabby appearance\r\n\r\nA smile remains on my face\r\n\r\n \r\n\r\nFor my heart knows that I will win\r\n\r\nEven though today may not be my day\r\n\r\n \r\n\r\nThere is courage within my being\r\n\r\nI can feel it when I stand or sit\r\n\r\nI will be more than what others thought I could be\r\n\r\nFor I am an unwavering soul by bequest\r\n\r\n \r\n\r\nFrom fragmented spaces\r\n\r\nTo poorly insulated rooms\r\n\r\nThat is where I was raised\r\n\r\n \r\n\r\nCold nights in winter felt like hell\r\n\r\nWhile in the summer I prayed for rain\r\n\r\n \r\n\r\nForward motion and never backing down\r\n\r\nPurpose in my heart\r\n\r\nAbove all expectations I’ll continue to rise like a phoenix\r\n\r\nStrength personified is me\r\n\r\n<img src=\"http://2.bp.blogspot.com/-e4Xo5jGynlU/VMP3hf6UpfI/AAAAAAAAAug/2w3nehmjQ1c/s1600/strength.jpg\" alt=\"Image result for strength personified\" width=\"604\" height=\"370\" />\r\n','Strength Personified','','inherit','closed','closed','','1470-revision-v1','','','2017-02-09 10:37:09','2017-02-09 16:37:09','',1470,'http://www.monicarenata.com/1470-revision-v1/',0,'revision','',0),(1471,1,'2017-02-09 10:24:18','2017-02-09 16:24:18','Who am I when darkness falls\r\n\r\nOr when the bough may break?\r\n\r\n \r\n\r\nWho am I when the sun shines bright\r\n\r\nAnd the waters of earth evaporate?\r\n\r\n \r\n\r\nWho am I when all is good\r\n\r\nBut venality is raging within?\r\n\r\n \r\n\r\nWho am I when I ask for forgiveness\r\n\r\nWhen I am drowned with sin?\r\n\r\n \r\n\r\nBlood running through my veins\r\n\r\nThe same way as it does for you\r\n\r\n \r\n\r\nI feel joy and sadness\r\n\r\nI even love like you do\r\n\r\n \r\n\r\nWho am I, I ask myself\r\n\r\nFor you say I am different\r\n\r\n \r\n\r\nBut when I cast my eyes on you\r\n\r\nI see no enemy, but a brother or sister\r\n\r\n \r\n\r\nSo who am I when I stand before you\r\n\r\nWith tears pouring from my eyes?\r\n\r\n \r\n\r\nWho am I when I cry for a mother\r\n\r\nWhose last son has just died ?\r\n\r\n \r\n\r\nWho am I when I wish for better\r\n\r\nBecause we aren’t in the best of times?\r\n\r\n \r\n\r\nWho am I?\r\n\r\nIs what you desire to know\r\n\r\n \r\n\r\nI feel and care\r\n\r\nAnd so do you\r\n\r\n \r\n\r\nSo to answer the question you desire\r\n\r\nWell I am just like you\r\n\r\n<em><strong></strong></em>\r\n<em><strong>“Though there are many things that may make us different, we are more alike than we think. “</strong></em> –Monica Renata\r\n\r\n<img src=\"https://img.clipartfest.com/7ae29d851a10ec172a32bed9d47feb16_395855b08cea1c02d517adaae6ac04-two-people-talking-clip-art_649-495.jpeg\" alt=\"Image result for two different people\" width=\"477\" height=\"364\" />','Who Am I?','','publish','open','open','','who-am-i','','','2017-02-09 10:34:49','2017-02-09 16:34:49','',0,'http://www.monicarenata.com/who-am-i/',0,'post','',0),(1470,1,'2017-02-09 10:21:41','2017-02-09 16:21:41','From tattered clothes\r\n\r\nTo holes in shoes\r\n\r\nI have and still endured\r\n\r\n \r\n\r\nThe blood that courses through my veins\r\n\r\nPumps fiercely as it boils\r\n\r\n \r\n\r\nDetermination in my eyes\r\n\r\nAs tears may trickle down\r\n\r\nI will be the best I can be\r\n\r\nI can’t and won’t give up now\r\n\r\n \r\n\r\nFrom unkempt hair\r\n\r\nTo shabby appearance\r\n\r\nA smile remains on my face\r\n\r\n \r\n\r\nFor my heart knows that I will win\r\n\r\nEven though today may not be my day\r\n\r\n \r\n\r\nThere is courage within my being\r\n\r\nI can feel it when I stand or sit\r\n\r\nI will be more than what others thought I could be\r\n\r\nFor I am an unwavering soul by bequest\r\n\r\n \r\n\r\nFrom fragmented spaces\r\n\r\nTo poorly insulated rooms\r\n\r\nThat is where I was raised\r\n\r\n \r\n\r\nCold nights in winter felt like hell\r\n\r\nWhile in the summer I prayed for rain\r\n\r\n \r\n\r\nForward motion and never backing down\r\n\r\nPurpose in my heart\r\n\r\nAbove all expectations I’ll continue to rise like a phoenix\r\n\r\nStrength personified is me\r\n\r\n<img src=\"http://2.bp.blogspot.com/-e4Xo5jGynlU/VMP3hf6UpfI/AAAAAAAAAug/2w3nehmjQ1c/s1600/strength.jpg\" alt=\"Image result for strength personified\" width=\"604\" height=\"370\" />\r\n','Strength Personified','','publish','open','open','','strength-personified','','','2017-02-09 10:37:09','2017-02-09 16:37:09','',0,'http://www.monicarenata.com/strength-personified/',0,'post','',0),(1447,1,'2017-02-03 20:23:20','2017-02-04 02:23:20','','mother-nature-desktop-wallpaper-background-1','','inherit','open','closed','','mother-nature-desktop-wallpaper-background-1','','','2017-02-03 20:23:20','2017-02-04 02:23:20','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/mother-nature-desktop-wallpaper-background-1.jpg',0,'attachment','image/jpeg',0),(1448,1,'2017-02-03 20:27:37','2017-02-04 02:27:37','','556-mother-nature-woman-fairy','','inherit','open','closed','','556-mother-nature-woman-fairy','','','2017-02-03 20:27:37','2017-02-04 02:27:37','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/556-mother-nature-woman-fairy.jpg',0,'attachment','image/jpeg',0),(1449,1,'2017-02-03 20:35:33','2017-02-04 02:35:33','','Butterfly-woman-576x343','','inherit','open','closed','','butterfly-woman-576x343','','','2017-02-03 20:35:33','2017-02-04 02:35:33','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/Butterfly-woman-576x343.jpg',0,'attachment','image/jpeg',0),(1451,1,'2017-02-03 21:43:02','2017-02-04 03:43:02','','banner_poetry','','inherit','open','closed','','banner_poetry','','','2017-02-03 21:43:02','2017-02-04 03:43:02','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/banner_poetry.gif',0,'attachment','image/gif',0),(1454,1,'2017-02-04 18:29:43','2017-02-05 00:29:43','','peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023','','inherit','open','closed','','peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023','','','2017-02-04 18:29:43','2017-02-05 00:29:43','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/peaceful-place-anime-scenery-wallpapers-and-images-desktop-nexus-592023.jpg',0,'attachment','image/jpeg',0),(1456,1,'2017-02-04 18:31:07','2017-02-05 00:31:07','','sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768','Summer Butterfly Twilight Fog Eerie Night Bridge Evening Leaves Bird Rope Autumn Amber Sky Light Papillon Glow Lights Mist Trees Butterflies Fall Dragonfly Wallpaper Pics','inherit','open','closed','','sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768','','','2017-02-04 18:31:07','2017-02-05 00:31:07','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/sky-leaves-fall-bridge-dragonfly-butterfly-autumn-papillon-twilight-lights-evening-glow-summer-night-fog-light-bird-amber-mist-eerie-trees-rope-wallpaper-hd-free-download-1366x768.jpg',0,'attachment','image/jpeg',0),(1484,1,'2017-02-13 16:04:20','2017-02-13 22:04:20','<p style=\"text-align: center;\">Poison on the tip of the tongue\r\nWaiting for your ears\r\nWrapped up in the allure of their voice\r\n\r\nThe words seems like a spell that can\'t be dispelled\r\n\r\nThey said that words can never hurt\r\nToday you are proven that is a lie\r\nThey are winning souls by discourse\r\nWhile bringing tears to others eyes\r\n\r\nThe rhetoric is distasteful\r\nThe message relayed is that of contempt\r\nHowever your sweet words can make a difference\r\nIf you are no longer afraid and decide to speak\r\n\r\n</p>\r\n<p style=\"text-align: center;\"><em>\"Words have the power to persuade even those of the greatest intellect. All the same, if used effectively, they can extinguish the fire of any beast.\" - Monica Renata</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img src=\"https://content.artofmanliness.com/uploads/2010/11/cicero.jpg\" alt=\"Image result for Rhetoric\" /></p>','The Art of Persuasion','','inherit','closed','closed','','1483-revision-v1','','','2017-02-13 16:04:20','2017-02-13 22:04:20','',1483,'http://www.monicarenata.com/1483-revision-v1/',0,'revision','',0),(1485,1,'2017-02-13 16:06:55','2017-02-13 22:06:55','Poison on the tip of the tongue\r\nWaiting for your ears\r\nWrapped up in the allure of their voice\r\nThe words seems like a spell that can\'t be dispelled\r\n\r\nThey said that words can never hurt\r\nToday you are proven that is a lie\r\nThey are winning souls by discourse\r\nWhile bringing tears to others eyes\r\n\r\nThe rhetoric is distasteful\r\nThe message relayed is that of contempt\r\nHowever your sweet words can make a difference\r\nIf you are no longer afraid and decide to speak\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n<p style=\"text-align: center;\"><em>\"Words have the power to persuade even those of the greatest intellect. All the same, if used effectively, they can extinguish the fire of any beast.\" - Monica Renata</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img src=\"https://content.artofmanliness.com/uploads/2010/11/cicero.jpg\" alt=\"Image result for Rhetoric\" /></p>','The Art of Persuasion','','inherit','closed','closed','','1483-revision-v1','','','2017-02-13 16:06:55','2017-02-13 22:06:55','',1483,'http://www.monicarenata.com/1483-revision-v1/',0,'revision','',0),(1483,1,'2017-02-13 16:07:29','2017-02-13 22:07:29','<p style=\"text-align: center;\">Poison on the tip of the tongue\r\nWaiting for your ears\r\nWrapped up in the allure of their voice\r\nThe words seems like a spell that can\'t be dispelled</p>\r\n<p style=\"text-align: center;\">They said that words can never hurt\r\nToday you are proven that is a lie\r\nThey are winning souls by discourse\r\nWhile bringing tears to others eyes</p>\r\n<p style=\"text-align: center;\">The rhetoric is distasteful\r\nThe message relayed is that of contempt\r\nHowever your sweet words can make a difference\r\nIf you are no longer afraid and decide to speak</p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n<p style=\"text-align: center;\"><em>\"Words have the power to persuade even those of the greatest intellect. All the same, if used effectively, they can extinguish the fire of any beast.\" - Monica Renata</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img src=\"https://content.artofmanliness.com/uploads/2010/11/cicero.jpg\" alt=\"Image result for Rhetoric\" /></p>','The Art of Persuasion','','publish','open','open','','the-art-of-persuasion','','','2017-02-13 16:07:29','2017-02-13 22:07:29','',0,'http://www.monicarenata.com/?p=1483',0,'post','',0),(1461,1,'2017-02-04 23:31:35','2017-02-05 05:31:35','','image110 (1)','','inherit','open','closed','','image110-1','','','2017-02-04 23:31:35','2017-02-05 05:31:35','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/image110-1.jpg',0,'attachment','image/jpeg',0),(1462,1,'2017-02-04 23:36:21','2017-02-05 05:36:21','','1403796822','','inherit','open','closed','','1403796822','','','2017-02-04 23:36:21','2017-02-05 05:36:21','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/1403796822.jpg',0,'attachment','image/jpeg',0),(1463,1,'2017-02-04 23:36:48','2017-02-05 05:36:48','','2affae185da0025b2514a060995e1a29','','inherit','open','closed','','2affae185da0025b2514a060995e1a29','','','2017-02-04 23:41:24','2017-02-05 05:41:24','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/2affae185da0025b2514a060995e1a29.jpg',0,'attachment','image/jpeg',0),(1464,1,'2017-02-04 23:37:41','2017-02-05 05:37:41','','vintage_paper_cameo_key_pen_book_76277_3840x2400','','inherit','open','closed','','vintage_paper_cameo_key_pen_book_76277_3840x2400-2','','','2017-02-04 23:37:41','2017-02-05 05:37:41','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg',0,'attachment','image/jpeg',0),(1509,1,'2017-03-02 11:27:53','2017-03-02 17:27:53','<h4 style=\"text-align: center;\">How I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">The beauty my eyes see when I look at you</h4>\r\n<h4 style=\"text-align: center;\">The beauty that comes in the form of words from your mouth</h4>\r\n<h4 style=\"text-align: center;\">The beauty in the actions that you do</h4>\r\n \r\n<h4 style=\"text-align: center;\">In the small of your neck when you are walking away</h4>\r\n<h4 style=\"text-align: center;\">In the array of passionate words that your mouth spew</h4>\r\n<h4 style=\"text-align: center;\">In your hands that have helped so many</h4>\r\n<h4 style=\"text-align: center;\">Beauty is so engrossed within you</h4>\r\n \r\n<h4 style=\"text-align: center;\">If I could close my eyes for a lifetime</h4>\r\n<h4 style=\"text-align: center;\">This beauty others and I could still see</h4>\r\n<h4 style=\"text-align: center;\">But oh how I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">For you are more special than you think</h4>\r\n<h4 style=\"text-align: center;\"><img src=\"https://s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg\" alt=\"Related image\" width=\"326\" height=\"180\" /></h4>','I Wish You Could See','','publish','open','open','','i-wish-you-could-see','','','2017-03-02 11:44:51','2017-03-02 17:44:51','',0,'http://www.monicarenata.com/i-wish-you-could-see/',0,'post','',1),(1491,1,'2017-02-21 21:41:14','2017-02-22 03:41:14','<p style=\"text-align: center;\">Let all the hands of the clock stop</p>\r\n<p style=\"text-align: center;\">And raindrops halt mid air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Let water be calm at even the roughest sea</p>\r\n<p style=\"text-align: center;\">And not a bit of wind in the air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Pause and enjoy this moment</p>\r\n<p style=\"text-align: center;\">Look around and breathe in deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For each moment is uniquely special</p>\r\n<p style=\"text-align: center;\">This is something you must see</p>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','publish','open','open','','pause','','','2017-02-22 10:04:23','2017-02-22 16:04:23','',0,'http://www.monicarenata.com/?p=1491',0,'post','',0),(1488,1,'2017-02-15 12:49:05','2017-02-15 18:49:05','Freezing cold\r\n\r\nRain drops fall\r\n\r\nNow the rain is sleet\r\n\r\n \r\n\r\nFalling so ever lightly\r\n\r\nOn my cherry red cheeks\r\n\r\n \r\n\r\nPiercing the softness of my flesh\r\n\r\nEver so soft\r\n\r\nNot so deep\r\n\r\n \r\n\r\nJust like the words you say to me\r\n\r\nAs we continue to speak\r\n\r\n \r\n\r\nFreezing cold\r\n\r\nThe storm is pounding\r\n\r\nNow comes the hail\r\n\r\n \r\n\r\nPounding all that is below\r\n\r\nHitting me as well\r\n\r\n \r\n\r\nBruising my ego\r\n\r\nForcing me into subordination\r\n\r\nEmotions become stale\r\n\r\n \r\n\r\nYour words are slowly killing me\r\n\r\nI fear this time the storm will prevail\r\n\r\n \r\n\r\nYet I still fancy you\r\n\r\nI love your charm\r\n\r\nAnd I know it’s not right\r\n\r\n \r\n\r\nI love spending time with you\r\n\r\nBut your words are cold as ice\r\n\r\n<img src=\"http://img14.deviantart.net/4e0d/i/2008/041/6/b/harsh_words_by_xr3drum.jpg\" alt=\"Image result for harsh words\" width=\"407\" height=\"357\" />','Cold As Ice','','publish','open','open','','cold-as-ice','','','2017-02-15 13:18:46','2017-02-15 19:18:46','',0,'http://www.monicarenata.com/cold-as-ice/',0,'post','',0),(1489,1,'2017-02-15 13:18:46','2017-02-15 19:18:46','Freezing cold\r\n\r\nRain drops fall\r\n\r\nNow the rain is sleet\r\n\r\n \r\n\r\nFalling so ever lightly\r\n\r\nOn my cherry red cheeks\r\n\r\n \r\n\r\nPiercing the softness of my flesh\r\n\r\nEver so soft\r\n\r\nNot so deep\r\n\r\n \r\n\r\nJust like the words you say to me\r\n\r\nAs we continue to speak\r\n\r\n \r\n\r\nFreezing cold\r\n\r\nThe storm is pounding\r\n\r\nNow comes the hail\r\n\r\n \r\n\r\nPounding all that is below\r\n\r\nHitting me as well\r\n\r\n \r\n\r\nBruising my ego\r\n\r\nForcing me into subordination\r\n\r\nEmotions become stale\r\n\r\n \r\n\r\nYour words are slowly killing me\r\n\r\nI fear this time the storm will prevail\r\n\r\n \r\n\r\nYet I still fancy you\r\n\r\nI love your charm\r\n\r\nAnd I know it’s not right\r\n\r\n \r\n\r\nI love spending time with you\r\n\r\nBut your words are cold as ice\r\n\r\n<img src=\"http://img14.deviantart.net/4e0d/i/2008/041/6/b/harsh_words_by_xr3drum.jpg\" alt=\"Image result for harsh words\" width=\"407\" height=\"357\" />','Cold As Ice','','inherit','closed','closed','','1488-revision-v1','','','2017-02-15 13:18:46','2017-02-15 19:18:46','',1488,'http://www.monicarenata.com/1488-revision-v1/',0,'revision','',0),(1466,1,'2017-02-05 00:30:51','2017-02-05 06:30:51','http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg','cropped-THE-AWKWARD-BUTTERFLY.jpeg','','inherit','open','closed','','cropped-the-awkward-butterfly-jpeg','','','2017-02-05 00:30:51','2017-02-05 06:30:51','',0,'http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg',0,'attachment','image/jpeg',0),(1467,1,'2017-02-05 00:35:04','2017-02-05 06:35:04','','cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg','','inherit','open','closed','','cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-jpg','','','2017-02-05 00:35:04','2017-02-05 06:35:04','',0,'http://www.monicarenata.com/wp-content/uploads/2017/01/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg',0,'attachment','image/jpeg',0),(1486,1,'2017-02-13 16:07:09','2017-02-13 22:07:09','<p style=\"text-align: center;\">Poison on the tip of the tongue\r\nWaiting for your ears\r\nWrapped up in the allure of their voice\r\nThe words seems like a spell that can\'t be dispelled</p>\r\n<p style=\"text-align: center;\">They said that words can never hurt\r\nToday you are proven that is a lie\r\nThey are winning souls by discourse\r\nWhile bringing tears to others eyes</p>\r\n<p style=\"text-align: center;\">The rhetoric is distasteful\r\nThe message relayed is that of contempt\r\nHowever your sweet words can make a difference\r\nIf you are no longer afraid and decide to speak</p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n<p style=\"text-align: center;\"><em>\"Words have the power to persuade even those of the greatest intellect. All the same, if used effectively, they can extinguish the fire of any beast.\" - Monica Renata</em></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img src=\"https://content.artofmanliness.com/uploads/2010/11/cicero.jpg\" alt=\"Image result for Rhetoric\" /></p>','The Art of Persuasion','','inherit','closed','closed','','1483-revision-v1','','','2017-02-13 16:07:09','2017-02-13 22:07:09','',1483,'http://www.monicarenata.com/1483-revision-v1/',0,'revision','',0),(1479,1,'2017-02-10 12:20:07','2017-02-10 18:20:07','I do not fear the gallows\r\nFor the rope is already around my neck\r\nThe darkness has already consumed my world\r\nAnd I am daily gasping for breath\r\n\r\nI do not fear the crowd that watch\r\nFor I have seen those faces before\r\nThe ones who laughed at me when I faltered\r\nAnd I am sure they will lark once more\r\n\r\nAnd I do not fear going to heaven nor hell\r\nFor in fire I have walked daily\r\nTo finally merge with eternal peace\r\nI am gaily anticipating\r\n\r\nI will walk through the crowd onward to the gallows\r\nAnd I am finally not afraid\r\nFor I will live my life for me\r\nWhether I am condemned or praised\r\n\r\n<em><strong></strong></em>\r\n<em><strong>“When life is lived to your accord, you will no longer fear the judgments of others. The greatest disdain in life can occur when you live your life for others instead of yourself. Never be afraid to live to your own script. ”</strong></em> –Monica Renata\r\n\r\n<img src=\"http://thewisdomdaily.com/wp-content/uploads/2016/05/15775540288_4c8e54dbef_b.jpg\" alt=\"Related image\" height=\"361\" width=\"482\" />','I Do Not Fear The Gallows','','publish','open','open','','i-do-not-fear-the-gallows','','','2017-02-10 15:37:29','2017-02-10 21:37:29','',0,'http://www.monicarenata.com/i-do-not-fear-the-gallows/',0,'post','',3),(1480,1,'2017-02-10 15:37:29','2017-02-10 21:37:29','I do not fear the gallows\r\nFor the rope is already around my neck\r\nThe darkness has already consumed my world\r\nAnd I am daily gasping for breath\r\n\r\nI do not fear the crowd that watch\r\nFor I have seen those faces before\r\nThe ones who laughed at me when I faltered\r\nAnd I am sure they will lark once more\r\n\r\nAnd I do not fear going to heaven nor hell\r\nFor in fire I have walked daily\r\nTo finally merge with eternal peace\r\nI am gaily anticipating\r\n\r\nI will walk through the crowd onward to the gallows\r\nAnd I am finally not afraid\r\nFor I will live my life for me\r\nWhether I am condemned or praised\r\n\r\n<em><strong></strong></em>\r\n<em><strong>“When life is lived to your accord, you will no longer fear the judgments of others. The greatest disdain in life can occur when you live your life for others instead of yourself. Never be afraid to live to your own script. ”</strong></em> –Monica Renata\r\n\r\n<img src=\"http://thewisdomdaily.com/wp-content/uploads/2016/05/15775540288_4c8e54dbef_b.jpg\" alt=\"Related image\" height=\"361\" width=\"482\" />','I Do Not Fear The Gallows','','inherit','closed','closed','','1479-revision-v1','','','2017-02-10 15:37:29','2017-02-10 21:37:29','',1479,'http://www.monicarenata.com/1479-revision-v1/',0,'revision','',0),(1499,1,'2017-02-22 10:03:38','2017-02-22 16:03:38','<p style=\"text-align: center;\">Let all the hands of the clock stop</p>\r\n<p style=\"text-align: center;\">And raindrops halt mid air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Let water be calm at even the roughest sea</p>\r\n<p style=\"text-align: center;\">And not a bit of wind in the air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Pause and enjoy this moment</p>\r\n<p style=\"text-align: center;\">Look around and breathe in deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For each moment is uniquely special</p>\r\n<p style=\"text-align: center;\">This is something you must see</p>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','inherit','closed','closed','','1491-autosave-v1','','','2017-02-22 10:03:38','2017-02-22 16:03:38','',1491,'http://www.monicarenata.com/1491-autosave-v1/',0,'revision','',0),(1503,1,'2017-02-24 07:36:13','2017-02-24 13:36:13','<h5 style=\"text-align: center;\"> I hope you go to places\r\nPlaces that you have always dreamed\r\nBe surrounded by things that make you smile\r\nAnd loved by everyone you meet\r\n\r\n\r\nI hope you realize your full potential\r\nEven when your heart may be filled with doubts\r\nBe courageous in your efforts\r\nAnd venture more than your brain at times allows\r\n\r\n\r\nI hope you flourish in every avenue of life\r\nEach branch of life sprouting like weeds\r\nBe blessed in all that you do\r\nAnd always be humble and let the love in your heart never leave\r\n\r\n\r\nI hope when you stumble you get back on your feet\r\nEven when at times you feel you can’t\r\nBe the one God knows you can be\r\nAnd despite your destination, always walk with faith</h5>\r\n<strong><em>\"No matter where you walk in life, move forward with a clean heart and faith. For this is the path that always leads to personal truth, understanding, and distinction.\" -Monica Renata</em></strong>\r\n<h6 style=\"text-align: center;\">\r\n\r\n<img src=\"https://i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg\" alt=\"Image result for footsteps\" width=\"736\" height=\"413\" />\r\n\r\n</h6>\r\n<!--more-->','Your Walk','','inherit','closed','closed','','1502-autosave-v1','','','2017-02-24 07:36:13','2017-02-24 13:36:13','',1502,'http://www.monicarenata.com/1502-autosave-v1/',0,'revision','',0),(1498,1,'2017-02-21 21:39:12','2017-02-22 03:39:12','<p style=\"text-align: center;\">Let all the hands of the clock stop</p>\r\n<p style=\"text-align: center;\">And raindrops halt mid air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Let water be calm at even the roughest sea</p>\r\n<p style=\"text-align: center;\">And no a bit of wind in the air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Pause and enjoy this moment</p>\r\n<p style=\"text-align: center;\">Look around and breathe in deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For each moment is uniquely special</p>\r\n<p style=\"text-align: center;\">This is something you must see</p>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','inherit','closed','closed','','1491-revision-v1','','','2017-02-21 21:39:12','2017-02-22 03:39:12','',1491,'http://www.monicarenata.com/1491-revision-v1/',0,'revision','',0),(1502,1,'2017-02-24 07:13:19','2017-02-24 13:13:19','<h5 style=\"text-align: center;\"> I hope you go to places\r\nPlaces that you have always dreamed\r\nBe surrounded by things that make you smile\r\nAnd loved by everyone you meet\r\n\r\n\r\nI hope you realize your full potential\r\nEven when your heart may be filled with doubts\r\nBe courageous in your efforts\r\nAnd venture more than your brain at times allows\r\n\r\n\r\nI hope you flourish in every avenue of life\r\nEach branch of life sprouting like weeds\r\nBe blessed in all that you do\r\nAnd always be humble and let the love in your heart never leave\r\n\r\n\r\nI hope when you stumble you get back on your feet\r\nEven when at times you feel you can’t\r\nBe the one God knows you can be\r\nAnd despite your destination, always walk with faith</h5>\r\n<strong><em>\"No matter where you walk in life, move forward with a clean heart and faith. For this is the path that always leads to personal truth, understanding, and distinction.\" -Monica Renata</em></strong>\r\n<h6 style=\"text-align: center;\">\r\n\r\n<img src=\"https://i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg\" alt=\"Image result for footsteps\" width=\"736\" height=\"413\" />\r\n\r\n</h6>\r\n<!--more-->','Your Walk','','publish','open','open','','your-walk','','','2017-02-24 07:36:57','2017-02-24 13:36:57','',0,'http://www.monicarenata.com/your-walk/',0,'post','',0),(1497,1,'2017-02-21 21:38:40','2017-02-22 03:38:40','<p style=\"text-align: center;\">Let all the hands of the clock stop</p>\r\n<p style=\"text-align: center;\">And raindrops halt mid air</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">Let water be calm at even the roughest sea</p>\r\n<p style=\"text-align: center;\">And no a bit of wind in the air</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">Pause and enjoy this moment</p>\r\n<p style=\"text-align: center;\">Look around and breathe in deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">For each moment is uniquely special</p>\r\n<p style=\"text-align: center;\">This is something you must see</p>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','inherit','closed','closed','','1491-revision-v1','','','2017-02-21 21:38:40','2017-02-22 03:38:40','',1491,'http://www.monicarenata.com/1491-revision-v1/',0,'revision','',0),(1496,1,'2017-02-21 21:37:59','2017-02-22 03:37:59','<h3 style=\"text-align: center;\">Let all the hands of the clock stop</h3>\r\n<h3 style=\"text-align: center;\">And raindrops halt mid air</h3>\r\n<h3 style=\"text-align: center;\"></h3>\r\n \r\n<h3 style=\"text-align: center;\">Let water be calm at even the roughest sea</h3>\r\n<h3 style=\"text-align: center;\">And no a bit of wind in the air</h3>\r\n<h3 style=\"text-align: center;\"></h3>\r\n \r\n<h3 style=\"text-align: center;\">Pause and enjoy this moment</h3>\r\n<h3 style=\"text-align: center;\">Look around and breathe in deep</h3>\r\n<h3 style=\"text-align: center;\"></h3>\r\n \r\n<h3 style=\"text-align: center;\">For each moment is uniquely special</h3>\r\n<h3 style=\"text-align: center;\">This is something you must see</h3>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','inherit','closed','closed','','1491-revision-v1','','','2017-02-21 21:37:59','2017-02-22 03:37:59','',1491,'http://www.monicarenata.com/1491-revision-v1/',0,'revision','',0),(1500,1,'2017-02-22 10:04:23','2017-02-22 16:04:23','<p style=\"text-align: center;\">Let all the hands of the clock stop</p>\r\n<p style=\"text-align: center;\">And raindrops halt mid air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Let water be calm at even the roughest sea</p>\r\n<p style=\"text-align: center;\">And not a bit of wind in the air</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Pause and enjoy this moment</p>\r\n<p style=\"text-align: center;\">Look around and breathe in deep</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">For each moment is uniquely special</p>\r\n<p style=\"text-align: center;\">This is something you must see</p>\r\n \r\n\r\n<img src=\"https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg\" alt=\"Image result for pause life\" />\r\n\r\n ','Pause','','inherit','closed','closed','','1491-revision-v1','','','2017-02-22 10:04:23','2017-02-22 16:04:23','',1491,'http://www.monicarenata.com/1491-revision-v1/',0,'revision','',0),(1504,1,'2017-02-24 07:36:57','2017-02-24 13:36:57','<h5 style=\"text-align: center;\"> I hope you go to places\r\nPlaces that you have always dreamed\r\nBe surrounded by things that make you smile\r\nAnd loved by everyone you meet\r\n\r\n\r\nI hope you realize your full potential\r\nEven when your heart may be filled with doubts\r\nBe courageous in your efforts\r\nAnd venture more than your brain at times allows\r\n\r\n\r\nI hope you flourish in every avenue of life\r\nEach branch of life sprouting like weeds\r\nBe blessed in all that you do\r\nAnd always be humble and let the love in your heart never leave\r\n\r\n\r\nI hope when you stumble you get back on your feet\r\nEven when at times you feel you can’t\r\nBe the one God knows you can be\r\nAnd despite your destination, always walk with faith</h5>\r\n<strong><em>\"No matter where you walk in life, move forward with a clean heart and faith. For this is the path that always leads to personal truth, understanding, and distinction.\" -Monica Renata</em></strong>\r\n<h6 style=\"text-align: center;\">\r\n\r\n<img src=\"https://i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg\" alt=\"Image result for footsteps\" width=\"736\" height=\"413\" />\r\n\r\n</h6>\r\n<!--more-->','Your Walk','','inherit','closed','closed','','1502-revision-v1','','','2017-02-24 07:36:57','2017-02-24 13:36:57','',1502,'http://www.monicarenata.com/1502-revision-v1/',0,'revision','',0),(1505,1,'2017-02-24 11:27:04','2017-02-24 17:27:04','<h6>My skin that shined so brightly\r\nJust like amber glow\r\nWas the only thing that caught your eyes\r\nAnd initially the only part you wanted to know</h6>\r\n\r\n<p>\r\n<h6>For you did not look into my eyes\r\nThat beamed of chestnut and cinnamon swirls\r\nBut the flesh you did take notice\r\nAs it wrapped around my hips that curved</h6>\r\n\r\n\r\n<p>\r\n<h6>My nails were perfectly manicured\r\nA diamond stud prettily placed in each ear\r\nA pen to write all my thoughts\r\nNested upon my right ear</h6>\r\n\r\n\r\n<p>\r\n<h6>Wrapped up in my craft\r\nMy life!\r\nMy work!\r\nMy art!</h6>\r\n\r\n\r\n<p>\r\n<h6>Determined to reach a finished product\r\nFocused on my craft\r\nHeart in each word I write\r\nBut this you do not care</h6>\r\n\r\n\r\n<p>\r\n<h6>Frustration adorns my youthful, aging face\r\nMy hands caress my tousled hair\r\nFumbling through my research and writings\r\nBiting my lip as I finish the task at hand</h6>\r\n\r\n\r\n<p>\r\n<h6>All of that in front of you\r\nBut you miss to see the drive\r\nYou do not wonder what’s in my mind\r\nNor what my future may look like</h6>\r\n\r\n\r\n<p>\r\n<h6>But to swim beside me in my thoughts\r\nWould be an adventure you would never forget\r\nBut your thoughts only aimed at what’s on the surface\r\nAnd unfortunately you missed</h6>\r\n\r\n<p>\r\n\r\n<h6><img src=\"https://s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg\" alt=\"Image result for black writer artwork\" width=\"270\" height=\"404\" /></h6>','You Missed','','publish','open','open','','you-missed','','','2017-02-24 11:52:50','2017-02-24 17:52:50','',0,'http://www.monicarenata.com/you-missed/',0,'post','',0),(1506,1,'2017-02-24 11:52:05','2017-02-24 17:52:05','<h6>My skin that shined so brightly\r\nJust like amber glow\r\nWas the only thing that caught your eyes\r\nAnd initially the only part you wanted to know</h6>\r\n\r\n<p>\r\n<h6>For you did not look into my eyes\r\nThat beamed of chestnut and cinnamon swirls\r\nBut the flesh you did take notice\r\nAs it wrapped around my hips that curved</h6>\r\n\r\n\r\n<p>\r\n<h6>My nails were perfectly manicured\r\nA diamond stud prettily placed in each ear\r\nA pen to write all my thoughts\r\nNested upon my right ear</h6>\r\n\r\n\r\n<p>\r\n<h6>Wrapped up in my craft\r\nMy life!\r\nMy work!\r\nMy art!</h6>\r\n\r\n\r\n<p>\r\n<h6>Determined to reach a finished product\r\nFocused on my craft\r\nHeart in each word I write\r\nBut this you do not care</h6>\r\n\r\n\r\n<p>\r\n<h6>Frustration adorns my youthful, aging face\r\nMy hands caress my tousled hair\r\nFumbling through my research and writings\r\nBiting my lip as I finish the task at hand</h6>\r\n\r\n\r\n<p>\r\n<h6>All of that in front of you\r\nBut you miss to see the drive\r\nYou do not wonder what’s in my mind\r\nNor what my future may look like</h6>\r\n\r\n\r\n<p>\r\n<h6>But to swim beside me in my thoughts\r\nWould be an adventure you would never forget\r\nBut your thoughts only aimed at what’s on the surface\r\nAnd unfortunately you missed</h6>\r\n<h6><img src=\"https://s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg\" alt=\"Image result for black writer artwork\" width=\"270\" height=\"404\" /></h6>','You Missed','','inherit','closed','closed','','1505-autosave-v1','','','2017-02-24 11:52:05','2017-02-24 17:52:05','',1505,'http://www.monicarenata.com/1505-autosave-v1/',0,'revision','',0),(1507,1,'2017-02-24 11:52:50','2017-02-24 17:52:50','<h6>My skin that shined so brightly\r\nJust like amber glow\r\nWas the only thing that caught your eyes\r\nAnd initially the only part you wanted to know</h6>\r\n\r\n<p>\r\n<h6>For you did not look into my eyes\r\nThat beamed of chestnut and cinnamon swirls\r\nBut the flesh you did take notice\r\nAs it wrapped around my hips that curved</h6>\r\n\r\n\r\n<p>\r\n<h6>My nails were perfectly manicured\r\nA diamond stud prettily placed in each ear\r\nA pen to write all my thoughts\r\nNested upon my right ear</h6>\r\n\r\n\r\n<p>\r\n<h6>Wrapped up in my craft\r\nMy life!\r\nMy work!\r\nMy art!</h6>\r\n\r\n\r\n<p>\r\n<h6>Determined to reach a finished product\r\nFocused on my craft\r\nHeart in each word I write\r\nBut this you do not care</h6>\r\n\r\n\r\n<p>\r\n<h6>Frustration adorns my youthful, aging face\r\nMy hands caress my tousled hair\r\nFumbling through my research and writings\r\nBiting my lip as I finish the task at hand</h6>\r\n\r\n\r\n<p>\r\n<h6>All of that in front of you\r\nBut you miss to see the drive\r\nYou do not wonder what’s in my mind\r\nNor what my future may look like</h6>\r\n\r\n\r\n<p>\r\n<h6>But to swim beside me in my thoughts\r\nWould be an adventure you would never forget\r\nBut your thoughts only aimed at what’s on the surface\r\nAnd unfortunately you missed</h6>\r\n\r\n<p>\r\n\r\n<h6><img src=\"https://s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg\" alt=\"Image result for black writer artwork\" width=\"270\" height=\"404\" /></h6>','You Missed','','inherit','closed','closed','','1505-revision-v1','','','2017-02-24 11:52:50','2017-02-24 17:52:50','',1505,'http://www.monicarenata.com/1505-revision-v1/',0,'revision','',0),(1511,1,'2017-03-02 11:44:15','2017-03-02 17:44:15','<h4 style=\"text-align: center;\">How I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">The beauty my eyes see when I look at you</h4>\r\n<h4 style=\"text-align: center;\">The beauty that comes in the form of words from your mouth</h4>\r\n<h4 style=\"text-align: center;\">The beauty in the actions that you do</h4>\r\n \r\n\r\n \r\n<h4 style=\"text-align: center;\">In the small of your neck when you are walking away</h4>\r\n<h4 style=\"text-align: center;\">In the array of passionate words that your mouth spew</h4>\r\n<h4 style=\"text-align: center;\">In your hands that have helped so many</h4>\r\n<h4 style=\"text-align: center;\">Beauty is so engrossed within you</h4>\r\n \r\n\r\n \r\n<h4 style=\"text-align: center;\">If I could close my eyes for a lifetime</h4>\r\n<h4 style=\"text-align: center;\">This beauty others and I could still see</h4>\r\n<h4 style=\"text-align: center;\">But oh how I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">For you are more special than you think</h4>\r\n<h4 style=\"text-align: center;\"><img src=\"https://s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg\" alt=\"Related image\" width=\"326\" height=\"180\" /></h4>','I Wish You Could See','','inherit','closed','closed','','1509-autosave-v1','','','2017-03-02 11:44:15','2017-03-02 17:44:15','',1509,'http://www.monicarenata.com/1509-autosave-v1/',0,'revision','',0),(1512,1,'2017-03-02 11:44:51','2017-03-02 17:44:51','<h4 style=\"text-align: center;\">How I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">The beauty my eyes see when I look at you</h4>\r\n<h4 style=\"text-align: center;\">The beauty that comes in the form of words from your mouth</h4>\r\n<h4 style=\"text-align: center;\">The beauty in the actions that you do</h4>\r\n \r\n<h4 style=\"text-align: center;\">In the small of your neck when you are walking away</h4>\r\n<h4 style=\"text-align: center;\">In the array of passionate words that your mouth spew</h4>\r\n<h4 style=\"text-align: center;\">In your hands that have helped so many</h4>\r\n<h4 style=\"text-align: center;\">Beauty is so engrossed within you</h4>\r\n \r\n<h4 style=\"text-align: center;\">If I could close my eyes for a lifetime</h4>\r\n<h4 style=\"text-align: center;\">This beauty others and I could still see</h4>\r\n<h4 style=\"text-align: center;\">But oh how I wish you could see your beauty</h4>\r\n<h4 style=\"text-align: center;\">For you are more special than you think</h4>\r\n<h4 style=\"text-align: center;\"><img src=\"https://s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg\" alt=\"Related image\" width=\"326\" height=\"180\" /></h4>','I Wish You Could See','','inherit','closed','closed','','1509-revision-v1','','','2017-03-02 11:44:51','2017-03-02 17:44:51','',1509,'http://www.monicarenata.com/1509-revision-v1/',0,'revision','',0),(1550,1,'2017-03-16 12:22:52','2017-03-16 17:22:52','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\n \n\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\n \n\nReference: <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','inherit','closed','closed','','1540-revision-v1','','','2017-03-16 12:22:52','2017-03-16 17:22:52','',1540,'http://www.monicarenata.com/1540-revision-v1/',0,'revision','',0),(1515,1,'2017-03-04 11:37:56','2017-03-04 17:37:56',' ','','','publish','closed','closed','','1515','','','2017-03-04 11:37:56','2017-03-04 17:37:56','',0,'http://www.monicarenata.com/1515/',8,'nav_menu_item','',0),(1551,1,'2017-03-16 12:46:36','2017-03-16 17:46:36','','insecurity-beautiful-beauty-Quotes','','inherit','open','closed','','insecurity-beautiful-beauty-quotes','','','2017-03-16 12:46:36','2017-03-16 17:46:36','',1540,'http://www.monicarenata.com/wp-content/uploads/2017/03/insecurity-beautiful-beauty-Quotes.jpg',0,'attachment','image/jpeg',0),(1552,1,'2017-03-16 12:48:58','2017-03-16 17:48:58','','aea57a87e0dd20aa26d7cd73bbcec487','','inherit','open','closed','','aea57a87e0dd20aa26d7cd73bbcec487','','','2017-03-16 12:48:58','2017-03-16 17:48:58','',1540,'http://www.monicarenata.com/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg',0,'attachment','image/jpeg',0),(1517,1,'2017-03-04 12:48:49','2017-03-04 18:48:49','http://www.monicarenata.com/wp-content/uploads/2017/02/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg','cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg','','inherit','open','closed','','cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400-jpg-2','','','2017-03-04 12:48:49','2017-03-04 18:48:49','',0,'http://www.monicarenata.com/wp-content/uploads/2017/02/cropped-vintage_paper_cameo_key_pen_book_76277_3840x2400.jpg',0,'attachment','image/jpeg',0),(1553,1,'2017-03-16 12:49:22','2017-03-16 17:49:22','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\n \n\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\n \n\nReference (Circling th: <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','inherit','closed','closed','','1540-revision-v1','','','2017-03-16 12:49:22','2017-03-16 17:49:22','',1540,'http://www.monicarenata.com/1540-revision-v1/',0,'revision','',0),(1540,1,'2017-03-16 12:49:38','2017-03-16 17:49:38','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\r\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\r\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\r\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\r\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\r\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\r\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\r\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\r\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\r\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\r\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\r\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\r\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\r\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\r\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\r\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\r\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\r\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\r\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\r\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\r\n \r\n\r\n \r\n\r\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\r\n \r\n\r\n \r\n\r\nReference (Circling the Square): <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','publish','open','open','','circling-the-square','','','2017-03-16 13:17:19','2017-03-16 18:17:19','',0,'http://www.monicarenata.com/?p=1540',0,'post','',0),(1522,1,'2017-03-05 18:34:01','2017-03-06 00:34:01',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_pchngoq\" style=\"max-width: 500px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-responsive\" id=\"zed_pchngoq\" style=\"width: 500px; height: 600px; overflow: hidden; position: relative;\" data-origh=\"600\" data-origw=\"500\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0.01px; width: 445px; height: 600px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 171px; top: 440px; width: 108px; height: 160px; position: absolute; z-index: 14; background-color: transparent;\" data-layout=\"centerfill\" data-boxtype=\"Image\" data-aspectratio=\"1\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 108px; height: 160px; position: absolute;\" alt=\"Little Black Girl\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','publish','open','open','','braids','','','2017-03-05 18:56:14','2017-03-06 00:56:14','',0,'http://www.monicarenata.com/?p=1522',0,'post','',1),(1523,1,'2017-03-05 18:21:19','2017-03-06 00:21:19','','Little Black Girl','','inherit','open','closed','','little-black-girl','','','2017-03-05 18:21:19','2017-03-06 00:21:19','',0,'http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg',0,'attachment','image/jpeg',0),(1533,1,'2017-03-05 18:54:41','2017-03-06 00:54:41',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_pchngoq\" style=\"max-width: 500px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-responsive\" id=\"zed_pchngoq\" style=\"width: 500px; height: 600px; overflow: hidden; position: relative;\" data-origh=\"600\" data-origw=\"500\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0.01px; width: 367px; height: 600px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 78px; top: 440px; width: 108px; height: 160px; position: absolute; z-index: 14; background-color: transparent;\" data-layout=\"centerfill\" data-boxtype=\"Image\" data-aspectratio=\"1\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 108px; height: 160px; position: absolute;\" alt=\"Little Black Girl\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','inherit','closed','closed','','1522-revision-v1','','','2017-03-05 18:54:41','2017-03-06 00:54:41','',1522,'http://www.monicarenata.com/1522-revision-v1/',0,'revision','',0),(1530,1,'2017-03-05 18:27:50','2017-03-06 00:27:50',' \r\n<div id=\"zed_pchngoq\" class=\"zedity-wrapper \">\r\n<div id=\"zed_pchngoq\" class=\"zedity-editor zedity-notheme\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 6px; top: 0px; width: 527px; height: 761px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 208px; top: 453px; width: 135px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-layout=\"centerfill\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 135px; height: 200px; position: absolute;\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" alt=\"Little Black Girl\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','inherit','closed','closed','','1522-revision-v1','','','2017-03-05 18:27:50','2017-03-06 00:27:50','',1522,'http://www.monicarenata.com/1522-revision-v1/',0,'revision','',0),(1531,1,'2017-03-05 18:41:29','2017-03-06 00:41:29',' \r\n<div id=\"zed_pchngoq\" class=\"zedity-wrapper \">\r\n<div id=\"zed_pchngoq\" class=\"zedity-editor\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 7px; top: 0.01px; width: 400px; height: 739px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 125px; top: 422px; width: 108px; height: 160px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-layout=\"centerfill\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 108px; height: 160px; position: absolute;\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" alt=\"Little Black Girl\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','inherit','closed','closed','','1522-revision-v1','','','2017-03-05 18:41:29','2017-03-06 00:41:29','',1522,'http://www.monicarenata.com/1522-revision-v1/',0,'revision','',0),(1534,1,'2017-03-05 18:56:14','2017-03-06 00:56:14',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_pchngoq\" style=\"max-width: 500px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-responsive\" id=\"zed_pchngoq\" style=\"width: 500px; height: 600px; overflow: hidden; position: relative;\" data-origh=\"600\" data-origw=\"500\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0.01px; width: 445px; height: 600px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Palatino Linotype,Book Antiqua,Palatino,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 171px; top: 440px; width: 108px; height: 160px; position: absolute; z-index: 14; background-color: transparent;\" data-layout=\"centerfill\" data-boxtype=\"Image\" data-aspectratio=\"1\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 108px; height: 160px; position: absolute;\" alt=\"Little Black Girl\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','inherit','closed','closed','','1522-revision-v1','','','2017-03-05 18:56:14','2017-03-06 00:56:14','',1522,'http://www.monicarenata.com/1522-revision-v1/',0,'revision','',0),(1536,1,'2017-03-05 19:57:35','2017-03-06 01:57:35',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d5l09a4m\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d5l09a4m\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 13px; top: 20px; width: 524px; height: 340px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Welcome, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">The Analytical Side of The Brain will be a collection of short narratives and thoughts. Please feel free to leave your own opinions and don\'t forget to share. </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Thanks, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Monica Renata </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 21px; top: 263px; width: 450.79px; height: 258px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 451px; height: 258px; position: absolute;\" alt=\"Brain Puzzle\" src=\"http://www.idgconnect.com/IMG/570/39570/creative-analytical-brain4828-620x354.jpg?1467705945\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Analytical Side of the Brain','','publish','closed','closed','','analytical-side-brain','','','2017-03-20 15:55:55','2017-03-20 20:55:55','',0,'http://www.monicarenata.com/?page_id=1536',0,'page','',0);
INSERT INTO `wp_xwml_posts` VALUES (1529,1,'2017-03-05 18:27:03','2017-03-06 00:27:03',' \r\n<div id=\"zed_pchngoq\" class=\"zedity-wrapper \">\r\n<div id=\"zed_pchngoq\" class=\"zedity-editor zedity-notheme\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 6px; top: 0px; width: 527px; height: 761px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; text-align: center; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">That is how mama braids my hair</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">She says I look as cute as a pea</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But I don\'t understand</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For when I look on tv and in magazines</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">I never see girls like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">And all the princesses that I know</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Never have hair like me</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Two braids going to the back</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">My friends have braids too</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Sometimes they have them in different styles</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">Or even wear them as plaits</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">We are told daily we are beautiful</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But deep inside we feel there is something that we lack</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">For we are beautiful to our families</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\">But to the world we are just black</span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Jacques Francois,serif; font-size: 16px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 210px; top: 394px; width: 135px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-layout=\"centerfill\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 135px; height: 200px; position: absolute;\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg\" alt=\"Little Black Girl\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Braids','','inherit','closed','closed','','1522-revision-v1','','','2017-03-05 18:27:03','2017-03-06 00:27:03','',1522,'http://www.monicarenata.com/1522-revision-v1/',0,'revision','',0),(1537,1,'2017-03-05 19:56:17','2017-03-06 01:56:17','','creative-analytical-brain4828-620x354','','inherit','open','closed','','creative-analytical-brain4828-620x354','','','2017-03-05 19:56:17','2017-03-06 01:56:17','',1536,'http://www.monicarenata.com/wp-content/uploads/2017/03/creative-analytical-brain4828-620x354.jpg',0,'attachment','image/jpeg',0),(1539,1,'2017-03-05 19:57:35','2017-03-06 01:57:35',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d5l09a4m\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d5l09a4m\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origh=\"600\" data-origw=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 13px; top: 20px; width: 524px; height: 340px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Welcome, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">The Analytical Side of The Brain will be a collection of short narratives and thoughts. Please feel free to leave your own opinions and don\'t forget to share. </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Thanks, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Monica Renata </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 21px; top: 263px; width: 450.79px; height: 258px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-aspectratio=\"1\" data-layout=\"fit\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 451px; height: 258px; position: absolute;\" alt=\"Brain Puzzle\" src=\"http://www.idgconnect.com/IMG/570/39570/creative-analytical-brain4828-620x354.jpg?1467705945\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Analytical Side of the Brain','','inherit','closed','closed','','1536-revision-v1','','','2017-03-05 19:57:35','2017-03-06 01:57:35','',1536,'http://www.monicarenata.com/1536-revision-v1/',0,'revision','',0),(1554,1,'2017-03-16 12:49:38','2017-03-16 17:49:38','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\n<h5 style=\"text-align: center;\">The time has changed</h5>\n<h5 style=\"text-align: center;\">And spring is near</h5>\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\n<h5 style=\"text-align: center;\"></h5>\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\n \n\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\n \n\nReference (Circling the Square): <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','inherit','closed','closed','','1540-revision-v1','','','2017-03-16 12:49:38','2017-03-16 17:49:38','',1540,'http://www.monicarenata.com/1540-revision-v1/',0,'revision','',0),(1556,1,'2017-03-16 13:16:53','2017-03-16 18:16:53','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\r\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\r\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\r\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\r\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\r\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\r\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\r\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\r\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\r\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\r\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\r\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\r\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\r\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\r\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\r\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\r\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\r\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\r\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\r\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\r\n \r\n\r\n \r\n\r\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\r\n \r\n\r\n \r\n\r\nReference (Circling the Square): <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','inherit','closed','closed','','1540-autosave-v1','','','2017-03-16 13:16:53','2017-03-16 18:16:53','',1540,'http://www.monicarenata.com/1540-autosave-v1/',0,'revision','',0),(1557,1,'2017-03-16 13:17:19','2017-03-16 18:17:19','<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Words are spoken daily</h5>\r\n<h5 style=\"text-align: center;\">Tongue moves as one speaks</h5>\r\n<h5 style=\"text-align: center;\">The lyrics of each others songs</h5>\r\n<h5 style=\"text-align: center;\">And the effect that each song wreaks</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The sun shines bright</h5>\r\n<h5 style=\"text-align: center;\">Clouds are sparse</h5>\r\n<h5 style=\"text-align: center;\">The day is beautiful and young</h5>\r\n<h5 style=\"text-align: center;\">The birds are singing sweetly</h5>\r\n<h5 style=\"text-align: center;\">Yet, in your mind your life is a farce</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Thoughts can cloud your judgment</h5>\r\n<h5 style=\"text-align: center;\">Especially those which are not true</h5>\r\n<h5 style=\"text-align: center;\">The heaven that you now reside</h5>\r\n<h5 style=\"text-align: center;\">Will become hell once those thoughts are consumed</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">The day you were told you “I loved you”</h5>\r\n<h5 style=\"text-align: center;\">Those words were spoken pure and true</h5>\r\n<h5 style=\"text-align: center;\">The thoughts of past consumed your mind</h5>\r\n<h5 style=\"text-align: center;\">And a battle thereafter ensued</h5>\r\n<h5 style=\"text-align: center;\">Battling insecurities; the opponent that endlessly grew</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Your life is circling the square</h5>\r\n<h5 style=\"text-align: center;\">In other words it does not and will never make sense</h5>\r\n<h5 style=\"text-align: center;\">Until you let go of your past</h5>\r\n<h5 style=\"text-align: center;\">And let your better self-exist</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">Cherry blossoms on the trees</h5>\r\n<h5 style=\"text-align: center;\">Nectar in the air</h5>\r\n<h5 style=\"text-align: center;\">The time has changed</h5>\r\n<h5 style=\"text-align: center;\">And spring is near</h5>\r\n<h5 style=\"text-align: center;\">Chastising others for your past is not fair</h5>\r\n<h5 style=\"text-align: center;\"></h5>\r\n \r\n<h5 style=\"text-align: center;\">So please be careful of what you say</h5>\r\n<h5 style=\"text-align: center;\">And stop letting the past get you down</h5>\r\n<h5 style=\"text-align: center;\">For your life is truly beautiful</h5>\r\n<h5 style=\"text-align: center;\">Once you stop living in the past and live for now</h5>\r\n \r\n\r\n \r\n\r\n<img class=\"irc_mut iQwt3KiLZuj0-HwpH6ZlgJaI aligncenter\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw\" alt=\"Image result for insecurity\" width=\"236\" height=\"236\" />\r\n\r\n \r\n<p style=\"text-align: center;\"><em>“Dwelling on past experiences can prevent you from truly living in the paradise that you are currently residing. Let go of what hurt you and only then will you truly be able to live your life and make sense of it.”</em> –Monica Renata</p>\r\n \r\n\r\n \r\n\r\nReference (Circling the Square): <a href=\"https://en.wikipedia.org/wiki/Squaring_the_circle\">https://en.wikipedia.org/wiki/Squaring_the_circle</a>','Circling The Square','','inherit','closed','closed','','1540-revision-v1','','','2017-03-16 13:17:19','2017-03-16 18:17:19','',1540,'http://www.monicarenata.com/1540-revision-v1/',0,'revision','',0),(1559,1,'2017-03-20 15:55:55','2017-03-20 20:55:55',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d5l09a4m\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d5l09a4m\" style=\"width: 600px; height: 600px; overflow: hidden; position: relative;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 13px; top: 20px; width: 524px; height: 340px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Welcome, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">The Analytical Side of The Brain will be a collection of short narratives and thoughts. Please feel free to leave your own opinions and don\'t forget to share. </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Thanks, </span></p>\r\n<p style=\"margin: 0px; color: black; line-height: 1.5; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive;\">Monica Renata </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 21px; top: 263px; width: 450.79px; height: 258px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 451px; height: 258px; position: absolute;\" alt=\"Brain Puzzle\" src=\"http://www.idgconnect.com/IMG/570/39570/creative-analytical-brain4828-620x354.jpg?1467705945\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Analytical Side of the Brain','','inherit','closed','closed','','1536-revision-v1','','','2017-03-20 15:55:55','2017-03-20 20:55:55','',1536,'http://www.monicarenata.com/1536-revision-v1/',0,'revision','',0),(1560,1,'2017-03-20 16:28:47','2017-03-20 21:28:47',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_2irot2rq\" style=\"max-width: 1080px; max-height: 1080px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_2irot2rq\" style=\"width: 1080px; height: 1080px; overflow: hidden; position: relative;\" data-origw=\"1080\" data-origh=\"1080\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 244px; top: 20px; width: 344px; height: 679px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"><span></span><span></span>He loved me until the rain stopped</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And the hollow in the tree was no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">For weeds grew rapid to protect the core</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And access to me he had no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Yet still he admired</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">The beauty he thought I was to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">But turned his face in hate and disgust</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When my cavity denied he</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my sprouting arms </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">In which the most beautiful flowers grew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my hair that danced</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When that commanding wind blew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">So, I already know he will not take the time</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">To examine my true roots</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Because he only loves me when it rains</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And he enters the hollow he once knew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 12px;\"><i><span></span><span></span>\"Stop giving those who do not care for, value, and respect you access to your mind, body, and soul. Learn your worth and shield yourself from negativity.\" -Monica Renata</i></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 268px; top: 713px; width: 282.81px; height: 229px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 282px; height: 229px; position: absolute;\" alt=\"Tree Woman\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Blooming Tree','','publish','open','open','','the-blooming-tree','','','2017-03-20 16:28:47','2017-03-20 21:28:47','',0,'http://www.monicarenata.com/?p=1560',0,'post','',0),(1561,1,'2017-03-20 16:02:13','2017-03-20 21:02:13','','Tree Woman','','inherit','open','closed','','tree-woman','','','2017-03-20 16:02:13','2017-03-20 21:02:13','',1560,'http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg',0,'attachment','image/jpeg',0),(1564,1,'2017-03-20 16:27:25','2017-03-20 21:27:25',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_2irot2rq\" style=\"max-width: 1080px; max-height: 1080px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_2irot2rq\" style=\"width: 1080px; height: 1080px; overflow: hidden; position: relative;\" data-origw=\"1080\" data-origh=\"1080\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 244px; top: 20px; width: 344px; height: 679px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He loved me until the rain stopped</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And the hollow in the tree was no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">For weeds grew rapid to protect the core</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And access to me he had no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Yet still he admired</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">The beauty he thought I was to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">But turned his face in hate and disgust</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When my cavity denied he</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my sprouting arms </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">In which the most beautiful flowers grew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my hair that danced</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When that commanding wind blew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">So, I already know he will not take the time</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">To examine my true roots</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Because he only loves me when it rains</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And he enters the hollow he once knew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 12px;\"><i>\"Stop giving those who do not care for, value, and respect you access to your mind, body, and soul. Learn your worth and shield yourself from negativity.\" -Monica Renata</i></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 268px; top: 713px; width: 282.81px; height: 229px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 282px; height: 229px; position: absolute;\" alt=\"Tree Woman\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Blooming Tree','','inherit','closed','closed','','1560-revision-v1','','','2017-03-20 16:27:25','2017-03-20 21:27:25','',1560,'http://www.monicarenata.com/1560-revision-v1/',0,'revision','',0),(1562,1,'2017-03-20 16:03:13','2017-03-20 21:03:13',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_2irot2rq\" style=\"max-width: 810px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_2irot2rq\" style=\"width: 810px; height: 790px; overflow: hidden; position: relative;\" data-origw=\"810\" data-origh=\"790\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 244px; top: 20px; width: 322px; height: 549px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He loved me until the rain stopped</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And the hallow in the tree was no more</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">For weeds grew rapid to protect the core</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And access to me he had no more</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">Yet still he admired</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">The beauty he thought I was to be</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">But turned his face in hate and disgust</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">When my cavity denied he</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my sprouting arms </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">In which the most beautiful flowers grew</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my hair that danced</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">When that commanding wind blew</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">So, I already know he will not take the time</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">To examine my true roots</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">Because he only loves me when it rains</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And he enters the hallow he once knew</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 281.5px; top: 539px; width: 247px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 247px; height: 200px; position: absolute;\" alt=\"Tree Woman\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1560-revision-v1','','','2017-03-20 16:03:13','2017-03-20 21:03:13','',1560,'http://www.monicarenata.com/1560-revision-v1/',0,'revision','',0),(1563,1,'2017-03-20 16:05:32','2017-03-20 21:05:32',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_2irot2rq\" style=\"max-width: 810px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_2irot2rq\" style=\"width: 810px; height: 790px; overflow: hidden; position: relative;\" data-origw=\"810\" data-origh=\"790\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 244px; top: 20px; width: 322px; height: 549px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He loved me until the rain stopped</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And the hallow in the tree was no more</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">For weeds grew rapid to protect the core</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And access to me he had no more</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">Yet still he admired</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">The beauty he thought I was to be</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">But turned his face in hate and disgust</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">When my cavity denied he</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my sprouting arms </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">In which the most beautiful flowers grew</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my hair that danced</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">When that commanding wind blew</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">So, I already know he will not take the time</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">To examine my true roots</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">Because he only loves me when it rains</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif;\">And he enters the hallow he once knew</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 275px; top: 590px; width: 247px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 247px; height: 200px; position: absolute;\" alt=\"Tree Woman\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1560-revision-v1','','','2017-03-20 16:05:32','2017-03-20 21:05:32','',1560,'http://www.monicarenata.com/1560-revision-v1/',0,'revision','',0),(1565,1,'2017-03-20 16:28:47','2017-03-20 21:28:47',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_2irot2rq\" style=\"max-width: 1080px; max-height: 1080px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_2irot2rq\" style=\"width: 1080px; height: 1080px; overflow: hidden; position: relative;\" data-origw=\"1080\" data-origh=\"1080\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 244px; top: 20px; width: 344px; height: 679px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"><span></span><span></span>He loved me until the rain stopped</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And the hollow in the tree was no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">For weeds grew rapid to protect the core</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And access to me he had no more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Yet still he admired</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">The beauty he thought I was to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">But turned his face in hate and disgust</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When my cavity denied he</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my sprouting arms </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">In which the most beautiful flowers grew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">He never looked at my hair that danced</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">When that commanding wind blew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">So, I already know he will not take the time</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">To examine my true roots</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">Because he only loves me when it rains</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\">And he enters the hollow he once knew</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; line-height: 1; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 12px;\"><i><span></span><span></span>\"Stop giving those who do not care for, value, and respect you access to your mind, body, and soul. Learn your worth and shield yourself from negativity.\" -Monica Renata</i></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 268px; top: 713px; width: 282.81px; height: 229px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 282px; height: 229px; position: absolute;\" alt=\"Tree Woman\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Blooming Tree','','inherit','closed','closed','','1560-revision-v1','','','2017-03-20 16:28:47','2017-03-20 21:28:47','',1560,'http://www.monicarenata.com/1560-revision-v1/',0,'revision','',0),(1581,1,'2017-04-04 20:34:23','2017-04-05 01:34:23',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_9vx2l5k3\" style=\"max-width: 900px; max-height: 1510px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_9vx2l5k3\" style=\"width: 900px; height: 1510px; overflow: hidden; position: relative;\" data-origh=\"1510\" data-origw=\"900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 18px; top: 20px; width: 713px; height: 1288px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Standing in your shadow</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">On the side of your umbrella when it rains</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Drenched by the rain that falls</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But you will not share your umbrella</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because you wish them to go away</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">In the empty stands before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even at the practice field with you each day</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Sun glaring as they watch intensely</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Viewing the disgust on your face</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Yet they still stay</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">The day you finally make it</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">This person comes to you and says they are proud</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">You look straight past them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They are nothing to you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And walk to your friends with a smile</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But one day they will walk away too</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Their effort will just die</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because they will question incessantly</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Why support someone</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Who views you as poison to their eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And when that day finally comes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That will be the day that you truly see</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That sometimes the ones who supported you the most</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are but strangers</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And not the few friends that you keep</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So I pray that you open your eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And see the crusaders before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">For sometimes the ones pushing you forward in life</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are the ones you barely know</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And who are also undervalued by you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They believed in you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even when some of your friends did not</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So appreciate your supporters</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And thank them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because sometimes they are all you got</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><i><b>“Sometimes the ones who support you the most are the people who are not closest to you. Always be kind to these individuals because if they are taken for granted you may see that how many truly support you are less than you though.” -Monica Renata</b></i></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 184px; top: 1316px; width: 250px; height: 141px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 250px; height: 141px; position: absolute;\" alt=\"Butterfly\" src=\"https://images.gr-assets.com/hostedimages/1380222758ra/517106.gif\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Undervalued Crusader','','publish','open','open','','the-undervalued-crusader','','','2017-04-04 20:34:23','2017-04-05 01:34:23','',0,'http://www.monicarenata.com/?p=1581',0,'post','',0),(1567,1,'2017-03-25 13:01:09','2017-03-25 18:01:09',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d4rocm6m\" style=\"max-width: 710px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d4rocm6m\" style=\"width: 710px; height: 790px; overflow: hidden; position: relative;\" data-origh=\"790\" data-origw=\"710\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0px; width: 357px; height: 580px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"> <span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Open as it always was</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Just like an open door</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Ready to have you in their grip</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">A baseball in the catcher’s glove</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><span></span>Always there reaching out</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">To grab your hand as they always do</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">But what happens when the helping hands</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Are the hands that need helping too</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><i>\"Do not put someone in the position where they are always the one reaching out. Helping hands need help too.\" - Monica Renata</i></span></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 13px; top: 493px; width: 334.93px; height: 209px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 334px; height: 209px; position: absolute;\" alt=\"helping hands\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Helping Hands','','publish','open','open','','helping-hands','','','2017-03-25 13:01:09','2017-03-25 18:01:09','',0,'http://www.monicarenata.com/?p=1567',0,'post','',0),(1568,1,'2017-03-25 12:58:41','2017-03-25 17:58:41','','h','','inherit','open','closed','','h','','','2017-03-25 12:58:41','2017-03-25 17:58:41','',1567,'http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg',0,'attachment','image/jpeg',0),(1569,1,'2017-03-25 12:59:46','2017-03-25 17:59:46',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d4rocm6m\" style=\"max-width: 710px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d4rocm6m\" style=\"width: 710px; height: 790px; overflow: hidden; position: relative;\" data-origh=\"790\" data-origw=\"710\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 357px; height: 580px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"> <span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Open as it always was</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Just like an open door</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Ready to have you in their grip</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">A baseball in the catcher’s glove</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Always there reaching out</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">To grab your hand as they always do</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">But what happens when the helping hands</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Are the hands that need helping too</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><i>\"Do not put someone in the position where they are always the one reaching out. Helping hands need help too.\" - Monica Renata</i></span></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 13px; top: 493px; width: 334.93px; height: 209px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 334px; height: 209px; position: absolute;\" alt=\"helping hands\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Helping Hands','','inherit','closed','closed','','1567-revision-v1','','','2017-03-25 12:59:46','2017-03-25 17:59:46','',1567,'http://www.monicarenata.com/1567-revision-v1/',0,'revision','',0),(1570,1,'2017-03-25 13:00:37','2017-03-25 18:00:37',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d4rocm6m\" style=\"max-width: 710px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d4rocm6m\" style=\"width: 710px; height: 790px; overflow: hidden; position: relative;\" data-origh=\"790\" data-origw=\"710\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0px; width: 357px; height: 580px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"> <span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Open as it always was</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Just like an open door</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Ready to have you in their grip</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">A baseball in the catcher’s glove</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Always there reaching out</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">To grab your hand as they always do</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">But what happens when the helping hands</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Are the hands that need helping too</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><i>\"Do not put someone in the position where they are always the one reaching out. Helping hands need help too.\" - Monica Renata</i></span></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 13px; top: 493px; width: 334.93px; height: 209px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 334px; height: 209px; position: absolute;\" alt=\"helping hands\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Helping Hands','','inherit','closed','closed','','1567-revision-v1','','','2017-03-25 13:00:37','2017-03-25 18:00:37','',1567,'http://www.monicarenata.com/1567-revision-v1/',0,'revision','',0),(1571,1,'2017-03-25 13:01:09','2017-03-25 18:01:09',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_d4rocm6m\" style=\"max-width: 710px; max-height: 790px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_d4rocm6m\" style=\"width: 710px; height: 790px; overflow: hidden; position: relative;\" data-origh=\"790\" data-origw=\"710\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 0px; top: 0px; width: 357px; height: 580px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"> <span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Open as it always was</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Just like an open door</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Ready to have you in their grip</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">A baseball in the catcher’s glove</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><span></span>Always there reaching out</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">To grab your hand as they always do</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">But what happens when the helping hands</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\">Are the hands that need helping too</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Lucida Sans Unicode,Lucida Grande,sans-serif; font-size: 16px;\"><i>\"Do not put someone in the position where they are always the one reaching out. Helping hands need help too.\" - Monica Renata</i></span></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 13px; top: 493px; width: 334.93px; height: 209px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 334px; height: 209px; position: absolute;\" alt=\"helping hands\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/h.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Helping Hands','','inherit','closed','closed','','1567-revision-v1','','','2017-03-25 13:01:09','2017-03-25 18:01:09','',1567,'http://www.monicarenata.com/1567-revision-v1/',0,'revision','',0),(1572,1,'2017-03-25 13:34:30','2017-03-25 18:34:30',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5cir29l7\" style=\"max-width: 1040px; max-height: 1190px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5cir29l7\" style=\"width: 1040px; height: 1190px; overflow: hidden; position: relative;\" data-origh=\"1190\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 606px; height: 1046px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed one night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt my body become a corpse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For the love, inside of me has been drained</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And my joy replaced with remorse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But inside my heart was a feeling which I felt within me deep</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I loved you more than ever</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But sadly, you did not love me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed that night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt your arms grab me tight</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">You pulled me closer each time</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And I knew this wasn’t right</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because in your sleep you loved me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Like I remember you used to</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But in the morning when you wake, I’ll once again be nothing to you</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed last night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I pondered my next move</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"><span></span>Should I be half loved or wait until a full love blooms</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Drenched in the cologne of your chest</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">A fragrance I will miss if I shall never experience it again</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I analyzed everything in the room</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because that day seems to be my last</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, this morning I’ll disappear </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you know what you want</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">There is no need to fake love</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For I understand that I cannot change your heart</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, until then I bid adieu and fade</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you call upon me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">My solution to the dilemma encountered while you were sleep</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"><i><b>“Partial love is at times worse than hate. It is better to be fully loved than loved partially. “ – Monica Renata</b></i></span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 183px; top: 1000px; width: 287.87px; height: 190px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 287px; height: 190px; position: absolute;\" alt=\"Sleep\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','NightTime Dilemma','','publish','open','open','','nighttime-dilemma','','','2017-03-25 13:34:30','2017-03-25 18:34:30','',0,'http://www.monicarenata.com/?p=1572',0,'post','',0),(1573,1,'2017-03-25 13:32:42','2017-03-25 18:32:42','','Sleep','','inherit','open','closed','','wpid-spooning','','','2017-03-25 13:32:55','2017-03-25 18:32:55','',1572,'http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg',0,'attachment','image/jpeg',0),(1574,1,'2017-03-25 13:33:27','2017-03-25 18:33:27',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5cir29l7\" style=\"max-width: 1040px; max-height: 1190px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5cir29l7\" style=\"width: 1040px; height: 1190px; overflow: hidden; position: relative;\" data-origh=\"1190\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 606px; height: 1046px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed one night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt my body become a corpse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For the love, inside of me has been drained</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And my joy replaced with remorse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But inside my heart was a feeling which I felt within me deep</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I loved you more than ever</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But sadly, you did not love me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed that night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt your arms grab me tight</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">You pulled me closer each time</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And I knew this wasn’t right</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because in your sleep you loved me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Like I remember you used to</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But in the morning when you wake, I’ll once again be nothing to you</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed last night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I pondered my next move</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Should I be half loved or wait until a full love blooms</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Drenched in the cologne of your chest</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">A fragrance I will miss if I shall never experience it again</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I analyzed everything in the room</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because that day seems to be my last</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, this morning I’ll disappear </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you know what you want</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">There is no need to fake love</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For I understand that I cannot change your heart</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, until then I bid adieu and fade</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you call upon me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">My solution to the dilemma encountered while you were sleep</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"><i><b>“Partial love is at times worse than hate. It is better to be fully loved than loved partially. “ – Monica Renata</b></i></span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 183px; top: 1000px; width: 287.87px; height: 190px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 287px; height: 190px; position: absolute;\" alt=\"Sleep\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','NightTime Dilemma','','inherit','closed','closed','','1572-revision-v1','','','2017-03-25 13:33:27','2017-03-25 18:33:27','',1572,'http://www.monicarenata.com/1572-revision-v1/',0,'revision','',0),(1575,1,'2017-03-25 13:34:30','2017-03-25 18:34:30',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5cir29l7\" style=\"max-width: 1040px; max-height: 1190px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5cir29l7\" style=\"width: 1040px; height: 1190px; overflow: hidden; position: relative;\" data-origh=\"1190\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 606px; height: 1046px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed one night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt my body become a corpse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For the love, inside of me has been drained</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And my joy replaced with remorse</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But inside my heart was a feeling which I felt within me deep</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I loved you more than ever</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But sadly, you did not love me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed that night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I felt your arms grab me tight</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">You pulled me closer each time</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">And I knew this wasn’t right</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because in your sleep you loved me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Like I remember you used to</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">But in the morning when you wake, I’ll once again be nothing to you</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">As I lay beside you in bed last night</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I pondered my next move</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"><span></span>Should I be half loved or wait until a full love blooms</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Drenched in the cologne of your chest</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">A fragrance I will miss if I shall never experience it again</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">I analyzed everything in the room</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Because that day seems to be my last</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, this morning I’ll disappear </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you know what you want</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">There is no need to fake love</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">For I understand that I cannot change your heart</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">So, until then I bid adieu and fade</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">Until you call upon me</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\">My solution to the dilemma encountered while you were sleep</span></span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"> </span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Georgia,serif; font-size: 15px;\"><i><b>“Partial love is at times worse than hate. It is better to be fully loved than loved partially. “ – Monica Renata</b></i></span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 183px; top: 1000px; width: 287.87px; height: 190px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 1px; top: 0px; width: 287px; height: 190px; position: absolute;\" alt=\"Sleep\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','NightTime Dilemma','','inherit','closed','closed','','1572-revision-v1','','','2017-03-25 13:34:30','2017-03-25 18:34:30','',1572,'http://www.monicarenata.com/1572-revision-v1/',0,'revision','',0),(1576,1,'2017-03-25 14:03:10','2017-03-25 19:03:10',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5may4fdm\" style=\"max-width: 950px; max-height: 1100px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5may4fdm\" style=\"width: 950px; height: 1100px; overflow: hidden; position: relative;\" data-origh=\"1100\" data-origw=\"950\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20.26px; width: 530px; height: 533px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that those trees cry</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But despite their tears they continue to grow</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">And though tough times can ruffle them</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Their roots always stand firm</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Branches bend instead of snap</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Showing that misfortune shouldn’t break us apart</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that Willows cry</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But most of all they continue to grow through it all</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 134px; top: 413px; width: 263.2px; height: 329px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 263px; height: 329px; position: absolute;\" alt=\"Weeping Willow\" src=\"https://s-media-cache-ak0.pinimg.com/736x/71/fb/d3/71fbd30d02f956c62f89363ab65ef743.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','People Willows','','publish','open','open','','people-willows','','','2017-03-25 14:03:10','2017-03-25 19:03:10','',0,'http://www.monicarenata.com/?p=1576',0,'post','',0),(1577,1,'2017-03-25 14:01:16','2017-03-25 19:01:16','','cropped-willow-tree-swing','','inherit','open','closed','','cropped-willow-tree-swing','','','2017-03-25 14:01:16','2017-03-25 19:01:16','',1576,'http://www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg',0,'attachment','image/jpeg',0),(1579,1,'2017-03-25 14:03:10','2017-03-25 19:03:10',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5may4fdm\" style=\"max-width: 950px; max-height: 1100px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5may4fdm\" style=\"width: 950px; height: 1100px; overflow: hidden; position: relative;\" data-origh=\"1100\" data-origw=\"950\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20.26px; width: 530px; height: 533px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that those trees cry</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But despite their tears they continue to grow</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">And though tough times can ruffle them</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Their roots always stand firm</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Branches bend instead of snap</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Showing that misfortune shouldn’t break us apart</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that Willows cry</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But most of all they continue to grow through it all</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 134px; top: 413px; width: 263.2px; height: 329px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 263px; height: 329px; position: absolute;\" alt=\"Weeping Willow\" src=\"https://s-media-cache-ak0.pinimg.com/736x/71/fb/d3/71fbd30d02f956c62f89363ab65ef743.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','People Willows','','inherit','closed','closed','','1576-revision-v1','','','2017-03-25 14:03:10','2017-03-25 19:03:10','',1576,'http://www.monicarenata.com/1576-revision-v1/',0,'revision','',0),(1578,1,'2017-03-25 14:01:36','2017-03-25 19:01:36',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5may4fdm\" style=\"max-width: 950px; max-height: 1100px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5may4fdm\" style=\"width: 950px; height: 1100px; overflow: hidden; position: relative;\" data-origh=\"1100\" data-origw=\"950\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20.26px; width: 530px; height: 533px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that those trees cry</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But despite their tears they continue to grow</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">And though tough times can ruffle them</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Their roots always stand firm</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Branches bend instead of snap</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Showing that misfortune shouldn’t break us apart</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Grandma said that those trees cry</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like people do</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">But most of all they continue to grow through it all</span></span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><span style=\"font-family: Century Gothic,sans-serif; font-size: 15px;\">Just like me and you</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 134px; top: 413px; width: 263.2px; height: 329px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 263px; height: 329px; position: absolute;\" alt=\"Weeping Willow\" src=\"https://s-media-cache-ak0.pinimg.com/736x/71/fb/d3/71fbd30d02f956c62f89363ab65ef743.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1576-revision-v1','','','2017-03-25 14:01:36','2017-03-25 19:01:36','',1576,'http://www.monicarenata.com/1576-revision-v1/',0,'revision','',0),(1580,1,'2017-03-27 06:30:38','2017-03-27 11:30:38','<h5>If people were like paper</h5>\r\n<h5>And were made from great big trees</h5>\r\n<h5>How much would you appreciate them?</h5>\r\n<h5>How much would their value really mean?</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>Would you tattoo their flesh with hearts?</h5>\r\n<h5>Would you write lovely words on them?</h5>\r\n<h5>Or would you crumble them up and throw them away</h5>\r\n<h5>Hoping to never see them again?</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>If people were like paper</h5>\r\n<h5>Would you finally be able to see</h5>\r\n<h5>See how your words affect them?</h5>\r\n<h5>See the hurt underneath?</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>How broken you made them feel?</h5>\r\n<h5>How crumbled they are inside?</h5>\r\n<h5>If people were like paper</h5>\r\n<h5>A straight one would be hard to find</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>For life throws everyone curve balls</h5>\r\n<h5>And life isn\'t always sweet</h5>\r\n<h5>We are constantly straightened out as best as can be</h5>\r\n<h5>After we overcome a defeat</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>But the wrinkles in that paper</h5>\r\n<h5>Will always be there</h5>\r\n<h5>The stains of the past can\'t be washed away</h5>\r\n<h5>Yet they can\'t be seen by a simple stare</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>People guard their feelings</h5>\r\n<h5>With the expressions on their face</h5>\r\n<h5>No one truly knows the person inside</h5>\r\n<h5>No one knows what they been through to date</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>If people were like paper</h5>\r\n<h5>It would be so neat</h5>\r\n<h5>Because we could all see that we aren\'t perfect</h5>\r\n<h5>Yet we all are still very unique</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5>We could understand that everyone\'s been hurt</h5>\r\n<h5>We could see that many have overcame</h5>\r\n<h5>And the wrinkliest of paper people</h5>\r\n<h5>Had a lot to overcome</h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5 style=\"clear: both; text-align: center;\"><a href=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w\" style=\"margin-left: 1em; margin-right: 1em;\"><img border=\"0\" height=\"153\" src=\"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w\" width=\"400\" /></a></h5>\r\n<h5></h5>\r\n<div></div>','Paper People','','inherit','closed','closed','','81-autosave-v1','','','2017-03-27 06:30:38','2017-03-27 11:30:38','',81,'http://www.monicarenata.com/81-autosave-v1/',0,'revision','',0),(1582,1,'2017-04-04 20:26:51','2017-04-05 01:26:51',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_9vx2l5k3\" style=\"max-width: 890px; max-height: 1290px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_9vx2l5k3\" style=\"width: 890px; height: 1290px; overflow: hidden; position: relative;\" data-origh=\"1290\" data-origw=\"890\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 624px; height: 938px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Standing in your shadow</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">On the side of your umbrella when it rains</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Drenched by the rain that falls</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But you will not share your umbrella</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because you wish them to go away</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">In the empty stands before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even at the practice field with you each day</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Sun glaring as they watch intensely</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Viewing the disgust on your face</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Yet they still stay</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">The day you finally make it</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">This person comes to you and says they are proud</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">You look straight pass them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They are nothing to you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And walk to your friends with a smile</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But one day they will walk away too</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Their effort will just die</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because they will question incessantly</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Why support someone</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Who views you as poison to their eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And when that day finally comes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That will be the day that you truly see</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That sometimes the ones who supported you the most</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are but strangers</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And not the few friends that you keep</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><i><b>“Sometimes the ones who support you the most are the people who are not closest to you. Always be kind to these individuals because if they are taken for granted you may see that how many truly support you are less than you though.” -Monica Renata</b></i></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 179px; top: 948px; width: 250px; height: 141px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 250px; height: 141px; position: absolute;\" alt=\"Butterfly\" src=\"https://images.gr-assets.com/hostedimages/1380222758ra/517106.gif\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Undervalued Crusader','','inherit','closed','closed','','1581-revision-v1','','','2017-04-04 20:26:51','2017-04-05 01:26:51','',1581,'http://www.monicarenata.com/1581-revision-v1/',0,'revision','',0),(1583,1,'2017-04-04 20:31:26','2017-04-05 01:31:26',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_9vx2l5k3\" style=\"max-width: 890px; max-height: 1290px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_9vx2l5k3\" style=\"width: 890px; height: 1290px; overflow: hidden; position: relative;\" data-origh=\"1290\" data-origw=\"890\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 18px; top: 20px; width: 624px; height: 938px; position: absolute; z-index: 12; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; overflow: auto;\">\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Standing in your shadow</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">On the side of your umbrella when it rains</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Drenched by the rain that falls</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But you will not share your umbrella</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because you wish them to go away</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">In the empty stands before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even at the practice field with you each day</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Sun glaring as they watch intensely</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Viewing the disgust on your face</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Yet they still stay</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">The day you finally make it</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">This person comes to you and says they are proud</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">You look straight past them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They are nothing to you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And walk to your friends with a smile</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But one day they will walk away too</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Their effort will just die</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because they will question incessantly</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Why support someone</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Who views you as poison to their eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And when that day finally comes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That will be the day that you truly see</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That sometimes the ones who supported you the most</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are but strangers</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And not the few friends that you keep</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So I pray that you open your eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And see the crusaders before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">For sometimes the ones pushing you forward in life</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are the ones you barely know</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And who are also undervalued by you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They believed in you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even when some of your friends did not</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So appreciate your supporters</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And thank them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because sometimes they are all you got</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><i><b>“Sometimes the ones who support you the most are the people who are not closest to you. Always be kind to these individuals because if they are taken for granted you may see that how many truly support you are less than you though.” -Monica Renata</b></i></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 179px; top: 948px; width: 250px; height: 141px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 250px; height: 141px; position: absolute;\" alt=\"Butterfly\" src=\"https://images.gr-assets.com/hostedimages/1380222758ra/517106.gif\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Undervalued Crusader','','inherit','closed','closed','','1581-revision-v1','','','2017-04-04 20:31:26','2017-04-05 01:31:26','',1581,'http://www.monicarenata.com/1581-revision-v1/',0,'revision','',0),(1584,1,'2017-04-04 20:32:27','2017-04-05 01:32:27',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_9vx2l5k3\" style=\"max-width: 900px; max-height: 1510px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_9vx2l5k3\" style=\"width: 900px; height: 1510px; overflow: hidden; position: relative;\" data-origh=\"1510\" data-origw=\"900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 18px; top: 20px; width: 706px; height: 1248px; position: absolute; z-index: 12; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; overflow: auto;\">\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Standing in your shadow</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">On the side of your umbrella when it rains</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Drenched by the rain that falls</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But you will not share your umbrella</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because you wish them to go away</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">In the empty stands before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even at the practice field with you each day</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Sun glaring as they watch intensely</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Viewing the disgust on your face</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Yet they still stay</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">The day you finally make it</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">This person comes to you and says they are proud</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">You look straight past them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They are nothing to you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And walk to your friends with a smile</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But one day they will walk away too</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Their effort will just die</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because they will question incessantly</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Why support someone</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Who views you as poison to their eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And when that day finally comes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That will be the day that you truly see</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That sometimes the ones who supported you the most</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are but strangers</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And not the few friends that you keep</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So I pray that you open your eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And see the crusaders before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">For sometimes the ones pushing you forward in life</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are the ones you barely know</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And who are also undervalued by you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They believed in you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even when some of your friends did not</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So appreciate your supporters</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And thank them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because sometimes they are all you got</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><i><b>“Sometimes the ones who support you the most are the people who are not closest to you. Always be kind to these individuals because if they are taken for granted you may see that how many truly support you are less than you though.” -Monica Renata</b></i></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 184px; top: 1316px; width: 250px; height: 141px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 250px; height: 141px; position: absolute;\" alt=\"Butterfly\" src=\"https://images.gr-assets.com/hostedimages/1380222758ra/517106.gif\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Undervalued Crusader','','inherit','closed','closed','','1581-revision-v1','','','2017-04-04 20:32:27','2017-04-05 01:32:27','',1581,'http://www.monicarenata.com/1581-revision-v1/',0,'revision','',0),(1585,1,'2017-04-04 20:33:58','2017-04-05 01:33:58','','517106','','inherit','open','closed','','517106','','','2017-04-04 20:33:58','2017-04-05 01:33:58','',1581,'http://www.monicarenata.com/wp-content/uploads/2017/04/517106.gif',0,'attachment','image/gif',0),(1586,1,'2017-04-04 20:34:23','2017-04-05 01:34:23',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_9vx2l5k3\" style=\"max-width: 900px; max-height: 1510px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_9vx2l5k3\" style=\"width: 900px; height: 1510px; overflow: hidden; position: relative;\" data-origh=\"1510\" data-origw=\"900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 18px; top: 20px; width: 713px; height: 1288px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Standing in your shadow</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">On the side of your umbrella when it rains</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Drenched by the rain that falls</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But you will not share your umbrella</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because you wish them to go away</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">In the empty stands before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even at the practice field with you each day</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Sun glaring as they watch intensely</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Viewing the disgust on your face</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Yet they still stay</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">The day you finally make it</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">This person comes to you and says they are proud</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">You look straight past them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They are nothing to you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And walk to your friends with a smile</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">But one day they will walk away too</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Their effort will just die</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because they will question incessantly</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Why support someone</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Who views you as poison to their eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And when that day finally comes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That will be the day that you truly see</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">That sometimes the ones who supported you the most</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are but strangers</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And not the few friends that you keep</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So I pray that you open your eyes</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And see the crusaders before you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">For sometimes the ones pushing you forward in life</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Are the ones you barely know</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And who are also undervalued by you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">They believed in you</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Even when some of your friends did not</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">So appreciate your supporters</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">And thank them</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\">Because sometimes they are all you got</span></p>\r\n<p style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px;\"><span style=\"font-family: Calibri;\" face=\"Calibri\"><i><b>“Sometimes the ones who support you the most are the people who are not closest to you. Always be kind to these individuals because if they are taken for granted you may see that how many truly support you are less than you though.” -Monica Renata</b></i></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 184px; top: 1316px; width: 250px; height: 141px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 250px; height: 141px; position: absolute;\" alt=\"Butterfly\" src=\"https://images.gr-assets.com/hostedimages/1380222758ra/517106.gif\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Undervalued Crusader','','inherit','closed','closed','','1581-revision-v1','','','2017-04-04 20:34:23','2017-04-05 01:34:23','',1581,'http://www.monicarenata.com/1581-revision-v1/',0,'revision','',0),(1588,1,'2017-04-05 19:40:01','2017-04-06 00:40:01',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5ztrrdml\" style=\"max-width: 1040px; max-height: 1220px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5ztrrdml\" style=\"width: 1040px; height: 1220px; overflow: hidden; position: relative;\" data-origh=\"1220\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 26px; top: 50px; width: 581px; height: 1114px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You are someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You just may not be the someone you may wish</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">For there is always someone to love</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And someone to receive your first kiss</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to cheer you on in life</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to pray for you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone who faces unquestionable wrath</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Just become someone wanted others to have a bad day too</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Love, jealousy, hate, and more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Each person holds emotions which can affect</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">This we should never forget</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, treat others as you would want someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">To treat someone like you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Be careful of the words you say</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And the actions that you do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Differences may separate us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Yet we are all one in the same</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, try not to extinguish someone’s flame</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"><i><b>“Bestow on others the same treatment that you would like others to bestow on you. We are all someone to someone…”</b></i><span></span><span></span> -Monica Renata</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 165px; top: 1019.32px; width: 281.74px; height: 142px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 282px; height: 142px; position: absolute;\" alt=\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Someone to Someone','','publish','open','open','','someone-to-someone','','','2017-04-05 19:43:21','2017-04-06 00:43:21','',0,'http://www.monicarenata.com/?p=1588',0,'post','',0),(1589,1,'2017-04-05 19:37:44','2017-04-06 00:37:44','','dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277','','inherit','open','closed','','dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277','','','2017-04-05 19:37:44','2017-04-06 00:37:44','',1588,'http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png',0,'attachment','image/png',0),(1590,1,'2017-04-05 19:39:03','2017-04-06 00:39:03',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5ztrrdml\" style=\"max-width: 1040px; max-height: 1220px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5ztrrdml\" style=\"width: 1040px; height: 1220px; overflow: hidden; position: relative;\" data-origh=\"1220\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 577px; height: 962px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">You are someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">You just may not be the someone you may wish</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">For there is always someone to love</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">And someone to receive your first kiss</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone to cheer you on in life</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone to pray for you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone who faces unquestionable wrath</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Just become someone wanted others to have a bad day too</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Love, jealousy, hate, and more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Each person holds emotions which can affect</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">This we should never forget</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">So, treat others as you would want someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">To treat someone like you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Be careful of the words you say</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">And the actions that you do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Differences may separate us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Yet we are all one in the same</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">So, try not to extinguish someone’s flame</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"><i>“Bestow on others the same treatment that you would like others to bestow on you. We are all someone to someone…”</i> -Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 176px; top: 921.16px; width: 281.74px; height: 142px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 282px; height: 142px; position: absolute;\" alt=\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Someone to Someone','','inherit','closed','closed','','1588-revision-v1','','','2017-04-05 19:39:03','2017-04-06 00:39:03','',1588,'http://www.monicarenata.com/1588-revision-v1/',0,'revision','',0),(1591,1,'2017-04-05 19:40:01','2017-04-06 00:40:01',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5ztrrdml\" style=\"max-width: 1040px; max-height: 1220px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5ztrrdml\" style=\"width: 1040px; height: 1220px; overflow: hidden; position: relative;\" data-origh=\"1220\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 577px; height: 962px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">You are someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">You just may not be the someone you may wish</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">For there is always someone to love</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">And someone to receive your first kiss</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone to cheer you on in life</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone to pray for you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Someone who faces unquestionable wrath</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Just become someone wanted others to have a bad day too</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Love, jealousy, hate, and more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Each person holds emotions which can affect</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">This we should never forget</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">So, treat others as you would want someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">To treat someone like you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Be careful of the words you say</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">And the actions that you do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Differences may separate us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">Yet we are all one in the same</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\">So, try not to extinguish someone’s flame</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"><i>“Bestow on others the same treatment that you would like others to bestow on you. We are all someone to someone…”</i><span></span> -Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 176px; top: 921.16px; width: 281.74px; height: 142px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 282px; height: 142px; position: absolute;\" alt=\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Someone to Someone','','inherit','closed','closed','','1588-revision-v1','','','2017-04-05 19:40:01','2017-04-06 00:40:01','',1588,'http://www.monicarenata.com/1588-revision-v1/',0,'revision','',0),(1592,1,'2017-04-05 19:42:55','2017-04-06 00:42:55',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5ztrrdml\" style=\"max-width: 1040px; max-height: 1220px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5ztrrdml\" style=\"width: 1040px; height: 1220px; overflow: hidden; position: relative;\" data-origh=\"1220\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 26px; top: 50px; width: 581px; height: 1114px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You are someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You just may not be the someone you may wish</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">For there is always someone to love</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And someone to receive your first kiss</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to cheer you on in life</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to pray for you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone who faces unquestionable wrath</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Just become someone wanted others to have a bad day too</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Love, jealousy, hate, and more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Each person holds emotions which can affect</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">This we should never forget</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, treat others as you would want someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">To treat someone like you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Be careful of the words you say</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And the actions that you do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Differences may separate us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Yet we are all one in the same</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, try not to extinguish someone’s flame</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"><i><b>“Bestow on others the same treatment that you would like others to bestow on you. We are all someone to someone…”</b></i><span></span> -Monica Renata</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 165px; top: 1019.32px; width: 281.74px; height: 142px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 282px; height: 142px; position: absolute;\" alt=\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Someone to Someone','','inherit','closed','closed','','1588-revision-v1','','','2017-04-05 19:42:55','2017-04-06 00:42:55','',1588,'http://www.monicarenata.com/1588-revision-v1/',0,'revision','',0),(1593,1,'2017-04-05 19:43:21','2017-04-06 00:43:21',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_5ztrrdml\" style=\"max-width: 1040px; max-height: 1220px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_5ztrrdml\" style=\"width: 1040px; height: 1220px; overflow: hidden; position: relative;\" data-origh=\"1220\" data-origw=\"1040\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 26px; top: 50px; width: 581px; height: 1114px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You are someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">You just may not be the someone you may wish</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">For there is always someone to love</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And someone to receive your first kiss</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to cheer you on in life</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone to pray for you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Someone who faces unquestionable wrath</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Just become someone wanted others to have a bad day too</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Love, jealousy, hate, and more</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Each person holds emotions which can affect</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">This we should never forget</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, treat others as you would want someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">To treat someone like you</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Be careful of the words you say</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">And the actions that you do</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Differences may separate us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">Yet we are all one in the same</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">We are all someone to someone</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif; font-size: 16px;\">So, try not to extinguish someone’s flame</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; font-family: \'Lucida Bright\',serif;\"><i><b>“Bestow on others the same treatment that you would like others to bestow on you. We are all someone to someone…”</b></i><span></span><span></span> -Monica Renata</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 165px; top: 1019.32px; width: 281.74px; height: 142px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 282px; height: 142px; position: absolute;\" alt=\"dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Someone to Someone','','inherit','closed','closed','','1588-revision-v1','','','2017-04-05 19:43:21','2017-04-06 00:43:21','',1588,'http://www.monicarenata.com/1588-revision-v1/',0,'revision','',0),(1594,1,'2017-04-11 21:38:28','2017-04-12 02:38:28',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_by2lmkoj\" style=\"max-width: 980px; max-height: 780px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_by2lmkoj\" style=\"width: 980px; height: 780px; overflow: hidden; position: relative;\" data-origw=\"980\" data-origh=\"780\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 19px; top: 20px; width: 478px; height: 594px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\"> I used to smell the roses</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others said they didn\'t have a smell</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to play in the rain</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until I realized it ruined my hair</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to lay in the sun all day</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others said it was unsafe</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to help strangers and talk to them</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now I walk past them every day</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to see the good in everyone</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now I am always in doubt</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to be so hopeful</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now at times I feel that all hope is lost</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">They say with age comes wisdom</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Yet I envy the old me</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">For I miss the pure innocence</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Before fear hindered the genuine kindness in me</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to be in touch with the world and myself</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others convinced me that I shouldn\'t be</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But maybe we should not listen to others</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">And embrace our \" forgotten me\"</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 164px; top: 621px; width: 200px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px; position: absolute;\" alt=\"Playing In the rain\" src=\"http://jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Forgotten Me','','publish','open','open','','forgotten-me','','','2017-04-11 21:38:28','2017-04-12 02:38:28','',0,'http://www.monicarenata.com/?p=1594',0,'post','',0),(1595,1,'2017-04-11 21:37:09','2017-04-12 02:37:09',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_by2lmkoj\" style=\"max-width: 980px; max-height: 780px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_by2lmkoj\" style=\"width: 980px; height: 780px; overflow: hidden; position: relative;\" data-origw=\"980\" data-origh=\"780\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 19px; top: 20px; width: 478px; height: 594px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"> I used to smell the roses</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Until others said they didn\'t have a smell</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to play in the rain</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Until I realized it ruined my hair</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to lay in the sun all day</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Until others said it was unsafe</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to help strangers and talk to them</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">But now I walk past them every day</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to see the good in everyone</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">But now I am always in doubt</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to be so hopeful</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">But now at times I feel that all hope is lost</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">They say with age comes wisdom</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Yet I envy the old me</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">For I miss the pure innocence</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Before fear hindered the genuine kindness in me</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">I used to be in touch with the world and myself</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">Until others convinced me that I shouldn\'t be</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">But maybe we should not listen to others</p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\">And embrace our \" forgotten me\"</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 138px; top: 547px; width: 200px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px; position: absolute;\" alt=\"Playing In the rain\" src=\"http://jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Forgotten Me','','inherit','closed','closed','','1594-revision-v1','','','2017-04-11 21:37:09','2017-04-12 02:37:09','',1594,'http://www.monicarenata.com/1594-revision-v1/',0,'revision','',0),(1596,1,'2017-04-11 21:38:28','2017-04-12 02:38:28',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_by2lmkoj\" style=\"max-width: 980px; max-height: 780px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_by2lmkoj\" style=\"width: 980px; height: 780px; overflow: hidden; position: relative;\" data-origw=\"980\" data-origh=\"780\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 19px; top: 20px; width: 478px; height: 594px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\"> I used to smell the roses</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others said they didn\'t have a smell</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to play in the rain</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until I realized it ruined my hair</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to lay in the sun all day</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others said it was unsafe</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to help strangers and talk to them</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now I walk past them every day</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to see the good in everyone</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now I am always in doubt</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to be so hopeful</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But now at times I feel that all hope is lost</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">They say with age comes wisdom</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Yet I envy the old me</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">For I miss the pure innocence</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Before fear hindered the genuine kindness in me</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">I used to be in touch with the world and myself</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">Until others convinced me that I shouldn\'t be</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-size: 16px;\"></span><span style=\"font-family: Comic Sans MS,cursive;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">But maybe we should not listen to others</span></p>\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><span style=\"font-family: Comic Sans MS,cursive; font-size: 16px;\">And embrace our \" forgotten me\"</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" style=\"left: 164px; top: 621px; width: 200px; height: 200px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px; position: absolute;\" alt=\"Playing In the rain\" src=\"http://jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Forgotten Me','','inherit','closed','closed','','1594-revision-v1','','','2017-04-11 21:38:28','2017-04-12 02:38:28','',1594,'http://www.monicarenata.com/1594-revision-v1/',0,'revision','',0),(1598,1,'2017-04-12 11:21:20','0000-00-00 00:00:00',' \n<div id=\"zed_8wzmd8io\" class=\"zedity-wrapper zedity-premium alignleft\" style=\"max-width: 600px; max-height: 600px;\">\n<div id=\"zed_8wzmd8io\" class=\"zedity-editor alignleft zedity-responsive\" style=\"position: relative; width: 600px; height: 600px; overflow: hidden;\" data-origw=\"600\" data-origh=\"600\">\n<div class=\"zedity-box zedity-box-Document\" data-boxtype=\"Document\" data-ol=\"1\" data-service=\"google_drive\" style=\"position: absolute; left: 112px; top: -500px; width: 358px; height: 1051px; z-index: 10; right: auto; bottom: auto; padding: 0px; border: 15px solid #000000;\"><iframe id=\"google_drive_alk15s9r\" style=\"width: 100%; height: 100%;\" width=\"320\" height=\"240\" data-service=\"google_drive\" src=\"//drive.google.com/file/d/0B0ou4fp_1rC0d1JQREdXT3FlaER6cFFYN0d2aVp2VjFLR0Vz/preview\" frameborder=\"0\" scrolling=\"no\"></iframe></div>\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\">Zedity</a></span></div>\n</div>\n</div>\n ','','','draft','open','open','','','','','2017-04-12 11:21:20','2017-04-12 16:21:20','',0,'http://www.monicarenata.com/?p=1598',0,'post','',0),(1599,1,'2017-04-12 11:20:50','2017-04-12 16:20:50',' \r\n<div id=\"zed_8wzmd8io\" class=\"zedity-wrapper zedity-premium alignleft\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div id=\"zed_8wzmd8io\" class=\"zedity-editor alignleft zedity-responsive\" style=\"position: relative; width: 600px; height: 600px; overflow: hidden;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Document\" data-boxtype=\"Document\" data-ol=\"1\" data-service=\"google_drive\" style=\"position: absolute; left: 112px; top: -500px; width: 358px; height: 1051px; z-index: 10; right: auto; bottom: auto; padding: 0px; border: 15px solid #000000;\"><iframe id=\"google_drive_alk15s9r\" style=\"width: 100%; height: 100%;\" width=\"320\" height=\"240\" data-service=\"google_drive\" src=\"//drive.google.com/file/d/0B0ou4fp_1rC0d1JQREdXT3FlaER6cFFYN0d2aVp2VjFLR0Vz/preview\" frameborder=\"0\" scrolling=\"no\"></iframe></div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1598-revision-v1','','','2017-04-12 11:20:50','2017-04-12 16:20:50','',1598,'http://www.monicarenata.com/1598-revision-v1/',0,'revision','',0),(1600,1,'2017-04-12 11:46:46','0000-00-00 00:00:00',' \r\n<div id=\"zed_6poc4ae9\" class=\"zedity-wrapper zedity-premium\">\r\n<div class=\"zedity-iframe-wrapper zedity-responsive\" style=\"max-width:1000px;max-height:600px\" data-origw=\"1000\" data-origh=\"600\"><iframe class=\"zedity-iframe\" title=\"The other side\" src=\"//www.monicarenata.com/wp-content/uploads/2017/04/zedity-The-other-side.html?_8w2jek31\" width=\"1000\" height=\"600\" scrolling=\"no\" data-id=\"1601\"></iframe></div>\r\n</div>\r\n ','','','draft','open','open','','','','','2017-04-12 11:46:46','2017-04-12 16:46:46','',0,'http://www.monicarenata.com/?p=1600',0,'post','',0),(1601,1,'2017-04-12 11:46:10','2017-04-12 16:46:10','','[zedity] The other side','','inherit','open','closed','','zedity-the-other-side','','','2017-04-12 11:46:10','2017-04-12 16:46:10','',1600,'//www.monicarenata.com/wp-content/uploads/2017/04/zedity-The-other-side.html',0,'attachment','application/zedity',0),(1602,1,'2017-04-12 11:46:46','2017-04-12 16:46:46',' \r\n<div id=\"zed_6poc4ae9\" class=\"zedity-wrapper zedity-premium\">\r\n<div class=\"zedity-iframe-wrapper zedity-responsive\" style=\"max-width:1000px;max-height:600px\" data-origw=\"1000\" data-origh=\"600\"><iframe class=\"zedity-iframe\" title=\"The other side\" src=\"//www.monicarenata.com/wp-content/uploads/2017/04/zedity-The-other-side.html?_8w2jek31\" width=\"1000\" height=\"600\" scrolling=\"no\" data-id=\"1601\"></iframe></div>\r\n</div>\r\n ','','','inherit','closed','closed','','1600-revision-v1','','','2017-04-12 11:46:46','2017-04-12 16:46:46','',1600,'http://www.monicarenata.com/1600-revision-v1/',0,'revision','',0),(1603,1,'2017-04-12 14:51:12','0000-00-00 00:00:00',' \n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_6lykpdbk\" style=\"max-width: 1000px; max-height: 1000px;\">\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_6lykpdbk\" style=\"width: 1000px; height: 1000px; overflow: hidden; position: relative;\" data-origw=\"1000\" data-origh=\"1000\">\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\n</div>\n</div>\n ','','','draft','open','open','','','','','2017-04-12 14:51:12','2017-04-12 19:51:12','',0,'http://www.monicarenata.com/?p=1603',0,'post','',0),(1627,1,'2017-04-19 22:08:29','2017-04-20 03:08:29',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origw=\"940\" data-origh=\"1390\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 22px; top: 20px; width: 725px; height: 1128px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"><span></span>They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains the stationary and alone</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 157px; top: 1165px; width: 417px; height: 110px; position: absolute; z-index: 16; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><i style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\">\"Do not drag the misery of your past into your present. If you do, you will never be able to escape it.\" -Monica Renata</i><span style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','inherit','closed','closed','','1621-autosave-v1','','','2017-04-19 22:08:29','2017-04-20 03:08:29','',1621,'http://www.monicarenata.com/1621-autosave-v1/',0,'revision','',0),(1608,1,'2017-04-12 15:19:18','2017-04-12 20:19:18','<h1 style=\"text-align: center;\"><strong><em>Find a Hobby.</em></strong></h1>\r\n<h1 style=\"text-align: center;\"><strong><em>Then find a way to make money doing it.</em></strong></h1>\r\n \r\n\r\nHey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!\r\n\r\nThis year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt. <img width=\"283\" height=\"283\" class=\" wp-image-1610 alignleft\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png\" />\r\n\r\nI have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to <strong>ALWAYS</strong> be right (<span style=\"color: #339966;\"><em>everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</em></span>). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must <u>FIRST</u> have that wakeup call and then look for remediation.\r\n\r\nRemediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (<span style=\"color: #ff6600;\"><em><u>I know this seems so obsessive, but it worked for me </u><span style=\"color: #339966;\">:) </span></em></span>). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work.\r\n\r\nWithin the past few years, I have done the following:\r\n<ul>\r\n <li>Book writing</li>\r\n <li>Jewelry making</li>\r\n <li>Website development</li>\r\n <li>Freelance Writing\r\n<ul>\r\n <li>Ghost writing</li>\r\n <li>Personalized cards</li>\r\n <li>Resumes</li>\r\n</ul>\r\n</li>\r\n <li>Phone App development</li>\r\n <li>Fitness instructing</li>\r\n <li>Blogging</li>\r\n</ul>\r\n<span></span><span></span>Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. <em><span style=\"color: #808080;\">But back to the topic…lol.</span><img width=\"317\" height=\"317\" class=\" wp-image-1609 aligncenter\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062-300x300.jpg\" /></em>\r\n\r\nThat list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up).\r\n\r\n<span></span><span></span>For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (<em>even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</em>).\r\n\r\nI always say <span style=\"color: #0000ff;\"><strong><em><u>life is too short to be anything but happy</u></em></strong></span>! I say this over and over because it is the absolute truth. <em>Never be afraid to be yourself, and always pursue your interest</em> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (<em>thanks to my fitness classes</em>) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. :)\r\n\r\n \r\n\r\n<span></span><span></span>-Monica Renata\r\n\r\n ','Be Happy and Get Paid','','publish','open','open','','be-happy-and-get-paid','','','2017-04-12 15:27:51','2017-04-12 20:27:51','',0,'http://www.monicarenata.com/?p=1608',0,'post','',1),(1609,1,'2017-04-12 14:58:11','2017-04-12 19:58:11','','PhotoGrid_1491998479062','','inherit','open','closed','','photogrid_1491998479062','','','2017-04-12 14:58:11','2017-04-12 19:58:11','',1608,'http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg',0,'attachment','image/jpeg',0),(1610,1,'2017-04-12 14:58:21','2017-04-12 19:58:21','','PhotoGrid_1487686393988','','inherit','open','closed','','photogrid_1487686393988','','','2017-04-12 14:58:21','2017-04-12 19:58:21','',1608,'http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png',0,'attachment','image/png',0),(1614,1,'2017-04-12 15:17:38','2017-04-12 20:17:38','<p style=\"text-align: center;\"><strong><em>Find a Hobby.</em></strong></p>\r\n<p style=\"text-align: center;\"><strong><em>Then find a way to make money doing it.</em></strong></p>\r\n \r\n\r\nHey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!\r\n\r\nThis year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt. <img width=\"300\" height=\"300\" class=\"size-medium wp-image-1610 alignleft\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png\" />\r\n\r\nI have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to <strong>ALWAYS</strong> be right (<span style=\"color: #339966;\"><em>everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</em></span>). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must <u>FIRST</u> have that wakeup call and then look for remediation.\r\n\r\nRemediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (<span style=\"color: #ff6600;\"><em><u>I know this seems so obsessive, but it worked for me </u><span style=\"color: #339966;\">:) </span></em></span>). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work.\r\n\r\nWithin the past few years, I have done the following:\r\n<ul>\r\n <li>Book writing</li>\r\n <li>Jewelry making</li>\r\n <li>Website development</li>\r\n <li>Freelance Writing\r\n<ul>\r\n <li>Ghost writing</li>\r\n <li>Personalized cards</li>\r\n <li>Resumes</li>\r\n</ul>\r\n</li>\r\n <li>Phone App development</li>\r\n <li>Fitness instructing</li>\r\n <li>Blogging</li>\r\n</ul>\r\nCurrently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. <em><span style=\"color: #808080;\">But back to the topic…lol.</span><img width=\"300\" height=\"300\" class=\"size-medium wp-image-1609 aligncenter\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062-300x300.jpg\" /></em>\r\n\r\nThat list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up).\r\n\r\nFor example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (<em>even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</em>).\r\n\r\nI always say <span style=\"color: #0000ff;\"><strong><em><u>life is too short to be anything but happy</u></em></strong></span>! I say this over and over because it is the absolute truth. <em>Never be afraid to be yourself, and always pursue your interest</em> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (<em>thanks to my fitness classes</em>) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. :)\r\n\r\n \r\n\r\n-Monica Renata\r\n\r\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-revision-v1','','','2017-04-12 15:17:38','2017-04-12 20:17:38','',1608,'http://www.monicarenata.com/1608-revision-v1/',0,'revision','',0),(1615,1,'2017-04-12 15:19:18','2017-04-12 20:19:18','<h1 style=\"text-align: center;\"><strong><em>Find a Hobby.</em></strong></h1>\r\n<h1 style=\"text-align: center;\"><strong><em>Then find a way to make money doing it.</em></strong></h1>\r\n \r\n\r\nHey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!\r\n\r\nThis year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt. <img width=\"283\" height=\"283\" class=\" wp-image-1610 alignleft\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png\" />\r\n\r\nI have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to <strong>ALWAYS</strong> be right (<span style=\"color: #339966;\"><em>everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</em></span>). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must <u>FIRST</u> have that wakeup call and then look for remediation.\r\n\r\nRemediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (<span style=\"color: #ff6600;\"><em><u>I know this seems so obsessive, but it worked for me </u><span style=\"color: #339966;\">:) </span></em></span>). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work.\r\n\r\nWithin the past few years, I have done the following:\r\n<ul>\r\n <li>Book writing</li>\r\n <li>Jewelry making</li>\r\n <li>Website development</li>\r\n <li>Freelance Writing\r\n<ul>\r\n <li>Ghost writing</li>\r\n <li>Personalized cards</li>\r\n <li>Resumes</li>\r\n</ul>\r\n</li>\r\n <li>Phone App development</li>\r\n <li>Fitness instructing</li>\r\n <li>Blogging</li>\r\n</ul>\r\n<span></span>Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. <em><span style=\"color: #808080;\">But back to the topic…lol.</span><img width=\"317\" height=\"317\" class=\" wp-image-1609 aligncenter\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062-300x300.jpg\" /></em>\r\n\r\nThat list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up).\r\n\r\n<span></span>For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (<em>even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</em>).\r\n\r\nI always say <span style=\"color: #0000ff;\"><strong><em><u>life is too short to be anything but happy</u></em></strong></span>! I say this over and over because it is the absolute truth. <em>Never be afraid to be yourself, and always pursue your interest</em> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (<em>thanks to my fitness classes</em>) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. :)\r\n\r\n \r\n\r\n<span></span>-Monica Renata\r\n\r\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-revision-v1','','','2017-04-12 15:19:18','2017-04-12 20:19:18','',1608,'http://www.monicarenata.com/1608-revision-v1/',0,'revision','',0),(1612,1,'2017-04-12 15:03:50','2017-04-12 20:03:50',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_4pvb5pgk\" style=\"max-width: 1060px; max-height: 1720px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_4pvb5pgk\" style=\"width: 1060px; height: 1720px; overflow: hidden; position: relative;\" data-origh=\"1720\" data-origw=\"1060\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 12px; top: 13px; width: 1000px; height: 1678px; position: absolute; z-index: 10; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 13px; text-align: center;\"><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><span style=\"margin: 0px; line-height: 115%; font-family: \'Footlight MT Light\',serif; font-size: 14pt;\">Find a Hobby.</span></i></b></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 13px; text-align: center;\"><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><span style=\"margin: 0px; line-height: 115%; font-family: \'Footlight MT Light\',serif; font-size: 14pt;\">Then find a way to make money doing it.</span></i></b></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Hey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!</span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"font-size: 18px;\"><img width=\"314\" height=\"314\" align=\"left\" src=\"file:///C:/Users/monic/AppData/Local/Packages/oice_16_974fa576_32c1d314_15a5/AC/Temp/msohtmlclip1/01/clip_image002.gif\" hspace=\"12\" v:shapes=\"Picture_x0020_1\" /></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">This year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt.</span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">I have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to </span><b style=\"font-size: 18px;\">ALWAYS</b><span style=\"font-size: 18px;\"> be right </span></span><span style=\"margin: 0px; font-family: Wingdings; font-size: 18px;\">J</span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\"> (</span><i style=\"font-size: 18px;\"><span style=\"margin: 0px; color: #4f6228;\">everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</span></i><span style=\"font-size: 18px;\">). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must </span><u style=\"font-size: 18px;\">FIRST</u><span style=\"font-size: 18px;\"> have that wakeup call and then look for remediation.</span></span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">Remediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (</span><i style=\"mso-bidi-font-style: normal;\"><u style=\"font-size: 18px;\"><span style=\"margin: 0px; color: #e36c0a;\">I know this seems so obsessive, but it worked for me ;p</span></u><span style=\"font-size: 18px;\"> </span></i><span style=\"font-size: 18px;\">). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work. </span></span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Within the past few years, I have done the following: </span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Book writing </span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Jewelry making</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Website development</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Freelance Writing</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Ghost writing</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Personalized cards</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Resumes</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Phone App development</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Fitness instructing</span></p>\r\n<p style=\"margin: 0px 0px 13px 48px; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Blogging</span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. </span><i style=\"font-size: 18px;\"><span style=\"margin: 0px; color: gray;\">But back to the topic…lol.</span></i><span style=\"margin: 0px; color: gray; font-size: 18px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">That list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up). </span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"font-size: 18px;\"><img width=\"325\" height=\"325\" align=\"left\" src=\"file:///C:/Users/monic/AppData/Local/Packages/oice_16_974fa576_32c1d314_15a5/AC/Temp/msohtmlclip1/01/clip_image004.jpg\" hspace=\"12\" v:shapes=\"Picture_x0020_2\" /></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (</span><i style=\"font-size: 18px;\">even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</i><span style=\"font-size: 18px;\">). </span></span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">I always say </span><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><u><span style=\"margin: 0px; color: #1f497d;\">life is too short to be anything but happy</span></u></i></b><span style=\"font-size: 18px;\">! I say this over and over because it is the absolute truth. </span><i style=\"font-size: 18px;\"><span style=\"background: aqua; margin: 0px;\">Never be afraid to be yourself, and always pursue your interest</span></i><span style=\"font-size: 18px;\"> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (</span><i style=\"font-size: 18px;\">thanks to my fitness classes</i><span style=\"font-size: 18px;\">) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. </span></span><span style=\"margin: 0px; font-family: Wingdings; font-size: 18px;\">J</span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">-Monica Renata</span></p>\r\n<span style=\"font-size: 18px;\"></span><span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 20px; top: 192px; width: 304px; height: 304px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 304px; height: 304px; position: absolute;\" alt=\"Student Loans Gone!\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 17px; top: 1119px; width: 327px; height: 327px; position: absolute; z-index: 16; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 327px; height: 327px; position: absolute;\" alt=\"Find A Hobby\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-revision-v1','','','2017-04-12 15:03:50','2017-04-12 20:03:50','',1608,'http://www.monicarenata.com/1608-revision-v1/',0,'revision','',0),(1613,1,'2017-04-12 15:06:13','2017-04-12 20:06:13',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_4pvb5pgk\" style=\"max-width: 1060px; max-height: 1720px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_4pvb5pgk\" style=\"width: 1060px; height: 1720px; overflow: hidden; position: relative;\" data-origh=\"1720\" data-origw=\"1060\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited zedity-background\" style=\"left: 0px; top: 0px; width: 100%; height: 100%; position: absolute; z-index: 1; box-sizing: border-box; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; overflow: auto;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 13px; text-align: center; line-height: 1.5;\"><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><span style=\"margin: 0px; line-height: 115%; font-family: \'Footlight MT Light\',serif; font-size: 14pt;\">Find a Hobby.</span></i></b></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 13px; text-align: center; line-height: 1.5;\"><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><span style=\"margin: 0px; line-height: 115%; font-family: \'Footlight MT Light\',serif; font-size: 14pt;\">Then find a way to make money doing it.</span></i></b></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Hey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!</span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"font-size: 18px;\"><img width=\"314\" height=\"314\" align=\"left\" src=\"file:///C:/Users/monic/AppData/Local/Packages/oice_16_974fa576_32c1d314_15a5/AC/Temp/msohtmlclip1/01/clip_image002.gif\" hspace=\"12\" v:shapes=\"Picture_x0020_1\" /></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">This year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt.</span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">I have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to </span><b style=\"font-size: 18px;\">ALWAYS</b><span style=\"font-size: 18px;\"> be right </span></span><span style=\"margin: 0px; font-family: Wingdings; font-size: 18px;\">J</span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\"> (</span><i style=\"font-size: 18px;\"><span style=\"margin: 0px; color: #4f6228;\">everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</span></i><span style=\"font-size: 18px;\">). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must </span><u style=\"font-size: 18px;\">FIRST</u><span style=\"font-size: 18px;\"> have that wakeup call and then look for remediation.</span></span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">Remediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (</span><i style=\"mso-bidi-font-style: normal;\"><u style=\"font-size: 18px;\"><span style=\"margin: 0px; color: #e36c0a;\">I know this seems so obsessive, but it worked for me ;p</span></u><span style=\"font-size: 18px;\"> </span></i><span style=\"font-size: 18px;\">). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work. </span></span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Within the past few years, I have done the following: </span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Book writing </span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Jewelry making</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Website development</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Freelance Writing</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Ghost writing</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Personalized cards</span></p>\r\n<p style=\"margin: 0px 0px 0px 96px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: \'Courier New\';\"><span style=\"font-size: 18px;\">o</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Resumes</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Phone App development</span></p>\r\n<p style=\"margin: 0px 0px 0px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Fitness instructing</span></p>\r\n<p style=\"margin: 0px 0px 13px 48px; line-height: 1.5; text-indent: -0.25in;\"><span style=\"margin: 0px; font-family: Wingdings;\"><span style=\"font-size: 18px;\">§</span><span style=\"font: 18px \'Times New Roman\'; margin: 0px; font-size-adjust: none; font-stretch: normal;\"> </span></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">Blogging</span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. </span><i style=\"font-size: 18px;\"><span style=\"margin: 0px; color: gray;\">But back to the topic…lol.</span></i><span style=\"margin: 0px; color: gray; font-size: 18px;\"> </span></span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">That list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up). </span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"font-size: 18px;\"><img width=\"325\" height=\"325\" align=\"left\" src=\"file:///C:/Users/monic/AppData/Local/Packages/oice_16_974fa576_32c1d314_15a5/AC/Temp/msohtmlclip1/01/clip_image004.jpg\" hspace=\"12\" v:shapes=\"Picture_x0020_2\" /></span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (</span><i style=\"font-size: 18px;\">even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</i><span style=\"font-size: 18px;\">). </span></span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif;\"><span style=\"font-size: 18px;\">I always say </span><b style=\"font-size: 18px;\"><i style=\"mso-bidi-font-style: normal;\"><u><span style=\"margin: 0px; color: #1f497d;\">life is too short to be anything but happy</span></u></i></b><span style=\"font-size: 18px;\">! I say this over and over because it is the absolute truth. </span><i style=\"font-size: 18px;\"><span style=\"background: aqua; margin: 0px;\">Never be afraid to be yourself, and always pursue your interest</span></i><span style=\"font-size: 18px;\"> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (</span><i style=\"font-size: 18px;\">thanks to my fitness classes</i><span style=\"font-size: 18px;\">) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. </span></span><span style=\"margin: 0px; font-family: Wingdings; font-size: 18px;\">J</span><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\"> </span></p>\r\n<p style=\"margin: 0px 0px 13px; line-height: 1.5;\"><span style=\"margin: 0px; font-family: \'Footlight MT Light\',serif; font-size: 18px;\">-Monica Renata</span></p>\r\n<p style=\"line-height: 1.5;\"><span style=\"font-size: 18px;\"></span><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 15px; top: 217px; width: 304px; height: 304px; position: absolute; z-index: 12; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 304px; height: 304px; position: absolute;\" alt=\"Student Loans Gone!\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 12px; top: 1275px; width: 327px; height: 327px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 0px; width: 327px; height: 327px; position: absolute;\" alt=\"Find A Hobby\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-revision-v1','','','2017-04-12 15:06:13','2017-04-12 20:06:13','',1608,'http://www.monicarenata.com/1608-revision-v1/',0,'revision','',0),(1618,1,'2017-04-12 15:27:51','2017-04-12 20:27:51','<h1 style=\"text-align: center;\"><strong><em>Find a Hobby.</em></strong></h1>\r\n<h1 style=\"text-align: center;\"><strong><em>Then find a way to make money doing it.</em></strong></h1>\r\n \r\n\r\nHey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!\r\n\r\nThis year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt. <img width=\"283\" height=\"283\" class=\" wp-image-1610 alignleft\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png\" />\r\n\r\nI have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to <strong>ALWAYS</strong> be right (<span style=\"color: #339966;\"><em>everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</em></span>). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must <u>FIRST</u> have that wakeup call and then look for remediation.\r\n\r\nRemediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (<span style=\"color: #ff6600;\"><em><u>I know this seems so obsessive, but it worked for me </u><span style=\"color: #339966;\">:) </span></em></span>). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work.\r\n\r\nWithin the past few years, I have done the following:\r\n<ul>\r\n <li>Book writing</li>\r\n <li>Jewelry making</li>\r\n <li>Website development</li>\r\n <li>Freelance Writing\r\n<ul>\r\n <li>Ghost writing</li>\r\n <li>Personalized cards</li>\r\n <li>Resumes</li>\r\n</ul>\r\n</li>\r\n <li>Phone App development</li>\r\n <li>Fitness instructing</li>\r\n <li>Blogging</li>\r\n</ul>\r\n<span></span><span></span>Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. <em><span style=\"color: #808080;\">But back to the topic…lol.</span><img width=\"317\" height=\"317\" class=\" wp-image-1609 aligncenter\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062-300x300.jpg\" /></em>\r\n\r\nThat list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up).\r\n\r\n<span></span><span></span>For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (<em>even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</em>).\r\n\r\nI always say <span style=\"color: #0000ff;\"><strong><em><u>life is too short to be anything but happy</u></em></strong></span>! I say this over and over because it is the absolute truth. <em>Never be afraid to be yourself, and always pursue your interest</em> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (<em>thanks to my fitness classes</em>) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. :)\r\n\r\n \r\n\r\n<span></span><span></span>-Monica Renata\r\n\r\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-revision-v1','','','2017-04-12 15:27:51','2017-04-12 20:27:51','',1608,'http://www.monicarenata.com/1608-revision-v1/',0,'revision','',0),(1621,1,'2017-04-17 22:34:12','2017-04-18 03:34:12',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origw=\"940\" data-origh=\"1390\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 24px; top: 21px; width: 725px; height: 1128px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"><span></span><span></span><span></span>They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains stationary and alone</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 157px; top: 1165px; width: 417px; height: 110px; position: absolute; z-index: 16; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><i style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"><span></span><span></span>\"Do not drag the misery of your past into your present. If you do, you will never be able to escape it.\" -Monica Renata</i><span style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','publish','open','open','','stationary-traveler','','','2017-04-19 22:25:57','2017-04-20 03:25:57','',0,'http://www.monicarenata.com/?p=1621',0,'post','',0),(1622,1,'2017-04-17 22:28:15','2017-04-18 03:28:15','','Traveler','','inherit','open','closed','','traveler','','','2017-04-17 22:28:15','2017-04-18 03:28:15','',1621,'http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg',0,'attachment','image/jpeg',0),(1623,1,'2017-04-17 22:31:22','2017-04-18 03:31:22',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origw=\"940\" data-origh=\"1390\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 725px; height: 1128px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains the stationary traveling man</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','inherit','closed','closed','','1621-revision-v1','','','2017-04-17 22:31:22','2017-04-18 03:31:22','',1621,'http://www.monicarenata.com/1621-revision-v1/',0,'revision','',0),(1625,1,'2017-04-17 22:32:41','2017-04-18 03:32:41','<h1 style=\"text-align: center;\"><strong><em>Find a Hobby.</em></strong></h1>\n<h1 style=\"text-align: center;\"><strong><em>Then find a way to make money doing it.</em></strong></h1>\n \n\nHey everyone! I haven’t had a random post like this for a whole, but I just felt compelled to write today. I have always been a hard worker. At times, I overextend myself, but the truth is I love to be busy. Another thing that I love, besides family and friends, is money. I mean, who doesn’t?!\n\nThis year, I accomplished a goal of mine. This goal was to pay off my student loans. I get many questions from family and friends about how I did this, and the truth is I’m not quite completely sure. I wouldn’t say I deprived myself vastly or anything that extreme. I was happy the entire 2.5-3 years I was paying my debt. <img width=\"283\" height=\"283\" class=\" wp-image-1610 alignleft\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png\" />\n\nI have always been a seeker. By that, I mean that if I do not know something, I will seek clarification and knowledge. Perhaps this comes from my willingness to <strong>ALWAYS</strong> be right (<span style=\"color: #339966;\"><em>everyone who knows me personally knows that I like to “know my stuff” before I even open my mouth...lol</em></span>). Anyway, I was not always very keen with finances. This was something I picked up over time. Yes, there are books that can help you, but as others always say, “The internet is your friend.” I researched countless stories which showed personal accounts of financial responsibility and irresponsibility. Those stories are the ones that can help get your act together. Once you see how finances can affect a person and their families, it can be a real wakeup call. I am a true believer that in order to get better at anything, you must <u>FIRST</u> have that wakeup call and then look for remediation.\n\nRemediation of my finances brought me to research interest rates. I will not lie—this was the most depressing lesson I have ever learned. I dwelled so deep into this subject that I knew how much interest I was paying per day for each student loan I had. I knew how much I was paying down to the cent, and I even had a spreadsheet I created that detailed this out (<span style=\"color: #ff6600;\"><em><u>I know this seems so obsessive, but it worked for me </u><span style=\"color: #339966;\">:) </span></em></span>). I remember calling my grandma and telling her that I pay so much just in interest that if I pay off my loans in 10 years, I will end up paying thousands more. I found this ludicrous because I have a savings account which the bank only pays me less than ten dollars in interest a year... -_-. My grandma seemed to already know this, but I refused to accept this reality. That’s when I began to work.\n\nWithin the past few years, I have done the following:\n<ul>\n <li>Book writing</li>\n <li>Jewelry making</li>\n <li>Website development</li>\n <li>Freelance Writing\n<ul>\n <li>Ghost writing</li>\n <li>Personalized cards</li>\n <li>Resumes</li>\n</ul>\n</li>\n <li>Phone App development</li>\n <li>Fitness instructing</li>\n <li>Blogging</li>\n</ul>\n<span></span><span></span>Currently, I am contemplating going to school again and taking the necessary coursework to become an esthetician. Last year, I taught myself how to wax, and I wouldn’t mind waxing others and learning about skincare. My friends think I am crazy for wanting to do this, but I truly feel like I would love to do this. <em><span style=\"color: #808080;\">But back to the topic…lol.</span><img width=\"317\" height=\"317\" class=\" wp-image-1609 aligncenter\" alt=\"\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062-300x300.jpg\" /></em>\n\nThat list mentioned previously was all my hobbies. I currently work in the information technology field, and while I have my bachelor’s and MBA, I still look for other avenues of happiness. Despite what others may have told me, I always pursued what interested me, and surprisingly, all those avenues have brought me joy, physical health, and a few dollars here and there (which add up).\n\n<span></span><span></span>For example, let me tell you an embarrassing story that only some close friends and family know. In 2007, I decided I wanted to become a singer/songwriter/rapper. I taught myself how to make instrumentals. I bought a microphone, installed FruityLoops (now called FL Studio), and before the year was over, I had my own mixtape. I even created a Myspace music page and promoted myself. That platform allowed me to meet others, and in turn, I was paid for beats, lyrics, and even to perform a feature on a song. I laugh at these memories because as I get older, I realize I was doing THE MOST. However, I enjoyed it. I even enjoyed helping my friends make a track by rapping on it in my later years of college (<em>even though I hope they NEVER play that in public because although it sounded great, I am still shame...lol</em>).\n\nI always say <span style=\"color: #0000ff;\"><strong><em><u>life is too short to be anything but happy</u></em></strong></span>! I say this over and over because it is the absolute truth. <em>Never be afraid to be yourself, and always pursue your interest</em> despite the opinions of others. If you do not know something, research it! I love my life! I love my family and friends! I love to see people happy! I truly believe that my love for life is the reason I have been blessed in other areas of my life, including health (<em>thanks to my fitness classes</em>) and finances. The funny thing is so many say that they want to open a business, but the truth is everyone already has. You are your first business! You just have to find a way to make yourself profitable in more than one way. Invest in yourself, and you will see a return on investment in due time. Don’t worry about the money because it will come in due time. :)\n\n \n\n<span></span><span></span>-Monica Renata\n\n ','Be Happy and Get Paid','','inherit','closed','closed','','1608-autosave-v1','','','2017-04-17 22:32:41','2017-04-18 03:32:41','',1608,'http://www.monicarenata.com/1608-autosave-v1/',0,'revision','',0),(1626,1,'2017-04-17 22:34:12','2017-04-18 03:34:12',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origh=\"1390\" data-origw=\"940\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 20px; top: 20px; width: 725px; height: 1128px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-boxtype=\"Text\" data-ol=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"><span></span>They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains the stationary traveling man</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-boxtype=\"Image\" data-ol=\"1\" data-aspectratio=\"1\" data-layout=\"fit\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','inherit','closed','closed','','1621-revision-v1','','','2017-04-17 22:34:12','2017-04-18 03:34:12','',1621,'http://www.monicarenata.com/1621-revision-v1/',0,'revision','',0),(1628,1,'2017-04-19 22:09:17','2017-04-20 03:09:17',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origw=\"940\" data-origh=\"1390\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 22px; top: 20px; width: 725px; height: 1128px; display: table; position: absolute; z-index: 12; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"><span></span><span></span>They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains the stationary and alone</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 157px; top: 1165px; width: 417px; height: 110px; position: absolute; z-index: 16; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><i style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"><span></span>\"Do not drag the misery of your past into your present. If you do, you will never be able to escape it.\" -Monica Renata</i><span style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','inherit','closed','closed','','1621-revision-v1','','','2017-04-19 22:09:17','2017-04-20 03:09:17','',1621,'http://www.monicarenata.com/1621-revision-v1/',0,'revision','',0),(1630,1,'2017-04-19 22:25:57','2017-04-20 03:25:57',' \r\n<div class=\"zedity-wrapper zedity-premium\" id=\"zed_aa2d3i3r\" style=\"max-width: 940px; max-height: 1390px;\">\r\n<div class=\"zedity-editor zedity-notheme zedity-responsive\" id=\"zed_aa2d3i3r\" style=\"width: 940px; height: 1390px; overflow: hidden; position: relative;\" data-origw=\"940\" data-origh=\"1390\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 24px; top: 21px; width: 725px; height: 1128px; position: absolute; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"><span></span><span></span><span></span>They say the man that ventures most</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">At times, does not go far</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For he may be across the world</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But he is caged by his own scars</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">The realities of what happened in his youth</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Conflict within him deep</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">So, miles away he may be from us</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But in the same spot he tends to be</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Envied by so many who surround him</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Yet he pities himself</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">For what is a worldly man of many riches</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">If he is haunted daily by his past</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Stamps on his passport</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">But mentally he is sitting at home</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\"> </span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">Despite the thousands of miles he may travel</span></p>\r\n<p align=\"center\" style=\"margin: 0px 0px 11px; text-align: center;\"><span style=\"margin: 0px; line-height: 107%; font-family: \'X-Files\',sans-serif; font-size: 16pt;\">He remains stationary and alone</span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" style=\"left: 156px; top: 871px; width: 418.21px; height: 271px; position: absolute; z-index: 14; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; overflow: hidden; position: relative;\"><a style=\"display: inline-block; width: 100%; height: 100%;\" href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" target=\"_top\" data-target=\"_top\"><img style=\"margin: 0px; left: 0px; top: 1px; width: 418px; height: 270px; position: absolute;\" alt=\"Traveler\" src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" style=\"left: 157px; top: 1165px; width: 417px; height: 110px; position: absolute; z-index: 16; display: table; table-layout: fixed; background-color: transparent;\" data-ol=\"1\" data-boxtype=\"Text\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-family: Arial,Helvetica,sans-serif; font-size: 14px; display: table-cell; overflow: hidden;\">\r\n<p align=\"center\" style=\"margin: 0px; color: black; font-family: Arial,Helvetica,sans-serif; font-size: 14px;\"><i style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"><span></span><span></span>\"Do not drag the misery of your past into your present. If you do, you will never be able to escape it.\" -Monica Renata</i><span style=\"font-family: Copperplate Gothic Light,sans-serif; font-size: 15px;\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" href=\"https://zedity.com\" target=\"_blank\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stationary Traveler','','inherit','closed','closed','','1621-revision-v1','','','2017-04-19 22:25:57','2017-04-20 03:25:57','',1621,'http://www.monicarenata.com/1621-revision-v1/',0,'revision','',0),(1631,1,'2017-04-24 20:39:39','2017-04-25 01:39:39','','Little Black Girl','','inherit','open','closed','','little-black-girl-2','','','2017-04-24 20:39:39','2017-04-25 01:39:39','',0,'http://www.monicarenata.com/wp-content/uploads/2017/04/Little-Black-Girl.jpg',0,'attachment','image/jpeg',0),(1632,1,'2017-04-24 20:39:44','2017-04-25 01:39:44','','Postive Thoughts','','inherit','open','closed','','postive-thoughts','','','2017-04-24 20:39:44','2017-04-25 01:39:44','',0,'http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg',0,'attachment','image/jpeg',0),(1633,1,'2017-04-24 20:39:46','2017-04-25 01:39:46','','The-Grieving-Cycle_art','','inherit','open','closed','','the-grieving-cycle_art','','','2017-04-24 20:39:46','2017-04-25 01:39:46','',0,'http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg',0,'attachment','image/jpeg',0),(1634,1,'2017-04-24 20:53:22','2017-04-25 01:53:22',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1320px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 84px; top: 862px; width: 458px; height: 458px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 458px; height: 458px;\" alt=\"Postive Thoughts\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 697px; height: 955px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">The weeds overwhelm the garden grounds<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Beauty can no longer be seen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Even though flowers bloom year-round<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">In the head resides the beauty<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But at times we never see<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For our eyes refuse to look deeper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And at times our thoughts aren\'t as genuine as we may speak<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cloud our own thoughts at time<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we expect the worst <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cannot see beauty beyond flesh<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">When we take that initial look<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But it doesn’t have to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For we can choose to speak words of kindness<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And live a life of positivity<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><i><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">“Positive thoughts can yield a positive life. Grow positive thoughts and flowers will grow. Otherwise, your mind will be overwhelmed with weeds.” – Monica Renata<o:p></o:p></span></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Heavy Fog','','publish','open','open','','heavy-fog','','','2017-04-24 20:53:22','2017-04-25 01:53:22','',0,'http://www.monicarenata.com/?p=1634',0,'post','',0),(1635,1,'2017-04-24 20:50:53','2017-04-25 01:50:53',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1320px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 181px; top: 973px; width: 263px; height: 263px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 263px; height: 263px;\" alt=\"Postive Thoughts\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 713px; height: 983px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">The weeds overwhelm the garden grounds<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Beauty can no longer be seen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Even though flowers bloom year-round<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">In the head resides the beauty<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But at times we never see<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For our eyes refuse to look deeper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And at times our thoughts aren\'t as genuine as we may speak<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cloud our own thoughts at time<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we expect the worst <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cannot see beauty beyond flesh<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">When we take that initial look<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But it doesn’t have to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For we can choose to speak words of kindness<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And live a life of positivity<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><i><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">“Positive thoughts can yield a positive life. Grow positive thoughts and flowers will grow. Otherwise, your mind will be overwhelmed with weeds.” – Monica Renata<o:p></o:p></span></i></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Heavy Fog','','inherit','closed','closed','','1634-revision-v1','','','2017-04-24 20:50:53','2017-04-25 01:50:53','',1634,'http://www.monicarenata.com/1634-revision-v1/',0,'revision','',0),(1636,1,'2017-04-24 20:51:47','2017-04-25 01:51:47',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1320px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 187px; top: 896px; width: 263px; height: 263px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 263px; height: 263px;\" alt=\"Postive Thoughts\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 697px; height: 955px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">The weeds overwhelm the garden grounds<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Beauty can no longer be seen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Even though flowers bloom year-round<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">In the head resides the beauty<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But at times we never see<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For our eyes refuse to look deeper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And at times our thoughts aren\'t as genuine as we may speak<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cloud our own thoughts at time<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we expect the worst <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cannot see beauty beyond flesh<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">When we take that initial look<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But it doesn’t have to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For we can choose to speak words of kindness<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And live a life of positivity<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><i><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">“Positive thoughts can yield a positive life. Grow positive thoughts and flowers will grow. Otherwise, your mind will be overwhelmed with weeds.” – Monica Renata<o:p></o:p></span></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Heavy Fog','','inherit','closed','closed','','1634-revision-v1','','','2017-04-24 20:51:47','2017-04-25 01:51:47','',1634,'http://www.monicarenata.com/1634-revision-v1/',0,'revision','',0),(1637,1,'2017-04-24 20:52:33','2017-04-25 01:52:33',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1320px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 84px; top: 862px; width: 458px; height: 458px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 458px; height: 458px;\" alt=\"Postive Thoughts\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 697px; height: 955px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">The weeds overwhelm the garden grounds<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Beauty can no longer be seen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Even though flowers bloom year-round<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">In the head resides the beauty<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But at times we never see<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For our eyes refuse to look deeper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And at times our thoughts aren\'t as genuine as we may speak<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cloud our own thoughts at time<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we expect the worst <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cannot see beauty beyond flesh<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">When we take that initial look<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But it doesn’t have to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For we can choose to speak words of kindness<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And live a life of positivity<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><i><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">“Positive thoughts can yield a positive life. Grow positive thoughts and flowers will grow. Otherwise, your mind will be overwhelmed with weeds.” – Monica Renata<o:p></o:p></span></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Heavy Fog','','inherit','closed','closed','','1634-revision-v1','','','2017-04-24 20:52:33','2017-04-25 01:52:33','',1634,'http://www.monicarenata.com/1634-revision-v1/',0,'revision','',0),(1638,1,'2017-04-24 20:53:22','2017-04-25 01:53:22',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1320px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 84px; top: 862px; width: 458px; height: 458px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 458px; height: 458px;\" alt=\"Postive Thoughts\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 697px; height: 955px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">The weeds overwhelm the garden grounds<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Beauty can no longer be seen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Even though flowers bloom year-round<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">In the head resides the beauty<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But at times we never see<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For our eyes refuse to look deeper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And at times our thoughts aren\'t as genuine as we may speak<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cloud our own thoughts at time<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we expect the worst <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Too bad we cannot see beauty beyond flesh<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">When we take that initial look<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">Fog tends to be heavy these days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">But it doesn’t have to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">For we can choose to speak words of kindness<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">And live a life of positivity<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><i><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Baskerville Old Face\',serif;\">“Positive thoughts can yield a positive life. Grow positive thoughts and flowers will grow. Otherwise, your mind will be overwhelmed with weeds.” – Monica Renata<o:p></o:p></span></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Heavy Fog','','inherit','closed','closed','','1634-revision-v1','','','2017-04-24 20:53:22','2017-04-25 01:53:22','',1634,'http://www.monicarenata.com/1634-revision-v1/',0,'revision','',0),(1639,1,'2017-04-24 21:06:32','2017-04-25 02:06:32',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1690px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1690px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1690\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 966px; width: 714px; height: 496px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 712px; height: 496px;\" alt=\"The-Grieving-Cycle_art\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 707px; height: 968px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"color: black; font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><span style=\"background-color: transparent;\"> </span><span style=\"line-height: 107%; color: #222222; background: transparent;\">The sound of my voice</span></span></div>\r\n<div style=\"color: black; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"color: #222222; background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Gasping for air</span></div>\r\n<div style=\"color: #222222; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Radiates through the room</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"font-size: 16px; font-family: \'Century Gothic\', sans-serif; color: #222222;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Tears do not fall from my eyes</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But they tell a tale of unfathomable doom</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I move my arms</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And swing my feet</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And yet I am still stuck</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I feel like I am suffocating</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And you stand next to me and watch</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our surroundings are the same</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Yet, there is one difference</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I am gasping for air</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You look at me begrudgingly</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I know you do not care</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me that you understand how I feel</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me to calm down</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You\'ve been through this too</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But it is easy for you to breathe</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">When you aren\'t underwater and waiting for rescue</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">So stand beside me</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Please</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And do not doubt my inner grief</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">For while we all go through pain</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our agony is reasonably unique</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><i style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><b>\"It is easy to breathe when you aren\'t under water. So be considerate when comforting someone who is drowning.\"</b><span></span> -Monica Renata</i></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','It\'s Easy To Breathe If You Aren\'t Underwater','','publish','open','open','','easy-breathe-arent-underwater','','','2017-04-24 21:06:32','2017-04-25 02:06:32','',0,'http://www.monicarenata.com/?p=1639',0,'post','',0),(1640,1,'2017-04-24 21:05:05','2017-04-25 02:05:05','','under water 2','','inherit','open','closed','','under-water-2','','','2017-04-24 21:05:05','2017-04-25 02:05:05','',1639,'http://www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg',0,'attachment','image/jpeg',0),(1641,1,'2017-04-24 21:05:39','2017-04-25 02:05:39',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1690px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1690px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1690\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 966px; width: 714px; height: 496px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 712px; height: 496px;\" alt=\"The-Grieving-Cycle_art\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 707px; height: 968px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"color: black; font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><span style=\"background-color: transparent;\"> </span><span style=\"line-height: 107%; color: #222222; background: transparent;\">The sound of my voice</span></span></div>\r\n<div style=\"color: black; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"color: #222222; background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Gasping for air</span></div>\r\n<div style=\"color: #222222; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Radiates through the room</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"font-size: 16px; font-family: \'Century Gothic\', sans-serif; color: #222222;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Tears do not fall from my eyes</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But they tell a tale of unfathomable doom</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I move my arms</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And swing my feet</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And yet I am still stuck</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I feel like I am suffocating</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And you stand next to me and watch</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our surroundings are the same</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Yet, there is one difference</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I am gasping for air</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You look at me begrudgingly</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I know you do not care</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me that you understand how I feel</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me to calm down</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You\'ve been through this too</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But it is easy for you to breathe</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">When you aren\'t underwater and waiting for rescue</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">So stand beside me</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Please</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And do not doubt my inner grief</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">For while we all go through pain</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our agony is reasonably unique</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><i style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><b>\"It is easy to breathe when you aren\'t under water. So be considerate when comforting someone who is drowning.\"</b> -Monica Renata</i></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','It\'s Easy To Breathe If You Aren\'t Underwater','','inherit','closed','closed','','1639-revision-v1','','','2017-04-24 21:05:39','2017-04-25 02:05:39','',1639,'http://www.monicarenata.com/1639-revision-v1/',0,'revision','',0),(1642,1,'2017-04-24 21:06:32','2017-04-25 02:06:32',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1690px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1690px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1690\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 966px; width: 714px; height: 496px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 712px; height: 496px;\" alt=\"The-Grieving-Cycle_art\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 707px; height: 968px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"color: black; font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><span style=\"background-color: transparent;\"> </span><span style=\"line-height: 107%; color: #222222; background: transparent;\">The sound of my voice</span></span></div>\r\n<div style=\"color: black; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"color: #222222; background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Gasping for air</span></div>\r\n<div style=\"color: #222222; font-family: \'Century Gothic\', sans-serif; font-size: 18px; text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Radiates through the room</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"font-size: 16px; font-family: \'Century Gothic\', sans-serif; color: #222222;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Tears do not fall from my eyes</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But they tell a tale of unfathomable doom</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I move my arms</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And swing my feet</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And yet I am still stuck</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I feel like I am suffocating</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And you stand next to me and watch</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our surroundings are the same</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Yet, there is one difference</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I am gasping for air</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You look at me begrudgingly</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">I know you do not care</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me that you understand how I feel</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You tell me to calm down</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">You\'ve been through this too</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">But it is easy for you to breathe</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">When you aren\'t underwater and waiting for rescue</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">So stand beside me</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Please</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">And do not doubt my inner grief</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">For while we all go through pain</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\">Our agony is reasonably unique</span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"> </span></div>\r\n<div style=\"text-align: center; line-height: 1.5;\"><i style=\"background-color: transparent; font-family: \'Century Gothic\', sans-serif; font-size: 16px;\"><b>\"It is easy to breathe when you aren\'t under water. So be considerate when comforting someone who is drowning.\"</b><span></span> -Monica Renata</i></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','It\'s Easy To Breathe If You Aren\'t Underwater','','inherit','closed','closed','','1639-revision-v1','','','2017-04-24 21:06:32','2017-04-25 02:06:32','',1639,'http://www.monicarenata.com/1639-revision-v1/',0,'revision','',0),(1644,1,'2017-05-08 22:43:44','2017-05-09 03:43:44',' \r\n<div id=\"zed_8t48y83p\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 720px; max-height: 970px;\">\r\n<div id=\"zed_8t48y83p\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 720px; height: 970px; overflow: hidden;\" data-origw=\"720\" data-origh=\"970\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 566px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">In love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love that seed grew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Cells turned into flesh</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And created a child that I once knew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His lips were like his father’s</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His eyes were just like mines</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">He even had that signature smirk</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">The same as his dad</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Which I loved but also despised</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">With love he was showered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From his arrival till the time his clock stopped</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Then grief partake everyone around him</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And now the pain seems to be nonstop</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love did that seed grow</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But to others they see less than them</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Unfortunate and disheartening</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But this is the sad reality of the world that I know</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 187px; top: 529px; width: 250px; height: 185px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 250px; height: 185px;\" alt=\"Fallen son\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Fallen Son','','publish','open','open','','fallen-son','','','2017-05-08 22:43:44','2017-05-09 03:43:44','',0,'http://www.monicarenata.com/?p=1644',0,'post','',0),(1645,1,'2017-05-08 22:42:14','2017-05-09 03:42:14','','Fallen son','','inherit','open','closed','','fallen-son','','','2017-05-08 22:42:14','2017-05-09 03:42:14','',1644,'http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png',0,'attachment','image/png',0),(1646,1,'2017-05-08 22:42:51','2017-05-09 03:42:51',' \r\n<div id=\"zed_8t48y83p\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 720px; max-height: 970px;\">\r\n<div id=\"zed_8t48y83p\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 720px; height: 970px; overflow: hidden;\" data-origw=\"720\" data-origh=\"970\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 566px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">In love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love that seed grew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Cells turned into flesh</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And created a child that I once knew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His lips were like his father’s</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His eyes were just like mines</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">He even had that signature smirk</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">The same as his dad</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Which I loved but also despised</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">With love he was showered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From his arrival till the time his clock stopped</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Then grief partake everyone around him</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And now the pain seems to be nonstop</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love did that seed grow</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But to others they see less than them</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Unfortunate and disheartening</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But this is the sad reality of the world that I know</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 187px; top: 529px; width: 250px; height: 185px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 250px; height: 185px;\" alt=\"Fallen son\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Fallen Son','','inherit','closed','closed','','1644-revision-v1','','','2017-05-08 22:42:51','2017-05-09 03:42:51','',1644,'http://www.monicarenata.com/1644-revision-v1/',0,'revision','',0),(1647,1,'2017-05-08 22:43:44','2017-05-09 03:43:44',' \r\n<div id=\"zed_8t48y83p\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 720px; max-height: 970px;\">\r\n<div id=\"zed_8t48y83p\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 720px; height: 970px; overflow: hidden;\" data-origw=\"720\" data-origh=\"970\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 566px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">In love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love that seed grew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Cells turned into flesh</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And created a child that I once knew</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His lips were like his father’s</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">His eyes were just like mines</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">He even had that signature smirk</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">The same as his dad</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Which I loved but also despised</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">With love he was showered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From his arrival till the time his clock stopped</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Then grief partake everyone around him</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And now the pain seems to be nonstop</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">From love a seed was planted</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in love did that seed grow</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But to others they see less than them</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Unfortunate and disheartening</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 20px; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But this is the sad reality of the world that I know</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 187px; top: 529px; width: 250px; height: 185px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 250px; height: 185px;\" alt=\"Fallen son\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Fallen Son','','inherit','closed','closed','','1644-revision-v1','','','2017-05-08 22:43:44','2017-05-09 03:43:44','',1644,'http://www.monicarenata.com/1644-revision-v1/',0,'revision','',0),(1649,1,'2017-05-09 17:09:53','2017-05-09 22:09:53',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1320px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 19px; top: 20px; width: 673px; height: 1188px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Whenever I think of you<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The touch of your flesh against my cheeks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Makes me feel like I can touch the moon<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The kisses that you gift me with<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">I willfully accept them <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">And I can only close my eyes<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled with anticipation<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Each time you are near by<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Paralyzed by your touch<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Anticipation builds <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">As you enter the room<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Staring at each other<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Yet no one seems to move<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: \'Times New Roman\'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">But that may happen soon</span><span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','To the Brim','','publish','open','open','','to-the-brim','','','2017-05-09 17:09:53','2017-05-09 22:09:53','',0,'http://www.monicarenata.com/?p=1649',0,'post','',0),(1650,1,'2017-05-08 23:02:55','2017-05-09 04:02:55','','5ee04e20748299c538d499f933922b77','','inherit','open','closed','','5ee04e20748299c538d499f933922b77','','','2017-05-08 23:02:55','2017-05-09 04:02:55','',1649,'http://www.monicarenata.com/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77.jpg',0,'attachment','image/jpeg',0),(1651,1,'2017-05-08 23:03:07','2017-05-09 04:03:07',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1320px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 19px; top: 20px; width: 673px; height: 1188px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Whenever I think of you<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The touch of your flesh against my cheeks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Makes me feel like I can touch the moon<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The kisses that you gift me with<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">I willfully accept them <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">And I can only close my eyes<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled with anticipation<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Each time you are near by<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Paralyzed by your touch<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Anticipation builds <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">As you enter the room<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Staring at each other<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Yet no one seems to move<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: \'Times New Roman\'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">But that may happen soon</span><span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','To the Brim','','inherit','closed','closed','','1649-revision-v1','','','2017-05-08 23:03:07','2017-05-09 04:03:07','',1649,'http://www.monicarenata.com/1649-revision-v1/',0,'revision','',0),(1652,1,'2017-05-09 17:09:53','2017-05-09 22:09:53',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1320px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1320px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1320\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 19px; top: 20px; width: 673px; height: 1188px; z-index: 16; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Whenever I think of you<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The touch of your flesh against my cheeks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Makes me feel like I can touch the moon<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">The kisses that you gift me with<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">I willfully accept them <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">And I can only close my eyes<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled with anticipation<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Each time you are near by<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Paralyzed by your touch<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Anticipation builds <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">As you enter the room<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Staring at each other<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Yet no one seems to move<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Filled to the brim <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif;\">Almost overflowing<o:p></o:p></span></p>\r\n<span style=\"font-size: 20.0pt; line-height: 107%; font-family: \'Poor Richard\',serif; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: \'Times New Roman\'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">But that may happen soon</span><span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','To the Brim','','inherit','closed','closed','','1649-revision-v1','','','2017-05-09 17:09:53','2017-05-09 22:09:53','',1649,'http://www.monicarenata.com/1649-revision-v1/',0,'revision','',0),(1654,1,'2017-05-27 05:55:54','2017-05-27 10:55:54','<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1110px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1110px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1110\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 680px; height: 715px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-family: \'footlight mt light\', serif; font-size: 14pt; background-color: transparent;\">I’m surprised that you had student loans</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You are black</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And things were made for people like you</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">To help with what you think you lack</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You see opportunity was given</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Kind of just thrown at you unlike me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They give you jobs you don’t qualify for</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Just because you don’t look like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that his father is still in his life</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Don’t all of your father’s leave</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They make babies everywhere</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But never provide for their seed</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know that’s why marriage matters</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">That is why so many of your young are in jail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Family means a lot to my race</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in that area you all fail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you speak so well</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you are so tame</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that your education background</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because it is so extensive</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you have a “regular” name</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know sometimes ya’ll are different</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But you act just like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m going to call you my black white friend</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because you are white to me</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 25px; top: 844px; width: 447px; height: 251px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 447px; height: 251px;\" alt=\"Black White Friend\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 24px; top: 751px; width: 548px; height: 90px; z-index: 18; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; color: #2e2efe;\"><b><i><span></span>\"Sometimes we tend to forget that people are people just like us. Friendships should be based on common characteristics and likes. Characteristics are not race specific, but when we make them so, we tend to make our friends uncomfortable. So be mindful...\" -Monica Renata</i></b> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','My Color Friend','','publish','open','open','','my-color-friend','','','2017-05-27 05:55:54','2017-05-27 10:55:54','',0,'http://www.monicarenata.com/?p=1654',0,'post','',0),(1655,1,'2017-05-27 05:51:04','2017-05-27 10:51:04','','Black White Friend','','inherit','open','closed','','black-white-friend','','','2017-05-27 05:51:04','2017-05-27 10:51:04','',1654,'http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg',0,'attachment','image/jpeg',0),(1656,1,'2017-05-27 05:54:58','2017-05-27 10:54:58',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1110px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1110px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1110\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 680px; height: 715px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-family: \'footlight mt light\', serif; font-size: 14pt; background-color: transparent;\">I’m surprised that you had student loans</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You are black</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And things were made for people like you</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">To help with what you think you lack</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You see opportunity was given</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Kind of just thrown at you unlike me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They give you jobs you don’t qualify for</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Just because you don’t look like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that his father is still in his life</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Don’t all of your father’s leave</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They make babies everywhere</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But never provide for their seed</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know that’s why marriage matters</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">That is why so many of your young are in jail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Family means a lot to my race</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in that area you all fail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you speak so well</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you are so tame</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that your education background</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because it is so extensive</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you have a “regular” name</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know sometimes ya’ll are different</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But you act just like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m going to call you my black white friend</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because you are white to me</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 25px; top: 844px; width: 447px; height: 251px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 447px; height: 251px;\" alt=\"Black White Friend\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 24px; top: 751px; width: 548px; height: 90px; z-index: 18; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; color: #2e2efe;\"><b><i>\"Sometimes we tend to forget that people are people just like us. Friendships should be based on common characteristics and likes. Characteristics are not race specific, but when we make them so, we tend to make our friends uncomfortable. So be mindful...\" -Monica Renata</i></b> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','My Color Friend','','inherit','closed','closed','','1654-revision-v1','','','2017-05-27 05:54:58','2017-05-27 10:54:58','',1654,'http://www.monicarenata.com/1654-revision-v1/',0,'revision','',0),(1657,1,'2017-05-27 05:55:54','2017-05-27 10:55:54','<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1110px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1110px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1110\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 680px; height: 715px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-family: \'footlight mt light\', serif; font-size: 14pt; background-color: transparent;\">I’m surprised that you had student loans</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You are black</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And things were made for people like you</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">To help with what you think you lack</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You see opportunity was given</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Kind of just thrown at you unlike me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They give you jobs you don’t qualify for</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Just because you don’t look like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that his father is still in his life</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">After all</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Don’t all of your father’s leave</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">They make babies everywhere</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But never provide for their seed</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know that’s why marriage matters</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">That is why so many of your young are in jail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Family means a lot to my race</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">And in that area you all fail</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you speak so well</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you are so tame</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that your education background</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because it is so extensive</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m surprised that you have a “regular” name</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">You know sometimes ya’ll are different</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">But you act just like me</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">I’m going to call you my black white friend</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span style=\"font-size: 14pt; line-height: 21.4667px; font-family: \'footlight mt light\', serif;\">Because you are white to me</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 25px; top: 844px; width: 447px; height: 251px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 447px; height: 251px;\" alt=\"Black White Friend\" /></a></div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 24px; top: 751px; width: 548px; height: 90px; z-index: 18; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; color: #2e2efe;\"><b><i><span></span>\"Sometimes we tend to forget that people are people just like us. Friendships should be based on common characteristics and likes. Characteristics are not race specific, but when we make them so, we tend to make our friends uncomfortable. So be mindful...\" -Monica Renata</i></b> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','My Color Friend','','inherit','closed','closed','','1654-revision-v1','','','2017-05-27 05:55:54','2017-05-27 10:55:54','',1654,'http://www.monicarenata.com/1654-revision-v1/',0,'revision','',0),(1658,1,'2017-05-27 06:34:00','2017-05-27 11:34:00',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1040px; max-height: 1090px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1040px; height: 1090px; overflow: hidden;\" data-origw=\"1040\" data-origh=\"1090\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 15px; top: 0px; width: 733px; height: 838px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent; font-size: 18px;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I am good for you<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 272px; top: 741px; width: 214px; height: 328px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 214px; height: 326px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','publish','open','open','','ice-ice','','','2017-05-27 06:34:00','2017-05-27 11:34:00','',0,'http://www.monicarenata.com/?p=1658',0,'post','',0),(1659,1,'2017-05-27 06:14:58','2017-05-27 11:14:58','','bottle water','','inherit','open','closed','','bottle-water','','','2017-05-27 06:14:58','2017-05-27 11:14:58','',1658,'http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg',0,'attachment','image/jpeg',0),(1660,1,'2017-05-27 06:15:58','2017-05-27 11:15:58','<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 16px; top: 0px; width: 580px; height: 786px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I am good for you<o:p></o:p></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 243px; top: 755px; width: 151px; height: 231px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 151px; height: 230px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','inherit','closed','closed','','1658-revision-v1','','','2017-05-27 06:15:58','2017-05-27 11:15:58','',1658,'http://www.monicarenata.com/1658-revision-v1/',0,'revision','',0),(1663,1,'2017-05-27 06:18:55','2017-05-27 11:18:55',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1040px; max-height: 1090px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1040px; height: 1090px; overflow: hidden;\" data-origw=\"1040\" data-origh=\"1090\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 15px; top: 0px; width: 733px; height: 838px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent; font-size: 18px;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I am good for you<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 272px; top: 741px; width: 214px; height: 328px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 214px; height: 326px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','inherit','closed','closed','','1658-revision-v1','','','2017-05-27 06:18:55','2017-05-27 11:18:55','',1658,'http://www.monicarenata.com/1658-revision-v1/',0,'revision','',0),(1661,1,'2017-05-27 06:17:16','2017-05-27 11:17:16',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1040px; max-height: 1090px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1040px; height: 1090px; overflow: hidden;\" data-origw=\"1040\" data-origh=\"1090\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 15px; top: 0px; width: 586px; height: 750px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I am good for you<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 223px; top: 757px; width: 161.459px; height: 247px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 161px; height: 246px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','inherit','closed','closed','','1658-revision-v1','','','2017-05-27 06:17:16','2017-05-27 11:17:16','',1658,'http://www.monicarenata.com/1658-revision-v1/',0,'revision','',0),(1662,1,'2017-05-27 06:17:55','2017-05-27 11:17:55',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1040px; max-height: 1090px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1040px; height: 1090px; overflow: hidden;\" data-origw=\"1040\" data-origh=\"1090\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 15px; top: 0px; width: 586px; height: 750px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 12.0pt; line-height: 107%; font-family: \'Century\',serif;\">I am good for you<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 207px; top: 725px; width: 214px; height: 328px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 214px; height: 326px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','inherit','closed','closed','','1658-revision-v1','','','2017-05-27 06:17:55','2017-05-27 11:17:55','',1658,'http://www.monicarenata.com/1658-revision-v1/',0,'revision','',0),(1664,1,'2017-05-27 06:34:00','2017-05-27 11:34:00',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1040px; max-height: 1090px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1040px; height: 1090px; overflow: hidden;\" data-origw=\"1040\" data-origh=\"1090\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 15px; top: 0px; width: 733px; height: 838px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent; font-size: 18px;\"> </span></div>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">On a hot, humid summer day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you savor ever drop of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Even if you thirsted for another drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you wait until the ice in my heart melts<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Before you just throw me away<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you look past my outer body imperfections<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">And truly value what’s inside of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Could you love me like I’m your very last drink<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">That will save you from dying from thirst<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Because just like a bottle of water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I want to rejuvenate your heart and fill it with love<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">So take a chance on water<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Something that is pure and true<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">Cause unlike those other drinks<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 107%; font-family: Century, serif;\">I am good for you<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 272px; top: 741px; width: 214px; height: 328px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 214px; height: 326px;\" alt=\"bottle water\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Ice Ice','','inherit','closed','closed','','1658-revision-v1','','','2017-05-27 06:34:00','2017-05-27 11:34:00','',1658,'http://www.monicarenata.com/1658-revision-v1/',0,'revision','',0),(1665,1,'2017-05-31 08:26:14','2017-05-31 13:26:14','A tree can grow to staggering heights\nAnd bloom flowers each spring\n\nThe leaves could be crisp and new\nA spectacle for all to see\n\nThe branches can provide shade\nOn those hot summer days\n\nA sanctuary for the little birds\nThat fly around your yard and play\n\nA toy for young kids to climb\nEven kids that are old\n\nA memory for the longstanding couples\nWho kissed under this tree long ago\n\nBeauty at the very stalk\nBut what about the base\n\nRoots travel deep down\nBut are neglected every day\n\nA tree that stands so beautifully\nUntil one day that beauty will stop\n\nFor bugs began to eat at the roots\nAnd soon all the magnificence rots\n\nJust like you and I\nNo matter how well you do\n\nLife can be grand but can quickly turn bad\nIf you neglect your roots\n\n','Roots','','publish','open','open','','roots','','','2017-05-31 08:26:14','2017-05-31 13:26:14','',0,'http://www.monicarenata.com/roots/',0,'post','',0),(1666,1,'2017-06-02 08:40:46','2017-06-02 13:40:46','I kiss you every morning\nAs I awake from sleep\nFor starting my day with a taste of you\nWas truly all I need\n\nI place your mug on the table\nAnd then began to prepare your morning cup of joe\nFor you love your coffee in the morning\nRight before you walk out the door\n\nThe smell of breakfast in the kitchen\nToast , sausage, and your two eggs\nI greet you with another kiss\nAnd you thank me with a kiss on my head\n\nI pour your coffee in your mug\nI admire you while you eat\nI’m so happy I waited for someone like you\nLoving you has set my heart free\n\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg\" rel=\"attachment wp-att-1667\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg\" alt=\"\" title=\"6f36aa13fffbab6aa7c2d178c0373213-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1667\" /></a>','Reward for The Wait','','publish','open','open','','reward-for-the-wait','','','2017-06-02 08:40:46','2017-06-02 13:40:46','',0,'http://www.monicarenata.com/?p=1666',0,'post','',0),(1667,1,'2017-06-02 08:40:41','2017-06-02 13:40:41','','6f36aa13fffbab6aa7c2d178c0373213','','inherit','open','closed','','6f36aa13fffbab6aa7c2d178c0373213','','','2017-06-02 08:40:41','2017-06-02 13:40:41','',1666,'http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg',0,'attachment','image/jpeg',0),(1668,1,'2017-06-02 08:40:46','2017-06-02 13:40:46','I kiss you every morning\nAs I awake from sleep\nFor starting my day with a taste of you\nWas truly all I need\n\nI place your mug on the table\nAnd then began to prepare your morning cup of joe\nFor you love your coffee in the morning\nRight before you walk out the door\n\nThe smell of breakfast in the kitchen\nToast , sausage, and your two eggs\nI greet you with another kiss\nAnd you thank me with a kiss on my head\n\nI pour your coffee in your mug\nI admire you while you eat\nI’m so happy I waited for someone like you\nLoving you has set my heart free\n\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg\" rel=\"attachment wp-att-1667\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg\" alt=\"\" title=\"6f36aa13fffbab6aa7c2d178c0373213-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1667\" /></a>','Reward for The Wait','','inherit','closed','closed','','1666-revision-v1','','','2017-06-02 08:40:46','2017-06-02 13:40:46','',1666,'http://www.monicarenata.com/1666-revision-v1/',0,'revision','',0),(1670,1,'2017-06-05 22:58:58','2017-06-06 03:58:58',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 604px; height: 732px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">The stars that twinkle late at night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Let me know that I am alive</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Each flicker of light sparkles magically</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Just like the twinkle in a stranger\'s eyes </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>The dew that hits my cheeks</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As I lay beneath the stars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px; background-color: transparent;\">Feels like the softest touch </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As soft as kleenex on minor scars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty that I find</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Within the still of every night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty of the night sky</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Before my bedtime gives me life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">For I have enjoyed another day </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>And will awake to see twinkles in my day life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"\" style=\"box-sizing: content-box; text-align: center; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>For it is the night time w</span><span style=\"box-sizing: content-box; text-align: center; background-color: transparent; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">hen I truly feel alive</span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black;\"><span face=\"Palatino Linotype, Book Antiqua, Palatino, serif\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span style=\"font-size: 20px;\">Blessed when I close and when I open my eyes</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 147px; top: 578px; width: 311px; height: 208px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 311px; height: 208px;\" alt=\"Night sky\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Night Life','','publish','open','open','','night-life','','','2017-06-05 22:58:58','2017-06-06 03:58:58','',0,'http://www.monicarenata.com/?p=1670',0,'post','',0),(1671,1,'2017-06-05 22:58:29','2017-06-06 03:58:29',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 604px; height: 732px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">The stars that twinkle late at night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Let me know that I am alive</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Each flicker of light sparkles magically</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Just like the twinkle in a stranger\'s eyes </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The dew that hits my cheeks</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As I lay beneath the stars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px; background-color: transparent;\">Feels like the softest touch </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As soft as kleenex on minor scars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty that I find</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Within the still of every night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty of the night sky</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Before my bedtime gives me life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">For I have enjoyed another day </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">And will awake to see twinkles in my day life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"\" style=\"box-sizing: content-box; text-align: center; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">For it is the night time w</span><span style=\"box-sizing: content-box; text-align: center; background-color: transparent; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">hen I truly feel alive</span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black;\"><span face=\"Palatino Linotype, Book Antiqua, Palatino, serif\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span style=\"font-size: 20px;\">Blessed when I close and when I open my eyes</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 147px; top: 578px; width: 311px; height: 208px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 311px; height: 208px;\" alt=\"Night sky\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Night Life','','inherit','closed','closed','','1670-revision-v1','','','2017-06-05 22:58:29','2017-06-06 03:58:29','',1670,'http://www.monicarenata.com/1670-revision-v1/',0,'revision','',0),(1672,1,'2017-06-05 22:58:58','2017-06-06 03:58:58',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 604px; height: 732px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">The stars that twinkle late at night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Let me know that I am alive</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-size: 20px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\">Each flicker of light sparkles magically</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Just like the twinkle in a stranger\'s eyes </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>The dew that hits my cheeks</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As I lay beneath the stars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px; background-color: transparent;\">Feels like the softest touch </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">As soft as kleenex on minor scars</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty that I find</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Within the still of every night</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">The beauty of the night sky</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">Before my bedtime gives me life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">For I have enjoyed another day </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>And will awake to see twinkles in my day life</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span class=\"\" style=\"box-sizing: content-box; text-align: center; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\"><span></span>For it is the night time w</span><span style=\"box-sizing: content-box; text-align: center; background-color: transparent; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif; font-size: 20px;\">hen I truly feel alive</span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black;\"><span face=\"Palatino Linotype, Book Antiqua, Palatino, serif\" style=\"font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;\"><span style=\"font-size: 20px;\">Blessed when I close and when I open my eyes</span></span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 147px; top: 578px; width: 311px; height: 208px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 311px; height: 208px;\" alt=\"Night sky\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Night Life','','inherit','closed','closed','','1670-revision-v1','','','2017-06-05 22:58:58','2017-06-06 03:58:58','',1670,'http://www.monicarenata.com/1670-revision-v1/',0,'revision','',0),(1673,1,'2017-06-11 23:34:57','2017-06-12 04:34:57','Worries cast to the wind\r\n\r\nJust like fire to a flame\r\n\r\nFace to face they will meet\r\n\r\nBut will stay the same\r\n\r\nA force moving fiercely\r\n\r\nWorries left behind as the wind pounds my face\r\n\r\nI cast my worries to the wind\r\n\r\nTil soon they both stop worrying me\r\n\r\n \r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/736x/66/82/08/6682086881a4d38c6dbbce0916cce769.jpg\" alt=\"Image result for windy day\" width=\"422\" height=\"336\" class=\"\" />','To the Wind','','publish','open','open','','to-the-wind','','','2017-06-11 23:34:57','2017-06-12 04:34:57','',0,'http://www.monicarenata.com/?p=1673',0,'post','',0),(1674,1,'2017-06-11 23:33:11','2017-06-12 04:33:11','Worries cast to the wind\r\n\r\nJust like fire to a flame\r\n\r\nFace to face they will meet\r\n\r\nBut will stay the same\r\n\r\nA force moving fiercely\r\n\r\nWorries left behind as the wind pounds my face\r\n\r\nI cast my worries to the wind\r\n\r\nTil soon they both stop worrying me\r\n\r\n \r\n\r\n<img src=\"https://s-media-cache-ak0.pinimg.com/736x/66/82/08/6682086881a4d38c6dbbce0916cce769.jpg\" alt=\"Image result for windy day\" width=\"422\" height=\"336\" class=\"\" />','To the Wind','','inherit','closed','closed','','1673-revision-v1','','','2017-06-11 23:33:11','2017-06-12 04:33:11','',1673,'http://www.monicarenata.com/1673-revision-v1/',0,'revision','',0),(1675,1,'2017-06-11 23:34:04','2017-06-12 04:34:04','','wind','','inherit','open','closed','','wind','','','2017-06-11 23:34:04','2017-06-12 04:34:04','',1673,'http://www.monicarenata.com/wp-content/uploads/2017/06/wind.jpg',0,'attachment','image/jpeg',0),(1676,1,'2017-06-11 23:40:24','2017-06-12 04:40:24','I forgot how to tie my shoes this morning\r\n\r\nI could not wrap two strings around\r\n\r\nI could not make that lovely loop\r\n\r\nSurely when I walk I’ll fall down\r\n\r\n \r\n\r\nMy fingers just wouldn’t perform the motion\r\n\r\nMy eyes won’t allow me to see\r\n\r\nMy day cannot get started\r\n\r\nUnless I can stand firm on my two feet\r\n\r\n \r\n\r\nBut I forgot how to tie my shoes this morning\r\n\r\nAnd today I think that’s alright\r\n\r\nFor I’d rather stay home and lay next to you\r\n\r\nInstead of taking my early morning flight\r\n\r\n \r\n\r\n<img src=\"http://40.media.tumblr.com/5fb7f6d6155e123107ab0e9ef78a1f5f/tumblr_nxgq87zD2J1r7eta3o1_500.jpg\" alt=\"Image result for in bed in the morning\" width=\"317\" height=\"317\" class=\"\" />','Late Day','','publish','open','open','','late-day','','','2017-06-11 23:40:24','2017-06-12 04:40:24','',0,'http://www.monicarenata.com/?p=1676',0,'post','',0),(1677,1,'2017-06-11 23:38:02','2017-06-12 04:38:02','I forgot how to tie my shoes this morning\r\n\r\nI could not wrap two strings around\r\n\r\nI could not make that lovely loop\r\n\r\nSurely when I walk I’ll fall down\r\n\r\n \r\n\r\nMy fingers just wouldn’t perform the motion\r\n\r\nMy eyes won’t allow me to see\r\n\r\nMy day cannot get started\r\n\r\nUnless I can stand firm on my two feet\r\n\r\n \r\n\r\nBut I forgot how to tie my shoes this morning\r\n\r\nAnd today I think that’s alright\r\n\r\nFor I’d rather stay home and lay next to you\r\n\r\nInstead of taking my early morning flight','Late Day','','inherit','closed','closed','','1676-revision-v1','','','2017-06-11 23:38:02','2017-06-12 04:38:02','',1676,'http://www.monicarenata.com/1676-revision-v1/',0,'revision','',0),(1678,1,'2017-06-11 23:40:04','2017-06-12 04:40:04','I forgot how to tie my shoes this morning\r\n\r\nI could not wrap two strings around\r\n\r\nI could not make that lovely loop\r\n\r\nSurely when I walk I’ll fall down\r\n\r\n \r\n\r\nMy fingers just wouldn’t perform the motion\r\n\r\nMy eyes won’t allow me to see\r\n\r\nMy day cannot get started\r\n\r\nUnless I can stand firm on my two feet\r\n\r\n \r\n\r\nBut I forgot how to tie my shoes this morning\r\n\r\nAnd today I think that’s alright\r\n\r\nFor I’d rather stay home and lay next to you\r\n\r\nInstead of taking my early morning flight\r\n\r\n \r\n\r\n<img src=\"http://40.media.tumblr.com/5fb7f6d6155e123107ab0e9ef78a1f5f/tumblr_nxgq87zD2J1r7eta3o1_500.jpg\" alt=\"Image result for in bed in the morning\" width=\"317\" height=\"317\" class=\"\" />','Late Day','','inherit','closed','closed','','1676-revision-v1','','','2017-06-11 23:40:04','2017-06-12 04:40:04','',1676,'http://www.monicarenata.com/1676-revision-v1/',0,'revision','',0),(1679,1,'2017-06-11 23:52:30','2017-06-12 04:52:30',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1100px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1100px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1100\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 21px; top: 33px; width: 669px; height: 917px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Light fades to dark skies</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Shoes removed from feet</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">The body finally sits down</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Eyes hang low</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I need some sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Intoxicated by a daily drug</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">A drug I can never beat</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My walls can no longer surround me</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My thoughts are vulnerable when I need sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">In the stupor of my premature slumber</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I say words I’d usually not say</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I reveal my heart</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I reveal my soul</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I give my all in hopes that you take</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Walls are temporary broken</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My heart overcomes my pride and I speak the truth</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Life is an intoxicating drug</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">And when I crashing down I confess my love to you</span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 118px; top: 879px; width: 312.147px; height: 221px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 312px; height: 221px;\" alt=\"tenor\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Late Night Truths','','publish','open','open','','late-night-truths','','','2017-06-11 23:52:30','2017-06-12 04:52:30','',0,'http://www.monicarenata.com/?p=1679',0,'post','',0),(1680,1,'2017-06-11 23:49:49','2017-06-12 04:49:49','','tenor','','inherit','open','closed','','tenor','','','2017-06-11 23:49:49','2017-06-12 04:49:49','',1679,'http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif',0,'attachment','image/gif',0),(1682,1,'2017-06-11 23:52:30','2017-06-12 04:52:30',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1100px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1100px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1100\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 21px; top: 33px; width: 669px; height: 917px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Light fades to dark skies</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Shoes removed from feet</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">The body finally sits down</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Eyes hang low</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I need some sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Intoxicated by a daily drug</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">A drug I can never beat</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My walls can no longer surround me</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My thoughts are vulnerable when I need sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">In the stupor of my premature slumber</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I say words I’d usually not say</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I reveal my heart</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I reveal my soul</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">I give my all in hopes that you take</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Walls are temporary broken</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">My heart overcomes my pride and I speak the truth</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">Life is an intoxicating drug</span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\"> </span></div>\r\n<div><span class=\"\" style=\"font-family: Georgia, serif; font-size: 18px;\">And when I crashing down I confess my love to you</span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 118px; top: 879px; width: 312.147px; height: 221px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 312px; height: 221px;\" alt=\"tenor\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Late Night Truths','','inherit','closed','closed','','1679-revision-v1','','','2017-06-11 23:52:30','2017-06-12 04:52:30','',1679,'http://www.monicarenata.com/1679-revision-v1/',0,'revision','',0),(1681,1,'2017-06-11 23:51:22','2017-06-12 04:51:22',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1010px; max-height: 1100px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1010px; height: 1100px; overflow: hidden;\" data-origw=\"1010\" data-origh=\"1100\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 669px; height: 917px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Light fades to dark skies</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Shoes removed from feet</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">The body finally sits down</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Eyes hang low</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">I need some sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Intoxicated by a daily drug</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">A drug I can never beat</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">My walls can no longer surround me</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">My thoughts are vulnerable when I need sleep</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">In the stupor of my premature slumber</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">I say words I’d usually not say</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">I reveal my heart</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">I reveal my soul</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">I give my all in hopes that you take</span></div>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"> </span></p>\r\n\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Walls are temporary broken</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">My heart overcomes my pride and I speak the truth</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">Life is an intoxicating drug</span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div><span class=\"\" style=\"font-family: \'Comic Sans MS\', cursive; font-size: 18px;\">And when I crashing down I confess my love to you</span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 118px; top: 879px; width: 312.147px; height: 221px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 312px; height: 221px;\" alt=\"tenor\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Late Night Truths','','inherit','closed','closed','','1679-revision-v1','','','2017-06-11 23:51:22','2017-06-12 04:51:22','',1679,'http://www.monicarenata.com/1679-revision-v1/',0,'revision','',0),(1683,1,'2017-06-11 23:55:42','2017-06-12 04:55:42','You say that you are a paper pusher\r\n\r\nBut you know you just aren’t happy\r\n\r\nWalking around with flashy things\r\n\r\nRiding around in that new caddie\r\n\r\n \r\n\r\nWrist flashing from your jewelry\r\n\r\nDressed from the top of your head to your toes\r\n\r\nYou say that you are a paper pusher\r\n\r\nBut your flashy life is getting old\r\n\r\n \r\n\r\nPhotos show everything you got\r\n\r\nBut a blank photo shows your soul\r\n\r\nYou smile but you are empty inside\r\n\r\nSocial media fills your heart\'s hole\r\n\r\n \r\n\r\nBut you say that you are a paper pusher\r\n\r\nYou take great pride in that\r\n\r\nToo bad all of thing things you have\r\n\r\nCannot compensate for the love you lack\r\n\r\n \r\n\r\n<img src=\"http://thebackbencher.co.uk/wp-content/uploads/2013/04/Money-no-enough-525x250.jpg\" alt=\"Image result for unhappy rich person\" />','Paper Pusher','','publish','open','open','','paper-pusher','','','2017-06-11 23:55:42','2017-06-12 04:55:42','',0,'http://www.monicarenata.com/?p=1683',0,'post','',0),(1684,1,'2017-06-11 23:55:23','2017-06-12 04:55:23','You say that you are a paper pusher\r\n\r\nBut you know you just aren’t happy\r\n\r\nWalking around with flashy things\r\n\r\nRiding around in that new caddie\r\n\r\n \r\n\r\nWrist flashing from your jewelry\r\n\r\nDressed from the top of your head to your toes\r\n\r\nYou say that you are a paper pusher\r\n\r\nBut your flashy life is getting old\r\n\r\n \r\n\r\nPhotos show everything you got\r\n\r\nBut a blank photo shows your soul\r\n\r\nYou smile but you are empty inside\r\n\r\nSocial media fills your heart\'s hole\r\n\r\n \r\n\r\nBut you say that you are a paper pusher\r\n\r\nYou take great pride in that\r\n\r\nToo bad all of thing things you have\r\n\r\nCannot compensate for the love you lack\r\n\r\n \r\n\r\n<img src=\"http://thebackbencher.co.uk/wp-content/uploads/2013/04/Money-no-enough-525x250.jpg\" alt=\"Image result for unhappy rich person\" />','Paper Pusher','','inherit','closed','closed','','1683-revision-v1','','','2017-06-11 23:55:23','2017-06-12 04:55:23','',1683,'http://www.monicarenata.com/1683-revision-v1/',0,'revision','',0),(1686,1,'2017-06-12 00:41:04','2017-06-12 05:41:04','The day the inner bark of the tree turned brown\r\n\r\nWas the day I finally felt alive\r\n\r\n<span></span>I felt each goosebump on my flesh\r\n\r\nI felt each ripple down my spine\r\n\r\n \r\n\r\nI breathed the air that I took for granted\r\n\r\nIt was so soft and sweet\r\n\r\nI smelled the droplets of the rain that fell\r\n\r\nFrom the shriveled curves of each uniquely shaped leaf\r\n\r\n \r\n\r\nI let my feet graze the ground\r\n\r\nThe grass; it was so soft\r\n\r\n \r\n\r\nI didn’t protect my skin from the sun\r\n\r\nI just basked in its heinous glow\r\n\r\n \r\n\r\nI stopped by the homeless man on the corner\r\n\r\nAnd I listened to his story\r\n\r\n \r\n\r\nI called every friend and member of my family\r\n\r\nAnd told them how much I loved them\r\n\r\n \r\n\r\nThe day my inner bark turned brown\r\n\r\nWas the day I finally began to appreciate life\r\n\r\nFor what is the point of taking things for granted\r\n\r\nIf one day, we shall die\r\n\r\n \r\n\r\nSo moving forward I will not take any moment for granted\r\n\r\nI will live\r\n\r\nI will love\r\n\r\nTil the moment I close my eyes\r\n\r\n \r\n\r\nLife is too short to take for granted\r\n\r\nDon’t wait to grasp it when you are dying inside\r\n\r\n \r\n\r\n<em>“Too many times we don’t appreciate the small things in life until we realize our life is about to expire. Take time to enjoy life and the people who make life worth living. One of the biggest regrets in life is forgetting to actually live.” – Monica Renata</em>','The Day The Inner Bark Turned Brown','','publish','open','open','','day-inner-bark-turned-brown','','','2017-06-12 00:41:04','2017-06-12 05:41:04','',0,'http://www.monicarenata.com/?p=1686',0,'post','',0),(1687,1,'2017-06-12 00:40:22','2017-06-12 05:40:22','','5-Things-You-Need-to-Know-About-The-Tree-of-Life','','inherit','open','closed','','5-things-you-need-to-know-about-the-tree-of-life','','','2017-06-12 00:40:22','2017-06-12 05:40:22','',1686,'http://www.monicarenata.com/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg',0,'attachment','image/jpeg',0),(1688,1,'2017-06-12 00:40:36','2017-06-12 05:40:36','The day the inner bark of the tree turned brown\r\n\r\nWas the day I finally felt alive\r\n\r\nI felt each goosebump on my flesh\r\n\r\nI felt each ripple down my spine\r\n\r\n \r\n\r\nI breathed the air that I took for granted\r\n\r\nIt was so soft and sweet\r\n\r\nI smelled the droplets of the rain that fell\r\n\r\nFrom the shriveled curves of each uniquely shaped leaf\r\n\r\n \r\n\r\nI let my feet graze the ground\r\n\r\nThe grass; it was so soft\r\n\r\n \r\n\r\nI didn’t protect my skin from the sun\r\n\r\nI just basked in its heinous glow\r\n\r\n \r\n\r\nI stopped by the homeless man on the corner\r\n\r\nAnd I listened to his story\r\n\r\n \r\n\r\nI called every friend and member of my family\r\n\r\nAnd told them how much I loved them\r\n\r\n \r\n\r\nThe day my inner bark turned brown\r\n\r\nWas the day I finally began to appreciate life\r\n\r\nFor what is the point of taking things for granted\r\n\r\nIf one day, we shall die\r\n\r\n \r\n\r\nSo moving forward I will not take any moment for granted\r\n\r\nI will live\r\n\r\nI will love\r\n\r\nTil the moment I close my eyes\r\n\r\n \r\n\r\nLife is too short to take for granted\r\n\r\nDon’t wait to grasp it when you are dying inside\r\n\r\n \r\n\r\n<em>“Too many times we don’t appreciate the small things in life until we realize our life is about to expire. Take time to enjoy life and the people who make life worth living. One of the biggest regrets in life is forgetting to actually live.” – Monica Renata</em>','The Day The Inner Bark Turned Brown','','inherit','closed','closed','','1686-revision-v1','','','2017-06-12 00:40:36','2017-06-12 05:40:36','',1686,'http://www.monicarenata.com/1686-revision-v1/',0,'revision','',0),(1689,1,'2017-06-12 00:41:04','2017-06-12 05:41:04','The day the inner bark of the tree turned brown\r\n\r\nWas the day I finally felt alive\r\n\r\n<span></span>I felt each goosebump on my flesh\r\n\r\nI felt each ripple down my spine\r\n\r\n \r\n\r\nI breathed the air that I took for granted\r\n\r\nIt was so soft and sweet\r\n\r\nI smelled the droplets of the rain that fell\r\n\r\nFrom the shriveled curves of each uniquely shaped leaf\r\n\r\n \r\n\r\nI let my feet graze the ground\r\n\r\nThe grass; it was so soft\r\n\r\n \r\n\r\nI didn’t protect my skin from the sun\r\n\r\nI just basked in its heinous glow\r\n\r\n \r\n\r\nI stopped by the homeless man on the corner\r\n\r\nAnd I listened to his story\r\n\r\n \r\n\r\nI called every friend and member of my family\r\n\r\nAnd told them how much I loved them\r\n\r\n \r\n\r\nThe day my inner bark turned brown\r\n\r\nWas the day I finally began to appreciate life\r\n\r\nFor what is the point of taking things for granted\r\n\r\nIf one day, we shall die\r\n\r\n \r\n\r\nSo moving forward I will not take any moment for granted\r\n\r\nI will live\r\n\r\nI will love\r\n\r\nTil the moment I close my eyes\r\n\r\n \r\n\r\nLife is too short to take for granted\r\n\r\nDon’t wait to grasp it when you are dying inside\r\n\r\n \r\n\r\n<em>“Too many times we don’t appreciate the small things in life until we realize our life is about to expire. Take time to enjoy life and the people who make life worth living. One of the biggest regrets in life is forgetting to actually live.” – Monica Renata</em>','The Day The Inner Bark Turned Brown','','inherit','closed','closed','','1686-revision-v1','','','2017-06-12 00:41:04','2017-06-12 05:41:04','',1686,'http://www.monicarenata.com/1686-revision-v1/',0,'revision','',0),(1692,1,'2017-06-17 17:28:22','2017-06-17 22:28:22',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 22px; top: 20px; width: 569px; height: 705px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"> Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I have so much to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But there seems to be one topic</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">That just takes my words away</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">it\'s like traveling in a funnel</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">And I am whirling down</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Yet I cannot let out a scream </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Nor any other sound</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I am at the center of the room</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I hold the attention of everyone</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it is different with you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I gaze in your eyes and want to say it</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But to me the time is always too soon</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I guess what I\'m trying to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Those three words people say when they jump the broom</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But I\'ll show you in my gestures</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you with my kind words</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I make you smile</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I put you first</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">We both know this to be a fact</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it\'s hard for me to tell you I love you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But hopefully one day this will pass</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Closed Mouth','','publish','open','open','','closed-mouth','','','2017-06-18 17:13:27','2017-06-18 22:13:27','',0,'http://www.monicarenata.com/?p=1692',0,'post','',0),(1693,1,'2017-06-17 17:27:45','2017-06-17 22:27:45',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 569px; height: 705px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"> Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I have so much to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But there seems to be one topic</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">That just takes my words away</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">it\'s like traveling in a funnel</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">And I am whirling down</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Yet I cannot let out a scream </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Nor any other sound</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I am at the center of the room</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I hold the attention of everyone</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it is different with you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I gaze in your eyes and want to say it</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But to me the time is always too soon</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I guess what I\'m trying to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Those three words people say when they jump the broom</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But I\'ll show you in my gestures</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you with my kind words</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I make you smile</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I put you first</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">We both know this to be a fact</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Put it\'s hard for me to tell you I love you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But hopefully one day this will pass</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Closed Mouth','','inherit','closed','closed','','1692-revision-v1','','','2017-06-17 17:27:45','2017-06-17 22:27:45','',1692,'http://www.monicarenata.com/1692-revision-v1/',0,'revision','',0),(1694,1,'2017-06-17 17:28:22','2017-06-17 22:28:22',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 569px; height: 705px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"> Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I have so much to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But there seems to be one topic</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">That just takes my words away</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">it\'s like traveling in a funnel</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">And I am whirling down</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Yet I cannot let out a scream </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Nor any other sound</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I am at the center of the room</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I hold the attention of everyone</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it is different with you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I gaze in your eyes and want to say it</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But to me the time is always too soon</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I guess what I\'m trying to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Those three words people say when they jump the broom</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But I\'ll show you in my gestures</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you with my kind words</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I make you smile</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I put you first</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">We both know this to be a fact</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Put it\'s hard for me to tell you I love you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But hopefully one day this will pass</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Closed Mouth','','inherit','closed','closed','','1692-revision-v1','','','2017-06-17 17:28:22','2017-06-17 22:28:22','',1692,'http://www.monicarenata.com/1692-revision-v1/',0,'revision','',0),(1695,1,'2017-06-18 17:13:27','2017-06-18 22:13:27',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 22px; top: 20px; width: 569px; height: 705px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"> Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I have so much to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But there seems to be one topic</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">That just takes my words away</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">it\'s like traveling in a funnel</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">And I am whirling down</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Yet I cannot let out a scream </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Nor any other sound</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">When I am at the center of the room</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I hold the attention of everyone</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it is different with you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I gaze in your eyes and want to say it</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But to me the time is always too soon</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I guess what I\'m trying to say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Those three words people say when they jump the broom</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But I\'ll show you in my gestures</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you with my kind words</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I make you smile</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">I\'ll show you as I put you first</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">Quite talkative am I</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">We both know this to be a fact</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But it\'s hard for me to tell you I love you</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Century Gothic\', sans-serif; font-size: 15px;\">But hopefully one day this will pass</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Closed Mouth','','inherit','closed','closed','','1692-revision-v1','','','2017-06-18 17:13:27','2017-06-18 22:13:27','',1692,'http://www.monicarenata.com/1692-revision-v1/',0,'revision','',0),(1702,1,'2017-07-27 10:29:25','2017-07-27 15:29:25','Curtains on your beautiful eyes\r\n\r\nNo longer able to see the truth\r\n\r\n \r\n\r\nThoughts cloudy because of your negative mind\r\n\r\nSweet thoughts do not consume you\r\n\r\n \r\n\r\nTruth, honesty, and wisdom\r\n\r\nSimply in front of your face\r\n\r\n \r\n\r\nYet you refuse to see the good in the world\r\n\r\nBecause you are hurt from your yesterdays\r\n<blockquote><em>\"You can not go on in life building indestructible walls because of past hurt. A wall only protects you so long before it starts hurting you. </em></blockquote>\r\n<blockquote><em>Do not push out all of the good in your life because you are still hurt by what others did to you in the past.\" -<strong>Monica Renata</strong></em></blockquote>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" rel=\"attachment wp-att-1703\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1703\" /></a>','The Broken Man','','publish','open','open','','the-broken-man','','','2017-07-27 10:47:02','2017-07-27 15:47:02','',0,'http://www.monicarenata.com/?p=1702',0,'post','',0),(1698,1,'2017-07-16 11:33:21','2017-07-16 16:33:21',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 651px; height: 441px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Sunny skies of yesterday</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Moon begins to rise</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Kiss of honey</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span></span>Teakwood scent</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time to turn off the lights</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Fingertips glide across</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Lukewarm patches of flesh</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Wet lips grip</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time elapse</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Last ounce of energy left</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms in the night</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms ignite</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms come together</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Chemistry between</span></div>\r\n<div style=\"text-align: center;\"><span face=\"Trebuchet MS, Helvetica, sans-serif\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif;\"><span style=\"font-size: 18px;\">You and I at night</span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"zedity-spacer\"> </span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 87px; top: 425px; width: 535px; height: 334px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 534px; height: 334px;\" alt=\"Valentines-Day-Kissing-Shadow-Couple-Wide\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Chemistry','','publish','open','open','','chemistry','','','2017-07-16 11:33:21','2017-07-16 16:33:21','',0,'http://www.monicarenata.com/?p=1698',0,'post','',0),(1699,1,'2017-07-16 11:32:00','2017-07-16 16:32:00','','Valentines-Day-Kissing-Shadow-Couple-Wide','','inherit','open','closed','','valentines-day-kissing-shadow-couple-wide','','','2017-07-16 11:32:00','2017-07-16 16:32:00','',1698,'http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg',0,'attachment','image/jpeg',0),(1700,1,'2017-07-16 11:32:43','2017-07-16 16:32:43',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 651px; height: 441px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Sunny skies of yesterday</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Moon begins to rise</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Kiss of honey</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Teakwood scent</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time to turn off the lights</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Fingertips glide across</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Lukewarm patches of flesh</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Wet lips grip</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time elapse</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Last ounce of energy left</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms in the night</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms ignite</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms come together</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Chemistry between</span></div>\r\n<div style=\"text-align: center;\"><span face=\"Trebuchet MS, Helvetica, sans-serif\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif;\"><span style=\"font-size: 18px;\">You and I at night</span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"zedity-spacer\"> </span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 87px; top: 425px; width: 535px; height: 334px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 534px; height: 334px;\" alt=\"Valentines-Day-Kissing-Shadow-Couple-Wide\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Chemistry','','inherit','closed','closed','','1698-revision-v1','','','2017-07-16 11:32:43','2017-07-16 16:32:43','',1698,'http://www.monicarenata.com/1698-revision-v1/',0,'revision','',0),(1701,1,'2017-07-16 11:33:21','2017-07-16 16:33:21',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 651px; height: 441px; z-index: 14; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Sunny skies of yesterday</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Moon begins to rise</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Kiss of honey</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span></span>Teakwood scent</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time to turn off the lights</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Fingertips glide across</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Lukewarm patches of flesh</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Wet lips grip</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Time elapse</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Last ounce of energy left</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms in the night</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms ignite</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Two forms come together</span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\">Chemistry between</span></div>\r\n<div style=\"text-align: center;\"><span face=\"Trebuchet MS, Helvetica, sans-serif\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif;\"><span style=\"font-size: 18px;\">You and I at night</span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"\" style=\"font-family: \'Trebuchet MS\', Helvetica, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n<div style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14px; text-align: center;\"><span class=\"zedity-spacer\"> </span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 87px; top: 425px; width: 535px; height: 334px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg\" style=\"position: absolute; margin: 0px; left: 1px; top: 0px; width: 534px; height: 334px;\" alt=\"Valentines-Day-Kissing-Shadow-Couple-Wide\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Chemistry','','inherit','closed','closed','','1698-revision-v1','','','2017-07-16 11:33:21','2017-07-16 16:33:21','',1698,'http://www.monicarenata.com/1698-revision-v1/',0,'revision','',0),(1703,1,'2017-07-27 10:29:20','2017-07-27 15:29:20','','image','','inherit','open','closed','','image','','','2017-07-27 10:29:20','2017-07-27 15:29:20','',1702,'http://www.monicarenata.com/wp-content/uploads/2017/07/image.png',0,'attachment','image/png',0),(1704,1,'2017-07-27 10:29:25','2017-07-27 15:29:25','Curtains on your beautiful eyes\n\nNo longer able to see the truth\n\nThoughts cloudy because of your negative mind\n\nSweet thoughts do not consume you\n\nTruth, honesty, and wisdom\n\nSimply in front of your face\n\nYet you refuse to see the good in the world\n\nBecause you are hurt from your yesterdays\n\n<blockquote><em>"You can not go on in life building indestructible walls because of past hurt. A wall only protects you so long before it starts hurting you. </em>\n</blockquote>\n\n<blockquote><em>Do not push out all of the good in your life because you are still hurt by what others did to you in the past." -<strong>Monica Renata</strong></em>\n\n</blockquote>\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" rel=\"attachment wp-att-1703\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1703\" /></a>','The Broken Man','','inherit','closed','closed','','1702-revision-v1','','','2017-07-27 10:29:25','2017-07-27 15:29:25','',1702,'http://www.monicarenata.com/1702-revision-v1/',0,'revision','',0),(1706,1,'2017-07-27 10:47:02','2017-07-27 15:47:02','Curtains on your beautiful eyes\r\n\r\nNo longer able to see the truth\r\n\r\n \r\n\r\nThoughts cloudy because of your negative mind\r\n\r\nSweet thoughts do not consume you\r\n\r\n \r\n\r\nTruth, honesty, and wisdom\r\n\r\nSimply in front of your face\r\n\r\n \r\n\r\nYet you refuse to see the good in the world\r\n\r\nBecause you are hurt from your yesterdays\r\n<blockquote><em>\"You can not go on in life building indestructible walls because of past hurt. A wall only protects you so long before it starts hurting you. </em></blockquote>\r\n<blockquote><em>Do not push out all of the good in your life because you are still hurt by what others did to you in the past.\" -<strong>Monica Renata</strong></em></blockquote>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" rel=\"attachment wp-att-1703\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1703\" /></a>','The Broken Man','','inherit','closed','closed','','1702-revision-v1','','','2017-07-27 10:47:02','2017-07-27 15:47:02','',1702,'http://www.monicarenata.com/1702-revision-v1/',0,'revision','',0),(1707,1,'2017-07-27 10:53:18','2017-07-27 15:53:18','<ol>\n <li>Curtains on your beautiful eyes</li>\n</ol>\nNo longer able to see the truth\n\n \n\nThoughts cloudy because of your negative mind\n\nSweet thoughts do not consume you\n\n \n\nTruth, honesty, and wisdom\n\nSimply in front of your face\n\n \n\nYet you refuse to see the good in the world\n\nBecause you are hurt from your yesterdays\n<blockquote><em>\"You can not go on in life building indestructible walls because of past hurt. A wall only protects you so long before it starts hurting you. </em></blockquote>\n<blockquote><em>Do not push out all of the good in your life because you are still hurt by what others did to you in the past.\" -<strong>Monica Renata</strong></em></blockquote>\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" rel=\"attachment wp-att-1703\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/07/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1703\" /></a>','The Broken Man','','inherit','closed','closed','','1702-autosave-v1','','','2017-07-27 10:53:18','2017-07-27 15:53:18','',1702,'http://www.monicarenata.com/1702-autosave-v1/',0,'revision','',0),(1709,1,'2017-08-08 07:51:04','2017-08-08 12:51:04','Removal of the items\r\n\r\nThat conceals most of my flesh\r\n\r\n \r\n\r\nPrepare myself for entry\r\n\r\nI take one long deep breath\r\n\r\n \r\n\r\nInto the depths of you I dive\r\n\r\nPlunging into the dark\r\n\r\n \r\n\r\nTo venture deep into your mind\r\n\r\nAnd swim beside your thoughts\r\n\r\n \r\n\r\nA journey I shall cherish\r\n\r\nLearning about you from within\r\n\r\n \r\n\r\nThe opportunity to swim beside you in your thoughts\r\n\r\nIs a delightful gift to share\r\n\r\n \r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" rel=\"attachment wp-att-1710\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1710\" /></a>','Deep Dive','','publish','open','open','','deep-dive','','','2017-08-08 07:59:11','2017-08-08 12:59:11','',0,'http://www.monicarenata.com/?p=1709',0,'post','',0),(1710,1,'2017-08-08 07:50:55','2017-08-08 12:50:55','','image','','inherit','open','closed','','image-2','','','2017-08-08 07:50:55','2017-08-08 12:50:55','',1709,'http://www.monicarenata.com/wp-content/uploads/2017/08/image.png',0,'attachment','image/png',0),(1711,1,'2017-08-08 07:51:04','2017-08-08 12:51:04','Removal of the items\n\nThat conceals most of my flesh\n\nPrepare myself for entry\n\nI take one long deep breath\n\nInto the depths of you I dive\n\nPlunging into the dark\n\nTo venture deep into your mind\n\nAnd swim beside your thoughts\n\nA journey I shall cherish\n\nLearning about you from within\n\nThe opportunity to swim beside you in your thoughts\n\nIs a delightful gift to share\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" rel=\"attachment wp-att-1710\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1710\" /></a>','Deep Dive','','inherit','closed','closed','','1709-revision-v1','','','2017-08-08 07:51:04','2017-08-08 12:51:04','',1709,'http://www.monicarenata.com/1709-revision-v1/',0,'revision','',0),(1712,1,'2017-08-08 07:58:05','2017-08-08 12:58:05','Removal of the items\r\n\r\nThat conceals most of my flesh\r\n\r\n \r\n\r\nPrepare myself for entry\r\n\r\nI take one long deep breath\r\n\r\n \r\n\r\nInto the depths of you I dive\r\n\r\nPlunging into the dark\r\n\r\n \r\n\r\nTo venture deep into your mind\r\n\r\nAnd swim beside your thoughts\r\n\r\n \r\n\r\nA journey I shall cherish\r\n\r\nLearning about you from within\r\n\r\n \r\n\r\nThe opportunity to swim beside you in your thoughts\r\n\r\nIs a delightful gift to share\r\n\r\n \r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" rel=\"attachment wp-att-1710\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1710\" /></a>','Deep Dive','','inherit','closed','closed','','1709-revision-v1','','','2017-08-08 07:58:05','2017-08-08 12:58:05','',1709,'http://www.monicarenata.com/1709-revision-v1/',0,'revision','',0),(1714,1,'2017-08-16 12:50:10','2017-08-16 17:50:10','<p style=\"text-align: center;\">In the spring time I sat and waited</p>\r\n<p style=\"text-align: center;\">As flowers bloomed from the magnolia trees</p>\r\n<p style=\"text-align: center;\">Putting off my next moves</p>\r\n<p style=\"text-align: center;\">For I thought I knew what the season would bring</p>\r\n<p style=\"text-align: center;\"></p> <br> </br>\r\n<p style=\"text-align: center;\">The wind blew through my hair</p>\r\n<p style=\"text-align: center;\">And droplets of rain caressed my cheeks</p>\r\n<p style=\"text-align: center;\">Yet the only thing that change one bit</p>\r\n<p style=\"text-align: center;\">Was springtime took its leave</p> <br> </br>\r\n<p style=\"text-align: center;\">In the summer I sat indoors</p>\r\n<p style=\"text-align: center;\">As I watched the flowers you gave me bloom</p>\r\n<p style=\"text-align: center;\">Still wanting to do big things</p>\r\n<p style=\"text-align: center;\">Hesitantly putting off my next move</p> <br> </br>\r\n<p style=\"text-align: center;\"><span></span><span></span>Thoughts clouded my ever moving mind</p>\r\n<p style=\"text-align: center;\">Tears slowly raced down my cheeks</p>\r\n<p style=\"text-align: center;\">Because before I know it Fall will be here</p>\r\n<p style=\"text-align: center;\">And nothing will have changed</p> <br> </br>\r\n<p style=\"text-align: center;\">Seasons come and Seasons go</p>\r\n<p style=\"text-align: center;\">Flowers die and bloom</p>\r\n<p style=\"text-align: center;\">I cannot control the seasons</p>\r\n<p style=\"text-align: center;\">But I can change the influence of you</p> <br> </br>\r\n<p style=\"text-align: center;\">Cleanse my world of stagnation</p>\r\n<p style=\"text-align: center;\">And it is not because I do not care</p>\r\n<p style=\"text-align: center;\">I just can’t wait another season</p>\r\n<p style=\"text-align: center;\">To know if your love is there</p> <br> </br>\r\n<p style=\"text-align: center;\"><em>\"The loneliest feeling is waiting on a love that isn\'t sure....\" - Monica Renata</em></p>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715 aligncenter\" /></a>','Seasons Change','','publish','open','open','','seasons-change','','','2017-08-17 22:02:08','2017-08-18 03:02:08','',0,'http://www.monicarenata.com/?p=1714',0,'post','',2),(1715,1,'2017-08-16 12:50:05','2017-08-16 17:50:05','','image','','inherit','open','closed','','image-3','','','2017-08-16 12:50:05','2017-08-16 17:50:05','',1714,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png',0,'attachment','image/png',0),(1716,1,'2017-08-16 12:50:10','2017-08-16 17:50:10','In the spring time I sat and waited\n\nAs flowers bloomed from the magnolia trees\n\nPutting off my next moves\n\nFor I thought I knew what the season would bring\n\nThe wind blew through my hair\n\nAnd droplets of rain caressed my cheeks\n\nYet the only thing that change one bit\n\nWas springtime took its leave\n\nIn the summer I sat indoors\n\nAs I watched the flowers you gave me bloom\n\nStill wanting to do big things\n\nHesitantly putting off my next move\n\nThoughts clouded my ever moving mind\n\nTears slowly raced down my cheeks\n\nBecause before I know it Fall will be here\n\nAnd nothing will have changed\n\nSeasons come and Seasons go\n\nFlowers die and bloom\n\nI cannot control the seasons\n\nBut I can change the influence of you\n\nCleanse my world of stagnation\n\nAnd it is not because I do not care\n\nI just can’t wait another season\n\nTo know if your love is there\n\n<em>"The loneliest feeling is waiting on a love that isn\'t sure...." - Monica Renata</em>\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715\" /></a>','Seasons Change','','inherit','closed','closed','','1714-revision-v1','','','2017-08-16 12:50:10','2017-08-16 17:50:10','',1714,'http://www.monicarenata.com/1714-revision-v1/',0,'revision','',0),(1717,1,'2017-08-16 13:02:09','2017-08-16 18:02:09','<p style=\"text-align: center;\">In the spring time I sat and waited</p>\r\n<p style=\"text-align: center;\">As flowers bloomed from the magnolia trees</p>\r\n<p style=\"text-align: center;\">Putting off my next moves</p>\r\n<p style=\"text-align: center;\">For I thought I knew what the season would bring</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">The wind blew through my hair</p>\r\n<p style=\"text-align: center;\">And droplets of rain caressed my cheeks</p>\r\n<p style=\"text-align: center;\">Yet the only thing that change one bit</p>\r\n<p style=\"text-align: center;\">Was springtime took its leave</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">In the summer I sat indoors</p>\r\n<p style=\"text-align: center;\">As I watched the flowers you gave me bloom</p>\r\n<p style=\"text-align: center;\">Still wanting to do big things</p>\r\n<p style=\"text-align: center;\">Hesitantly putting off my next move</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span></span>Thoughts clouded my ever moving mind</p>\r\n<p style=\"text-align: center;\">Tears slowly raced down my cheeks</p>\r\n<p style=\"text-align: center;\">Because before I know it Fall will be here</p>\r\n<p style=\"text-align: center;\">And nothing will have changed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Seasons come and Seasons go</p>\r\n<p style=\"text-align: center;\">Flowers die and bloom</p>\r\n<p style=\"text-align: center;\">I cannot control the seasons</p>\r\n<p style=\"text-align: center;\">But I can change the influence of you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Cleanse my world of stagnation</p>\r\n<p style=\"text-align: center;\">And it is not because I do not care</p>\r\n<p style=\"text-align: center;\">I just can’t wait another season</p>\r\n<p style=\"text-align: center;\">To know if your love is there</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>\"The loneliest feeling is waiting on a love that isn\'t sure....\" - Monica Renata</em></p>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715 aligncenter\" /></a>','Seasons Change','','inherit','closed','closed','','1714-revision-v1','','','2017-08-16 13:02:09','2017-08-16 18:02:09','',1714,'http://www.monicarenata.com/1714-revision-v1/',0,'revision','',0),(1718,1,'2017-08-16 13:36:00','2017-08-16 18:36:00','Ball of lava thrown at your feet\r\n\r\nYou watch the floor before you burn\r\n\r\n \r\n\r\nVenom spews from your mouth\r\n\r\nYou poison your fictional lover with words\r\n\r\n \r\n\r\nYou see the devastation you have caused\r\n\r\nAnd you simply walk away\r\n\r\n \r\n\r\nFor what is the point in arguing\r\n\r\nIf you know you will be granted another day\r\n\r\n \r\n\r\nHail stones plummet and hit the flesh\r\n\r\nYou stop your lover with your strength\r\n\r\n \r\n\r\nFor physical abuse is miniscule to you\r\n\r\nFor your greatest feat is you have their mind on a noose\r\n\r\n \r\n\r\nThey love you but they hate you\r\n\r\nThey want to get away\r\n\r\n \r\n\r\nYet you manipulate their love for you\r\n\r\nAnd feel victorious when they stay\r\n\r\n \r\n\r\nBut what do you get out of watching a soul\r\n\r\nPerish before your eyes\r\n\r\n \r\n\r\nWhat do you gain in life by telling someone you love them\r\n\r\nWhen your actions prove that you lied\r\n\r\n \r\n\r\nBall of lava thrown at your feet\r\n\r\nYou watch as you put someone through hell\r\n\r\n \r\n\r\nDestroying a life that was made to thrive\r\n\r\nAnd still you do not care\r\n\r\n \r\n\r\nBut someday you will be haunted by your ways\r\n\r\nAnd that time may be sooner than you think\r\n\r\n \r\n\r\nFor when you destroy other people daily\r\n\r\nYou also destroy yourself each day\r\n\r\n<em>\r\n“The way in which we treat people is a direct reflection of how we see ourselves. To expel such hatred will only give you temporary satisfaction while weakening your spirit.</em>\r\n\r\n<em style=\"font-weight: inherit;\">Weak spirits never thrive and are haunted by their bad deeds. Be better to others, and in turn you will be better to yourself.” – Monica Renata</em>\r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" rel=\"attachment wp-att-1719\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" alt=\"\" title=\"image-2-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1719\" /></a>\r\n\r\n','Puppeteer\'s Demise','','publish','open','open','','puppeteers-demise','','','2017-08-16 13:44:13','2017-08-16 18:44:13','',0,'http://www.monicarenata.com/?p=1718',0,'post','',0),(1719,1,'2017-08-16 13:35:55','2017-08-16 18:35:55','','image','','inherit','open','closed','','image-4','','','2017-08-16 13:35:55','2017-08-16 18:35:55','',1718,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png',0,'attachment','image/png',0),(1720,1,'2017-08-16 13:36:00','2017-08-16 18:36:00','Ball of lava thrown at your feet\n\nYou watch the floor before you burn\n\nVenom spews from your mouth\n\nYou poison your fictional lover with words\n\nYou see the devastation you have caused\n\nAnd you simply walk away\n\nFor what is the point in arguing\n\nIf you know you will be granted another day\n\nHail stones plummet and hit the flesh\n\nYou stop your lover with your strength\n\nFor physical abuse is miniscule to you\n\nFor your greatest feat is you have their mind on a noose\n\nThey love you but they hate you\n\nThey want to get away\n\nYet you manipulate their love for you\n\nAnd feel victorious when they stay\n\nBut what do you get out of watching a soul\n\nPerish before your eyes\n\nWhat do you gain in life by telling someone you love them\n\nWhen your actions prove that you lied\n\nBall of lava thrown at your feet\n\nYou watch as you put someone through hell\n\nDestroying a life that was made to thrive\n\nAnd still you do not care\n\nBut someday you will be haunted by your ways\n\nAnd that time may be sooner than you think\n\nFor when you destroy other people daily\n\nYou also destroy yourself each day\n\n<em>\n“The way in which we treat people is a direct reflection of how we see ourselves. To expel such hatred will only give you temporary satisfaction while weakening your spirit.\n</em>\n<em>Weak spirits never thrive and are haunted by their bad deeds. Be better to others, and in turn you will be better to yourself.” – Monica Renata</em>\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" rel=\"attachment wp-att-1719\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" alt=\"\" title=\"image-2-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1719\" /></a>\n\n','Puppeteer\'s Demise','','inherit','closed','closed','','1718-revision-v1','','','2017-08-16 13:36:00','2017-08-16 18:36:00','',1718,'http://www.monicarenata.com/1718-revision-v1/',0,'revision','',0),(1721,1,'2017-08-16 13:44:13','2017-08-16 18:44:13','Ball of lava thrown at your feet\r\n\r\nYou watch the floor before you burn\r\n\r\n \r\n\r\nVenom spews from your mouth\r\n\r\nYou poison your fictional lover with words\r\n\r\n \r\n\r\nYou see the devastation you have caused\r\n\r\nAnd you simply walk away\r\n\r\n \r\n\r\nFor what is the point in arguing\r\n\r\nIf you know you will be granted another day\r\n\r\n \r\n\r\nHail stones plummet and hit the flesh\r\n\r\nYou stop your lover with your strength\r\n\r\n \r\n\r\nFor physical abuse is miniscule to you\r\n\r\nFor your greatest feat is you have their mind on a noose\r\n\r\n \r\n\r\nThey love you but they hate you\r\n\r\nThey want to get away\r\n\r\n \r\n\r\nYet you manipulate their love for you\r\n\r\nAnd feel victorious when they stay\r\n\r\n \r\n\r\nBut what do you get out of watching a soul\r\n\r\nPerish before your eyes\r\n\r\n \r\n\r\nWhat do you gain in life by telling someone you love them\r\n\r\nWhen your actions prove that you lied\r\n\r\n \r\n\r\nBall of lava thrown at your feet\r\n\r\nYou watch as you put someone through hell\r\n\r\n \r\n\r\nDestroying a life that was made to thrive\r\n\r\nAnd still you do not care\r\n\r\n \r\n\r\nBut someday you will be haunted by your ways\r\n\r\nAnd that time may be sooner than you think\r\n\r\n \r\n\r\nFor when you destroy other people daily\r\n\r\nYou also destroy yourself each day\r\n\r\n<em>\r\n“The way in which we treat people is a direct reflection of how we see ourselves. To expel such hatred will only give you temporary satisfaction while weakening your spirit.</em>\r\n\r\n<em style=\"font-weight: inherit;\">Weak spirits never thrive and are haunted by their bad deeds. Be better to others, and in turn you will be better to yourself.” – Monica Renata</em>\r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" rel=\"attachment wp-att-1719\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png\" alt=\"\" title=\"image-2-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1719\" /></a>\r\n\r\n','Puppeteer\'s Demise','','inherit','closed','closed','','1718-revision-v1','','','2017-08-16 13:44:13','2017-08-16 18:44:13','',1718,'http://www.monicarenata.com/1718-revision-v1/',0,'revision','',0),(1722,1,'2017-08-17 08:58:07','2017-08-17 13:58:07','Two embers once burned\r\nAnd soon created a flame\r\nOnce the two finally made contact\r\nThey were able to ignite a blaze\r\n\r\nA flame so fierce and bold\r\nThat it lit up every room\r\nA flame that burned for years\r\nAnd till this day it still do\r\n\r\nGenerating a heat\r\nThat could heat up millions of homes in a snowstorm\r\nIntensifying as it goes\r\nThe flame continues to burn\r\n\r\nBut soon an ember will die out\r\nAnd perhaps they both will soon\r\nBecause fire doesn’t last forever\r\nFor sooner or later smoke prevails\r\n\r\n<em>\r\n“Attraction creates a flame that burns immensely. However, it isn’t enough to make that flame burn forever.” –Monica Renata</em>\r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" rel=\"attachment wp-att-1723\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" alt=\"\" title=\"image-3-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1723\" /></a>','Fire to Smoke','','publish','open','open','','fire-to-smoke','','','2017-08-17 22:04:49','2017-08-18 03:04:49','',0,'http://www.monicarenata.com/?p=1722',0,'post','',0),(1723,1,'2017-08-17 08:58:01','2017-08-17 13:58:01','','image','','inherit','open','closed','','image-5','','','2017-08-17 08:58:01','2017-08-17 13:58:01','',1722,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png',0,'attachment','image/png',0),(1724,1,'2017-08-17 08:58:07','2017-08-17 13:58:07','Two embers once burned\nAnd soon created a flame\nOnce the two finally made contact\nThey were able to ignite a blaze\n\nA flame so fierce and bold\nThat it lite up every room\nA flame that burned for years\nAnd till this day it still do\n\nGenerating a heat\nThat could heat up millions of homes in a snowstorm\nIntensifying as it goes\nThe flame continues to burn\n\nBut soon an ember will die out\nAnd perhaps they both will soon\nBecause fire doesn’t last forever\nFor sooner or later smoke prevails\n\n<em>\n“Attraction creates a flame that burns immensely. However, it isn’t enough to make that flame burn forever.” –Monica Renata</em>\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" rel=\"attachment wp-att-1723\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" alt=\"\" title=\"image-3-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1723\" /></a>','Fire to Smoke','','inherit','closed','closed','','1722-revision-v1','','','2017-08-17 08:58:07','2017-08-17 13:58:07','',1722,'http://www.monicarenata.com/1722-revision-v1/',0,'revision','',0),(1727,1,'2017-08-17 22:02:08','2017-08-18 03:02:08','<p style=\"text-align: center;\">In the spring time I sat and waited</p>\r\n<p style=\"text-align: center;\">As flowers bloomed from the magnolia trees</p>\r\n<p style=\"text-align: center;\">Putting off my next moves</p>\r\n<p style=\"text-align: center;\">For I thought I knew what the season would bring</p>\r\n<p style=\"text-align: center;\"></p> <br> </br>\r\n<p style=\"text-align: center;\">The wind blew through my hair</p>\r\n<p style=\"text-align: center;\">And droplets of rain caressed my cheeks</p>\r\n<p style=\"text-align: center;\">Yet the only thing that change one bit</p>\r\n<p style=\"text-align: center;\">Was springtime took its leave</p> <br> </br>\r\n<p style=\"text-align: center;\">In the summer I sat indoors</p>\r\n<p style=\"text-align: center;\">As I watched the flowers you gave me bloom</p>\r\n<p style=\"text-align: center;\">Still wanting to do big things</p>\r\n<p style=\"text-align: center;\">Hesitantly putting off my next move</p> <br> </br>\r\n<p style=\"text-align: center;\"><span></span><span></span>Thoughts clouded my ever moving mind</p>\r\n<p style=\"text-align: center;\">Tears slowly raced down my cheeks</p>\r\n<p style=\"text-align: center;\">Because before I know it Fall will be here</p>\r\n<p style=\"text-align: center;\">And nothing will have changed</p> <br> </br>\r\n<p style=\"text-align: center;\">Seasons come and Seasons go</p>\r\n<p style=\"text-align: center;\">Flowers die and bloom</p>\r\n<p style=\"text-align: center;\">I cannot control the seasons</p>\r\n<p style=\"text-align: center;\">But I can change the influence of you</p> <br> </br>\r\n<p style=\"text-align: center;\">Cleanse my world of stagnation</p>\r\n<p style=\"text-align: center;\">And it is not because I do not care</p>\r\n<p style=\"text-align: center;\">I just can’t wait another season</p>\r\n<p style=\"text-align: center;\">To know if your love is there</p> <br> </br>\r\n<p style=\"text-align: center;\"><em>\"The loneliest feeling is waiting on a love that isn\'t sure....\" - Monica Renata</em></p>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715 aligncenter\" /></a>','Seasons Change','','inherit','closed','closed','','1714-revision-v1','','','2017-08-17 22:02:08','2017-08-18 03:02:08','',1714,'http://www.monicarenata.com/1714-revision-v1/',0,'revision','',0),(1725,1,'2017-08-17 21:51:40','2017-08-18 02:51:40','<p style=\"text-align: center;\">In the spring time I sat and waited</p>\r\n<p style=\"text-align: center;\">As flowers bloomed from the magnolia trees</p>\r\n<p style=\"text-align: center;\">Putting off my next moves</p>\r\n<p style=\"text-align: center;\">For I thought I knew what the season would bring</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">The wind blew through my hair</p>\r\n<p style=\"text-align: center;\">And droplets of rain caressed my cheeks</p>\r\n<p style=\"text-align: center;\">Yet the only thing that change one bit</p>\r\n<p style=\"text-align: center;\">Was springtime took its leave</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">In the summer I sat indoors</p>\r\n<p style=\"text-align: center;\">As I watched the flowers you gave me bloom</p>\r\n<p style=\"text-align: center;\">Still wanting to do big things</p>\r\n<p style=\"text-align: center;\">Hesitantly putting off my next move</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span></span><span></span>Thoughts clouded my ever moving mind</p>\r\n<p style=\"text-align: center;\">Tears slowly raced down my cheeks</p>\r\n<p style=\"text-align: center;\">Because before I know it Fall will be here</p>\r\n<p style=\"text-align: center;\">And nothing will have changed</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Seasons come and Seasons go</p>\r\n<p style=\"text-align: center;\">Flowers die and bloom</p>\r\n<p style=\"text-align: center;\">I cannot control the seasons</p>\r\n<p style=\"text-align: center;\">But I can change the influence of you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Cleanse my world of stagnation</p>\r\n<p style=\"text-align: center;\">And it is not because I do not care</p>\r\n<p style=\"text-align: center;\">I just can’t wait another season</p>\r\n<p style=\"text-align: center;\">To know if your love is there</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><em>\"The loneliest feeling is waiting on a love that isn\'t sure....\" - Monica Renata</em></p>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715 aligncenter\" /></a>','Seasons Change','','inherit','closed','closed','','1714-revision-v1','','','2017-08-17 21:51:40','2017-08-18 02:51:40','',1714,'http://www.monicarenata.com/1714-revision-v1/',0,'revision','',0),(1726,1,'2017-08-17 22:01:46','2017-08-18 03:01:46','<p style=\"text-align: center;\">In the spring time I sat and waited</p>\r\n<p style=\"text-align: center;\">As flowers bloomed from the magnolia trees</p>\r\n<p style=\"text-align: center;\">Putting off my next moves</p>\r\n<p style=\"text-align: center;\">For I thought I knew what the season would bring</p>\r\n<p style=\"text-align: center;\"></p> <br> </br>\r\n<p style=\"text-align: center;\">The wind blew through my hair</p>\r\n<p style=\"text-align: center;\">And droplets of rain caressed my cheeks</p>\r\n<p style=\"text-align: center;\">Yet the only thing that change one bit</p>\r\n<p style=\"text-align: center;\">Was springtime took its leave</p> <br> </br>\r\n<p style=\"text-align: center;\">In the summer I sat indoors</p>\r\n<p style=\"text-align: center;\">As I watched the flowers you gave me bloom</p>\r\n<p style=\"text-align: center;\">Still wanting to do big things</p>\r\n<p style=\"text-align: center;\">Hesitantly putting off my next move</p> <br> </br>\r\n<p style=\"text-align: center;\"><span></span><span></span>Thoughts clouded my ever moving mind</p>\r\n<p style=\"text-align: center;\">Tears slowly raced down my cheeks</p>\r\n<p style=\"text-align: center;\">Because before I know it Fall will be here</p>\r\n<p style=\"text-align: center;\">And nothing will have changed</p> <br> </br>\r\n<p style=\"text-align: center;\">Seasons come and Seasons go</p>\r\n<p style=\"text-align: center;\">Flowers die and bloom</p>\r\n<p style=\"text-align: center;\">I cannot control the seasons</p>\r\n<p style=\"text-align: center;\">But I can change the influence of you</p> <br> </br>\r\n<p style=\"text-align: center;\">Cleanse my world of stagnation</p>\r\n<p style=\"text-align: center;\">And it is not because I do not care</p>\r\n<p style=\"text-align: center;\">I just can’t wait another season</p>\r\n<p style=\"text-align: center;\">To know if your love is there</p> <br> </br>\r\n<p style=\"text-align: center;\"><em>\"The loneliest feeling is waiting on a love that isn\'t sure....\" - Monica Renata</em></p>\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" rel=\"attachment wp-att-1715\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png\" alt=\"\" title=\"image-1-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1715 aligncenter\" /></a>','Seasons Change','','inherit','closed','closed','','1714-autosave-v1','','','2017-08-17 22:01:46','2017-08-18 03:01:46','',1714,'http://www.monicarenata.com/1714-autosave-v1/',0,'revision','',0),(1728,1,'2017-08-17 22:04:49','2017-08-18 03:04:49','Two embers once burned\r\nAnd soon created a flame\r\nOnce the two finally made contact\r\nThey were able to ignite a blaze\r\n\r\nA flame so fierce and bold\r\nThat it lit up every room\r\nA flame that burned for years\r\nAnd till this day it still do\r\n\r\nGenerating a heat\r\nThat could heat up millions of homes in a snowstorm\r\nIntensifying as it goes\r\nThe flame continues to burn\r\n\r\nBut soon an ember will die out\r\nAnd perhaps they both will soon\r\nBecause fire doesn’t last forever\r\nFor sooner or later smoke prevails\r\n\r\n<em>\r\n“Attraction creates a flame that burns immensely. However, it isn’t enough to make that flame burn forever.” –Monica Renata</em>\r\n\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" rel=\"attachment wp-att-1723\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png\" alt=\"\" title=\"image-3-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1723\" /></a>','Fire to Smoke','','inherit','closed','closed','','1722-revision-v1','','','2017-08-17 22:04:49','2017-08-18 03:04:49','',1722,'http://www.monicarenata.com/1722-revision-v1/',0,'revision','',0),(1733,1,'2017-09-16 04:02:50','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2017-09-15 23:02:50','2017-09-16 04:02:50','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}',0,'http://www.monicarenata.com/?post_type=jetpack_migration&p=1733',0,'jetpack_migration','',0),(1734,1,'2017-09-16 04:02:53','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2017-09-15 23:02:53','2017-09-16 04:02:53','a:10:{s:12:\"sidebar-left\";a:3:{i:0;s:18:\"facebook-likebox-3\";i:1;s:11:\"archives-16\";i:2;s:6:\"text-3\";}s:12:\"sidebar-blog\";a:1:{i:0;s:29:\"siteorigin-panels-postloop-18\";}s:14:\"sidebar-footer\";a:3:{i:0;s:8:\"search-9\";i:1;s:19:\"sow-post-carousel-3\";i:2;s:11:\"archives-14\";}s:19:\"wp_inactive_widgets\";a:18:{i:0;s:9:\"search-11\";i:1;s:9:\"search-12\";i:2;s:6:\"text-4\";i:3;s:13:\"apsl_widget-3\";i:4;s:11:\"miniloops-2\";i:5;s:11:\"miniloops-4\";i:6;s:15:\"miniminiloops-3\";i:7;s:22:\"smartcat_team_widget-3\";i:8;s:29:\"siteorigin-panels-postloop-15\";i:9;s:29:\"siteorigin-panels-postloop-16\";i:10;s:29:\"siteorigin-panels-postloop-17\";i:11;s:20:\"siteorigin-masonry-3\";i:12;s:19:\"sow-post-carousel-4\";i:13;s:19:\"metaslider_widget-3\";i:14;s:19:\"blog_subscription-5\";i:15;s:18:\"googleplus-badge-3\";i:16;s:11:\"top-posts-5\";i:17;s:23:\"spider_random_article-3\";}s:4:\"left\";a:4:{i:0;s:11:\"archives-20\";i:1;s:19:\"sow-post-carousel-6\";i:2;s:10:\"calendar-5\";i:3;s:6:\"text-8\";}s:5:\"right\";a:0:{}s:10:\"footer_one\";a:1:{i:0;s:19:\"blog_subscription-7\";}s:10:\"footer_two\";a:1:{i:0;s:6:\"text-9\";}s:12:\"footer_three\";a:1:{i:0;s:14:\"recent-posts-2\";}s:18:\"template_1_sidebar\";a:0:{}}',0,'http://www.monicarenata.com/?post_type=jetpack_migration&p=1734',0,'jetpack_migration','',0),(1737,1,'2017-09-15 23:27:12','2017-09-16 04:27:12','<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 23px; top: 23px; width: 661px; height: 807px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Yet no one seen them bloom</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Beautiful petals shimmered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">And were grounded by a fibrous roots</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">As wind blows so do the seeds</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">But each is planted in an area</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">In which they will never be seen</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Wonderful thoughts in your mind</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">There beauty is never realized</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Until they come out to the light</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i>\"Your mind is full of wonderful thoughts, but they will only be seen by others if you allow them to be.\"</i> - Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 107px; top: 391px; width: 446.809px; height: 252px; z-index: 16; right: auto; bottom: auto; opacity: 0.74; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 447px; height: 251px;\" alt=\"daisy in the desert\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Daisies in the Desert','','publish','open','open','','daisies-in-the-desert','','','2017-09-15 23:27:12','2017-09-16 04:27:12','',0,'http://www.monicarenata.com/?p=1737',0,'post','',0),(1738,1,'2017-09-15 23:23:58','2017-09-16 04:23:58',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 23px; top: 23px; width: 661px; height: 807px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Yet no one seen them bloom</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Beautiful petals shimmered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">And were grounded by a fibrous roots</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">As wind blows so do the seeds</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">But each is planted in an area</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">In which they will never be seen</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Wonderful thoughts in your mind</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">There beauty is never realized</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Until they come out to the light</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i>\"Your mind is full of wonderful thoughts, but they will only be seen by others if you allow them to be.\"</i> - Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 107px; top: 391px; width: 446.809px; height: 252px; z-index: 16; right: auto; bottom: auto; opacity: 0.74; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 447px; height: 251px;\" alt=\"daisy in the desert\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1737-revision-v1','','','2017-09-15 23:23:58','2017-09-16 04:23:58','',1737,'http://www.monicarenata.com/1737-revision-v1/',0,'revision','',0),(1739,1,'2017-09-15 23:24:32','2017-09-16 04:24:32',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 23px; top: 23px; width: 661px; height: 807px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Yet no one seen them bloom</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Beautiful petals shimmered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">And were grounded by a fibrous roots</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">As wind blows so do the seeds</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">But each is planted in an area</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">In which they will never be seen</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Wonderful thoughts in your mind</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">There beauty is never realized</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Until they come out to the light</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i>\"Your mind is full of wonderful thoughts, but they will only be seen by others if you allow them to be.\"</i> - Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 107px; top: 391px; width: 446.809px; height: 252px; z-index: 16; right: auto; bottom: auto; opacity: 0.74; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 447px; height: 251px;\" alt=\"daisy in the desert\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Daisies in the Desert','','inherit','closed','closed','','1737-revision-v1','','','2017-09-15 23:24:32','2017-09-16 04:24:32','',1737,'http://www.monicarenata.com/1737-revision-v1/',0,'revision','',0),(1742,1,'2017-09-15 23:27:12','2017-09-16 04:27:12','<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 23px; top: 23px; width: 661px; height: 807px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Yet no one seen them bloom</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Beautiful petals shimmered</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">And were grounded by a fibrous roots</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">As wind blows so do the seeds</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">But each is planted in an area</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">In which they will never be seen</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Daisies in the desert</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Wonderful thoughts in your mind</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">There beauty is never realized</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\">Until they come out to the light</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i><span class=\"zedity-spacer\"> </span></i></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; margin: 0px; color: #222222; font-family: garamond, serif; font-size: large;\"><span class=\"\" style=\"font-family: \'Jacques Francois\', serif; font-size: 20px;\"><i>\"Your mind is full of wonderful thoughts, but they will only be seen by others if you allow them to be.\"</i> - Monica Renata</span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 107px; top: 391px; width: 446.809px; height: 252px; z-index: 16; right: auto; bottom: auto; opacity: 0.74; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 1px; width: 447px; height: 251px;\" alt=\"daisy in the desert\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Daisies in the Desert','','inherit','closed','closed','','1737-revision-v1','','','2017-09-15 23:27:12','2017-09-16 04:27:12','',1737,'http://www.monicarenata.com/1737-revision-v1/',0,'revision','',0),(1747,1,'2017-11-05 22:39:53','2017-11-06 04:39:53',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 16px; top: 26px; width: 367px; height: 456px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span></span>For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have climbed the highest mountain</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And then fell all the way down</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have had my heart full of love</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And felt it burst and become hallow with time</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I lost the taste for words</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Because words couldn’t describe me</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So in silence I sat for months</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Watching and analyzing what I see</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">But in this very moment</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have so much to say</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So I shall write till my pen bleeds no more</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And I will start writing today</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 102px; top: 405px; width: 385px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','publish','open','open','','the-revivification','','','2017-11-05 22:39:53','2017-11-06 04:39:53','',0,'http://www.monicarenata.com/?p=1747',0,'post','',0),(1748,1,'2017-11-05 22:33:53','2017-11-06 04:33:53',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 367px; height: 456px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have climbed the highest mountain</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And then fell all the way down</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have had my heart full of love</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And felt it burst and become hallow with time</span>\r\n\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I lost the taste for words</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Because words couldn’t describe me</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">So in silence I sat for months</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Watching and analyzing what I see</span>\r\n\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">But in this very moment</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have so much to say</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">So I shall write till my pen bleeds no more</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And I will start writing today</span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 105px; top: 533px; width: 384.752px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','inherit','closed','closed','','1747-revision-v1','','','2017-11-05 22:33:53','2017-11-06 04:33:53','',1747,'http://www.monicarenata.com/1747-revision-v1/',0,'revision','',0),(1749,1,'2017-11-05 22:35:07','2017-11-06 04:35:07',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 367px; height: 456px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have climbed the highest mountain</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And then fell all the way down</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have had my heart full of love</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And felt it burst and become hallow with time</span></span>\r\n\r\n<span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I lost the taste for words</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Because words couldn’t describe me</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">So in silence I sat for months</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Watching and analyzing what I see</span></span>\r\n\r\n<span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">But in this very moment</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">I have so much to say</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">So I shall write till my pen bleeds no more</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">And I will start writing today</span></span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 105px; top: 533px; width: 384.752px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','inherit','closed','closed','','1747-revision-v1','','','2017-11-05 22:35:07','2017-11-06 04:35:07','',1747,'http://www.monicarenata.com/1747-revision-v1/',0,'revision','',0),(1750,1,'2017-11-05 22:38:39','2017-11-06 04:38:39',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 16px; top: 26px; width: 367px; height: 456px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have climbed the highest mountain</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And then fell all the way down</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have had my heart full of love</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And felt it burst and become hallow with time</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I lost the taste for words</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Because words couldn’t describe me</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So in silence I sat for months</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Watching and analyzing what I see</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">But in this very moment</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have so much to say</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So I shall write till my pen bleeds no more</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And I will start writing today</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 105px; top: 533px; width: 384.752px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','inherit','closed','closed','','1747-revision-v1','','','2017-11-05 22:38:39','2017-11-06 04:38:39','',1747,'http://www.monicarenata.com/1747-revision-v1/',0,'revision','',0),(1751,1,'2017-11-05 22:39:24','2017-11-06 04:39:24',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 16px; top: 26px; width: 367px; height: 456px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have climbed the highest mountain</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And then fell all the way down</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have had my heart full of love</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And felt it burst and become hallow with time</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I lost the taste for words</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Because words couldn’t describe me</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So in silence I sat for months</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Watching and analyzing what I see</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">But in this very moment</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have so much to say</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So I shall write till my pen bleeds no more</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And I will start writing today</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 102px; top: 405px; width: 385px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','inherit','closed','closed','','1747-revision-v1','','','2017-11-05 22:39:24','2017-11-06 04:39:24','',1747,'http://www.monicarenata.com/1747-revision-v1/',0,'revision','',0),(1752,1,'2017-11-05 22:39:53','2017-11-06 04:39:53',' \r\n<div id=\"zed_70oihyne\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 660px; max-height: 770px;\">\r\n<div id=\"zed_70oihyne\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 660px; height: 770px; overflow: hidden;\" data-origw=\"660\" data-origh=\"770\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 16px; top: 26px; width: 367px; height: 456px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span class=\"\" style=\"font-family: \'Della Respira\', serif; font-size: 18px;\"><span style=\"line-height: 115%; color: #222222; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">One day I’ll sit and write</span><span style=\"line-height: 115%; color: #222222;\">\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Til the ink in my pen dries</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span></span>For I have keep in so many thoughts</span>\r\n<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Yet friends can see it in my eyes</span></span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have climbed the highest mountain</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And then fell all the way down</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have had my heart full of love</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And felt it burst and become hallow with time</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I lost the taste for words</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Because words couldn’t describe me</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So in silence I sat for months</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">Watching and analyzing what I see</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">But in this very moment</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">I have so much to say</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">So I shall write till my pen bleeds no more</span></p>\r\n<p style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1;\"><span style=\"font-family: \'Della Respira\', serif; font-size: 18px; background-color: transparent;\">And I will start writing today</span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 102px; top: 405px; width: 385px; height: 217px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 385px; height: 217px;\" alt=\"Rebirth\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','The Revivification','','inherit','closed','closed','','1747-revision-v1','','','2017-11-05 22:39:53','2017-11-06 04:39:53','',1747,'http://www.monicarenata.com/1747-revision-v1/',0,'revision','',0),(1753,1,'2017-11-05 22:52:37','2017-11-06 04:52:37',' \r\n<div id=\"zed_do7fa9bz\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 620px; max-height: 810px;\">\r\n<div id=\"zed_do7fa9bz\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 620px; height: 810px; overflow: hidden;\" data-origw=\"620\" data-origh=\"810\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 18px; width: 491px; height: 762px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1.2;\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 18px;\"> </span></p>\r\n\r\n<div style=\"text-align: center;\"><span style=\"color: #222222; font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"color: #222222; background-color: transparent;\">And tell them you loved them so</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">Stripped their body of all garments</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">As you preyed on their loving soul</span></div>\r\n \r\n<p class=\"MsoNormal\" style=\"text-align: center; line-height: 1.2; margin-bottom: 0px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-family: \'Bad Script\', cursive; font-size: 18px; line-height: 115%; color: #222222;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; line-height: 1.2; margin-bottom: 0px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-family: \'Bad Script\', cursive; font-size: 18px; line-height: 115%; color: #222222;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">Drain the peace from their mind</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And claim the plunder that you truly seek</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">All the while claiming it was love</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">But love isn’t what you seek</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And rob a bank account</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And parade about your journey throughout the town</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">But what’s the point of stringing them along</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">If you know what their heart seeks</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">You looked love in the face for selfish gain</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">But the bounty of love is far greater than what you may reap</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; font-family: \'Bad Script\', cursive; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; background-color: transparent;\">And I hope you remember those eyes</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">For few will truly love you like that</span></div>\r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; background-color: transparent;\">So with other’s feelings please be wise</span></div>\r\n \r\n<p style=\"text-align: center;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Observation Of Betrayal','','publish','open','open','','observation-of-betrayal','','','2017-11-05 22:52:37','2017-11-06 04:52:37','',0,'http://www.monicarenata.com/?p=1753',0,'post','',0),(1754,1,'2017-11-05 22:52:37','2017-11-06 04:52:37',' \r\n<div id=\"zed_do7fa9bz\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 620px; max-height: 810px;\">\r\n<div id=\"zed_do7fa9bz\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 620px; height: 810px; overflow: hidden;\" data-origw=\"620\" data-origh=\"810\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 18px; width: 491px; height: 762px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif; line-height: 1.2;\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 18px;\"> </span></p>\r\n\r\n<div style=\"text-align: center;\"><span style=\"color: #222222; font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"color: #222222; background-color: transparent;\">And tell them you loved them so</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">Stripped their body of all garments</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">As you preyed on their loving soul</span></div>\r\n \r\n<p class=\"MsoNormal\" style=\"text-align: center; line-height: 1.2; margin-bottom: 0px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-family: \'Bad Script\', cursive; font-size: 18px; line-height: 115%; color: #222222;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center; line-height: 1.2; margin-bottom: 0px;\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-family: \'Bad Script\', cursive; font-size: 18px; line-height: 115%; color: #222222;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">Drain the peace from their mind</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And claim the plunder that you truly seek</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">All the while claiming it was love</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">But love isn’t what you seek</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And rob a bank account</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">And parade about your journey throughout the town</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18px; background-color: transparent;\">But what’s the point of stringing them along</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">If you know what their heart seeks</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">You looked love in the face for selfish gain</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">But the bounty of love is far greater than what you may reap</span></div>\r\n \r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"text-align: center; margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n \r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; font-family: \'Bad Script\', cursive; background-color: transparent;\">I watched you stare love in the face</span></div>\r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; background-color: transparent;\">And I hope you remember those eyes</span></div>\r\n<div style=\"text-align: center;\"><span style=\"background-color: transparent;\">For few will truly love you like that</span></div>\r\n<div style=\"text-align: center;\"><span style=\"font-size: 18px; background-color: transparent;\">So with other’s feelings please be wise</span></div>\r\n \r\n<p style=\"text-align: center;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Observation Of Betrayal','','inherit','closed','closed','','1753-revision-v1','','','2017-11-05 22:52:37','2017-11-06 04:52:37','',1753,'http://www.monicarenata.com/1753-revision-v1/',0,'revision','',0),(1755,1,'2017-11-05 23:25:23','2017-11-06 05:25:23',' \r\n<div id=\"zed_43ddwyek\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div id=\"zed_43ddwyek\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 600px; height: 600px; overflow: hidden;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 374px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"> I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You never gave me time to smile</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Always taking random pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span></span>Each time we traveled in and out of town</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span></span>From the time I found a four leaf clover</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Or the time when I climbed a hill and tumbled down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You were always snapping pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Whether the sun was up or down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Until you showed those pictures to our child</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And in that moment I realized we weren\'t immortal</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And you captured memories that will live throughout time</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 123px; top: 380px; width: 200px; height: 200px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px;\" alt=\"photo\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Random Photos','','publish','open','open','','random-photos','','','2017-11-05 23:25:23','2017-11-06 05:25:23','',0,'http://www.monicarenata.com/?p=1755',0,'post','',0),(1756,1,'2017-11-05 23:24:53','2017-11-06 05:24:53',' \r\n<div id=\"zed_43ddwyek\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div id=\"zed_43ddwyek\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 600px; height: 600px; overflow: hidden;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 374px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"> I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You never gave me time to smile</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Always taking random pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Each time we traveled in and out of town</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">From the time I found a four leaf clover</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Or the time when I climbed a hill and tumbled down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You were always snapping pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Whether the sun was up or down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Until you showed those pictures to our child</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And in that moment I realized we weren\'t immortal</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And you captured memories that will live throughout time</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 123px; top: 380px; width: 200px; height: 200px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px;\" alt=\"photo\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Random Photos','','inherit','closed','closed','','1755-revision-v1','','','2017-11-05 23:24:53','2017-11-06 05:24:53','',1755,'http://www.monicarenata.com/1755-revision-v1/',0,'revision','',0),(1757,1,'2017-11-05 23:25:23','2017-11-06 05:25:23',' \r\n<div id=\"zed_43ddwyek\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 600px; max-height: 600px;\">\r\n<div id=\"zed_43ddwyek\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 600px; height: 600px; overflow: hidden;\" data-origw=\"600\" data-origh=\"600\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 530px; height: 374px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"> I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You never gave me time to smile</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Always taking random pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span></span>Each time we traveled in and out of town</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span></span>From the time I found a four leaf clover</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Or the time when I climbed a hill and tumbled down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">You were always snapping pictures</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Whether the sun was up or down</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">I hated when you took pictures of me</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">Until you showed those pictures to our child</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And in that moment I realized we weren\'t immortal</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Baumans, sans-serif; font-size: 18px;\">And you captured memories that will live throughout time</span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 123px; top: 380px; width: 200px; height: 200px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><img src=\"http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 200px; height: 200px;\" alt=\"photo\" /></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Random Photos','','inherit','closed','closed','','1755-revision-v1','','','2017-11-05 23:25:23','2017-11-06 05:25:23','',1755,'http://www.monicarenata.com/1755-revision-v1/',0,'revision','',0),(1759,1,'2018-01-01 18:41:06','2018-01-02 00:41:06',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 10; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 649px; height: 1537px; z-index: 12; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"><span></span> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','publish','open','open','','stream-of-lethe','','','2018-01-01 18:41:06','2018-01-02 00:41:06','',0,'http://www.monicarenata.com/?p=1759',0,'post','',0),(1760,1,'2018-01-01 18:12:51','2018-01-02 00:12:51','','wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee','','inherit','open','closed','','wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee','','','2018-01-01 18:12:51','2018-01-02 00:12:51','',1759,'http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg',0,'attachment','image/jpeg',0),(1765,1,'2018-01-01 18:39:36','2018-01-02 00:39:36',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 10; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 649px; height: 1537px; z-index: 12; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','inherit','closed','closed','','1759-revision-v1','','','2018-01-01 18:39:36','2018-01-02 00:39:36','',1759,'http://www.monicarenata.com/1759-revision-v1/',0,'revision','',0),(1764,1,'2018-01-01 18:38:09','2018-01-02 00:38:09',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 649px; height: 1537px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 60px; top: 1481px; width: 457px; height: 366px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 457px; height: 366px;\" alt=\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','inherit','closed','closed','','1759-revision-v1','','','2018-01-01 18:38:09','2018-01-02 00:38:09','',1759,'http://www.monicarenata.com/1759-revision-v1/',0,'revision','',0),(1762,1,'2018-01-01 18:36:34','2018-01-02 00:36:34',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 13px; top: 12px; width: 649px; height: 1837px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 134px; top: 1520px; width: 457.5px; height: 366px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 457px; height: 366px;\" alt=\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','inherit','closed','closed','','1759-revision-v1','','','2018-01-01 18:36:34','2018-01-02 00:36:34','',1759,'http://www.monicarenata.com/1759-revision-v1/',0,'revision','',0),(1763,1,'2018-01-01 18:37:27','2018-01-02 00:37:27',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 649px; height: 1837px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Image zedity-wpml\" data-boxtype=\"Image\" data-layout=\"fit\" data-aspectratio=\"1\" data-ol=\"1\" style=\"position: absolute; left: 134px; top: 1520px; width: 457.5px; height: 366px; z-index: 16; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"position: relative; width: 100%; height: 100%; overflow: hidden;\"><a href=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"display: inline-block; width: 100%; height: 100%;\" target=\"_top\" data-target=\"_top\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\" style=\"position: absolute; margin: 0px; left: 0px; top: 0px; width: 457px; height: 366px;\" alt=\"wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee\" /></a></div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','inherit','closed','closed','','1759-revision-v1','','','2018-01-01 18:37:27','2018-01-02 00:37:27','',1759,'http://www.monicarenata.com/1759-revision-v1/',0,'revision','',0),(1766,1,'2018-01-01 18:41:06','2018-01-02 00:41:06',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 950px; max-height: 1900px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 950px; height: 1900px; overflow: hidden;\" data-origw=\"950\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 10; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 649px; height: 1537px; z-index: 12; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\">Carved a stream for your land<o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from the river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having more surplus than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But when fall ended a<span style=\"background-color: transparent;\">nd during the winter holidays</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">You plotted how to disrupt my crops</p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">You let your greed decide the cards you played<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\">My kindness you forgot</p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">The night of the full moon before crops are planted<o:p></o:p></p>\r\n<p class=\"MsoNormal\">I saw you poison my lands<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">But I did not say nothing<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Because the deed was already had<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span style=\"background-color: transparent;\">I carved a stream for your land</span></p>\r\n<p class=\"MsoNormal\"><o:p></o:p></p>\r\n<p class=\"MsoNormal\">That branched from my river of generosity<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Provided your crops a taste of progress<o:p></o:p></p>\r\n<p class=\"MsoNormal\">Which before they could not drink <o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Made sure your trenches were always clear<o:p></o:p></p>\r\n<p class=\"MsoNormal\">So your evolution would not be halted<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Your crops grew beautifully in the spring<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And by fall you joined me in market<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">Standing cart to cart I kept my prices fair <o:p></o:p></p>\r\n<p class=\"MsoNormal\">Despite having far less than you<o:p></o:p></p>\r\n<p class=\"MsoNormal\"><o:p> </o:p></p>\r\n<p class=\"MsoNormal\">For we both have families to feed<o:p></o:p></p>\r\n<p class=\"MsoNormal\">And I saw a friend in you<o:p></o:p></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px; color: #000000; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0px;\"><i><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\">\"Of all things that happen, never forget the genuine kindness that is bestowed upon you from others. For your actions in times of </b><b>triumphs</b><b style=\"color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 14px;\"><span></span> lets the true character of man shine through.\" -Monica Renata</b></i></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stream of Lethe','','inherit','closed','closed','','1759-revision-v1','','','2018-01-01 18:41:06','2018-01-02 00:41:06','',1759,'http://www.monicarenata.com/1759-revision-v1/',0,'revision','',0),(1768,1,'2018-02-12 15:54:45','2018-02-12 21:54:45','It’s like I want to be there\r\n\r\nBut then again I don’t\r\n\r\n \r\n\r\nThe uncertainty of the future\r\n\r\nScares me\r\n\r\nAnd moving forward I won’t\r\n\r\n \r\n\r\nI could enjoy the random adventures\r\n\r\nI could enjoy you holding my hand\r\n\r\n \r\n\r\nBut the moment you give us a definition\r\n\r\nI run away\r\n\r\nBecause I am scared\r\n\r\n \r\n\r\nI really want to be there\r\n\r\nBut then again I don’t\r\n\r\n \r\n\r\nI fear what the future may bring\r\n\r\nAnd I fear what it possibly won’t\r\n\r\n \r\n\r\nI want a happy ending\r\n\r\nYou and I\r\n\r\nI want it to be\r\n\r\n \r\n\r\nBut uncertainty of the future\r\n\r\nMakes commitment hard for me','Commitment Dilemma','','publish','open','open','','commitment-dilemma','','','2018-02-12 15:54:45','2018-02-12 21:54:45','',0,'http://www.monicarenata.com/?p=1768',0,'post','',0),(1769,1,'2018-02-12 15:54:25','2018-02-12 21:54:25','It’s like I want to be there\r\n\r\nBut then again I don’t\r\n\r\n \r\n\r\nThe uncertainty of the future\r\n\r\nScares me\r\n\r\nAnd moving forward I won’t\r\n\r\n \r\n\r\nI could enjoy the random adventures\r\n\r\nI could enjoy you holding my hand\r\n\r\n \r\n\r\nBut the moment you give us a definition\r\n\r\nI run away\r\n\r\nBecause I am scared\r\n\r\n \r\n\r\nI really want to be there\r\n\r\nBut then again I don’t\r\n\r\n \r\n\r\nI fear what the future may bring\r\n\r\nAnd I fear what it possibly won’t\r\n\r\n \r\n\r\nI want a happy ending\r\n\r\nYou and I\r\n\r\nI want it to be\r\n\r\n \r\n\r\nBut uncertainty of the future\r\n\r\nMakes commitment hard for me','Commitment Dilemma','','inherit','closed','closed','','1768-revision-v1','','','2018-02-12 15:54:25','2018-02-12 21:54:25','',1768,'http://www.monicarenata.com/1768-revision-v1/',0,'revision','',0),(1770,1,'2018-04-17 13:29:46','2018-04-17 18:29:46','\n\nWhen your alarm goes off in the morning\n\nMake sure you get an extra minute of sleep\n\nAnd when those two feet hit the floor\n\nStretch your toes and let your body feel free\n\nAnd when you look into that mirror\n\nSmile even if you have crust in the corner of your eye\n\nBecause life is too short to stress about small things\n\nLife is too short to not smile\n\nWhen you make your first cup of coffee\n\nAdd a pinch of sugar to remind yourself that you are sweet\n\nGive yourself a compliment before you walk out the door\n\nYou are for greater than you think\n\nEnjoy your day as if it was your last\n\nAnd treat others with kindness too\n\nForever be good to yourself\n\nAnd in turn life will be good to you\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\" rel=\"attachment wp-att-1771\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\" alt=\"\" title=\"tumblr_mgujaf5mqs1rikdvro1_500-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1771\" /></a>\n\n','Be Good','','publish','open','open','','be-good','','','2018-04-17 13:29:46','2018-04-17 18:29:46','',0,'http://www.monicarenata.com/?p=1770',0,'post','',0),(1771,1,'2018-04-17 13:29:44','2018-04-17 18:29:44','','tumblr_mgujaf5mqs1rikdvro1_500','','inherit','open','closed','','tumblr_mgujaf5mqs1rikdvro1_500','','','2018-04-17 13:29:44','2018-04-17 18:29:44','',1770,'http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg',0,'attachment','image/jpeg',0),(1772,1,'2018-04-17 13:29:46','2018-04-17 18:29:46','\n\nWhen your alarm goes off in the morning\n\nMake sure you get an extra minute of sleep\n\nAnd when those two feet hit the floor\n\nStretch your toes and let your body feel free\n\nAnd when you look into that mirror\n\nSmile even if you have crust in the corner of your eye\n\nBecause life is too short to stress about small things\n\nLife is too short to not smile\n\nWhen you make your first cup of coffee\n\nAdd a pinch of sugar to remind yourself that you are sweet\n\nGive yourself a compliment before you walk out the door\n\nYou are for greater than you think\n\nEnjoy your day as if it was your last\n\nAnd treat others with kindness too\n\nForever be good to yourself\n\nAnd in turn life will be good to you\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\" rel=\"attachment wp-att-1771\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg\" alt=\"\" title=\"tumblr_mgujaf5mqs1rikdvro1_500-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1771\" /></a>\n\n','Be Good','','inherit','closed','closed','','1770-revision-v1','','','2018-04-17 13:29:46','2018-04-17 18:29:46','',1770,'http://www.monicarenata.com/1770-revision-v1/',0,'revision','',0),(1773,1,'2018-04-17 14:15:38','2018-04-17 19:15:38','Live your life with <em>no regrets</em>\n\nAlways give it your all\n\nUse your brain wisely, but <em>never neglect your heart</em>\n\n<em>Be kind</em> to others\n\nAnd also be good to yourself\n\n<em>Life each day like it is your last</em>\n\nAnd your life will be well lived\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/image.png\" rel=\"attachment wp-att-1774\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1774\" /></a>','The Keys','','publish','open','open','','the-keys','','','2018-04-17 14:15:38','2018-04-17 19:15:38','',0,'http://www.monicarenata.com/?p=1773',0,'post','',0),(1774,1,'2018-04-17 14:15:37','2018-04-17 19:15:37','','image','','inherit','open','closed','','image-6','','','2018-04-17 14:15:37','2018-04-17 19:15:37','',1773,'http://www.monicarenata.com/wp-content/uploads/2018/04/image.png',0,'attachment','image/png',0),(1775,1,'2018-04-17 14:15:38','2018-04-17 19:15:38','Live your life with <em>no regrets</em>\n\nAlways give it your all\n\nUse your brain wisely, but <em>never neglect your heart</em>\n\n<em>Be kind</em> to others\n\nAnd also be good to yourself\n\n<em>Life each day like it is your last</em>\n\nAnd your life will be well lived\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/image.png\" rel=\"attachment wp-att-1774\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/image.png\" alt=\"\" title=\"image-png\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1774\" /></a>','The Keys','','inherit','closed','closed','','1773-revision-v1','','','2018-04-17 14:15:38','2018-04-17 19:15:38','',1773,'http://www.monicarenata.com/1773-revision-v1/',0,'revision','',0),(1776,1,'2018-04-25 10:58:36','2018-04-25 15:58:36','<p style=\"text-align: center;\">\r\nOne day you will wake up</p>\r\n<p style=\"text-align: center;\">And it won\'t matter anymore</p>\r\n<p style=\"text-align: center;\">Your tears will have dried</p>\r\n<p style=\"text-align: center;\"><span></span><span></span>And your heart no longer sore</p>\r\n<p style=\"text-align: center;\">Your smile will be restored</p>\r\n<p style=\"text-align: center;\">Your happiness anew</p>\r\n<p style=\"text-align: center;\">Your finally back to the old version of you</p>\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\">One day you will wake up</p>\r\n<p style=\"text-align: center;\">And see things for what they are</p>\r\n<p style=\"text-align: center;\">No longer clouded by your wishes</p>\r\n<p style=\"text-align: center;\">Using your brain and not just your heart</p>\r\n<p style=\"text-align: center;\">You will put yourself first</p>\r\n<p style=\"text-align: center;\">You will finally just BE</p>\r\n<p style=\"text-align: center;\">One day you will wake up and finally be free</p>\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\">\"Cloudy eyes can damper the positive aspects of your life. Focus on what is real and create your own happiness. See things for what they really are instead of what you want it to be.\" - Monica Renata</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" rel=\"attachment wp-att-1777\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" alt=\"\" title=\"sad-girl-lying-in-bed-picture-id493155910-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1777\" /></a></p>\r\n<p style=\"text-align: center;\"></p>','One Day','','publish','open','open','','one-day','','','2018-04-25 11:03:48','2018-04-25 16:03:48','',0,'http://www.monicarenata.com/?p=1776',0,'post','',0),(1777,1,'2018-04-25 10:58:33','2018-04-25 15:58:33','','sad-girl-lying-in-bed-picture-id493155910','','inherit','open','closed','','sad-girl-lying-in-bed-picture-id493155910','','','2018-04-25 10:58:33','2018-04-25 15:58:33','',1776,'http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg',0,'attachment','image/jpeg',0),(1778,1,'2018-04-25 10:58:36','2018-04-25 15:58:36','\nOne day you will wake up\n\nAnd it won\'t matter anymore\n\nYour tears will have dried\n\nAnd your heart no longer sore\n\nYour smile will be restored\n\nYour happiness anew\n\nYour finally back to the old version of you\n\nOne day you will wake up\n\nAnd see things for what they are\n\nNo longer clouded by your wishes\n\nUsing your brain and not just your heart\n\nYou will put yourself first\n\nYou will finally just BE\n\nOne day you will wake up and finally be free\n\n"Cloudy eyes can damper the positive aspects of your life. Focus on what is real and create your own happiness. See things for what they really are instead of what you want it to be." - Monica Renata\n\n\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" rel=\"attachment wp-att-1777\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" alt=\"\" title=\"sad-girl-lying-in-bed-picture-id493155910-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1777\" /></a>\n\n','One Day','','inherit','closed','closed','','1776-revision-v1','','','2018-04-25 10:58:36','2018-04-25 15:58:36','',1776,'http://www.monicarenata.com/1776-revision-v1/',0,'revision','',0),(1781,1,'2018-04-25 11:03:48','2018-04-25 16:03:48','<p style=\"text-align: center;\">\r\nOne day you will wake up</p>\r\n<p style=\"text-align: center;\">And it won\'t matter anymore</p>\r\n<p style=\"text-align: center;\">Your tears will have dried</p>\r\n<p style=\"text-align: center;\"><span></span><span></span>And your heart no longer sore</p>\r\n<p style=\"text-align: center;\">Your smile will be restored</p>\r\n<p style=\"text-align: center;\">Your happiness anew</p>\r\n<p style=\"text-align: center;\">Your finally back to the old version of you</p>\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\">One day you will wake up</p>\r\n<p style=\"text-align: center;\">And see things for what they are</p>\r\n<p style=\"text-align: center;\">No longer clouded by your wishes</p>\r\n<p style=\"text-align: center;\">Using your brain and not just your heart</p>\r\n<p style=\"text-align: center;\">You will put yourself first</p>\r\n<p style=\"text-align: center;\">You will finally just BE</p>\r\n<p style=\"text-align: center;\">One day you will wake up and finally be free</p>\r\n \r\n\r\n \r\n\r\n \r\n<p style=\"text-align: center;\">\"Cloudy eyes can damper the positive aspects of your life. Focus on what is real and create your own happiness. See things for what they really are instead of what you want it to be.\" - Monica Renata</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" rel=\"attachment wp-att-1777\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" alt=\"\" title=\"sad-girl-lying-in-bed-picture-id493155910-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1777\" /></a></p>\r\n<p style=\"text-align: center;\"></p>','One Day','','inherit','closed','closed','','1776-revision-v1','','','2018-04-25 11:03:48','2018-04-25 16:03:48','',1776,'http://www.monicarenata.com/1776-revision-v1/',0,'revision','',0),(1780,1,'2018-04-25 11:01:32','2018-04-25 16:01:32','<p style=\"text-align: center;\">\r\nOne day you will wake up</p>\r\n<p style=\"text-align: center;\">And it won\'t matter anymore</p>\r\n<p style=\"text-align: center;\">Your tears will have dried</p>\r\n<p style=\"text-align: center;\"><span></span>And your heart no longer sore</p>\r\n<p style=\"text-align: center;\">Your smile will be restored</p>\r\n<p style=\"text-align: center;\">Your happiness anew</p>\r\n<p style=\"text-align: center;\">Your finally back to the old version of you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">One day you will wake up</p>\r\n<p style=\"text-align: center;\">And see things for what they are</p>\r\n<p style=\"text-align: center;\">No longer clouded by your wishes</p>\r\n<p style=\"text-align: center;\">Using your brain and not just your heart</p>\r\n<p style=\"text-align: center;\">You will put yourself first</p>\r\n<p style=\"text-align: center;\">You will finally just BE</p>\r\n<p style=\"text-align: center;\">One day you will wake up and finally be free</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">\"Cloudy eyes can damper the positive aspects of your life. Focus on what is real and create your own happiness. See things for what they really are instead of what you want it to be.\" - Monica Renata</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" rel=\"attachment wp-att-1777\"><img src=\"http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg\" alt=\"\" title=\"sad-girl-lying-in-bed-picture-id493155910-jpg\" width=\"1024\" height=\"1024\" class=\"alignnone size-full wp-image-1777\" /></a></p>\r\n<p style=\"text-align: center;\"></p>','One Day','','inherit','closed','closed','','1776-revision-v1','','','2018-04-25 11:01:32','2018-04-25 16:01:32','',1776,'http://www.monicarenata.com/1776-revision-v1/',0,'revision','',0),(1784,1,'2018-06-22 16:25:01','2018-06-22 21:25:01',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 108px; top: 50px; width: 834px; height: 938px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; text-align: center; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-cf860f62-295b-b090-d939-a52a12c1ec7a\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But the answer never came</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was wrapped in gold and pearls</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was thrown away</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But despite its disappearance</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">There is one thing that I know</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span></span>Even though it should have came long ago</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But today I wait no longer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I must face what is in front of me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I sit in doubt</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I let emotions consume me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But I will accept what I have not received</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And stand still in time no more</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For I know the answer to the question</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Because I have answered it on my own</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><img src=\"https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs\" width=\"433\" height=\"286\" style=\"border: none; transform: rotate(0.00rad); -webkit-transform: rotate(0.00rad);\" /></span><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stand Still','','publish','open','open','','stand-still','','','2018-06-22 16:25:01','2018-06-22 21:25:01','',0,'http://www.monicarenata.com/?p=1784',0,'post','',0),(1785,1,'2018-06-22 16:24:00','2018-06-22 21:24:00',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 108px; top: 50px; width: 834px; height: 938px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; text-align: center; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-cf860f62-295b-b090-d939-a52a12c1ec7a\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But the answer never came</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was wrapped in gold and pearls</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was thrown away</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But despite its disappearance</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">There is one thing that I know</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Even though it should have came long ago</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But today I wait no longer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I must face what is in front of me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I sit in doubt</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I let emotions consume me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But I will accept what I have not received</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And stand still in time no more</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For I know the answer to the question</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Because I have answered it on my own</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><img src=\"https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs\" width=\"433\" height=\"286\" style=\"border: none; transform: rotate(0.00rad); -webkit-transform: rotate(0.00rad);\" /></span><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stand Still','','inherit','closed','closed','','1784-revision-v1','','','2018-06-22 16:24:00','2018-06-22 21:24:00','',1784,'http://www.monicarenata.com/1784-revision-v1/',0,'revision','',0),(1786,1,'2018-06-22 16:25:01','2018-06-22 21:25:01',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 108px; top: 50px; width: 834px; height: 938px; z-index: 14; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; text-align: center; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-cf860f62-295b-b090-d939-a52a12c1ec7a\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But the answer never came</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was wrapped in gold and pearls</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Perhaps it was thrown away</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But despite its disappearance</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">There is one thing that I know</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I waited for the answer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span></span>Even though it should have came long ago</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But today I wait no longer</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I must face what is in front of me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I sit in doubt</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">No more shall I let emotions consume me</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But I will accept what I have not received</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And stand still in time no more</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For I know the answer to the question</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Because I have answered it on my own</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><img src=\"https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs\" width=\"433\" height=\"286\" style=\"border: none; transform: rotate(0.00rad); -webkit-transform: rotate(0.00rad);\" /></span><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Cambria; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Stand Still','','inherit','closed','closed','','1784-revision-v1','','','2018-06-22 16:25:01','2018-06-22 21:25:01','',1784,'http://www.monicarenata.com/1784-revision-v1/',0,'revision','',0),(1787,1,'2018-06-22 16:30:55','2018-06-22 21:30:55',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 21px; top: 0px; width: 880px; height: 1000px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-868fb404-2963-a9d4-f707-ad0be0f2d576\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Even though I really care a lot</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Because what is the point of being here</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>When I get nothing but give you all that I got</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I wait for confirmation </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But that confirmation will never arise</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I am standing on a fence</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But won’t jump or even open my eyes</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I numb myself every day</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>You show me daily why I should give up</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I slash my own feelings away</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>My actions show how I feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I even let my words reenforce</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But I can’t make you feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>What you obviously don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I practically lost all hope</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I live my life in parallel to yours</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And harbor no ill will if we do cross paths or don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I’ve learned to control my emotions </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And put them in the back</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And in the back I will forget about them</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Just like others in my past</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And this time it is true</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>For I’d rather be surrounded by an abundance of love</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Than to feel alone with you</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><i>\"Never let emotions consume you to the point where it makes you stand still. Let go of what doesn\'t propel you forward.\"</i> - Monica Renata</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: \'Marck Script\'; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','I Do Not Care','','publish','open','open','','i-do-not-care','','','2018-06-22 16:30:55','2018-06-22 21:30:55','',0,'http://www.monicarenata.com/?p=1787',0,'post','',1),(1788,1,'2018-06-22 16:28:55','2018-06-22 21:28:55',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 22px; width: 831px; height: 930px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-868fb404-2963-a9d4-f707-ad0be0f2d576\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Even though I really care a lot</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Because what is the point of being here</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>When I get nothing but give you all that I got</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I wait for confirmation </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But that confirmation will never arise</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I am standing on a fence</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But won’t jump or even open my eyes</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I numb myself every day</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>You show me daily why I should give up</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I slash my own feelings away</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>My actions show how I feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I even let my words reenforce</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But I can’t make you feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>What you obviously don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I practically lost all hope</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I live my life in parallel to yours</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And harbor no ill will if we do cross paths or don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I’ve learned to control my emotions </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And put them in the back</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And in the back I will forget about them</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Just like others in my past</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And this time it is true</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>For I’d rather be surrounded by an abundance of love</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Than to feel alone with you</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><i>\"Never let emotions consume you to the point where it makes you stand still. Let go of what doesn\'t propel you forward.\"</i> - Monica Renata</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: \'Marck Script\'; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','I Do Not Care','','inherit','closed','closed','','1787-revision-v1','','','2018-06-22 16:28:55','2018-06-22 21:28:55','',1787,'http://www.monicarenata.com/1787-revision-v1/',0,'revision','',0),(1789,1,'2018-06-22 16:30:15','2018-06-22 21:30:15',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 21px; top: 0px; width: 880px; height: 1000px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-868fb404-2963-a9d4-f707-ad0be0f2d576\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Even though I really care a lot</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Because what is the point of being here</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>When I get nothing but give you all that I got</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I wait for confirmation </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But that confirmation will never arise</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I am standing on a fence</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But won’t jump or even open my eyes</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I numb myself every day</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>You show me daily why I should give up</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I slash my own feelings away</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>My actions show how I feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I even let my words reenforce</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But I can’t make you feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>What you obviously don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I practically lost all hope</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I live my life in parallel to yours</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And harbor no ill will if we do cross paths or don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I’ve learned to control my emotions </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And put them in the back</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And in the back I will forget about them</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Just like others in my past</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And this time it is true</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>For I’d rather be surrounded by an abundance of love</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Than to feel alone with you</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><i>\"Never let emotions consume you to the point where it makes you stand still. Let go of what doesn\'t propel you forward.\"</i> - Monica Renata</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: \'Marck Script\'; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','I Do Not Care','','inherit','closed','closed','','1787-revision-v1','','','2018-06-22 16:30:15','2018-06-22 21:30:15','',1787,'http://www.monicarenata.com/1787-revision-v1/',0,'revision','',0),(1790,1,'2018-06-22 16:30:55','2018-06-22 21:30:55',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 21px; top: 0px; width: 880px; height: 1000px; z-index: 14; right: auto; bottom: auto; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-868fb404-2963-a9d4-f707-ad0be0f2d576\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Even though I really care a lot</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Because what is the point of being here</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>When I get nothing but give you all that I got</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I wait for confirmation </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But that confirmation will never arise</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I am standing on a fence</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But won’t jump or even open my eyes</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I numb myself every day</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>You show me daily why I should give up</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I slash my own feelings away</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>My actions show how I feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I even let my words reenforce</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>But I can’t make you feel</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>What you obviously don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I practically lost all hope</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>So I live my life in parallel to yours</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And harbor no ill will if we do cross paths or don’t</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I’ve learned to control my emotions </b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And put them in the back</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And in the back I will forget about them</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Just like others in my past</b></span></p>\r\n<span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><b><span class=\"zedity-spacer\"> </span></b></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>I almost just don’t care anymore</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>And this time it is true</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>For I’d rather be surrounded by an abundance of love</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Than to feel alone with you</b></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; text-align: center;\"><span style=\"font-size: 14pt; font-family: \'Bad Script\', cursive; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><i>\"Never let emotions consume you to the point where it makes you stand still. Let go of what doesn\'t propel you forward.\"</i> - Monica Renata</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: \'Marck Script\'; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','I Do Not Care','','inherit','closed','closed','','1787-revision-v1','','','2018-06-22 16:30:55','2018-06-22 21:30:55','',1787,'http://www.monicarenata.com/1787-revision-v1/',0,'revision','',0),(1949,1,'2024-10-17 10:23:52','2024-10-17 15:23:52','Disappointment is so hard to swallow\r\n\r\nEspecially when it comes in large gulps\r\n\r\nDrowning in your own misery\r\n\r\nThat you have somewhat caused\r\n\r\n \r\n\r\nYet no matter how low one may go\r\n\r\nThey can always rise up\r\n\r\nBut you decide to stay low\r\n\r\nYou have simply given up\r\n\r\n \r\n\r\nYour skin reflects your feelings\r\n\r\nYou no longer have a glow\r\n\r\nHair disheveled\r\n\r\nClothes are stained\r\n\r\nYou look a fricking mess\r\n\r\n \r\n\r\nI could sit here and lecture you\r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\r\n\r\non someone who lives in a state of dying\r\n\r\n \r\n\r\nFor too long you have sat in that corner\r\n\r\nYou have let worry and doubt fill your head\r\n\r\nYou have given up on your joys\r\n\r\nYou choose to see the negatives instead\r\n\r\n \r\n\r\nThe love that you receive\r\n\r\nYou reject every single ounce\r\n\r\nThe friendships that you have in life\r\n\r\nYou neglect them until they phase out\r\n\r\n \r\n\r\nYou cry and voice your frustrations\r\n\r\nYet you refuse to make a change\r\n\r\nYou do the same things over and over again\r\n\r\nPerhaps you are insane\r\n\r\n \r\n\r\nAnd here I am once again\r\n\r\nBecause I actually care and have love for you\r\n\r\nI am here to listen and be there\r\n\r\nBut I get tired too\r\n\r\n \r\n\r\nI wish you saw that rope of hope\r\n\r\nThat dangles in your face daily\r\n\r\nI wish you believed in yourself\r\n\r\nI wish you believed in your abilities\r\n\r\n \r\n\r\nI am here and I am giving my all\r\n\r\nAnd unfortunately, I am realizing this isn\'t enough\r\n\r\nI can assist\r\n\r\nBut I can\'t save you\r\n\r\nYou must finally save yourself\r\n\r\n \r\n\r\n \r\n\r\n ','Save Yourself','\"I could sit here and lecture you \r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\"','inherit','closed','closed','','1948-revision-v1','','','2024-10-17 10:23:52','2024-10-17 15:23:52','',1948,'https://www.monicarenata.com/?p=1949',0,'revision','',0),(1950,1,'2024-10-17 10:29:54','2024-10-17 15:29:54','Disappointment is so hard to swallow\r\n\r\nEspecially when it comes in large gulps\r\n\r\nDrowning in your own misery\r\n\r\nThat you have somewhat caused\r\n\r\n \r\n\r\nYet no matter how low one may go\r\n\r\nThey can always rise up\r\n\r\nBut you decide to stay low\r\n\r\nYou have simply given up\r\n\r\n \r\n\r\nYour skin reflects your feelings\r\n\r\nYou no longer have a glow\r\n\r\nHair disheveled\r\n\r\nClothes are stained\r\n\r\nYou look a fricking mess\r\n\r\n \r\n\r\nI could sit here and lecture you\r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\r\n\r\non someone who lives in a state of dying\r\n\r\n \r\n\r\nFor too long you have sat in that corner\r\n\r\nYou have let worry and doubt fill your head\r\n\r\nYou have given up on your joys\r\n\r\nYou choose to see the negatives instead\r\n\r\n \r\n\r\nThe love that you receive\r\n\r\nYou reject every single ounce\r\n\r\nThe friendships that you have in life\r\n\r\nYou neglect them until they phase out\r\n\r\n \r\n\r\nYou cry and voice your frustrations\r\n\r\nYet you refuse to make a change\r\n\r\nYou do the same things over and over again\r\n\r\nPerhaps you are insane\r\n\r\n \r\n\r\nAnd here I am once again\r\n\r\nBecause I actually care and have love for you\r\n\r\nI am here to listen and be there\r\n\r\nBut I get tired too\r\n\r\n \r\n\r\nI wish you saw that rope of hope\r\n\r\nThat dangles in your face daily\r\n\r\nI wish you believed in yourself\r\n\r\nI wish you believed in your abilities\r\n\r\n \r\n\r\nI am here and I am giving my all\r\n\r\nAnd unfortunately, I am realizing this isn\'t enough\r\n\r\nI can assist\r\n\r\nBut I can\'t save you\r\n\r\nYou must finally save yourself\r\n\r\n \r\n<blockquote>Remember the rope of hope that God threw to us to hang onto. There were three strands to that rope:\r\n<ol>\r\n <li>First, there was God’s person (the reminder of who he is and his character; of his power and love and faithfulness that never change).</li>\r\n <li>Then, there were God’s past deeds (the reminder of the things God did in history that prove he is faithful, and strong, and reliable: We know what he did from the Bible, from the lives of the saints, and from our own lives and the lives of people we know).</li>\r\n <li>Finally, the third strand is God’s promises, his plan. As it says in the very first paragraph of the Catechism, God has a “plan of sheer goodness.” He created us to share in his blessed life and has made many firm promises that we can count on, to help us to get there.</li>\r\n</ol>\r\nFaith in those three things together—God’s person, his past deeds, and his promised plan—came together in a strong, three-stranded cord that gave us something to hang onto. It lifted our eyes off the problem and became a lifeline of hope that didn’t depend on the outcome but on God.</blockquote>\r\n ','Save Yourself','\"I could sit here and lecture you \r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\"','inherit','closed','closed','','1948-revision-v1','','','2024-10-17 10:29:54','2024-10-17 15:29:54','',1948,'https://www.monicarenata.com/?p=1950',0,'revision','',0),(1951,1,'2024-10-17 10:30:57','2024-10-17 15:30:57','Disappointment is so hard to swallow\r\n\r\nEspecially when it comes in large gulps\r\n\r\nDrowning in your own misery\r\n\r\nThat you have somewhat caused\r\n\r\n \r\n\r\nYet no matter how low one may go\r\n\r\nThey can always rise up\r\n\r\nBut you decide to stay low\r\n\r\nYou have simply given up\r\n\r\n \r\n\r\nYour skin reflects your feelings\r\n\r\nYou no longer have a glow\r\n\r\nHair disheveled\r\n\r\nClothes are stained\r\n\r\nYou look a fricking mess\r\n\r\n \r\n\r\nI could sit here and lecture you\r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\r\n\r\non someone who lives in a state of dying\r\n\r\n \r\n\r\nFor too long you have sat in that corner\r\n\r\nYou have let worry and doubt fill your head\r\n\r\nYou have given up on your joys\r\n\r\nYou choose to see the negatives instead\r\n\r\n \r\n\r\nThe love that you receive\r\n\r\nYou reject every single ounce\r\n\r\nThe friendships that you have in life\r\n\r\nYou neglect them until they phase out\r\n\r\n \r\n\r\nYou cry and voice your frustrations\r\n\r\nYet you refuse to make a change\r\n\r\nYou do the same things over and over again\r\n\r\nPerhaps you are insane\r\n\r\n \r\n\r\nAnd here I am once again\r\n\r\nBecause I actually care and have love for you\r\n\r\nI am here to listen and be there\r\n\r\nBut I get tired too\r\n\r\n \r\n\r\nI wish you saw that rope of hope\r\n\r\nThat dangles in your face daily\r\n\r\nI wish you believed in yourself\r\n\r\nI wish you believed in your abilities\r\n\r\n \r\n\r\nI am here and I am giving my all\r\n\r\nAnd unfortunately, I am realizing this isn\'t enough\r\n\r\nI can assist\r\n\r\nBut I can\'t save you\r\n\r\nYou must finally save yourself\r\n\r\n \r\n<blockquote>Remember the rope of hope that God threw to us to hang onto. There were three strands to that rope:\r\n<ol>\r\n <li>First, there was God’s person (the reminder of who he is and his character; of his power and love and faithfulness that never change).</li>\r\n <li>Then, there were God’s past deeds (the reminder of the things God did in history that prove he is faithful, and strong, and reliable: We know what he did from the Bible, from the lives of the saints, and from our own lives and the lives of people we know).</li>\r\n <li>Finally, the third strand is God’s promises, his plan. As it says in the very first paragraph of the Catechism, God has a “plan of sheer goodness.” He created us to share in his blessed life and has made many firm promises that we can count on, to help us to get there.</li>\r\n</ol>\r\nFaith in those three things together—God’s person, his past deeds, and his promised plan—came together in a strong, three-stranded cord that gave us something to hang onto. It lifted our eyes off the problem and became a lifeline of hope that didn’t depend on the outcome but on God.\r\n\r\n<a href=\"https://comeintotheword.com/faith-and-the-rope-of-hope/\">https://comeintotheword.com/faith-and-the-rope-of-hope/</a></blockquote>\r\n ','Save Yourself','\"I could sit here and lecture you \r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\"','inherit','closed','closed','','1948-revision-v1','','','2024-10-17 10:30:57','2024-10-17 15:30:57','',1948,'https://www.monicarenata.com/?p=1951',0,'revision','',0),(1955,1,'2024-11-04 07:14:05','2024-11-04 13:14:05','<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">I will listen to our disagreements</p>\r\n<p style=\"text-align: center;\">And take the words really in</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will speak my peace so calmly</p>\r\n<p style=\"text-align: center;\">I will let my words ring true</p>\r\n<p style=\"text-align: center;\">I will cast aside my pride</p>\r\n<p style=\"text-align: center;\">I will communicate with you</p>\r\n<p style=\"text-align: center;\">I will be vulnerable in that moment</p>\r\n<p style=\"text-align: center;\">I will let my walls completely down</p>\r\n<p style=\"text-align: center;\">I will take all of the punches</p>\r\n<p style=\"text-align: center;\">I will cry and not back down</p>\r\n<p style=\"text-align: center;\">I will work towards a resolution</p>\r\n<p style=\"text-align: center;\">I will grant you grace in this time</p>\r\n<p style=\"text-align: center;\">I will recognize the wrongs I have done</p>\r\n<p style=\"text-align: center;\">I will attempt to fix it somehow</p>\r\n<p style=\"text-align: center;\">I will communicate even though it is hard</p>\r\n<p style=\"text-align: center;\">I will let you speak without interruption</p>\r\n<p style=\"text-align: center;\">I will let your words pierce my heart</p>\r\n<p style=\"text-align: center;\">I will not give up until I am certain</p>\r\n<p style=\"text-align: center;\">Certain that we have expressed ourselves fully</p>\r\n<p style=\"text-align: center;\">Certain that I have shown myself fully unclothed</p>\r\n<p style=\"text-align: center;\">Certain that I have extended myself fully</p>\r\n<p style=\"text-align: center;\">Certain that I have given you my all</p>\r\n<p style=\"text-align: center;\">I understand that we will not always be on the same page</p>\r\n<p style=\"text-align: center;\">I know that difficulties will arise in life</p>\r\n<p style=\"text-align: center;\">But I want to work through the ups and downs</p>\r\n<p style=\"text-align: center;\">Because ups and downs are a part of life</p>\r\n<p style=\"text-align: center;\">But...</p>\r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">And even though it is hard to take in</p>\r\n<p style=\"text-align: center;\">I\'ll figure out how to make a way</p>\r\n \r\n\r\n<em>\"Arguments are a part of life. However, it is important to be mindful of the words that you use. Sometimes we may use harsh words in that moment because of how we currently feel, but those words can one day become the truth in another\'s ears. \" - Monica Renata</em>','I\'ll Believe You','','inherit','closed','closed','','1953-revision-v1','','','2024-11-04 07:14:05','2024-11-04 13:14:05','',1953,'https://www.monicarenata.com/?p=1955',0,'revision','',0),(1954,1,'2024-11-04 07:12:41','2024-11-04 13:12:41','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">I will listen to our disagreements</p>\r\n<p style=\"text-align: center;\">And take the words really in</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will speak my peace so calmly</p>\r\n<p style=\"text-align: center;\">I will let my words ring true</p>\r\n<p style=\"text-align: center;\">I will cast aside my pride</p>\r\n<p style=\"text-align: center;\">I will communicate with you</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will be vulnerable in that moment</p>\r\n<p style=\"text-align: center;\">I will let my walls completely down</p>\r\n<p style=\"text-align: center;\">I will take all of the punches</p>\r\n<p style=\"text-align: center;\">I will cry and not back down</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will work towards a resolution</p>\r\n<p style=\"text-align: center;\">I will grant you grace in this time</p>\r\n<p style=\"text-align: center;\">I will recognize the wrongs I have done</p>\r\n<p style=\"text-align: center;\">I will attempt to fix it somehow</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will communicate even though it is hard</p>\r\n<p style=\"text-align: center;\">I will let you speak without interruption</p>\r\n<p style=\"text-align: center;\">I will let your words pierce my heart</p>\r\n<p style=\"text-align: center;\">I will not give up until I am certain</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Certain that we have expressed ourselves fully</p>\r\n<p style=\"text-align: center;\">Certain that I have shown myself fully unclothed</p>\r\n<p style=\"text-align: center;\">Certain that I have extended myself fully</p>\r\n<p style=\"text-align: center;\">Certain that I have given you my all</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I understand that we will not always be on the same page</p>\r\n<p style=\"text-align: center;\">I know that difficulties will arise in life</p>\r\n<p style=\"text-align: center;\">But I want to work through the ups and downs</p>\r\n<p style=\"text-align: center;\">Because ups and downs are a part of life</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">But...</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">And even though it is hard to take in</p>\r\n<p style=\"text-align: center;\">I\'ll figure out how to make a way</p>\r\n \r\n\r\n<em>\"Arguments are a part of life. However, it is important to be mindful of the words that you use. Sometimes we may use harsh words in that moment because of how we currently feel, but those words can one day become the truth in another\'s ears. \" - Monica Renata</em>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>','I\'ll Believe You','','inherit','closed','closed','','1953-revision-v1','','','2024-11-04 07:12:41','2024-11-04 13:12:41','',1953,'https://www.monicarenata.com/?p=1954',0,'revision','',0),(1956,1,'2024-11-04 07:15:00','2024-11-04 13:15:00','<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">I will listen to our disagreements</p>\r\n<p style=\"text-align: center;\">And take the words really in</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I will speak my peace so calmly</p>\r\n<p style=\"text-align: center;\">I will let my words ring true</p>\r\n<p style=\"text-align: center;\">I will cast aside my pride</p>\r\n<p style=\"text-align: center;\">I will communicate with you</p>\r\n \r\n<p style=\"text-align: center;\">I will be vulnerable in that moment</p>\r\n<p style=\"text-align: center;\">I will let my walls completely down</p>\r\n<p style=\"text-align: center;\">I will take all of the punches</p>\r\n<p style=\"text-align: center;\">I will cry and not back down</p>\r\n \r\n<p style=\"text-align: center;\">I will work towards a resolution</p>\r\n<p style=\"text-align: center;\">I will grant you grace in this time</p>\r\n<p style=\"text-align: center;\">I will recognize the wrongs I have done</p>\r\n<p style=\"text-align: center;\">I will attempt to fix it somehow</p>\r\n \r\n<p style=\"text-align: center;\">I will communicate even though it is hard</p>\r\n<p style=\"text-align: center;\">I will let you speak without interruption</p>\r\n<p style=\"text-align: center;\">I will let your words pierce my heart</p>\r\n<p style=\"text-align: center;\">I will not give up until I am certain</p>\r\n \r\n<p style=\"text-align: center;\">Certain that we have expressed ourselves fully</p>\r\n<p style=\"text-align: center;\">Certain that I have shown myself fully unclothed</p>\r\n<p style=\"text-align: center;\">Certain that I have extended myself fully</p>\r\n<p style=\"text-align: center;\">Certain that I have given you my all</p>\r\n \r\n<p style=\"text-align: center;\">I understand that we will not always be on the same page</p>\r\n<p style=\"text-align: center;\">I know that difficulties will arise in life</p>\r\n<p style=\"text-align: center;\">But I want to work through the ups and downs</p>\r\n<p style=\"text-align: center;\">Because ups and downs are a part of life</p>\r\n \r\n<p style=\"text-align: center;\">But...</p>\r\n \r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">And even though it is hard to take in</p>\r\n<p style=\"text-align: center;\">I\'ll figure out how to make a way</p>\r\n \r\n\r\n \r\n\r\n<em>\"Arguments are a part of life. However, it is important to be mindful of the words that you use. Sometimes we may use harsh words in that moment because of how we currently feel, but those words can one day become the truth in another\'s ears. \" - Monica Renata</em>','I\'ll Believe You','','inherit','closed','closed','','1953-revision-v1','','','2024-11-04 07:15:00','2024-11-04 13:15:00','',1953,'https://www.monicarenata.com/?p=1956',0,'revision','',0),(1957,1,'2024-11-04 07:16:04','2024-11-04 13:16:04','<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">I will listen to our disagreements</p>\r\n<p style=\"text-align: center;\">And take the words really in</p>\r\n \r\n<p style=\"text-align: center;\">I will speak my peace so calmly</p>\r\n<p style=\"text-align: center;\">I will let my words ring true</p>\r\n<p style=\"text-align: center;\">I will cast aside my pride</p>\r\n<p style=\"text-align: center;\">I will communicate with you</p>\r\n \r\n<p style=\"text-align: center;\">I will be vulnerable in that moment</p>\r\n<p style=\"text-align: center;\">I will let my walls completely down</p>\r\n<p style=\"text-align: center;\">I will take all of the punches</p>\r\n<p style=\"text-align: center;\">I will cry and not back down</p>\r\n \r\n<p style=\"text-align: center;\">I will work towards a resolution</p>\r\n<p style=\"text-align: center;\">I will grant you grace in this time</p>\r\n<p style=\"text-align: center;\">I will recognize the wrongs I have done</p>\r\n<p style=\"text-align: center;\">I will attempt to fix it somehow</p>\r\n \r\n<p style=\"text-align: center;\">I will communicate even though it is hard</p>\r\n<p style=\"text-align: center;\">I will let you speak without interruption</p>\r\n<p style=\"text-align: center;\">I will let your words pierce my heart</p>\r\n<p style=\"text-align: center;\">I will not give up until I am certain</p>\r\n \r\n<p style=\"text-align: center;\">Certain that we have expressed ourselves fully</p>\r\n<p style=\"text-align: center;\">Certain that I have shown myself fully unclothed</p>\r\n<p style=\"text-align: center;\">Certain that I have extended myself fully</p>\r\n<p style=\"text-align: center;\">Certain that I have given you my all</p>\r\n \r\n<p style=\"text-align: center;\">I understand that we will not always be on the same page</p>\r\n<p style=\"text-align: center;\">I know that difficulties will arise in life</p>\r\n<p style=\"text-align: center;\">But I want to work through the ups and downs</p>\r\n<p style=\"text-align: center;\">Because ups and downs are a part of life</p>\r\n \r\n<p style=\"text-align: center;\">But...</p>\r\n \r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">And even though it is hard to take in</p>\r\n<p style=\"text-align: center;\">I\'ll figure out how to make a way</p>\r\n \r\n\r\n \r\n\r\n<em>\"Arguments are a part of life. However, it is important to be mindful of the words that you use. Sometimes we may use harsh words in that moment because of how we currently feel, but those words can one day become the truth in another\'s ears. \" - Monica Renata</em>','I\'ll Believe You','','inherit','closed','closed','','1953-revision-v1','','','2024-11-04 07:16:04','2024-11-04 13:16:04','',1953,'https://www.monicarenata.com/?p=1957',0,'revision','',0),(1967,1,'2024-11-19 07:25:43','2024-11-19 13:25:43','A whole that was broken\r\nPieced together piece by piece\r\n\r\nA marvel of true artwork \r\nOne that you claimed to need\r\n\r\nYou placed it on a pedestal \r\nBut one day watched it drop\r\n\r\nYou put together the pieces\r\nBecause to you it still is art\r\n\r\nYou revel at its glory\r\nGloat about it to your friends\r\n\r\nBut never take the time to dust it off\r\nAs seasons change\r\n\r\nA beauty but yet forgotten\r\nWhat is the point in holding on\r\n\r\nYou captured this rare beauty\r\nBut lost desire as time moved on\r\n','The Philistine','','publish','open','open','','the-philistine','','','2024-11-19 07:25:43','2024-11-19 13:25:43','',0,'https://www.monicarenata.com/?p=1967',0,'post','',0),(1961,1,'2024-11-08 09:31:03','2024-11-08 15:31:03','I can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nI can be all tough and strong\r\n\r\nLet you fear the words I say\r\n\r\n \r\n\r\nAct against my true feelings\r\n\r\nHide my heart behind a stone of so-called hate\r\n\r\n \r\n\r\nI can be the greatest protector\r\n\r\nWalls so big and strong\r\n\r\n \r\n\r\nActing as the greatest fortress\r\n\r\nThat you and I have ever saw\r\n\r\n \r\n\r\nI could hide that I love you\r\n\r\nPretend it is something that isn’t true\r\n\r\n \r\n\r\nBut what is the point of being so prideful\r\n\r\nThat I end up losing you\r\n\r\n \r\n\r\nI can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nThe mask that was meant to protect me\r\n\r\nThe mask that traps me but also sets me free\r\n\r\n \r\n\r\nI am protected by my mask\r\n\r\nBut it may prevent me from obtaining what I truly seek\r\n\r\n \r\n\r\n \r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\"><em>\"Pride can be a virtue, b</em><em>ut it needs to be the right kind of pride. Too much pride can cost you everything. But no pride at all means no self respect and no value. \"</em></p>\r\n</blockquote>','PRIDE: Mask of Me','','publish','open','open','','pride-mask-of-me','','','2024-11-08 09:31:03','2024-11-08 15:31:03','',0,'https://www.monicarenata.com/?p=1961',0,'post','',0),(1962,1,'2024-11-08 09:27:03','2024-11-08 15:27:03','','Pride can be a virtue, but it need to be the right kind of pride','','inherit','open','closed','','pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride','','','2024-11-08 09:27:03','2024-11-08 15:27:03','',1961,'http://www.monicarenata.com/wp-content/uploads/2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp',0,'attachment','image/webp',0),(1963,1,'2024-11-08 09:27:41','2024-11-08 15:27:41','I can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nI can be all tough and strong\r\n\r\nLet you fear the words I say\r\n\r\n \r\n\r\nAct against my true feelings\r\n\r\nHide my heart behind a stone of so-called hate\r\n\r\n \r\n\r\nI can be the greatest protector\r\n\r\nWalls so big and strong\r\n\r\n \r\n\r\nActing as the greatest fortress\r\n\r\nThat you and I have ever saw\r\n\r\n \r\n\r\nI could hide that I love you\r\n\r\nPretend it is something that isn’t true\r\n\r\n \r\n\r\nBut what is the point of being so prideful\r\n\r\nThat I end up losing you\r\n\r\n \r\n\r\nI can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nThe mask that was meant to protect me\r\n\r\nThe mask that traps me but also sets me free\r\n\r\n \r\n\r\nI am protected by my mask\r\n\r\nBut it may prevent me from obtaining what I truly seek','PRIDE: Mask of Me','','inherit','closed','closed','','1961-revision-v1','','','2024-11-08 09:27:41','2024-11-08 15:27:41','',1961,'https://www.monicarenata.com/?p=1963',0,'revision','',0),(1964,1,'2024-11-08 09:30:31','2024-11-08 15:30:31','I can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nI can be all tough and strong\r\n\r\nLet you fear the words I say\r\n\r\n \r\n\r\nAct against my true feelings\r\n\r\nHide my heart behind a stone of so-called hate\r\n\r\n \r\n\r\nI can be the greatest protector\r\n\r\nWalls so big and strong\r\n\r\n \r\n\r\nActing as the greatest fortress\r\n\r\nThat you and I have ever saw\r\n\r\n \r\n\r\nI could hide that I love you\r\n\r\nPretend it is something that isn’t true\r\n\r\n \r\n\r\nBut what is the point of being so prideful\r\n\r\nThat I end up losing you\r\n\r\n \r\n\r\nI can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nThe mask that was meant to protect me\r\n\r\nThe mask that traps me but also sets me free\r\n\r\n \r\n\r\nI am protected by my mask\r\n\r\nBut it may prevent me from obtaining what I truly seek\r\n\r\n \r\n\r\n \r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\"><em>\"Pride can be a virtue, b</em><em>ut it needs to be the right kind of pride. Too much pride can cost you everything, But no pride at all means no self respect and no value. \"</em></p>\r\n</blockquote>','PRIDE: Mask of Me','','inherit','closed','closed','','1961-revision-v1','','','2024-11-08 09:30:31','2024-11-08 15:30:31','',1961,'https://www.monicarenata.com/?p=1964',0,'revision','',0),(1965,1,'2024-11-08 09:31:03','2024-11-08 15:31:03','I can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nI can be all tough and strong\r\n\r\nLet you fear the words I say\r\n\r\n \r\n\r\nAct against my true feelings\r\n\r\nHide my heart behind a stone of so-called hate\r\n\r\n \r\n\r\nI can be the greatest protector\r\n\r\nWalls so big and strong\r\n\r\n \r\n\r\nActing as the greatest fortress\r\n\r\nThat you and I have ever saw\r\n\r\n \r\n\r\nI could hide that I love you\r\n\r\nPretend it is something that isn’t true\r\n\r\n \r\n\r\nBut what is the point of being so prideful\r\n\r\nThat I end up losing you\r\n\r\n \r\n\r\nI can pretend like I have done before\r\n\r\nLet you believe what you see\r\n\r\n \r\n\r\nAct against my own self interest\r\n\r\nHide behind the mask of me\r\n\r\n \r\n\r\nThe mask that was meant to protect me\r\n\r\nThe mask that traps me but also sets me free\r\n\r\n \r\n\r\nI am protected by my mask\r\n\r\nBut it may prevent me from obtaining what I truly seek\r\n\r\n \r\n\r\n \r\n\r\n \r\n<blockquote>\r\n<p style=\"text-align: center;\"><em>\"Pride can be a virtue, b</em><em>ut it needs to be the right kind of pride. Too much pride can cost you everything. But no pride at all means no self respect and no value. \"</em></p>\r\n</blockquote>','PRIDE: Mask of Me','','inherit','closed','closed','','1961-revision-v1','','','2024-11-08 09:31:03','2024-11-08 15:31:03','',1961,'https://www.monicarenata.com/?p=1965',0,'revision','',0),(1980,1,'2025-05-22 20:33:24','2025-05-23 01:33:24','Sunshine all the time makes the desert\r\nThat is why I welcome the rain\r\nFor if only the positives of life were experienced\r\nWe would feel stagnant and wish for change\r\n\r\nFor growth is found in adversity\r\nAppreciation is gained from your ups and downs\r\nLife will make us smile at times\r\nLife will also make us frown\r\n\r\nRain and dark days won\'t last forever\r\nBut they make you not take for granted the sun\r\nIf happiness was so abundant that it was the only feeling we had\r\nWe would eventually all become numb\r\n\r\nSunshine all the time makes the desert\r\nBut sunshine and shadows makes a rich and meaningful life\r\nEmbrace all aspects of your journey\r\nFor joys and sorrows balance life\r\n\r\n\r\n\r\n','Sunshine & Shadows','','publish','open','open','','sunshine-shadows','','','2025-05-22 20:33:24','2025-05-23 01:33:24','',0,'https://www.monicarenata.com/?p=1980',0,'post','',0),(1968,1,'2024-11-19 07:20:37','2024-11-19 13:20:37','A whole that was broken\r\nPieced together piece by piece\r\n\r\nA marvel of true artwork \r\nOne that you claimed to need\r\n\r\nYou placed it on a pedestal \r\nBut one day watched it drop\r\n\r\nYou put together the pieces\r\nBecause to you it still is art\r\n\r\nYou revel at its glory\r\nGloat about it to your friends\r\n\r\nBut never take the time to dust it off\r\nAs seasons change\r\n\r\nA beauty but yet forgotten\r\nWhat is the point in holding on\r\n\r\nYou captured this rare beauty\r\nBut lost desire as time moved on\r\n','The Philistine','','inherit','closed','closed','','1967-revision-v1','','','2024-11-19 07:20:37','2024-11-19 13:20:37','',1967,'https://www.monicarenata.com/?p=1968',0,'revision','',0),(1969,1,'2024-11-19 07:23:59','2024-11-19 13:23:59','','PHILISTINE','Definition of word','inherit','open','closed','','philistine','','','2024-11-19 07:25:03','2024-11-19 13:25:03','',1967,'http://www.monicarenata.com/wp-content/uploads/2024/11/PHILISTINE.jpg',0,'attachment','image/jpeg',0),(1972,1,'2024-12-19 21:20:17','2024-12-20 03:20:17','\r\nToday I will do something that I rarely sometimes do\r\nI will speak things into existence because perhaps it will come true\r\n\r\nI will answer your question about how you think things will be\r\nWhen we one day in the future each have our last first date\r\n\r\nThe conversation will be flowing\r\nOf course we would have some drinks\r\nShare adventures and our hobbies\r\nSpeak of religion and our strengths\r\n\r\nWe will have bright eyes when we speak of our goals and how they can intertwine\r\nIt is great to have someone who is happy to see the twinkle in your eyes\r\n\r\nDinner will be over\r\nAnd the conversation would move on\r\nWalking down the city streets with no coats\r\nOur joy is keeping us warm\r\n\r\nA night that passed so fast\r\nCan’t wait to see you again\r\n\r\nI have a feeling this is how it will be\r\nA last first date we will share\r\n\r\n\r\n','Last First Date','','publish','open','open','','last-first-date','','','2024-12-19 21:20:17','2024-12-20 03:20:17','',0,'https://www.monicarenata.com/?p=1972',0,'post','',0),(1973,1,'2024-12-19 21:18:19','2024-12-20 03:18:19','\r\nToday I will do something that I rarely sometimes do\r\nI will speak things into existence because perhaps it will come true\r\n\r\nI will answer your question about how you think things will be\r\nWhen we one day in the future each have our last first date\r\n\r\nThe conversation will be flowing\r\nOf course we would have some drinks\r\nShare adventures and our hobbies\r\nSpeak of religion and our strengths\r\n\r\nWe will have bright eyes when we speak of our goals and how they can intertwine\r\nIt is great to have someone who is happy to see the twinkle in your eyes\r\n\r\nDinner will be over\r\nAnd the conversation would move on\r\nWalking down the city streets with no coats\r\nOur joy is keeping us warm\r\n\r\nA night that passed so fast\r\nCan’t wait to see you again\r\n\r\nI have a feeling this is how it will be\r\nA last first date we will share\r\n\r\n\r\n','Last First Date','','inherit','closed','closed','','1972-revision-v1','','','2024-12-19 21:18:19','2024-12-20 03:18:19','',1972,'https://www.monicarenata.com/?p=1973',0,'revision','',0),(1974,1,'2024-12-19 21:19:47','2024-12-20 03:19:47','','Last First Date','','inherit','open','closed','','last-first-date','','','2024-12-19 21:19:47','2024-12-20 03:19:47','',1972,'http://www.monicarenata.com/wp-content/uploads/2024/12/Last-First-Date.jpg',0,'attachment','image/jpeg',0),(1990,1,'2025-06-10 09:39:50','2025-06-10 14:39:50',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 850px; max-height: 920px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 850px; height: 920px; overflow: hidden;\" data-origw=\"850\" data-origh=\"920\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 40px; top: 40px; width: 560px; height: 880px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 16px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Until those moments are gone<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','inherit','closed','closed','','1986-revision-v1','','','2025-06-10 09:39:50','2025-06-10 14:39:50','',1986,'https://www.monicarenata.com/?p=1990',0,'revision','',0),(1989,1,'2025-06-10 09:38:19','2025-06-10 14:38:19',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 850px; max-height: 920px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 850px; height: 920px; overflow: hidden;\" data-origw=\"850\" data-origh=\"920\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 40px; top: 40px; width: 400px; height: 800px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px; font-family: \'Eagle Lake\', serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'Eagle Lake\', serif;\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14pt; line-height: 115%; font-family: \'Eagle Lake\', serif;\"><span class=\"\" style=\"font-size: 12px;\">Until those moments are gone</span><o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','inherit','closed','closed','','1986-revision-v1','','','2025-06-10 09:38:19','2025-06-10 14:38:19','',1986,'https://www.monicarenata.com/?p=1989',0,'revision','',0),(1977,0,'2025-01-13 23:14:27','2025-01-14 05:14:27','{{unknown}}','','','publish','closed','closed','','d3cade0c01abf66e59a790b84398b6d9','','','2025-01-13 23:14:27','2025-01-14 05:14:27','',0,'https://www.monicarenata.com/d3cade0c01abf66e59a790b84398b6d9/',0,'oembed_cache','',0),(1978,0,'2025-01-13 23:17:36','2025-01-14 05:17:36','{{unknown}}','','','publish','closed','closed','','611d1e1f90f5546f09deaeeb4ed422a2','','','2025-01-13 23:17:36','2025-01-14 05:17:36','',0,'https://www.monicarenata.com/611d1e1f90f5546f09deaeeb4ed422a2/',0,'oembed_cache','',0),(1981,1,'2025-05-22 20:29:03','2025-05-23 01:29:03','Sunshine all the time makes the desert\r\nThat is why I welcome the rain\r\nFor if only the positives of life were experienced\r\nWe would feel stagnant and wish for change\r\n\r\nFor growth is found in adversity\r\nAppreciation is gained from your ups and downs\r\nLife will make us smile at times\r\nLife will also make us frown\r\n\r\nRain and dark days won\'t last forever\r\nBut they make you not take for granted the sun\r\nIf happiness was so abundant that it was the only feeling we had\r\nWe would eventually all become numb\r\n\r\nSunshine all the time makes the desert\r\nBut sunshine and shadows makes a rich and meaningful life\r\nEmbrace all aspects of your journey\r\nFor joys and sorrows balance life\r\n\r\n\r\n\r\n','Sunshine & Shadows','','inherit','closed','closed','','1980-revision-v1','','','2025-05-22 20:29:03','2025-05-23 01:29:03','',1980,'https://www.monicarenata.com/?p=1981',0,'revision','',0),(1876,1,'2020-12-23 18:22:57','0000-00-00 00:00:00','<span style=\"font-weight: 400;\">Hate can occupy a vacant room</span>\n\n<span style=\"font-weight: 400;\">That resides in the home in your heart</span>\n\n<span style=\"font-weight: 400;\">Spewing poison to extremities</span>\n\n<span style=\"font-weight: 400;\">Tearing your insides apart</span>\n\n \n\n<span style=\"font-weight: 400;\">For what is this feeling inside that dwells</span>\n\n<span style=\"font-weight: 400;\">So deep that it contaminates the home</span>\n\n \n\n<span style=\"font-weight: 400;\">For life will beat with its new rhythm</span>\n\n<span style=\"font-weight: 400;\">But all fruits of life will be spoiled</span>\n\n \n\n<span style=\"font-weight: 400;\">One room within a house</span>\n\n<span style=\"font-weight: 400;\">Can ruin the house of your dreams</span>\n\n<span style=\"font-weight: 400;\">Take time in life to cleanse your house</span>\n\n<span style=\"font-weight: 400;\">So that your soul is clean</span>\n\n \n\n \n\n<em>\"Never let hate consume you. Let go of all that hinders you from having a pure heart. Hate is a burden to carry for too long.. \" - Monica Renata</em>','Cleanse','','draft','open','open','','','','','2020-12-23 18:22:57','2020-12-24 00:22:57','',0,'http://www.monicarenata.com/?p=1876',0,'post','',0),(1856,1,'2020-12-02 13:25:56','2020-12-02 19:25:56','If you have to be anyone but yourself\r\n\r\nPerhaps you do not belong\r\n\r\n \r\n\r\nFor what is the the point in being in a room\r\n\r\nIf you can not enjoy the songs\r\n\r\n \r\n\r\nYour eyes are covered\r\n\r\nYet you are blindly dancing in the room\r\n\r\n \r\n\r\nThe music stops each time you smile\r\n\r\nYou can show no emotion but gloom\r\n\r\n \r\n\r\nEach person in the room greets you coldly\r\n\r\nYou see no glowing smiles\r\n\r\n \r\n\r\nSo why would you stay in a room\r\n\r\nThat makes you feel so down\r\n\r\n \r\n\r\nA mask you could put on\r\n\r\nAnd then you will fit right in\r\n\r\n \r\n\r\nBut why be someone you are not\r\n\r\nJust so that you can dance?\r\n\r\n \r\n\r\n<img src=\"https://assets.considerable.com/wp-content/uploads/2019/03/14155648/estrangement.jpg\" alt=\"Estranged: What to do if your child has rejected you\" width=\"408\" height=\"230\" class=\"\" />\r\n\r\n \r\n<blockquote><em><strong>\"Dance to the sound of your feet walking away from situations that are not for you. Life is more rewarding when you are true to yourself and who you are.\"</strong> - Monica Renata</em></blockquote>\r\n ','Estrangement','','publish','open','open','','estrangement','','','2020-12-02 13:25:56','2020-12-02 19:25:56','',0,'http://www.monicarenata.com/?p=1856',0,'post','',0),(1851,1,'2020-11-15 09:31:12','2020-11-15 15:31:12','The words just don\'t come out this time\r\n\r\nNot as they once did before\r\n\r\nThey stay stuck inside my head often\r\n\r\nMy mouth afraid to utter a word\r\n\r\n \r\n\r\nA word that could bring back a memory\r\n\r\nThat can remind me of what it is and what is used to be\r\n\r\nWords that join together to remind me of my grief\r\n\r\n \r\n\r\nThe words refuse to come out my mouth\r\n\r\nThey just build up in my eyes\r\n\r\nThe corners hurt because I try not to be strong\r\n\r\nI try so hard not to cry\r\n\r\n \r\n\r\nFor months I\'ve been keeping on\r\n\r\nJust making it through each day\r\n\r\nSome days are good days\r\n\r\nSome days are bad days\r\n\r\nBut each day is a new day\r\n\r\n \r\n\r\nI tend to hurt a little more\r\n\r\nBecause I see the truth of life\r\n\r\nYou can be here today\r\n\r\nAnd tomorrow never open your eyes\r\n\r\n \r\n\r\nI value every person\r\n\r\nI want you to really feel my hugs\r\n\r\nFor if anything shall happen you will know that you are loved\r\n\r\n \r\n\r\nSorrow never ends for those who remain\r\n\r\nThey tend to keep on going and things change day by day\r\n\r\nYou never forget the pain\r\n\r\nYou strive to forgive others and make things right\r\n\r\n \r\n\r\nFor months I\'ve been keeping on\r\n\r\nJust going on from day to day\r\n\r\nMore days are good days\r\n\r\nAnd some days are bad days\r\n\r\nBut I love and appreciate harder each day','Keep Going On','','publish','open','open','','keep-going-on','','','2020-11-15 09:31:12','2020-11-15 15:31:12','',0,'http://www.monicarenata.com/?p=1851',0,'post','',0);
INSERT INTO `wp_xwml_posts` VALUES (1852,1,'2020-11-15 09:30:37','2020-11-15 15:30:37','The words just don\'t come out this time\r\n\r\nNot as they once did before\r\n\r\nThey stay stuck inside my head often\r\n\r\nMy mouth afraid to utter a word\r\n\r\n \r\n\r\nA word that could bring back a memory\r\n\r\nThat can remind me of what it is and what is used to be\r\n\r\nWords that join together to remind me of my grief\r\n\r\n \r\n\r\nThe words refuse to come out my mouth\r\n\r\nThey just build up in my eyes\r\n\r\nThe corners hurt because I try not to be strong\r\n\r\nI try so hard not to cry\r\n\r\n \r\n\r\nFor months I\'ve been keeping on\r\n\r\nJust making it through each day\r\n\r\nSome days are good days\r\n\r\nSome days are bad days\r\n\r\nBut each day is a new day\r\n\r\n \r\n\r\nI tend to hurt a little more\r\n\r\nBecause I see the truth of life\r\n\r\nYou can be here today\r\n\r\nAnd tomorrow never open your eyes\r\n\r\n \r\n\r\nI value every person\r\n\r\nI want you to really feel my hugs\r\n\r\nFor if anything shall happen you will know that you are loved\r\n\r\n \r\n\r\nSorrow never ends for those who remain\r\n\r\nThey tend to keep on going and things change day by day\r\n\r\nYou never forget the pain\r\n\r\nYou strive to forgive others and make things right\r\n\r\n \r\n\r\nFor months I\'ve been keeping on\r\n\r\nJust going on from day to day\r\n\r\nMore days are good days\r\n\r\nAnd some days are bad days\r\n\r\nBut I love and appreciate harder each day','Keep Going On','','inherit','closed','closed','','1851-revision-v1','','','2020-11-15 09:30:37','2020-11-15 15:30:37','',1851,'http://www.monicarenata.com/1851-revision-v1/',0,'revision','',0),(1853,1,'2020-11-15 09:41:19','2020-11-15 15:41:19','I hope you never change yourself\r\n\r\nUnless it is for the better\r\n\r\n \r\n\r\nDon\'t let the world corrupt your heart\r\n\r\nLet love just make it better\r\n\r\n \r\n\r\nSpeak kindness to those around you\r\n\r\nNo need to voice harsh words\r\n\r\n \r\n\r\nStay true to your good heart\r\n\r\nEven if the world doesn\'t stay true to you\r\n\r\n \r\n\r\nThere is beauty in who you are\r\n\r\nThere is kindness in your cheeks\r\n\r\nGenuineness in your soul\r\n\r\nYou are a light to others including me\r\n\r\n \r\n\r\nFor sometimes we doubt ourselves because so many do us wrong\r\n\r\nBut just light you are light to others\r\n\r\nSomeone is your light as well\r\n\r\n \r\n\r\nThey will smile at you\r\n\r\nWhen you just need a smile\r\n\r\n \r\n\r\nThey will check on you\r\n\r\nWhen you feel hopeless\r\n\r\n \r\n\r\nI hope you never change who you are\r\n\r\nBecause good people can make other\'s world almost perfect\r\n\r\n ','Who You Are','','publish','open','open','','who-you-are','','','2020-11-15 09:41:19','2020-11-15 15:41:19','',0,'http://www.monicarenata.com/?p=1853',0,'post','',0),(1854,1,'2020-11-15 09:41:04','2020-11-15 15:41:04','I hope you never change yourself\r\n\r\nUnless it is for the better\r\n\r\n \r\n\r\nDon\'t let the world corrupt your heart\r\n\r\nLet love just make it better\r\n\r\n \r\n\r\nSpeak kindness to those around you\r\n\r\nNo need to voice harsh words\r\n\r\n \r\n\r\nStay true to your good heart\r\n\r\nEven if the world doesn\'t stay true to you\r\n\r\n \r\n\r\nThere is beauty in who you are\r\n\r\nThere is kindness in your cheeks\r\n\r\nGenuineness in your soul\r\n\r\nYou are a light to others including me\r\n\r\n \r\n\r\nFor sometimes we doubt ourselves because so many do us wrong\r\n\r\nBut just light you are light to others\r\n\r\nSomeone is your light as well\r\n\r\n \r\n\r\nThey will smile at you\r\n\r\nWhen you just need a smile\r\n\r\n \r\n\r\nThey will check on you\r\n\r\nWhen you feel hopeless\r\n\r\n \r\n\r\nI hope you never change who you are\r\n\r\nBecause good people can make other\'s world almost perfect\r\n\r\n ','Who You Are','','inherit','closed','closed','','1853-revision-v1','','','2020-11-15 09:41:04','2020-11-15 15:41:04','',1853,'http://www.monicarenata.com/1853-revision-v1/',0,'revision','',0),(1857,1,'2020-12-02 13:22:16','2020-12-02 19:22:16','If you have to be anyone but yourself\r\n\r\nPerhaps you do not belong\r\n\r\n \r\n\r\nFor what is the the point in being in a room\r\n\r\nIf you can not enjoy the songs\r\n\r\n \r\n\r\nYour eyes are covered\r\n\r\nYet you are blindly dancing in the room\r\n\r\n \r\n\r\nThe music stops each time you smile\r\n\r\nYou can show no emotion but gloom\r\n\r\n \r\n\r\nEach person in the room greets you coldly\r\n\r\nYou see no glowing smiles\r\n\r\n \r\n\r\nSo why would you stay in a room\r\n\r\nThat makes you feel so down\r\n\r\n \r\n\r\nA mask you could put on\r\n\r\nAnd then you will fit right in\r\n\r\n \r\n\r\nBut why be someone you are not\r\n\r\nJust so that you can dance?\r\n\r\n \r\n\r\n<img src=\"https://assets.considerable.com/wp-content/uploads/2019/03/14155648/estrangement.jpg\" alt=\"Estranged: What to do if your child has rejected you\" width=\"408\" height=\"230\" class=\"\" />\r\n\r\n ','Estrangement','','inherit','closed','closed','','1856-revision-v1','','','2020-12-02 13:22:16','2020-12-02 19:22:16','',1856,'http://www.monicarenata.com/1856-revision-v1/',0,'revision','',0),(1859,1,'2020-12-02 13:25:41','2020-12-02 19:25:41','','estrangement','','inherit','open','closed','','estrangement','','','2020-12-02 13:25:41','2020-12-02 19:25:41','',1856,'http://www.monicarenata.com/wp-content/uploads/2020/12/estrangement.jpg',0,'attachment','image/jpeg',0),(1858,1,'2020-12-02 13:24:09','2020-12-02 19:24:09','If you have to be anyone but yourself\r\n\r\nPerhaps you do not belong\r\n\r\n \r\n\r\nFor what is the the point in being in a room\r\n\r\nIf you can not enjoy the songs\r\n\r\n \r\n\r\nYour eyes are covered\r\n\r\nYet you are blindly dancing in the room\r\n\r\n \r\n\r\nThe music stops each time you smile\r\n\r\nYou can show no emotion but gloom\r\n\r\n \r\n\r\nEach person in the room greets you coldly\r\n\r\nYou see no glowing smiles\r\n\r\n \r\n\r\nSo why would you stay in a room\r\n\r\nThat makes you feel so down\r\n\r\n \r\n\r\nA mask you could put on\r\n\r\nAnd then you will fit right in\r\n\r\n \r\n\r\nBut why be someone you are not\r\n\r\nJust so that you can dance?\r\n\r\n \r\n\r\n<img src=\"https://assets.considerable.com/wp-content/uploads/2019/03/14155648/estrangement.jpg\" alt=\"Estranged: What to do if your child has rejected you\" width=\"408\" height=\"230\" class=\"\" />\r\n\r\n \r\n<blockquote><em>\"Dance to the sound of your feet walking away from situations that are not for you. Life is more rewarding when you are true to yourself and who you are.\" - Monica Renata</em></blockquote>\r\n ','Estrangement','','inherit','closed','closed','','1856-revision-v1','','','2020-12-02 13:24:09','2020-12-02 19:24:09','',1856,'http://www.monicarenata.com/1856-revision-v1/',0,'revision','',0),(1860,1,'2020-12-02 13:25:56','2020-12-02 19:25:56','If you have to be anyone but yourself\r\n\r\nPerhaps you do not belong\r\n\r\n \r\n\r\nFor what is the the point in being in a room\r\n\r\nIf you can not enjoy the songs\r\n\r\n \r\n\r\nYour eyes are covered\r\n\r\nYet you are blindly dancing in the room\r\n\r\n \r\n\r\nThe music stops each time you smile\r\n\r\nYou can show no emotion but gloom\r\n\r\n \r\n\r\nEach person in the room greets you coldly\r\n\r\nYou see no glowing smiles\r\n\r\n \r\n\r\nSo why would you stay in a room\r\n\r\nThat makes you feel so down\r\n\r\n \r\n\r\nA mask you could put on\r\n\r\nAnd then you will fit right in\r\n\r\n \r\n\r\nBut why be someone you are not\r\n\r\nJust so that you can dance?\r\n\r\n \r\n\r\n<img src=\"https://assets.considerable.com/wp-content/uploads/2019/03/14155648/estrangement.jpg\" alt=\"Estranged: What to do if your child has rejected you\" width=\"408\" height=\"230\" class=\"\" />\r\n\r\n \r\n<blockquote><em><strong>\"Dance to the sound of your feet walking away from situations that are not for you. Life is more rewarding when you are true to yourself and who you are.\"</strong> - Monica Renata</em></blockquote>\r\n ','Estrangement','','inherit','closed','closed','','1856-revision-v1','','','2020-12-02 13:25:56','2020-12-02 19:25:56','',1856,'http://www.monicarenata.com/1856-revision-v1/',0,'revision','',0),(1861,1,'2020-12-02 21:47:32','0000-00-00 00:00:00','I\'m looking for a familiar\n\nBecause I miss what used to be\n\nI search for a soul among souls\n\nThat seems familiar to me\n\n \n\nA kindness that matches mines\n\nConversation that can embrace me deep\n\nI\'m looking for my loved one in other people\n\nBecause my loved one is gone from me\n\n \n\nI miss so much about him\n\nI miss how I thought we had so much time\n\nI miss the laughter between us two\n\nI miss','Familiar','','draft','open','open','','','','','2020-12-02 21:47:32','2020-12-03 03:47:32','',0,'http://www.monicarenata.com/?p=1861',0,'post','',0),(1863,1,'2020-12-12 07:41:28','0000-00-00 00:00:00','I could be honest with myself\r\n\r\nWhy can\'t I just say how I truly feel\r\n\r\n \r\n\r\nAfraid of the probability of finding something real\r\n\r\n \r\n\r\nAnxiety heightened\r\n\r\nStressing about shit that doesn\'t make sense\r\n\r\n \r\n\r\nDo they like me?\r\n\r\nWill they find me attractive?\r\n\r\nCan this just finally be it?\r\n\r\n \r\n\r\nThe probability of finding something\r\n\r\nIn a world that glorifies fake\r\n\r\n \r\n\r\nGenuine souls searching for each other while','Probability','','draft','open','open','','','','','2020-12-12 07:41:28','2020-12-12 13:41:28','',0,'http://www.monicarenata.com/?p=1863',0,'post','',0),(1865,1,'2020-12-12 01:14:47','2020-12-12 07:14:47','<span style=\"font-weight: 400;\">There will be coffee in the morning</span>\r\n\r\n<span style=\"font-weight: 400;\">Just as there was today</span>\r\n\r\n<span style=\"font-weight: 400;\">Hot and warm as it passes my tongue</span>\r\n\r\n<span style=\"font-weight: 400;\">Great start to my day</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">I feel it through my body</span>\r\n\r\n<span style=\"font-weight: 400;\">Each time I stand and each time I lay</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">There will be coffee in the morning</span>\r\n\r\n<span style=\"font-weight: 400;\">Just as so there was today</span>','Coffee','','publish','open','open','','coffee','','','2020-12-12 01:14:47','2020-12-12 07:14:47','',0,'http://www.monicarenata.com/?p=1865',0,'post','',0),(1866,1,'2020-12-12 01:14:07','2020-12-12 07:14:07','','coffee','','inherit','open','closed','','coffee','','','2020-12-12 01:14:07','2020-12-12 07:14:07','',1865,'http://www.monicarenata.com/wp-content/uploads/2020/12/coffee.jpg',0,'attachment','image/jpeg',0),(1867,1,'2020-12-12 01:14:30','2020-12-12 07:14:30','<span style=\"font-weight: 400;\">There will be coffee in the morning</span>\r\n\r\n<span style=\"font-weight: 400;\">Just as there was today</span>\r\n\r\n<span style=\"font-weight: 400;\">Hot and warm as it passes my tongue</span>\r\n\r\n<span style=\"font-weight: 400;\">Great start to my day</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">I feel it through my body</span>\r\n\r\n<span style=\"font-weight: 400;\">Each time I stand and each time I lay</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 400;\">There will be coffee in the morning</span>\r\n\r\n<span style=\"font-weight: 400;\">Just as so there was today</span>','Coffee','','inherit','closed','closed','','1865-revision-v1','','','2020-12-12 01:14:30','2020-12-12 07:14:30','',1865,'http://www.monicarenata.com/1865-revision-v1/',0,'revision','',0),(1869,1,'2020-12-12 01:22:17','0000-00-00 00:00:00','I\'m sick of the frustration\n\nThe shame of opening up\n\nThat game we play with each other\n\nWhere we play tug-a-war with our hearts\n\n \n\nThe fear of the unknown and the fear of what could go wrong\n\nI\'m tired of modern dating\n\nAnd I\'ve honestly been tired for too long\n\n \n\nWhere are the deep conversations\n\nWhere are','Watered Down Hearts','','draft','open','open','','','','','2020-12-12 01:22:17','2020-12-12 07:22:17','',0,'http://www.monicarenata.com/?p=1869',0,'post','',0),(1870,1,'2020-12-12 07:41:28','2020-12-12 13:41:28','I could be honest with myself\r\n\r\nWhy can\'t I just say how I truly feel\r\n\r\n \r\n\r\nAfraid of the probability of finding something real\r\n\r\n \r\n\r\nAnxiety heightened\r\n\r\nStressing about shit that doesn\'t make sense\r\n\r\n \r\n\r\nDo they like me?\r\n\r\nWill they find me attractive?\r\n\r\nCan this just finally be it?\r\n\r\n \r\n\r\nThe probability of finding something\r\n\r\nIn a world that glorifies fake\r\n\r\n \r\n\r\nGenuine souls searching for each other while','Probability','','inherit','closed','closed','','1863-revision-v1','','','2020-12-12 07:41:28','2020-12-12 13:41:28','',1863,'http://www.monicarenata.com/1863-revision-v1/',0,'revision','',0),(1872,1,'2020-12-23 10:08:15','2020-12-23 16:08:15','I am sorry that I have to spread my wings\r\n\r\nI am sorry that I have to fly\r\n\r\nThe words landed gently on my ears\r\n\r\nWhy did she have to die?\r\n\r\n \r\n\r\nFor so long I went through life\r\n\r\nAnd she was my source of true strength\r\n\r\nWhat am I to do without you?\r\n\r\nI feel like there is no one left\r\n\r\n \r\n\r\nA caring heart that shall beat no more\r\n\r\nKind eyes that are eternally cold\r\n\r\nI battle myself mentally\r\n\r\nI pray her soul is in repose\r\n\r\n \r\n\r\nAs I knell and my fingers lock\r\n\r\nI am overwhelmed with grief\r\n\r\nI cry till there is nothing left\r\n\r\nI do not believe there will be any relief\r\n\r\n \r\n\r\nI am sorry I have to spread my wings\r\n\r\nI am sorry that I have to fly\r\n\r\nThose words grace my ears again\r\n\r\nAnd I feel a presence near my side\r\n\r\n \r\n\r\nJust because someone has gotten there wings\r\n\r\nDoesn\'t mean they left your side\r\n\r\n \r\n\r\n ','Angel Wings','','publish','open','open','','angel-wings','','','2020-12-23 10:08:15','2020-12-23 16:08:15','',0,'http://www.monicarenata.com/?p=1872',0,'post','',0),(1873,1,'2020-12-23 10:07:30','2020-12-23 16:07:30','','Sad','','inherit','open','closed','','sad-woman','','','2020-12-23 10:07:42','2020-12-23 16:07:42','',1872,'http://www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg',0,'attachment','image/jpeg',0),(1874,1,'2020-12-23 10:08:02','2020-12-23 16:08:02','I am sorry that I have to spread my wings\r\n\r\nI am sorry that I have to fly\r\n\r\nThe words landed gently on my ears\r\n\r\nWhy did she have to die?\r\n\r\n \r\n\r\nFor so long I went through life\r\n\r\nAnd she was my source of true strength\r\n\r\nWhat am I to do without you?\r\n\r\nI feel like there is no one left\r\n\r\n \r\n\r\nA caring heart that shall beat no more\r\n\r\nKind eyes that are eternally cold\r\n\r\nI battle myself mentally\r\n\r\nI pray her soul is in repose\r\n\r\n \r\n\r\nAs I knell and my fingers lock\r\n\r\nI am overwhelmed with grief\r\n\r\nI cry till there is nothing left\r\n\r\nI do not believe there will be any relief\r\n\r\n \r\n\r\nI am sorry I have to spread my wings\r\n\r\nI am sorry that I have to fly\r\n\r\nThose words grace my ears again\r\n\r\nAnd I feel a presence near my side\r\n\r\n \r\n\r\nJust because someone has gotten there wings\r\n\r\nDoesn\'t mean they left your side\r\n\r\n \r\n\r\n ','Angel Wings','','inherit','closed','closed','','1872-revision-v1','','','2020-12-23 10:08:02','2020-12-23 16:08:02','',1872,'http://www.monicarenata.com/1872-revision-v1/',0,'revision','',0),(1877,1,'2020-12-23 18:17:04','2020-12-24 00:17:04','','man','','inherit','open','closed','','reiki-main','','','2020-12-23 18:17:20','2020-12-24 00:17:20','',1876,'http://www.monicarenata.com/wp-content/uploads/2020/12/reiki-main-.jpg',0,'attachment','image/jpeg',0),(1879,1,'2021-01-17 07:39:23','0000-00-00 00:00:00','I wasn\'t born alone\n\n ','Simplicity','','draft','open','open','','','','','2021-01-17 07:39:23','2021-01-17 13:39:23','',0,'http://www.monicarenata.com/?p=1879',0,'post','',0),(1992,1,'2025-06-10 09:44:09','2025-06-10 14:44:09',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 800px; max-height: 940px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 800px; height: 940px; overflow: hidden;\" data-origw=\"800\" data-origh=\"940\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 641px; height: 920px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Georgia, serif;\"><span class=\"\" style=\"font-size: 20px;\">Until those moments are gone</span><o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','inherit','closed','closed','','1986-revision-v1','','','2025-06-10 09:44:09','2025-06-10 14:44:09','',1986,'https://www.monicarenata.com/?p=1992',0,'revision','',0),(1991,1,'2025-06-10 09:42:31','2025-06-10 14:42:31',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 780px; max-height: 950px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 780px; height: 950px; overflow: hidden;\" data-origw=\"780\" data-origh=\"950\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 641px; height: 920px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 18px; font-family: Verdana, Geneva, sans-serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Verdana, Geneva, sans-serif;\">Until those moments are gone<o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','inherit','closed','closed','','1986-revision-v1','','','2025-06-10 09:42:31','2025-06-10 14:42:31','',1986,'https://www.monicarenata.com/?p=1991',0,'revision','',0),(1948,1,'2024-10-17 10:31:35','2024-10-17 15:31:35','Disappointment is so hard to swallow\r\n\r\nEspecially when it comes in large gulps\r\n\r\nDrowning in your own misery\r\n\r\nThat you have somewhat caused\r\n\r\n \r\n\r\nYet no matter how low one may go\r\n\r\nThey can always rise up\r\n\r\nBut you decide to stay low\r\n\r\nYou have simply given up\r\n\r\n \r\n\r\nYour skin reflects your feelings\r\n\r\nYou no longer have a glow\r\n\r\nHair disheveled\r\n\r\nClothes are stained\r\n\r\nYou look a fricking mess\r\n\r\n \r\n\r\nI could sit here and lecture you\r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\r\n\r\non someone who lives in a state of dying\r\n\r\n \r\n\r\nFor too long you have sat in that corner\r\n\r\nYou have let worry and doubt fill your head\r\n\r\nYou have given up on your joys\r\n\r\nYou choose to see the negatives instead\r\n\r\n \r\n\r\nThe love that you receive\r\n\r\nYou reject every single ounce\r\n\r\nThe friendships that you have in life\r\n\r\nYou neglect them until they phase out\r\n\r\n \r\n\r\nYou cry and voice your frustrations\r\n\r\nYet you refuse to make a change\r\n\r\nYou do the same things over and over again\r\n\r\nPerhaps you are insane\r\n\r\n \r\n\r\nAnd here I am once again\r\n\r\nBecause I actually care and have love for you\r\n\r\nI am here to listen and be there\r\n\r\nBut I get tired too\r\n\r\n \r\n\r\nI wish you saw that rope of hope\r\n\r\nThat dangles in your face daily\r\n\r\nI wish you believed in yourself\r\n\r\nI wish you believed in your abilities\r\n\r\n \r\n\r\nI am here and I am giving my all\r\n\r\nAnd unfortunately, I am realizing this isn\'t enough\r\n\r\nI can assist\r\n\r\nBut I can\'t save you\r\n\r\nYou must finally save yourself\r\n\r\n \r\n<blockquote>Remember the rope of hope that God threw to us to hang onto. There were three strands to that rope:\r\n<ol>\r\n <li>First, there was God’s person (the reminder of who he is and his character; of his power and love and faithfulness that never change).</li>\r\n <li>Then, there were God’s past deeds (the reminder of the things God did in history that prove he is faithful, and strong, and reliable: We know what he did from the Bible, from the lives of the saints, and from our own lives and the lives of people we know).</li>\r\n <li>Finally, the third strand is God’s promises, his plan. As it says in the very first paragraph of the Catechism, God has a “plan of sheer goodness.” He created us to share in his blessed life and has made many firm promises that we can count on, to help us to get there.</li>\r\n</ol>\r\nFaith in those three things together—God’s person, his past deeds, and his promised plan—came together in a strong, three-stranded cord that gave us something to hang onto. It lifted our eyes off the problem and became a lifeline of hope that didn’t depend on the outcome but on God.\r\n\r\n<a href=\"https://comeintotheword.com/faith-and-the-rope-of-hope/\">https://comeintotheword.com/faith-and-the-rope-of-hope/</a></blockquote>\r\n ','Save Yourself','\"I could sit here and lecture you \r\n\r\nTell you that bad times don\'t last forever\r\n\r\nBut what is the point in wasting my words\"','publish','open','open','','save-yourself','','','2024-10-17 10:31:35','2024-10-17 15:31:35','',0,'https://www.monicarenata.com/?p=1948',0,'post','',0),(1953,1,'2024-11-04 07:16:20','2024-11-04 13:16:20','<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">I will listen to our disagreements</p>\r\n<p style=\"text-align: center;\">And take the words really in</p>\r\n \r\n<p style=\"text-align: center;\">I will speak my peace so calmly</p>\r\n<p style=\"text-align: center;\">I will let my words ring true</p>\r\n<p style=\"text-align: center;\">I will cast aside my pride</p>\r\n<p style=\"text-align: center;\">I will communicate with you</p>\r\n \r\n<p style=\"text-align: center;\">I will be vulnerable in that moment</p>\r\n<p style=\"text-align: center;\">I will let my walls completely down</p>\r\n<p style=\"text-align: center;\">I will take all of the punches</p>\r\n<p style=\"text-align: center;\">I will cry and not back down</p>\r\n \r\n<p style=\"text-align: center;\">I will work towards a resolution</p>\r\n<p style=\"text-align: center;\">I will grant you grace in this time</p>\r\n<p style=\"text-align: center;\">I will recognize the wrongs I have done</p>\r\n<p style=\"text-align: center;\">I will attempt to fix it somehow</p>\r\n \r\n<p style=\"text-align: center;\">I will communicate even though it is hard</p>\r\n<p style=\"text-align: center;\">I will let you speak without interruption</p>\r\n<p style=\"text-align: center;\">I will let your words pierce my heart</p>\r\n<p style=\"text-align: center;\">I will not give up until I am certain</p>\r\n \r\n<p style=\"text-align: center;\">Certain that we have expressed ourselves fully</p>\r\n<p style=\"text-align: center;\">Certain that I have shown myself fully unclothed</p>\r\n<p style=\"text-align: center;\">Certain that I have extended myself fully</p>\r\n<p style=\"text-align: center;\">Certain that I have given you my all</p>\r\n \r\n<p style=\"text-align: center;\">I understand that we will not always be on the same page</p>\r\n<p style=\"text-align: center;\">I know that difficulties will arise in life</p>\r\n<p style=\"text-align: center;\">But I want to work through the ups and downs</p>\r\n<p style=\"text-align: center;\">Because ups and downs are a part of life</p>\r\n \r\n<p style=\"text-align: center;\">But...</p>\r\n \r\n<p style=\"text-align: center;\">One day I will believe you</p>\r\n<p style=\"text-align: center;\">I will believe every word that you say</p>\r\n<p style=\"text-align: center;\">And even though it is hard to take in</p>\r\n<p style=\"text-align: center;\">I\'ll figure out how to make a way</p>\r\n \r\n\r\n \r\n\r\n<em>\"Arguments are a part of life. However, it is important to be mindful of the words that you use. Sometimes we may use harsh words in that moment because of how we currently feel, but those words can one day become the truth in another\'s ears. \" - Monica Renata</em>','I\'ll Believe You','','publish','open','open','','ill-believe-you','','','2024-11-04 07:16:20','2024-11-04 13:16:20','',0,'https://www.monicarenata.com/?p=1953',0,'post','',0),(1797,1,'2018-10-04 22:50:36','2018-10-05 03:50:36','<p style=\"text-align: center;\">Who am I to remain complacent</p>\r\n<p style=\"text-align: center;\">As the world so passes me by</p>\r\n<p style=\"text-align: center;\">Let all my blessings slip away</p>\r\n<p style=\"text-align: center;\">Because my hands are idle while my mind runs wild</p>\r\n \r\n<p style=\"text-align: center;\">What’s the point of an idea?</p>\r\n<p style=\"text-align: center;\">If I talk and never do the work</p>\r\n<p style=\"text-align: center;\">Let all my notions come to fruition</p>\r\n<p style=\"text-align: center;\">By others who listened to me and then produced</p>\r\n \r\n<p style=\"text-align: center;\">I pray daily</p>\r\n<p style=\"text-align: center;\">But even God knows</p>\r\n<p style=\"text-align: center;\">That without effort I cannot go far</p>\r\n \r\n<p style=\"text-align: center;\">I speak to my elders</p>\r\n<p style=\"text-align: center;\">Who always voiced</p>\r\n<p style=\"text-align: center;\">\"It’s good to dream but hard work takes you far\"</p>\r\n \r\n<p style=\"text-align: center;\">So who am I to be less than great?</p>\r\n<p style=\"text-align: center;\">Who am I to not develop with time</p>\r\n<p style=\"text-align: center;\">Success does not come from just what you think</p>\r\n<p style=\"text-align: center;\">But what you execute in your life</p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: center;\"><span style=\"color: #000080;\"><em><b>\"Speak life into yourself and you will awaken the soul that was held prisoner by your doubts and complacency.\" - Monica Renata</b></em></span></p>\r\n</blockquote>\r\n<img src=\"https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg\" alt=\"Image result for talking to a mirror\" class=\"aligncenter\" />','Mirror Motivation','','publish','open','open','','mirror-motivation','','','2018-10-04 22:50:36','2018-10-05 03:50:36','',0,'http://www.monicarenata.com/?p=1797',0,'post','',0),(1798,1,'2018-10-04 22:44:45','2018-10-05 03:44:45','<p style=\"text-align: center;\">Who am I to remain complacent</p>\r\n<p style=\"text-align: center;\">As the world so passes me by</p>\r\n<p style=\"text-align: center;\">Let all my blessings slip away</p>\r\n<p style=\"text-align: center;\">Because my hands are idle while my mind runs wild</p>\r\n \r\n<p style=\"text-align: center;\">What’s the point of an idea?</p>\r\n<p style=\"text-align: center;\">If I talk and never do the work</p>\r\n<p style=\"text-align: center;\">Let all my notions come to fruition</p>\r\n<p style=\"text-align: center;\">By others who listened to me and then produced</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I pray daily</p>\r\n<p style=\"text-align: center;\">But even God knows</p>\r\n<p style=\"text-align: center;\">That without effort I cannot go far</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">I speak to my elders</p>\r\n<p style=\"text-align: center;\">Who always voiced</p>\r\n<p style=\"text-align: center;\">\"It’s good to dream but hard work takes you far\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">So who am I to be less than great?</p>\r\n<p style=\"text-align: center;\">Who am I to not develop with time</p>\r\n<p style=\"text-align: center;\">Success does not come from just what you think</p>\r\n<p style=\"text-align: center;\">But what you execute in your life</p>\r\n \r\n\r\n<img src=\"https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg\" alt=\"Image result for talking to a mirror\" class=\"aligncenter\" />','Mirror Motivation','','inherit','closed','closed','','1797-revision-v1','','','2018-10-04 22:44:45','2018-10-05 03:44:45','',1797,'http://www.monicarenata.com/1797-revision-v1/',0,'revision','',0),(1799,1,'2018-10-04 22:45:53','2018-10-05 03:45:53','<p style=\"text-align: center;\">Who am I to remain complacent</p>\r\n<p style=\"text-align: center;\">As the world so passes me by</p>\r\n<p style=\"text-align: center;\">Let all my blessings slip away</p>\r\n<p style=\"text-align: center;\">Because my hands are idle while my mind runs wild</p>\r\n \r\n<p style=\"text-align: center;\">What’s the point of an idea?</p>\r\n<p style=\"text-align: center;\">If I talk and never do the work</p>\r\n<p style=\"text-align: center;\">Let all my notions come to fruition</p>\r\n<p style=\"text-align: center;\">By others who listened to me and then produced</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">I pray daily</p>\r\n<p style=\"text-align: center;\">But even God knows</p>\r\n<p style=\"text-align: center;\">That without effort I cannot go far</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">I speak to my elders</p>\r\n<p style=\"text-align: center;\">Who always voiced</p>\r\n<p style=\"text-align: center;\">\"It’s good to dream but hard work takes you far\"</p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\">So who am I to be less than great?</p>\r\n<p style=\"text-align: center;\">Who am I to not develop with time</p>\r\n<p style=\"text-align: center;\">Success does not come from just what you think</p>\r\n<p style=\"text-align: center;\">But what you execute in your life</p>\r\n \r\n\r\n<img src=\"https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg\" alt=\"Image result for talking to a mirror\" class=\"aligncenter\" />','Mirror Motivation','','inherit','closed','closed','','1797-revision-v1','','','2018-10-04 22:45:53','2018-10-05 03:45:53','',1797,'http://www.monicarenata.com/1797-revision-v1/',0,'revision','',0),(1800,1,'2018-10-04 22:47:55','2018-10-05 03:47:55','<p style=\"text-align: center;\">Who am I to remain complacent</p>\r\n<p style=\"text-align: center;\">As the world so passes me by</p>\r\n<p style=\"text-align: center;\">Let all my blessings slip away</p>\r\n<p style=\"text-align: center;\">Because my hands are idle while my mind runs wild</p>\r\n \r\n<p style=\"text-align: center;\">What’s the point of an idea?</p>\r\n<p style=\"text-align: center;\">If I talk and never do the work</p>\r\n<p style=\"text-align: center;\">Let all my notions come to fruition</p>\r\n<p style=\"text-align: center;\">By others who listened to me and then produced</p>\r\n \r\n<p style=\"text-align: center;\">I pray daily</p>\r\n<p style=\"text-align: center;\">But even God knows</p>\r\n<p style=\"text-align: center;\">That without effort I cannot go far</p>\r\n \r\n<p style=\"text-align: center;\">I speak to my elders</p>\r\n<p style=\"text-align: center;\">Who always voiced</p>\r\n<p style=\"text-align: center;\">\"It’s good to dream but hard work takes you far\"</p>\r\n \r\n<p style=\"text-align: center;\">So who am I to be less than great?</p>\r\n<p style=\"text-align: center;\">Who am I to not develop with time</p>\r\n<p style=\"text-align: center;\">Success does not come from just what you think</p>\r\n<p style=\"text-align: center;\">But what you execute in your life</p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: center;\"><span style=\"color: #000080;\"><em><b>\"Speak life into yourself and you will awaken the soul that was held prisoner by your doubts and complacency.\" - Monica Renata</b></em></span></p>\r\n</blockquote>\r\n<img src=\"https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg\" alt=\"Image result for talking to a mirror\" class=\"aligncenter\" />','Mirror Motivation','','inherit','closed','closed','','1797-revision-v1','','','2018-10-04 22:47:55','2018-10-05 03:47:55','',1797,'http://www.monicarenata.com/1797-revision-v1/',0,'revision','',0),(1804,1,'2019-03-20 22:08:37','2019-03-21 03:08:37','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\"><span></span>I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>\r\n \r\n\r\n \r\n\r\n<em>\"When you learn to break away from your old self, you will be able to experience a growth that will propel you further in life. Look back to learn, but no matter what, keep moving forward.\" - Monica Renata</em>\r\n\r\n<img src=\"https://steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg\" width=\"1600\" height=\"1126\" class=\"aligncenter size-medium\" />','The Journey To The Win','','publish','open','open','','the-journey-to-the-win','','','2019-03-20 22:08:37','2019-03-21 03:08:37','',0,'http://www.monicarenata.com/?p=1804',0,'post','',1),(1805,1,'2019-03-20 21:58:00','2019-03-21 02:58:00','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>','The Journey To The Win','','inherit','closed','closed','','1804-revision-v1','','','2019-03-20 21:58:00','2019-03-21 02:58:00','',1804,'http://www.monicarenata.com/1804-revision-v1/',0,'revision','',0),(1806,1,'2019-03-20 22:00:19','2019-03-21 03:00:19','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>','The Journey To The Win','','inherit','closed','closed','','1804-revision-v1','','','2019-03-20 22:00:19','2019-03-21 03:00:19','',1804,'http://www.monicarenata.com/1804-revision-v1/',0,'revision','',0),(1808,1,'2019-03-20 22:06:03','2019-03-21 03:06:03','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>\r\n \r\n\r\n \r\n\r\n<em>\"When you learn to break away from your old self, you will be able to experience a growth that will propel you further in life. Look back to learn, but no matter what, keep moving forward.\" - Monica Renata</em>\r\n\r\n<img src=\"https://steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg\" width=\"1600\" height=\"1126\" class=\"aligncenter size-medium\" />','The Journey To The Win','','inherit','closed','closed','','1804-revision-v1','','','2019-03-20 22:06:03','2019-03-21 03:06:03','',1804,'http://www.monicarenata.com/1804-revision-v1/',0,'revision','',0),(1807,1,'2019-03-20 22:02:32','2019-03-21 03:02:32','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>\r\n \r\n\r\n<a href=\"https://www.google.com/url?sa=i&source=images&cd=&cad=rja&uact=8&ved=2ahUKEwiO_qSln5LhAhVL6YMKHRY-BkwQjRx6BAgBEAU&url=https%3A%2F%2Fsteemkr.com%2Fbitcoin%2F%40rezilli%2Fa-bitcoin-journey-my-return-to-first-principles&psig=AOvVaw0Ves0dsr7AuQehjotCmupc&ust=1553223669141907\">https://www.google.com/url?sa=i&source=images&cd=&cad=rja&uact=8&ved=2ahUKEwiO_qSln5LhAhVL6YMKHRY-BkwQjRx6BAgBEAU&url=https%3A%2F%2Fsteemkr.com%2Fbitcoin%2F%40rezilli%2Fa-bitcoin-journey-my-return-to-first-principles&psig=AOvVaw0Ves0dsr7AuQehjotCmupc&ust=1553223669141907</a>','The Journey To The Win','','inherit','closed','closed','','1804-revision-v1','','','2019-03-20 22:02:32','2019-03-21 03:02:32','',1804,'http://www.monicarenata.com/1804-revision-v1/',0,'revision','',0),(1809,1,'2019-03-20 22:08:37','2019-03-21 03:08:37','<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the lowest of lows</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve dabbled in the highs</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And through each and every struggle</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I witnessed strengths and flaws of mines</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was too caring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\"><span></span>I was too kind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But those were also my biggest strengths</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I dwelled too much on the past</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I forgave</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But reminded others that I never would forget</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let seasons go by</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And still had a cold heart in the Spring</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve let false friends come along my journey of life</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Even when they shouldn’t stand beside me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I held on to my feelings</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I made others believe I did not feel a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And the whole time I foolishly believed this to be my biggest strength</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I let my passion just flee from my mind</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I became emotionally numb</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">And in that instant I realized that I went about things wrong</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I was stubborn for a long time</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I did not change a thing</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">All the while thinking</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">That I was doing what’s best for me</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created a wall that was impenetrable</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I created boundaries that didn’t need to exist</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I limited access to myself and missed out on many of life’s gifts</span></p>\r\n<p style=\"text-align: center;\">\r\n\r\n</p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve fallen countless times </span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">I’ve also stumbled</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But most importantly I finally got up</span></p>\r\n<p style=\"text-align: center;\"></p>\r\n \r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The Journey through life is a hard one indeed</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">But so far, I know if I change my mindset</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">By the end, I will have won</span></p>\r\n \r\n\r\n \r\n\r\n<em>\"When you learn to break away from your old self, you will be able to experience a growth that will propel you further in life. Look back to learn, but no matter what, keep moving forward.\" - Monica Renata</em>\r\n\r\n<img src=\"https://steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg\" width=\"1600\" height=\"1126\" class=\"aligncenter size-medium\" />','The Journey To The Win','','inherit','closed','closed','','1804-revision-v1','','','2019-03-20 22:08:37','2019-03-21 03:08:37','',1804,'http://www.monicarenata.com/1804-revision-v1/',0,'revision','',0),(1811,1,'2019-03-20 22:43:58','2019-03-21 03:43:58','<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His bright eyes and charming charisma I cannot deny</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The complexity of his mind keeps me intrigued and blissfully satisfied</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His kind nature and his caring heart resonates with the kindness in my soul</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His hand I’ll hold forever until we both grow frail and old</span></p>\r\n \r\n\r\n<img src=\"https://pixel.nymag.com/imgs/fashion/daily/2018/03/12/seo/ex-dreams-1.w710.h473.jpg\" width=\"710\" height=\"473\" class=\"alignnone size-medium\" />','His','','publish','open','open','','his','','','2019-03-20 22:43:58','2019-03-21 03:43:58','',0,'http://www.monicarenata.com/?p=1811',0,'post','',0),(1812,1,'2019-03-20 22:43:26','2019-03-21 03:43:26','<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His bright eyes and charming charisma I cannot deny</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">The complexity of his mind keeps me intrigued and blissfully satisfied</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His kind nature and his caring heart resonates with the kindness in my soul</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">His hand I’ll hold forever until we both grow frail and old</span></p>\r\n \r\n\r\n<img src=\"https://pixel.nymag.com/imgs/fashion/daily/2018/03/12/seo/ex-dreams-1.w710.h473.jpg\" width=\"710\" height=\"473\" class=\"alignnone size-medium\" />','His','','inherit','closed','closed','','1811-revision-v1','','','2019-03-20 22:43:26','2019-03-21 03:43:26','',1811,'http://www.monicarenata.com/1811-revision-v1/',0,'revision','',0),(1813,1,'2019-03-20 22:58:39','2019-03-21 03:58:39','<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If my love shall ever go away </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And eternity just stops</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my heart still beat for you</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\"><span></span>Even though time no longer tick tocks?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will the feeling of you touching my hair</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Make my skin tingle no more?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will I hesitate like I would in the past</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If you walked out that door?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my body yearn for you as it did</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For all those countless nights?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Or will I be numb inside</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And pause just like our clocks</span></p>\r\n \r\n\r\n<img src=\"https://ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg\" width=\"650\" height=\"650\" class=\"aligncenter size-medium\" />','Love Stop','','publish','open','open','','love-stop','','','2019-03-20 22:58:39','2019-03-21 03:58:39','',0,'http://www.monicarenata.com/?p=1813',0,'post','',0),(1814,1,'2019-03-20 22:49:02','2019-03-21 03:49:02','<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If my love shall ever go away </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And eternity just stops</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my heart still beat for you</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Even though time no longer tick tocks?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will the feeling of you touching my hair</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Make my skin tingle no more?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will I hesitate like I would in the past</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If you walked out that door?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my body yearn for you as it did</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For all those countless nights?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Or will I be numb inside</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And pause just like our clocks</span></p>\r\n \r\n\r\n<img src=\"https://ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg\" width=\"650\" height=\"650\" class=\"aligncenter size-medium\" />','','','inherit','closed','closed','','1813-revision-v1','','','2019-03-20 22:49:02','2019-03-21 03:49:02','',1813,'http://www.monicarenata.com/1813-revision-v1/',0,'revision','',0),(1815,1,'2019-03-20 22:58:39','2019-03-21 03:58:39','<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If my love shall ever go away </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And eternity just stops</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my heart still beat for you</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\"><span></span>Even though time no longer tick tocks?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will the feeling of you touching my hair</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Make my skin tingle no more?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will I hesitate like I would in the past</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">If you walked out that door?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Will my body yearn for you as it did</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">For all those countless nights?</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n \r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Or will I be numb inside</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">And pause just like our clocks</span></p>\r\n \r\n\r\n<img src=\"https://ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg\" width=\"650\" height=\"650\" class=\"aligncenter size-medium\" />','Love Stop','','inherit','closed','closed','','1813-revision-v1','','','2019-03-20 22:58:39','2019-03-21 03:58:39','',1813,'http://www.monicarenata.com/1813-revision-v1/',0,'revision','',0),(1816,1,'2019-08-19 09:10:16','2019-08-19 14:10:16',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 523px; height: 937px; z-index: 14; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-c25ffa93-7fff-6b29-e1a7-8191b93448d7\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span></span>Unseeable Descent</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">That overfilled with my tears</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Got lost in every current</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet land was so near</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could see the raft to save myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I did not even reach out my hand</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Deeper I feel into the abyss</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Emotions freezing my limbs</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">My body floated like a feather</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I saw glimmers of light above</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But closed my eyes so I could feel better</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could have saved myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But my sadness continued to bring me down</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I became lost in my feelings</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">So lost I couldn’t move or make a sound</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I was surrounded by family and friends</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I am lost within a world within my world</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And everyone thinks I’m okay</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n \r\n<p dir=\"ltr\"><img src=\"https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" width=\"596\" height=\"446\" alt=\"LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" class=\"alignleft\" /></p>','Unseeable Descent','','publish','open','open','','unseeable-descent','','','2019-08-21 13:43:36','2019-08-21 18:43:36','',0,'http://www.monicarenata.com/unseeable-descent/',0,'post','',1),(1818,1,'2019-08-21 13:42:54','2019-08-21 18:42:54',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 523px; height: 937px; z-index: 14; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-c25ffa93-7fff-6b29-e1a7-8191b93448d7\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Unseeable Descent</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">That overfilled with my tears</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Got lost in every current</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet land was so near</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could see the raft to save myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I did not even reach out my hand</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Deeper I feel into the abyss</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Emotions freezing my limbs</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">My body floated like a feather</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I saw glimmers of light above</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But closed my eyes so I could feel better</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could have saved myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But my sadness continued to bring me down</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I became lost in my feelings</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">So lost I couldn’t move or make a sound</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I was surrounded by family and friends</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I am lost within a world within my world</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And everyone thinks I’m okay</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n \r\n<p dir=\"ltr\"><img src=\"https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" width=\"596\" height=\"446\" alt=\"LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" class=\"alignleft\" /></p>','Unseeable Descent','','inherit','closed','closed','','1816-autosave-v1','','','2019-08-21 13:42:54','2019-08-21 18:42:54','',1816,'http://www.monicarenata.com/1816-autosave-v1/',0,'revision','',0),(1819,1,'2019-08-21 13:43:36','2019-08-21 18:43:36',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 523px; height: 937px; z-index: 14; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"> <span id=\"docs-internal-guid-c25ffa93-7fff-6b29-e1a7-8191b93448d7\"></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span></span>Unseeable Descent</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-weight: bold; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">That overfilled with my tears</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Got lost in every current</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet land was so near</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could see the raft to save myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I did not even reach out my hand</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Deeper I feel into the abyss</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Emotions freezing my limbs</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">My body floated like a feather</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I saw glimmers of light above</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But closed my eyes so I could feel better</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I could have saved myself</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But my sadness continued to bring me down</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I became lost in my feelings</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">So lost I couldn’t move or make a sound</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I fell into the deep blue sea</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yet I was surrounded by family and friends</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I am lost within a world within my world</span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; text-align: center; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">And everyone thinks I’m okay</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Georgia; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\"><span></span>Zedity</a></span></div>\r\n</div>\r\n</div>\r\n \r\n<p dir=\"ltr\"><img src=\"https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" width=\"596\" height=\"446\" alt=\"LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9\" class=\"alignleft\" /></p>','Unseeable Descent','','inherit','closed','closed','','1816-revision-v1','','','2019-08-21 13:43:36','2019-08-21 18:43:36','',1816,'http://www.monicarenata.com/1816-revision-v1/',0,'revision','',0),(1822,1,'2019-09-26 10:05:08','2019-09-26 15:05:08',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 680px; height: 852px; z-index: 14; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"> If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many would be amused</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many would probably cover their ears</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">For I will speak the truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But what is truth to others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">And what is truth to me</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Defining characteristics that blend</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Yet have no connecting piece</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when we are speaking our truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with being opinionated?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with expressing YOU?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I do so with no malicious intent</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Yet so many would claim to feel targeted</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Or even say I tried to hurt them in the end</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why is it always \"watch what you say\"?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why should expressing yourself be a cultural crime?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Am I wrong for disliking what I dislike?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Am I wrong for speaking my mind?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when they are used to support a person\'s claim</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Today we sit back and hesitate</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">And be careful of every word we say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But the hell what that!</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s the purpose?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why limit your expression <span style=\"background-color: transparent;\">based on that societal rejection fear? </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I know that so many will be amused</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many will say I targeted them</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But what I will speak is my truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when they are describing my feelings and me</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with saying I don\'t agree?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with being me?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I used to feel bad and think I was wrong</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">For expressing how I felt</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But maybe society has it wrong</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Maybe we should let others express themselves again</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Thin Skin Society','','inherit','closed','closed','','1821-revision-v1','','','2019-09-26 10:05:08','2019-09-26 15:05:08','',1821,'http://www.monicarenata.com/1821-revision-v1/',0,'revision','',0),(1821,1,'2019-09-26 11:02:59','2019-09-26 16:02:59',' \r\n<div id=\"zed_a26i8slh\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1000px; max-height: 1000px;\">\r\n<div id=\"zed_a26i8slh\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1000px; height: 1000px; overflow: hidden;\" data-origw=\"1000\" data-origh=\"1000\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 200px; height: 100px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 20px; top: 20px; width: 680px; height: 852px; z-index: 14; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"> If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many would be amused</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many would probably cover their ears</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">For I will speak the truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But what is truth to others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">And what is truth to me</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Defining characteristics that blend</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Yet have no connecting piece</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when we are speaking our truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with being opinionated?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with expressing YOU?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I do so with no malicious intent</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Yet so many would claim to feel targeted</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Or even say I tried to hurt them in the end</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why is it always \"watch what you say\"?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why should expressing yourself be a cultural crime?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Am I wrong for disliking what I dislike?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Am I wrong for speaking my mind?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when they are used to support a person\'s claim</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Today we sit back and hesitate</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">And be careful of every word we say</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But the hell what that!</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s the purpose?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why limit your expression <span style=\"background-color: transparent;\">based on that societal rejection fear? </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">If I do dare to speak my peace</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I know that so many will be amused</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">So many will say I targeted them</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But what I will speak is my truth</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Why do words hurt others</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Especially when they are describing my feelings and me</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with saying I don\'t agree?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">What\'s wrong with being me?</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">I used to feel bad and think I was wrong</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">For expressing how I felt</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">But maybe society has it wrong</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\">Maybe we should let others express themselves again</span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif; font-size: 15px;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: Coda, sans-serif;\"><span class=\"zedity-spacer\"> </span></span></p>\r\n<p style=\"text-align: center; margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"zedity-spacer\"> </span></p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','Thin Skin Society','','publish','open','open','','thin-skin-society','','','2019-09-26 11:02:59','2019-09-26 16:02:59','',0,'http://www.monicarenata.com/?p=1821',0,'post','',0),(1824,1,'2019-11-13 23:41:16','2019-11-14 05:41:16',' \n<div id=\"zed_86x2p5eg\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 990px; max-height: 1900px;\">\n<div id=\"zed_86x2p5eg\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 990px; height: 1900px; overflow: hidden;\" data-origw=\"990\" data-origh=\"1900\">\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 29px; top: 12px; width: 929px; height: 1869px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"> </span><span id=\"docs-internal-guid-e6d45465-7fff-67ba-cf21-17d8e5972ca1\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">What does it mean to be happy? As I sit and ponder the thought of this I can hear all of the quotes that I recite to myself. All of the motivation speeches I have heard, All of the long talks with family and friends, The books that I have read and even the random post on social media my eyes have encountered have spoken of this. And still I sit here wondering what the hell does it mean to be happy. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I remember spans of my life that I just had a smile on my face. I took so many pictures. I wasn’t where I wanted to be in life, but I damn sure enjoyed the moment. Whether it was that specific moment that made up for that span in my life, I don’t know. I’ve always said that life is too short to be anything but happy and while this is true I have found myself moping around and completely lost within myself. I haven’t been able to bring that genuine smile back that I have had for quite some time. I can’t say that I do not recall what happened, but I know that some situations have changed me. And mostly those situations had nothing to do with me. Well it had something to do with m… I was too trusting and too nice ...but why should I be upset with myself for doing that. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been upset with myself for showing others kindness and being taken advantage of. This has made me question who I am as a person because if I was an asshole, I would not be in the situation that I am in now. I would be in a better spot. I should have had a wall built up. I should have been selfish and said f*&k everybody. I should have not helped anyone in need. I should have been downright evil……...but that isn’t me. And what is the point in being cold in a world that was meant to shine brighter than the summer sun? </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been angry at myself for being a good person…..But as I sit here and think about it, this has got to be the dumbest shit I have ever heard in my life. I am mad about this??? This shit!!?? I should be mad at the assholes who took advantage of my kindness or even used me. But the kind person inside me just says to forgive them and move on…but you can’t move on from something that can affect you in the long run. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For the past year, I have been dealing with multiple cases of my personal information being used by individuals that I thought were my friends. This situation has affected my credit and also my finances. I’ve struggled with trying to clear my name, obtain lawyers, and then secure the funds to pay for legal aid. I don’t even know if this all could be cleared. I don’t know if my finances are completely ruined. I’m basically in purgatory and it sucks. I know that I have to do something before the statute of limitations expires but I’ve just been so depressed the past few months about it because I felt like I haven\'t gotten anywhere with it. I had a loan attempt on my name. I had a business created in my name that I had no part in. I had to replace all my credit cards. I’ve been getting billed for stuff that I didn’t even buy. I just been going through it. I’ve tried to say that everything was okay but I could tell things weren’t because I couldn’t even write anymore and I love writing…………..I have been feeling defeated. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yesterday, I had a friend reach out to me. Each time for the past three months when this friend asked me to meet up and talk I declined. When they asked me what was wrong I said everything was fine. I am </span><span style=\"font-size: 14pt; background-color: transparent; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">always </span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">fine……...well that is what I always say……But yesterday, I decided to just spill it all. I was stuck in traffic last night after the gym. I was sitting in my car just talking on the bluetooth speaker and telling my friend what really was going on. I finally had the courage to speak on all of this. As soon as I finished saying everything that happened a car slammed into the back of me. I just wanted to cry………</span></span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I was at a breaking point. Everything that was going wrong in my life, I finally decided to open up and speak about it and THEN THIS!!! Yesterday evening I was angry. I was angry when I was sitting in my car. I was angry when the cop was creating the report. And I just sat there feeling defeated because I felt overwhelmed with life. I drove home with my head pounding. I don’t know if it was from the accident or just from my feelings…but as I pulled up in my driveway I started thinking about how I finally was at a point to turn my life around, and then I got hit…….I was ready to be happy again and let all that hurt go and then someone slammed into my car……...I was so close…………. I was almost there with my healing…..</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">“Never let a minor issue impede your overall progress” </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">This is something that I have told myself all throughout life. Whether it was with my studies, personal ventures, or whatever. I’ve always been the type of person who will push through and make it to the end no matter what. I will work even when I am sick because I truly believe in reaching my end goal no matter what. </span><span style=\"font-size: 14pt; background-color: transparent; font-weight: bold; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t let little things stop me from accomplishing MAJOR goals</span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">………….In other words, I can’t let this accident stop me from being happy…. Because I worked too damn hard to get to that point on November 12th, 2019 at 6:30pm. </span></span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t sweat the small stuff. I just can’t allow myself to do that anymore. I have to be happy. I choose to be happy. That’s how I want it. No longer can I be upset with myself for being kind to others. Sure what happened to me sucks and will probably take so much time and money to clear up…. But I can no longer allow all of that to deter me from being me ...Good ole happy Monica…….</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Life\'s too short to be anything but happy. I say this over and over and over again. And I apologize to myself for forgetting this. Sometimes life is rough, but you can’t let that get you all the way down. There is always something to be happy about. And sometimes it is hard to find it. Sometimes it is VERY, VERY, VERY hard lol. But the rain doesn’t last forever…...I’m happy that I am finally getting out of this rainy season of my life…….</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">-Monica Renata</span></p>\n\n<div><span style=\"font-size: 14pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\n \n\n</div>\n</div>\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\n</div>\n</div>\n ','It has been a while...... Let me write.....','','publish','open','open','','it-has-been-a-while-let-me-write','','','2019-11-26 11:32:26','2019-11-26 17:32:26','',0,'http://www.monicarenata.com/?p=1824',0,'post','',0),(1825,1,'2019-11-13 23:40:02','2019-11-14 05:40:02',' \r\n<div id=\"zed_86x2p5eg\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 990px; max-height: 1900px;\">\r\n<div id=\"zed_86x2p5eg\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 990px; height: 1900px; overflow: hidden;\" data-origw=\"990\" data-origh=\"1900\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 29px; top: 12px; width: 929px; height: 1869px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"> </span><span id=\"docs-internal-guid-e6d45465-7fff-67ba-cf21-17d8e5972ca1\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span></span></p>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">What does it mean to be happy? As I sit and ponder the thought of this I can hear all of the quotes that I recite to myself. All of the motivation speeches I have heard, All of the long talks with family and friends, The books that I have read and even the random post on social media my eyes have encountered have spoken of this. And still I sit here wondering what the hell does it mean to be happy. </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I remember spans of my life that I just had a smile on my face. I took so many pictures. I wasn’t where I wanted to be in life, but I damn sure enjoyed the moment. Whether it was that specific moment that made up for that span in my life, I don’t know. I’ve always said that life is too short to be anything but happy and while this is true I have found myself moping around and completely lost within myself. I haven’t been able to bring that genuine smile back that I have had for quite some time. I can’t say that I do not recall what happened, but I know that some situations have changed me. And mostly those situations had nothing to do with me. Well it had something to do with m… I was too trusting and too nice ...but why should I be upset with myself for doing that. </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been upset with myself for showing others kindness and being taken advantage of. This has made me question who I am as a person because if I was an asshole, I would not be in the situation that I am in now. I would be in a better spot. I should have had a wall built up. I should have been selfish and said f*&k everybody. I should have not helped anyone in need. I should have been downright evil……...but that isn’t me. And what is the point in being cold in a world that was meant to shine brighter than the summer sun? </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been angry at myself for being a good person…..But as I sit here and think about it, this has got to be the dumbest shit I have ever heard in my life. I am mad about this??? This shit!!?? I should be mad at the assholes who took advantage of my kindness or even used me. But the kind person inside me just says to forgive them and move on…but you can’t move on from something that can affect you in the long run. </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For the past year, I have been dealing with multiple cases of my personal information being used by individuals that I thought were my friends. This situation has affected my credit and also my finances. I’ve struggled with trying to clear my name, obtain lawyers, and then secure the funds to pay for legal aid. I don’t even know if this all could be cleared. I don’t know if my finances are completely ruined. I’m basically in purgatory and it sucks. I know that I have to do something before the statute of limitations expires but I’ve just been so depressed the past few months about it because I felt like I haven\'t gotten anywhere with it. I had a loan attempt on my name. I had a business created in my name that I had no part in. I had to replace all my credit cards. I’ve been getting billed for stuff that I didn’t even buy. I just been going through it. I’ve tried to say that everything was okay but I could tell things weren’t because I couldn’t even write anymore and I love writing…………..I have been feeling defeated. </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yesterday, I had a friend reach out to me. Each time for the past three months when this friend asked me to meet up and talk I declined. When they asked me what was wrong I said everything was fine. I am </span><span style=\"font-size: 14pt; background-color: transparent; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">always </span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">fine……...well that is what I always say……But yesterday, I decided to just spill it all. I was stuck in traffic last night after the gym. I was sitting in my car just talking on the bluetooth speaker and telling my friend what really was going on. I finally had the courage to speak on all of this. As soon as I finished saying everything that happened a car slammed into the back of me. I just wanted to cry………</span></span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I was at a breaking point. Everything that was going wrong in my life, I finally decided to open up and speak about it and THEN THIS!!! Yesterday evening I was angry. I was angry when I was sitting in my car. I was angry when the cop was creating the report. And I just sat there feeling defeated because I felt overwhelmed with life. I drove home with my head pounding. I don’t know if it was from the accident or just from my feelings…but as I pulled up in my driveway I started thinking about how I finally was at a point to turn my life around, and then I got hit…….I was ready to be happy again and let all that hurt go and then someone slammed into my car……...I was so close…………. I was almost there with my healing…..</span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">“Never let a minor issue impede your overall progress” </span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">This is something that I have told myself all throughout life. Whether it was with my studies, personal ventures, or whatever. I’ve always been the type of person who will push through and make it to the end no matter what. I will work even when I am sick because I truly believe in reaching my end goal no matter what. </span><span style=\"font-size: 14pt; background-color: transparent; font-weight: bold; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t let little things stop me from accomplishing MAJOR goals</span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">………….In other words, I can’t let this accident stop me from being happy…. Because I worked too damn hard to get to that point on November 12th, 2019 at 6:30pm. </span></span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t sweat the small stuff. I just can’t allow myself to do that anymore. I have to be happy. I choose to be happy. That’s how I want it. No longer can I be upset with myself for being kind to others. Sure what happened to me sucks and will probably take so much time and money to clear up…. But I can no longer allow all of that to deter me from being me ...Good ole happy Monica…….</span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Life\'s too short to be anything but happy. I say this over and over and over again. And I apologize to myself for forgetting this. Sometimes life is rough, but you can’t let that get you all the way down. There is always something to be happy about. And sometimes it is hard to find it. Sometimes it is VERY, VERY, VERY hard lol. But the rain doesn’t last forever…...I’m happy that I am finally getting out of this rainy season of my life…….</span></p>\r\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span>\r\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">-Monica Renata</span></p>\r\n\r\n<div><span style=\"font-size: 14pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener\">Zedity</a></span></div>\r\n</div>\r\n</div>\r\n ','It has been a while...... Let me write.....','','inherit','closed','closed','','1824-revision-v1','','','2019-11-13 23:40:02','2019-11-14 05:40:02','',1824,'http://www.monicarenata.com/1824-revision-v1/',0,'revision','',0),(1845,1,'2020-08-23 23:34:21','2020-08-24 04:34:21','<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For what could it possibly mean?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To let myself get lost in love</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is essentially letting myself fall in a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To grab on to nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fingers clenched on cotton sheets</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bracing myself for a fall</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But each night I never fall too deep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tossing and turning</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yearning for something</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But afraid of what may be next</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And then I put fear aside</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And finally kissed your lips</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But you reassured me of what it means</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I felt love flow through us both</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our love was but a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The darkness that was nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soon changed to the brightest light</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared fear no more</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I was fearless by your side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each day was special</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each moment was cherished</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I loved you by my side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thank you for bringing out the best of me</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I will love you all my life</p>\n<!-- /wp:paragraph -->','Fear the Fall','','inherit','closed','closed','','1843-revision-v1','','','2020-08-23 23:34:21','2020-08-24 04:34:21','',1843,'http://www.monicarenata.com/1843-revision-v1/',0,'revision','',0),(1844,1,'2020-08-23 23:27:17','2020-08-24 04:27:17','<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For what could it possibly mean?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To let myself get lost in love</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is essentially letting myself fall in a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To grab on to nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fingers clenched on cotton sheets</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bracing myself for a fall</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But each night I never fall too deep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tossing and turning</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yearning for something</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But afraid of what may be next</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And then I put fear aside</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And finally kissed your lips</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But you reassured me of what it means</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I felt love flow through us both</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our love was but a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The darkness that was nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soon changed to the brightest light</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared fear no more</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I was fearless by your side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each day was special</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each moment was cherished</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I loved you by my side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thank you for bringing out the best of me</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I will love you all my life</p>\n<!-- /wp:paragraph -->','Fear the Fall','','inherit','closed','closed','','1843-revision-v1','','','2020-08-23 23:27:17','2020-08-24 04:27:17','',1843,'http://www.monicarenata.com/1843-revision-v1/',0,'revision','',0),(1843,1,'2020-08-23 23:34:23','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For what could it possibly mean?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To let myself get lost in love</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is essentially letting myself fall in a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To grab on to nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fingers clenched on cotton sheets</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bracing myself for a fall</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But each night I never fall too deep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tossing and turning</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yearning for something</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But afraid of what may be next</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And then I put fear aside</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And finally kissed your lips</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared the falling most of all</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But you reassured me of what it means</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I felt love flow through us both</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our love was but a dream</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The darkness that was nothingness</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soon changed to the brightest light</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I feared fear no more</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I was fearless by your side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each day was special</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each moment was cherished</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I loved you by my side</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thank you for bringing out the best of me</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I will love you all my life</p>\n<!-- /wp:paragraph -->','Fear the Fall','','draft','open','open','','','','','2020-08-23 23:34:23','2020-08-24 04:34:23','',0,'http://www.monicarenata.com/?p=1843',0,'post','',0),(1928,1,'2023-11-29 13:41:08','2023-11-29 19:41:08','The eyes are the windows to the soul they say\r\n\r\nBut what happens when eyes meet and they do not gaze\r\n\r\nFor they stare for a second and then venture elsewhere\r\n\r\nTo the flesh that is around and other physical beauties that are there\r\n\r\n \r\n\r\nAttraction is the beast that we say is not cruel\r\n\r\nBut what happens when attraction is for the flesh and not you\r\n\r\nLooking into eyes to just confirm the interest is there\r\n\r\nBut never venture deeper into what underneath the flesh entails\r\n\r\n \r\n\r\nA mere object of desire\r\n\r\nPhysical attraction it seems to only be\r\n\r\nMental attraction doesn’t matter\r\n\r\nNeither does the true things that define me\r\n\r\n \r\n\r\nIn the midst of this I do not cry\r\n\r\nFor there is no reason to weep\r\n\r\nBut I will smile and go about my day\r\n\r\nAnd you will say something is wrong with me\r\n\r\n \r\n\r\nFor why would I walk away from someone who was into me\r\n\r\nWho showered me with gifts?\r\n\r\nWho said they loved everything about me?\r\n\r\n \r\n\r\nNow just imagine myself pouring that cup that doesn’t pour into me\r\n\r\nWho doesn’t care about my interests?\r\n\r\nWho don’t care about getting to know me?\r\n\r\n \r\n\r\nThe eyes are the windows to the soul\r\n\r\nAnd when our eyes meet I gaze deep\r\n\r\nBut your eyes venture elsewhere to the parts of me that you value indeed\r\n\r\nAnd each time I was thinking to myself\r\n\r\nI wish you would truly get to know me\r\n\r\n \r\n\r\n<em>“The true beauty of a person is truly what is inside. Take the time to get to know people. You might miss the best part of someone when you are so infatuated with the flesh.”</em> – Monica Renata','Deep Gaze','','inherit','closed','closed','','1926-revision-v1','','','2023-11-29 13:41:08','2023-11-29 19:41:08','',1926,'http://www.monicarenata.com/1926-revision-v1/',0,'revision','',0),(1930,1,'2024-01-01 23:10:06','2024-01-02 05:10:06','<p style=\"text-align: center;\">Counting the snowflakes that fall on the asphalt</p>\r\n<p style=\"text-align: center;\">Reminds me of a few things</p>\r\n<p style=\"text-align: center;\">Not long ago it was just one snowflake that stood out so brightly to me</p>\r\n<p style=\"text-align: center;\">But as time has gone by the snowflakes fell more than they did before</p>\r\n<p style=\"text-align: center;\">And now on the asphalt is a sprinkle of white</p>\r\n<p style=\"text-align: center;\">We are wasting time as we grow old</p>\r\n \r\n\r\n \r\n<p style=\"text-align: center;\"><em>\"Life doesn\'t last forever. Don\'t let life past you while you are still trying to make up your mind.\" - Monica Renata</em></p>\r\n \r\n\r\n \r\n\r\n ','Sprinkles of White','','publish','open','open','','sprinkles-of-white','','','2024-01-01 23:10:06','2024-01-02 05:10:06','',0,'http://www.monicarenata.com/?p=1930',0,'post','',0),(1931,1,'2024-01-01 23:09:29','2024-01-02 05:09:29','<p style=\"text-align: center;\">Counting the snowflakes that fall on the asphalt</p>\r\n<p style=\"text-align: center;\">Reminds me of a few things</p>\r\n<p style=\"text-align: center;\">Not long ago it was just one snowflake that stood out so brightly to me</p>\r\n<p style=\"text-align: center;\">But as time has gone by the snowflakes fell more than they did before</p>\r\n<p style=\"text-align: center;\">And now on the asphalt is a sprinkle of white</p>\r\n<p style=\"text-align: center;\">We are wasting time as we grow old</p>\r\n \r\n\r\n \r\n<p style=\"text-align: center;\"><em>\"Life doesn\'t last forever. Don\'t let life past you while you are still trying to make up your mind.\" - Monica Renata</em></p>\r\n \r\n\r\n \r\n\r\n ','Sprinkles of White','','inherit','closed','closed','','1930-revision-v1','','','2024-01-01 23:09:29','2024-01-02 05:09:29','',1930,'http://www.monicarenata.com/1930-revision-v1/',0,'revision','',0),(1933,1,'2024-01-02 11:53:29','2024-01-02 17:53:29','The door was left wide open\r\n\r\nIn hopes that you would soon walk in\r\n\r\nIn the mind there are no pure thoughts\r\n\r\nYet curiosity still remains\r\n\r\n \r\n\r\nThe door was left wide open\r\n\r\nYet we both are afraid to see\r\n\r\nWhat could be behind this door\r\n\r\nCould it be happiness or grief\r\n\r\n \r\n\r\nFlashbacks run through the mind\r\n\r\nAs we think about times we took steps in\r\n\r\nSome times were good and some times were bad\r\n\r\nYet still we remained friends\r\n\r\n \r\n\r\nThe door remains wide open\r\n\r\nThis time I remain still\r\n\r\nFor fear has stiffened my movement\r\n\r\nI am a prisoner to my own fear\r\n\r\n \r\n\r\nOne of the same we are it seems\r\n\r\nToo prideful to admit defeat\r\n\r\nPrisoner with the Open Door\r\n\r\nThe role we both fight to play the lead','Prisoner with the Open Door','','publish','open','open','','prisoner-with-the-open-door','','','2024-01-02 11:53:29','2024-01-02 17:53:29','',0,'http://www.monicarenata.com/?p=1933',0,'post','',0),(1934,1,'2024-01-02 11:49:02','2024-01-02 17:49:02','','joaquin-paz-y-mino-OAM2cNo5U9U-unsplash','','inherit','open','closed','','joaquin-paz-y-mino-oam2cno5u9u-unsplash','','','2024-01-02 11:49:02','2024-01-02 17:49:02','',1933,'http://www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash.jpg',0,'attachment','image/jpeg',0),(1935,1,'2024-01-02 11:51:23','2024-01-02 17:51:23','','joaquin-paz-y-mino-OAM2cNo5U9U-unsplash','','inherit','open','closed','','joaquin-paz-y-mino-oam2cno5u9u-unsplash-2','','','2024-01-02 11:51:23','2024-01-02 17:51:23','',1933,'http://www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-1.jpg',0,'attachment','image/jpeg',0),(1936,1,'2024-01-02 11:53:19','2024-01-02 17:53:19','','joaquin-paz-y-mino-OAM2cNo5U9U-unsplash','','inherit','open','closed','','joaquin-paz-y-mino-oam2cno5u9u-unsplash-3','','','2024-01-02 11:53:19','2024-01-02 17:53:19','',1933,'http://www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg',0,'attachment','image/jpeg',0),(1937,1,'2024-01-02 11:53:29','2024-01-02 17:53:29','The door was left wide open\r\n\r\nIn hopes that you would soon walk in\r\n\r\nIn the mind there are no pure thoughts\r\n\r\nYet curiosity still remains\r\n\r\n \r\n\r\nThe door was left wide open\r\n\r\nYet we both are afraid to see\r\n\r\nWhat could be behind this door\r\n\r\nCould it be happiness or grief\r\n\r\n \r\n\r\nFlashbacks run through the mind\r\n\r\nAs we think about times we took steps in\r\n\r\nSome times were good and some times were bad\r\n\r\nYet still we remained friends\r\n\r\n \r\n\r\nThe door remains wide open\r\n\r\nThis time I remain still\r\n\r\nFor fear has stiffened my movement\r\n\r\nI am a prisoner to my own fear\r\n\r\n \r\n\r\nOne of the same we are it seems\r\n\r\nToo prideful to admit defeat\r\n\r\nPrisoner with the Open Door\r\n\r\nThe role we both fight to play the lead','Prisoner with the Open Door','','inherit','closed','closed','','1933-revision-v1','','','2024-01-02 11:53:29','2024-01-02 17:53:29','',1933,'http://www.monicarenata.com/1933-revision-v1/',0,'revision','',0),(2007,1,'2025-07-09 09:47:59','2025-07-09 14:47:59','','ChatGPT Image Jul 9, 2025, 09_47_18 AM','','inherit','open','closed','','chatgpt-image-jul-9-2025-09_47_18-am','','','2025-07-09 09:47:59','2025-07-09 14:47:59','',2006,'http://www.monicarenata.com/wp-content/uploads/2025/07/ChatGPT-Image-Jul-9-2025-09_47_18-AM.png',0,'attachment','image/png',0),(2008,1,'2025-07-09 09:48:45','2025-07-09 14:48:45',' \r\n<div id=\"zed_bewz4t6w\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1990px;\">\r\n<div id=\"zed_bewz4t6w\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1990px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1990\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 42px; top: 14px; width: 789px; height: 1862px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18pt; background-color: transparent;\">A dog sits in the living room</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">You two just finished playing fetch<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I am scouring the internet trying to figure out our next trip<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Our sons play on the football team<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">One is a nerd just like me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">We’re patiently waiting for our little girl<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Soon our family will be complete<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">A house in the countryside<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Another in the city<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">We made great decisions in our lives and live life so freely<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I can see it all as clear as day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I work hard to make it be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I stress myself tirelessly<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">This is the life I want my life to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But what if the dog is in the living room<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">And it is just him and I<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">What if our kids never happen?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">What happens if we never tried? <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">My worry will keep worrying<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">My thoughts would be consumed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I will stress myself in the morning, night, and even afternoons<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But then it all finally comes to me on a rainy June night<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe I don’t exist in the future<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">That future that I worry about<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">A twist in my side<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">This realization seems so cold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe God has other plans<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe my dreams are not meant to unfold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe I do not exist in the future I am so worried about<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">It sounds cold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But also there is relief<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">For now I can just live life freely<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\">And let my life just BE</span><o:p></o:p></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Future Thinking','','inherit','closed','closed','','2006-revision-v1','','','2025-07-09 09:48:45','2025-07-09 14:48:45','',2006,'https://www.monicarenata.com/?p=2008',0,'revision','',0),(2026,0,'1970-01-01 00:00:00','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay0xNS41LWJldGEnLS0+CjwhLS1KZXRwYWNrX1NpdGVtYXBfQnVmZmVyX01hc3Rlcl9YTUxXcml0ZXItLT4KPD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0iLy93d3cubW9uaWNhcmVuYXRhLmNvbS9zaXRlbWFwLWluZGV4LnhzbCI/Pgo8c2l0ZW1hcGluZGV4IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45Ij4KIDxzaXRlbWFwPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zaXRlbWFwLTEueG1sPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNS0wNy0wOVQxNDo0ODo0NVo8L2xhc3Rtb2Q+CiA8L3NpdGVtYXA+CiA8c2l0ZW1hcD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW1hZ2Utc2l0ZW1hcC0xLnhtbDwvbG9jPgogIDxsYXN0bW9kPjIwMjUtMDctMDlUMTQ6NDc6NTlaPC9sYXN0bW9kPgogPC9zaXRlbWFwPgo8L3NpdGVtYXBpbmRleD4K','sitemap.xml','','draft','closed','closed','','','','','2026-02-15 23:06:27','2026-02-16 05:06:27','',0,'https://www.monicarenata.com/?p=2026',0,'jp_sitemap_master','',0),(1887,1,'2021-08-02 13:26:27','2021-08-02 18:26:27','<span style=\"font-weight: 500;\">I touched your flesh and felt coldness</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet you claim to be alive</span>\r\n\r\n<span style=\"font-weight: 500;\">You say your heart is beating</span>\r\n\r\n<span style=\"font-weight: 500;\">But your blood pools from time to time</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You smile and take a picture</span>\r\n\r\n<span style=\"font-weight: 500;\">What a beautiful photograph</span>\r\n\r\n<span style=\"font-weight: 500;\">But behind your smile is cobwebs</span>\r\n\r\n<span style=\"font-weight: 500;\">For long happiness hasn’t resided there</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">To others your entire being shows life</span>\r\n\r\n<span style=\"font-weight: 500;\">But that is far from the truth</span>\r\n\r\n<span style=\"font-weight: 500;\">Your identity is a mystery</span>\r\n\r\n<span style=\"font-weight: 500;\">Not only to others but also you</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Driving a car you don’t like</span>\r\n\r\n<span style=\"font-weight: 500;\">Wearing what others say is in style</span>\r\n\r\n<span style=\"font-weight: 500;\">Justifying your existence by being here and there</span>\r\n\r\n<span style=\"font-weight: 500;\">And faking happiness with a smile</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Career decided because of parents</span>\r\n\r\n<span style=\"font-weight: 500;\">Hobbies dictated by opinions of peers and friends</span>\r\n\r\n<span style=\"font-weight: 500;\">So afraid to be yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">You will be trapped in a box til the end</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Living for the masses instead of yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">Life like this is no fun</span>\r\n\r\n<span style=\"font-weight: 500;\">I touched your flesh and you are dead</span>\r\n\r\n<span style=\"font-weight: 500;\">Why don’t you decide to be alive for once?</span>','Living Dilemma','','inherit','closed','closed','','1886-revision-v1','','','2021-08-02 13:26:27','2021-08-02 18:26:27','',1886,'http://www.monicarenata.com/1886-revision-v1/',0,'revision','',0),(1888,1,'2021-08-02 13:30:04','2021-08-02 18:30:04','<span style=\"font-weight: 500;\">I touched your flesh and felt coldness</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet you claim to be alive</span>\r\n\r\n<span style=\"font-weight: 500;\">You say your heart is beating</span>\r\n\r\n<span style=\"font-weight: 500;\">But your blood pools from time to time</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You smile and take a picture</span>\r\n\r\n<span style=\"font-weight: 500;\">What a beautiful photograph</span>\r\n\r\n<span style=\"font-weight: 500;\">But behind your smile is cobwebs</span>\r\n\r\n<span style=\"font-weight: 500;\">For long happiness hasn’t resided there</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">To others your entire being shows life</span>\r\n\r\n<span style=\"font-weight: 500;\">But that is far from the truth</span>\r\n\r\n<span style=\"font-weight: 500;\">Your identity is a mystery</span>\r\n\r\n<span style=\"font-weight: 500;\">Not only to others but also you</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Driving a car you don’t like</span>\r\n\r\n<span style=\"font-weight: 500;\">Wearing what others say is in style</span>\r\n\r\n<span style=\"font-weight: 500;\">Justifying your existence by being here and there</span>\r\n\r\n<span style=\"font-weight: 500;\">And faking happiness with a smile</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Career decided because of parents</span>\r\n\r\n<span style=\"font-weight: 500;\">Hobbies dictated by opinions of peers and friends</span>\r\n\r\n<span style=\"font-weight: 500;\">So afraid to be yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">You will be trapped in a box til the end</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Living for the masses instead of yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">Life like this is no fun</span>\r\n\r\n<span style=\"font-weight: 500;\">I touched your flesh and you are dead</span>\r\n\r\n<span style=\"font-weight: 500;\">Why don’t you decide to be alive for once?</span>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"If you cannot live your life to your own terms, are you truly living? Freedom to be yourself makes you truly alive.\"</em> - Monica Renata','Living Dilemma','','inherit','closed','closed','','1886-revision-v1','','','2021-08-02 13:30:04','2021-08-02 18:30:04','',1886,'http://www.monicarenata.com/1886-revision-v1/',0,'revision','',0),(1892,1,'2021-09-12 01:08:17','2021-09-12 06:08:17','<span style=\"font-weight: 500;\">Can you just stop</span>\r\n\r\n<span style=\"font-weight: 500;\">For one moment</span>\r\n\r\n<span style=\"font-weight: 500;\">Let me talk to your for a while</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I see beyond those glistening eyes</span>\r\n\r\n<span style=\"font-weight: 500;\">I can see behind your smile</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">There is a longing for some peace of mind</span>\r\n\r\n<span style=\"font-weight: 500;\">You want to be taken away</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Still hurting from what happened in the past</span>\r\n\r\n<span style=\"font-weight: 500;\">Your thoughts you cannot escape</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Each waking moment it consumes your mind</span>\r\n\r\n<span style=\"font-weight: 500;\">And you still won’t let it go</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">What happened has already happened my friend</span>\r\n\r\n<span style=\"font-weight: 500;\">It is time to let it all go</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">A heart</span>\r\n\r\n<span style=\"font-weight: 500;\">Your heart </span>\r\n\r\n<span style=\"font-weight: 500;\">Was broken</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Feelings shattered</span>\r\n\r\n<span style=\"font-weight: 500;\">I been there and I know it hurts</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I can see the hesitation in the way you move</span>\r\n\r\n<span style=\"font-weight: 500;\">You are now afraid to love </span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You fear it may happen again</span>\r\n\r\n<span style=\"font-weight: 500;\">So you protect yourself by not opening up</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">But I can see that you yearn for more</span>\r\n\r\n<span style=\"font-weight: 500;\">And I know that you are missing out</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Burying yourself in work my friend</span>\r\n\r\n<span style=\"font-weight: 500;\">Won’t ease your troubled thoughts</span>\r\n\r\n<span style=\"font-weight: 500;\">They will once again surface over and over again</span>\r\n\r\n<span style=\"font-weight: 500;\">Until you come to peace with what was</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">What happened has already happened</span>\r\n\r\n<span style=\"font-weight: 500;\">You cannot change the past</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Pain only comes from those you love</span>\r\n\r\n<span style=\"font-weight: 500;\">And each time we love we take that chance</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">So would you rather take another chance</span>\r\n\r\n<span style=\"font-weight: 500;\">Or never experience love again at all</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Rain doesn’t last forever dear friend</span>\r\n\r\n<span style=\"font-weight: 500;\">Please let go of the pain and live once more</span>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">“In life people may hurt you. Do not let that hurt stop you from loving and trusting others. “ - Monica Renata</span></i>','Dear Friend. Move On.','','inherit','closed','closed','','1891-revision-v1','','','2021-09-12 01:08:17','2021-09-12 06:08:17','',1891,'http://www.monicarenata.com/1891-revision-v1/',0,'revision','',0),(1894,1,'2021-09-12 01:12:37','2021-09-12 06:12:37','<i><span style=\"font-weight: 500;\">I thought love was more than give and take</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">But maybe I\'m confused</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Because I can\'t fathom measures of the heart</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Require items to be construed</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">Do hearts truly flutter when a tangible good is received</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Are feelings no longer valid because there is no cost behind each feel</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">I pour into my work</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">I truly enjoy what I do</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">It brings me joy and I\'m satisfied</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">That\'s why I never understand you</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">In order to pour into a person</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">You have to physically receive</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Peace and emotional well-being means nothing to you</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">But items mean nothing to me</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">In tune with your true self</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Maybe one day you will see</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Love is not a game of give and take</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">It brings harmony and peace</span></i>','Love Different','','publish','open','open','','love-different','','','2021-09-12 01:12:37','2021-09-12 06:12:37','',0,'http://www.monicarenata.com/?p=1894',0,'post','',0),(1895,1,'2021-09-12 01:12:19','2021-09-12 06:12:19','<i><span style=\"font-weight: 500;\">I thought love was more than give and take</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">But maybe I\'m confused</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Because I can\'t fathom measures of the heart</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Require items to be construed</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">Do hearts truly flutter when a tangible good is received</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Are feelings no longer valid because there is no cost behind each feel</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">I pour into my work</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">I truly enjoy what I do</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">It brings me joy and I\'m satisfied</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">That\'s why I never understand you</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">In order to pour into a person</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">You have to physically receive</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Peace and emotional well-being means nothing to you</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">But items mean nothing to me</span></i>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">In tune with your true self</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Maybe one day you will see</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">Love is not a game of give and take</span></i>\r\n\r\n<i><span style=\"font-weight: 500;\">It brings harmony and peace</span></i>','Love Different','','inherit','closed','closed','','1894-revision-v1','','','2021-09-12 01:12:19','2021-09-12 06:12:19','',1894,'http://www.monicarenata.com/1894-revision-v1/',0,'revision','',0),(1897,1,'2021-09-19 11:00:45','2021-09-19 16:00:45','<span style=\"font-weight: 500;\">We prepare ourselves for disappointments</span>\r\n\r\n<span style=\"font-weight: 500;\">But we never prepare ourselves for things going right</span>\r\n\r\n<span style=\"font-weight: 500;\">So is now the ways of the world and why souls struggle to sleep at night</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I watch you worry and wonder</span>\r\n\r\n<span style=\"font-weight: 500;\">And my heart for you just breaks</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">For you cannot see the joy in your present</span>\r\n\r\n<span style=\"font-weight: 500;\">Because with negativity your thoughts are consumed</span>\r\n\r\n<i><span style=\"font-weight: 500;\">“Life cannot be lived if we fear the what ifs. Live and embrace each moment for what it is and do not let doubt cloud your future.”</span></i><span style=\"font-weight: 500;\"> - Monica Renata</span>\r\n\r\n \r\n\r\n ','Fear of Life','','publish','open','open','','fear-of-life','','','2021-09-19 11:00:45','2021-09-19 16:00:45','',0,'http://www.monicarenata.com/?p=1897',0,'post','',0),(1898,1,'2021-09-19 10:59:38','2021-09-19 15:59:38','Running from fear instead of living your life','Fear of Life','','inherit','open','closed','','overcoming_fear','','','2021-09-19 11:00:27','2021-09-19 16:00:27','',1897,'http://www.monicarenata.com/wp-content/uploads/2021/09/overcoming_fear.png',0,'attachment','image/png',0),(1899,1,'2021-09-19 11:00:30','2021-09-19 16:00:30','<span style=\"font-weight: 500;\">We prepare ourselves for disappointments</span>\r\n\r\n<span style=\"font-weight: 500;\">But we never prepare ourselves for things going right</span>\r\n\r\n<span style=\"font-weight: 500;\">So is now the ways of the world and why souls struggle to sleep at night</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I watch you worry and wonder</span>\r\n\r\n<span style=\"font-weight: 500;\">And my heart for you just breaks</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">For you cannot see the joy in your present</span>\r\n\r\n<span style=\"font-weight: 500;\">Because with negativity your thoughts are consumed</span>\r\n\r\n<i><span style=\"font-weight: 500;\">“Life cannot be lived if we fear the what ifs. Live and embrace each moment for what it is and do not let doubt cloud your future.”</span></i><span style=\"font-weight: 500;\"> - Monica Renata</span>\r\n\r\n \r\n\r\n ','Fear of Life','','inherit','closed','closed','','1897-revision-v1','','','2021-09-19 11:00:30','2021-09-19 16:00:30','',1897,'http://www.monicarenata.com/1897-revision-v1/',0,'revision','',0),(1901,1,'2021-11-09 19:24:35','2021-11-10 01:24:35','<span style=\"font-weight: 500;\">If life was filled with darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">And the world had no sun to shine</span>\r\n\r\n<span style=\"font-weight: 500;\">I choose to be the light around you</span>\r\n\r\n<span style=\"font-weight: 500;\">That radiates and flickers with time</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">For life is hard to live alone</span>\r\n\r\n<span style=\"font-weight: 500;\">And it is hard to see in the dark</span>\r\n\r\n<span style=\"font-weight: 500;\">So I choose to only give off light</span>\r\n\r\n<span style=\"font-weight: 500;\">I do not want anyone to be in the dark</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">In pitch black skies you may see stars</span>\r\n\r\n<span style=\"font-weight: 500;\">And in those few times you do not feel alone</span>\r\n\r\n<span style=\"font-weight: 500;\">I have sat under pitch black skies with no stars</span>\r\n\r\n<span style=\"font-weight: 500;\">And wondered where was my home</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">In the deepest of dark I dwelled before</span>\r\n\r\n<span style=\"font-weight: 500;\">And that burden was mines and mines alone</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet I do not want anyone to venture the lands of dark that I visited </span>\r\n\r\n<span style=\"font-weight: 500;\">I want everyone to feel at home</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">So if light was filled with darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">I hope to be the light for passersby </span>\r\n\r\n<span style=\"font-weight: 500;\">For I am grateful for every smile I see</span>\r\n\r\n<span style=\"font-weight: 500;\">While my smile just passes by</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Till my heart beats its last</span>\r\n\r\n<span style=\"font-weight: 500;\">Till my lungs no longer push breathe</span>\r\n\r\n<span style=\"font-weight: 500;\">I will be the light for others</span>\r\n\r\n<span style=\"font-weight: 500;\">And I will try my very best</span>','I Will Be Light','','publish','open','open','','i-will-be-light','','','2021-11-09 19:24:35','2021-11-10 01:24:35','',0,'http://www.monicarenata.com/?p=1901',0,'post','',0),(1902,1,'2021-11-09 19:24:19','2021-11-10 01:24:19','<span style=\"font-weight: 500;\">If life was filled with darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">And the world had no sun to shine</span>\r\n\r\n<span style=\"font-weight: 500;\">I choose to be the light around you</span>\r\n\r\n<span style=\"font-weight: 500;\">That radiates and flickers with time</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">For life is hard to live alone</span>\r\n\r\n<span style=\"font-weight: 500;\">And it is hard to see in the dark</span>\r\n\r\n<span style=\"font-weight: 500;\">So I choose to only give off light</span>\r\n\r\n<span style=\"font-weight: 500;\">I do not want anyone to be in the dark</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">In pitch black skies you may see stars</span>\r\n\r\n<span style=\"font-weight: 500;\">And in those few times you do not feel alone</span>\r\n\r\n<span style=\"font-weight: 500;\">I have sat under pitch black skies with no stars</span>\r\n\r\n<span style=\"font-weight: 500;\">And wondered where was my home</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">In the deepest of dark I dwelled before</span>\r\n\r\n<span style=\"font-weight: 500;\">And that burden was mines and mines alone</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet I do not want anyone to venture the lands of dark that I visited </span>\r\n\r\n<span style=\"font-weight: 500;\">I want everyone to feel at home</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">So if light was filled with darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">I hope to be the light for passersby </span>\r\n\r\n<span style=\"font-weight: 500;\">For I am grateful for every smile I see</span>\r\n\r\n<span style=\"font-weight: 500;\">While my smile just passes by</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Till my heart beats its last</span>\r\n\r\n<span style=\"font-weight: 500;\">Till my lungs no longer push breathe</span>\r\n\r\n<span style=\"font-weight: 500;\">I will be the light for others</span>\r\n\r\n<span style=\"font-weight: 500;\">And I will try my very best</span>','I Will Be Light','','inherit','closed','closed','','1901-revision-v1','','','2021-11-09 19:24:19','2021-11-10 01:24:19','',1901,'http://www.monicarenata.com/1901-revision-v1/',0,'revision','',0),(1903,1,'2021-11-09 21:26:53','2021-11-10 03:26:53','<span style=\"font-weight: 500;\">I am broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">I cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet as I look in the mirror</span>\r\n\r\n<span style=\"font-weight: 500;\">Things are as they should be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">My mind now believes</span>\r\n\r\n<span style=\"font-weight: 500;\">What I could never believe before</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Emotions are a thing of the past</span>\r\n\r\n<span style=\"font-weight: 500;\">I don’t feel much anymore</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You are broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">You cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet you look in the mirror</span>\r\n\r\n<span style=\"font-weight: 500;\">Things are as they should be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">But it used to not be this way</span>\r\n\r\n<span style=\"font-weight: 500;\">We used to be full of life</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Has the world created carbon copies</span>\r\n\r\n<span style=\"font-weight: 500;\">That are void of true life?</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">We tend to lack compassion nowadays</span>\r\n\r\n<span style=\"font-weight: 500;\">We tend to be opportunist when it comes to love</span>\r\n\r\n<span style=\"font-weight: 500;\">But when will we start to lead with feelings again</span>\r\n\r\n<span style=\"font-weight: 500;\">And rid ourselves of this desensitized world</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">We are broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">We cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet the mirror shows the true reflection</span>\r\n\r\n<span style=\"font-weight: 500;\">We are uglier than we believe</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">A world shrouded by darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">But it doesn’t have to be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Please start to tap into your feelings again</span>\r\n\r\n<span style=\"font-weight: 500;\">And the world can be the world of your dreams</span>','Desensitized','','publish','open','open','','desensitized','','','2021-11-09 21:26:53','2021-11-10 03:26:53','',0,'http://www.monicarenata.com/?p=1903',0,'post','',0),(1904,1,'2021-11-09 21:26:36','2021-11-10 03:26:36','<span style=\"font-weight: 500;\">I am broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">I cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet as I look in the mirror</span>\r\n\r\n<span style=\"font-weight: 500;\">Things are as they should be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">My mind now believes</span>\r\n\r\n<span style=\"font-weight: 500;\">What I could never believe before</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Emotions are a thing of the past</span>\r\n\r\n<span style=\"font-weight: 500;\">I don’t feel much anymore</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You are broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">You cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet you look in the mirror</span>\r\n\r\n<span style=\"font-weight: 500;\">Things are as they should be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">But it used to not be this way</span>\r\n\r\n<span style=\"font-weight: 500;\">We used to be full of life</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Has the world created carbon copies</span>\r\n\r\n<span style=\"font-weight: 500;\">That are void of true life?</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">We tend to lack compassion nowadays</span>\r\n\r\n<span style=\"font-weight: 500;\">We tend to be opportunist when it comes to love</span>\r\n\r\n<span style=\"font-weight: 500;\">But when will we start to lead with feelings again</span>\r\n\r\n<span style=\"font-weight: 500;\">And rid ourselves of this desensitized world</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">We are broken in so many spots</span>\r\n\r\n<span style=\"font-weight: 500;\">We cannot feel a thing</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet the mirror shows the true reflection</span>\r\n\r\n<span style=\"font-weight: 500;\">We are uglier than we believe</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">A world shrouded by darkness</span>\r\n\r\n<span style=\"font-weight: 500;\">But it doesn’t have to be</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Please start to tap into your feelings again</span>\r\n\r\n<span style=\"font-weight: 500;\">And the world can be the world of your dreams</span>','Desensitized','','inherit','closed','closed','','1903-revision-v1','','','2021-11-09 21:26:36','2021-11-10 03:26:36','',1903,'http://www.monicarenata.com/1903-revision-v1/',0,'revision','',0),(1906,1,'2021-11-29 13:58:18','2021-11-29 19:58:18','<span style=\"font-weight: 400;\">I used to write about you</span>\r\n\r\n<span style=\"font-weight: 400;\">For I thought of you every day</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote about how you made my eyes glow</span>\r\n\r\n<span style=\"font-weight: 400;\">And how you brightened my stormiest days</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I sat and wrote with a smile on my face</span>\r\n\r\n<span style=\"font-weight: 400;\">I sat and wrote while in a daze</span>\r\n\r\n<span style=\"font-weight: 400;\">For I knew that words could not express</span>\r\n\r\n<span style=\"font-weight: 400;\">How you made me feel each day</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I used to write about you</span>\r\n\r\n<span style=\"font-weight: 400;\">I wished you would never go away</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote of the past and present</span>\r\n\r\n<span style=\"font-weight: 400;\">But for the future I let my pen wait</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I intertwined prayers in my writings</span>\r\n\r\n<span style=\"font-weight: 400;\">I spoke into existence the reality of your dreams</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote to let you know that I believe in you</span>\r\n\r\n<span style=\"font-weight: 400;\">Despite what my actions sometimes said</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">But one day our worlds separated</span>\r\n\r\n<span style=\"font-weight: 400;\">And I could feel my pen drop</span>\r\n\r\n<span style=\"font-weight: 400;\">And I didn’t attempt to retrieve it</span>\r\n\r\n<span style=\"font-weight: 400;\">Because I was in such shock</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">However, back again these few months you have resurfaced</span>\r\n\r\n<span style=\"font-weight: 400;\">And thoughts consume my head</span>\r\n\r\n<span style=\"font-weight: 400;\">Two worlds collided once more</span>\r\n\r\n<span style=\"font-weight: 400;\">And confusion clouds my head</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">For I knew that this story would continue once more</span>\r\n\r\n<span style=\"font-weight: 400;\">I found myself and I am here once again</span>\r\n\r\n<span style=\"font-weight: 400;\">I used to write about you and then stopped</span>\r\n\r\n<span style=\"font-weight: 400;\">But after years I finally can pick up my pen</span>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 400;\">“Always be kind to yourself. The most valuable thing you can ever lose is sight of who you truly are. “ - Monica Renata</span></i>','Lost and Found','','publish','open','open','','lost-and-found','','','2021-11-29 13:58:18','2021-11-29 19:58:18','',0,'http://www.monicarenata.com/?p=1906',0,'post','',0),(1907,1,'2021-11-29 13:56:10','2021-11-29 19:56:10','<span style=\"font-weight: 400;\">I used to write about you</span>\r\n\r\n<span style=\"font-weight: 400;\">For I thought of you every day</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote about how you made my eyes glow</span>\r\n\r\n<span style=\"font-weight: 400;\">And how you brightened my stormiest days</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I sat and wrote with a smile on my face</span>\r\n\r\n<span style=\"font-weight: 400;\">I sat and wrote while in a daze</span>\r\n\r\n<span style=\"font-weight: 400;\">For I knew that words could not express</span>\r\n\r\n<span style=\"font-weight: 400;\">How you made me feel each day</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I used to write about you</span>\r\n\r\n<span style=\"font-weight: 400;\">I wished you would never go away</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote of the past and present</span>\r\n\r\n<span style=\"font-weight: 400;\">But for the future I let my pen wait</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">I intertwined prayers in my writings</span>\r\n\r\n<span style=\"font-weight: 400;\">I spoke into existence the reality of your dreams</span>\r\n\r\n<span style=\"font-weight: 400;\">I wrote to let you know that I believe in you</span>\r\n\r\n<span style=\"font-weight: 400;\">Despite what my actions sometimes said</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">But one day our worlds separated</span>\r\n\r\n<span style=\"font-weight: 400;\">And I could feel my pen drop</span>\r\n\r\n<span style=\"font-weight: 400;\">And I didn’t attempt to retrieve it</span>\r\n\r\n<span style=\"font-weight: 400;\">Because I was in such shock</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">However, back again these few months you have resurfaced</span>\r\n\r\n<span style=\"font-weight: 400;\">And thoughts consume my head</span>\r\n\r\n<span style=\"font-weight: 400;\">Two worlds collided once more</span>\r\n\r\n<span style=\"font-weight: 400;\">And confusion clouds my head</span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">For I knew that this story would continue once more</span>\r\n\r\n<span style=\"font-weight: 400;\">I found myself and I am here once again</span>\r\n\r\n<span style=\"font-weight: 400;\">I used to write about you and then stopped</span>\r\n\r\n<span style=\"font-weight: 400;\">But after years I finally can pick up my pen</span>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 400;\">“Always be kind to yourself. The most valuable thing you can ever lose is sight of who you truly are. “ - Monica Renata</span></i>','Lost and Found','','inherit','closed','closed','','1906-revision-v1','','','2021-11-29 13:56:10','2021-11-29 19:56:10','',1906,'http://www.monicarenata.com/1906-revision-v1/',0,'revision','',0),(1909,1,'2022-02-15 21:17:07','2022-02-16 03:17:07','<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I want to kiss you</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I want to kiss you when I see you </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Hold you tight and never let go </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Talk to you night and day </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Make love under the gazing moon</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Feel the warmth of your flesh against my flesh </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Feel your lips all over mines </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Be in the essence of your spirit </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Travel once more in your mind</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Yet in every moment I see you </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I will just gaze in silence and shake your hand </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Because I\'m weird like that at times </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">That\'s why I give good hugs instead</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">-------</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The realization of what I have and what I lack the most </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I\'ll say others are emotionally vacant when in actuality I\'m emotionally unavailable</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Unable to speak my words but find the comfort to do so with my pen </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The greatest confusion of all is how I made it far like this</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But if I could tap into it all I know that life will be a true gem </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I have to let go of all my fears and break down the walls that I have built</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The realization that your own emotions can be what hurts you to the core </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Made me abandon my own feelings and built the wall that I wish was no more</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The door is finally in sight </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">It\'s blurry still but I can faintly see</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I\'m tired of holding how I feel inside </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">It\'s time to let fear go and just be....</span>','Repressed Emotions','','publish','open','open','','repressed-emotions','','','2022-02-15 21:17:07','2022-02-16 03:17:07','',0,'http://www.monicarenata.com/?p=1909',0,'post','',0),(1910,1,'2022-02-15 21:14:30','2022-02-16 03:14:30','<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I want to kiss you</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I want to kiss you when I see you </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Hold you tight and never let go </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Talk to you night and day </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Make love under the gazing moon</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Feel the warmth of your flesh against my flesh </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Feel your lips all over mines </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Be in the essence of your spirit </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Travel once more in your mind</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Yet in every moment I see you </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I will just gaze in silence and shake your hand </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Because I\'m weird like that at times </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">That\'s why I give good hugs instead</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">-------</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The realization of what I have and what I lack the most </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I\'ll say others are emotionally vacant when in actuality I\'m emotionally unavailable</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Unable to speak my words but find the comfort to do so with my pen </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The greatest confusion of all is how I made it far like this</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But if I could tap into it all I know that life will be a true gem </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I have to let go of all my fears and break down the walls that I have built</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The realization that your own emotions can be what hurts you to the core </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Made me abandon my own feelings and built the wall that I wish was no more</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The door is finally in sight </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">It\'s blurry still but I can faintly see</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I\'m tired of holding how I feel inside </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">It\'s time to let fear go and just be....</span>','Repressed Emotions','','inherit','closed','closed','','1909-revision-v1','','','2022-02-15 21:14:30','2022-02-16 03:14:30','',1909,'http://www.monicarenata.com/1909-revision-v1/',0,'revision','',0),(1911,1,'2022-02-15 21:27:13','2022-02-16 03:27:13','<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">A void has been occupied by thoughts and actions on this day </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Your flesh is still present in the world </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But I’ll never speak to you again</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The voice that once made my heart smile </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Controlled by vocal cords that are in decay </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Silenced from my ears forever </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Nothing can allow me to hear it again</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I look one more time at the flesh that glowed with so much life </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Prepared to close the coffin and step away into new light</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I will never see you again </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Nor will I ever hear your voice </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Death is cold at times </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But in this pain I shall rejoice</span>','The Final Viewing','','publish','open','open','','the-final-viewing','','','2022-02-15 21:27:13','2022-02-16 03:27:13','',0,'http://www.monicarenata.com/?p=1911',0,'post','',0),(1912,1,'2022-02-15 21:25:00','2022-02-16 03:25:00','<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">A void has been occupied by thoughts and actions on this day </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Your flesh is still present in the world </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But I’ll never speak to you again</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">The voice that once made my heart smile </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Controlled by vocal cords that are in decay </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Silenced from my ears forever </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Nothing can allow me to hear it again</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I look one more time at the flesh that glowed with so much life </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Prepared to close the coffin and step away into new light</span>\r\n\r\n \r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">I will never see you again </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Nor will I ever hear your voice </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">Death is cold at times </span>\r\n\r\n<span data-tt=\"{"paragraphStyle":{"alignment":4,"writingDirection":1}}\">But in this pain I shall rejoice</span>','The Final Viewing','','inherit','closed','closed','','1911-revision-v1','','','2022-02-15 21:25:00','2022-02-16 03:25:00','',1911,'http://www.monicarenata.com/1911-revision-v1/',0,'revision','',0),(1915,1,'2022-10-26 21:18:29','2022-10-27 02:18:29','<p style=\"text-align: center;\">I stood there with the weight of the world crushing my tiny chest</p>\r\n<p style=\"text-align: center;\">I speak words that I spoke before and to your ears they were met</p>\r\n<p style=\"text-align: center;\">But once again I’m ignored and you go on about your day just as you did the last</p>\r\n<p style=\"text-align: center;\">I love you but I’m tired yet you tell me to not abandon you and this will pass</p>\r\n<p style=\"text-align: center;\">I’m tired and my sword doesn’t fix things and in this life I’m constantly punched</p>\r\n<p style=\"text-align: center;\">I stand right here before you bruised and beaten yet you can’t see the welts on my heart</p>\r\n<p style=\"text-align: center;\">My heart is crying for you but when I wield my tongue you remain stoic</p>\r\n<p style=\"text-align: center;\">I guess tomorrow I’ll give it one more chance despite I being weak</p>\r\n<p style=\"text-align: center;\">I’ll tell you how I feel one more time before I accept defeat</p>','The Last Fight','','publish','open','open','','the-last-fight','','','2022-10-26 21:18:29','2022-10-27 02:18:29','',0,'http://www.monicarenata.com/?p=1915',0,'post','',0),(1916,1,'2022-10-26 21:16:26','2022-10-27 02:16:26','','Couple_Banner-768x432','','inherit','open','closed','','couple_banner-768x432','','','2022-10-26 21:16:26','2022-10-27 02:16:26','',1915,'http://www.monicarenata.com/wp-content/uploads/2022/10/Couple_Banner-768x432-1.jpg',0,'attachment','image/jpeg',0),(1917,1,'2022-10-26 21:17:21','2022-10-27 02:17:21','<p style=\"text-align: center;\">I stood there with the weight of the world crushing my tiny chest</p>\r\n<p style=\"text-align: center;\">I speak words that I spoke before and to your ears they were met</p>\r\n<p style=\"text-align: center;\">But once again I’m ignored and you go on about your day just as you did the last</p>\r\n<p style=\"text-align: center;\">I love you but I’m tired yet you tell me to not abandon you and this will pass</p>\r\n<p style=\"text-align: center;\">I’m tired and my sword doesn’t fix things and in this life I’m constantly punched</p>\r\n<p style=\"text-align: center;\">I stand right here before you bruised and beaten yet you can’t see the welts on my heart</p>\r\n<p style=\"text-align: center;\">My heart is crying for you but when I wield my tongue you remain stoic</p>\r\n<p style=\"text-align: center;\">I guess tomorrow I’ll give it one more chance despite I being weak</p>\r\n<p style=\"text-align: center;\">I’ll tell you how I feel one more time before I accept defeat</p>','The Last Fight','','inherit','closed','closed','','1915-revision-v1','','','2022-10-26 21:17:21','2022-10-27 02:17:21','',1915,'http://www.monicarenata.com/1915-revision-v1/',0,'revision','',0),(1919,1,'2023-02-15 21:28:11','2023-02-16 03:28:11','Who is afraid of the big bad wolf?\r\n\r\nI have always screamed NOT I\r\n\r\nFor I am braver than I look\r\n\r\nEven though I stand under 5 foot 5\r\n\r\nMy chest is always out a bit\r\n\r\nI am not afraid to speak\r\n\r\nThat was until one day I met someone\r\n\r\nWho forced me to take a deeper look at me\r\n\r\n \r\n\r\nThe strength in my demeanor\r\n\r\nThe determination in my soul\r\n\r\nThe willpower to keep on going\r\n\r\nThe hunger to aggressively accomplish goals\r\n\r\n \r\n\r\nSo who is afraid of the big bad wolf?\r\n\r\nWhen the wolf is inside of me\r\n\r\nFiercely protecting all that I know\r\n\r\nAnd fighting hard for who I\'m destined to be\r\n\r\nA ripple in time in a distant land\r\n\r\nA land I do not wish to always be\r\n\r\nI am tired of being the big bad wolf\r\n\r\nI\'m only strong because I wonder who will be strong for me\r\n\r\n ','Reflecting Views','','publish','open','open','','reflecting-views','','','2023-02-15 21:31:51','2023-02-16 03:31:51','',0,'http://www.monicarenata.com/?p=1919',0,'post','',0),(1920,1,'2023-02-15 21:27:42','2023-02-16 03:27:42','Who is afraid of the big bad wolf?\r\n\r\nI have always screamed NOT I\r\n\r\nFor I am braver than I look\r\n\r\nEven though I stand under 5 foot 5\r\n\r\nMy chest is always out a bit\r\n\r\nI am not afraid to speak\r\n\r\nThat was until one day I met someone\r\n\r\nWho forced me to take a deeper look at me\r\n\r\n \r\n\r\nThe strength in my demeanor\r\n\r\nThe determination in my soul\r\n\r\nThe willpower to keep on going\r\n\r\nThe hunger to aggressively accomplish goals\r\n\r\n \r\n\r\nSo who is afraid of the big bad wolf?\r\n\r\nWhen the wolf is inside of me\r\n\r\nFiercely protecting all that I know\r\n\r\nAnd fighting hard for who I\'m destined to be\r\n\r\nA ripple in time in a distant land\r\n\r\nA land I do not wish to always be\r\n\r\nI am tired of being the big bad wolf\r\n\r\nI\'m only strong because I wonder who will be strong for me\r\n\r\n ','Reflecting Views','','inherit','closed','closed','','1919-revision-v1','','','2023-02-15 21:27:42','2023-02-16 03:27:42','',1919,'http://www.monicarenata.com/1919-revision-v1/',0,'revision','',0),(1921,1,'2023-02-15 21:46:05','0000-00-00 00:00:00','In your arms I have found peace\n\n ','','','draft','open','open','','','','','2023-02-15 21:46:05','2023-02-16 03:46:05','',0,'http://www.monicarenata.com/?p=1921',0,'post','',0),(1987,1,'2025-06-10 09:36:14','2025-06-10 14:36:14',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 850px; max-height: 920px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 850px; height: 920px; overflow: hidden;\" data-origw=\"850\" data-origh=\"920\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 40px; top: 40px; width: 400px; height: 800px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 12px;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 12px; line-height: 115%; font-family: \'ADLaM Display\';\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><span class=\"\" style=\"font-size: 12px;\">Until those moments are gone</span><o:p></o:p></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','inherit','closed','closed','','1986-revision-v1','','','2025-06-10 09:36:14','2025-06-10 14:36:14','',1986,'https://www.monicarenata.com/?p=1987',0,'revision','',0),(1988,1,'2025-06-10 09:37:56','2025-06-10 14:37:56','','Time Walking Man','','inherit','open','closed','','time-walking-man','','','2025-06-10 09:37:56','2025-06-10 14:37:56','',1986,'http://www.monicarenata.com/wp-content/uploads/2025/06/Time-Walking-Man.png',0,'attachment','image/png',0),(1833,1,'2019-11-26 11:32:23','2019-11-26 17:32:23',' \n<div id=\"zed_86x2p5eg\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 990px; max-height: 1900px;\">\n<div id=\"zed_86x2p5eg\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 990px; height: 1900px; overflow: hidden;\" data-origw=\"990\" data-origh=\"1900\">\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 29px; top: 12px; width: 929px; height: 1869px; z-index: 12; right: auto; bottom: auto; display: table; table-layout: fixed; background-color: transparent;\">\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"> </span><span id=\"docs-internal-guid-e6d45465-7fff-67ba-cf21-17d8e5972ca1\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span></span></p>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">What does it mean to be happy? As I sit and ponder the thought of this I can hear all of the quotes that I recite to myself. All of the motivation speeches I have heard, All of the long talks with family and friends, The books that I have read and even the random post on social media my eyes have encountered have spoken of this. And still I sit here wondering what the hell does it mean to be happy. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I remember spans of my life that I just had a smile on my face. I took so many pictures. I wasn’t where I wanted to be in life, but I damn sure enjoyed the moment. Whether it was that specific moment that made up for that span in my life, I don’t know. I’ve always said that life is too short to be anything but happy and while this is true I have found myself moping around and completely lost within myself. I haven’t been able to bring that genuine smile back that I have had for quite some time. I can’t say that I do not recall what happened, but I know that some situations have changed me. And mostly those situations had nothing to do with me. Well it had something to do with m… I was too trusting and too nice ...but why should I be upset with myself for doing that. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been upset with myself for showing others kindness and being taken advantage of. This has made me question who I am as a person because if I was an asshole, I would not be in the situation that I am in now. I would be in a better spot. I should have had a wall built up. I should have been selfish and said f*&k everybody. I should have not helped anyone in need. I should have been downright evil……...but that isn’t me. And what is the point in being cold in a world that was meant to shine brighter than the summer sun? </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I’ve been angry at myself for being a good person…..But as I sit here and think about it, this has got to be the dumbest shit I have ever heard in my life. I am mad about this??? This shit!!?? I should be mad at the assholes who took advantage of my kindness or even used me. But the kind person inside me just says to forgive them and move on…but you can’t move on from something that can affect you in the long run. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">For the past year, I have been dealing with multiple cases of my personal information being used by individuals that I thought were my friends. This situation has affected my credit and also my finances. I’ve struggled with trying to clear my name, obtain lawyers, and then secure the funds to pay for legal aid. I don’t even know if this all could be cleared. I don’t know if my finances are completely ruined. I’m basically in purgatory and it sucks. I know that I have to do something before the statute of limitations expires but I’ve just been so depressed the past few months about it because I felt like I haven\'t gotten anywhere with it. I had a loan attempt on my name. I had a business created in my name that I had no part in. I had to replace all my credit cards. I’ve been getting billed for stuff that I didn’t even buy. I just been going through it. I’ve tried to say that everything was okay but I could tell things weren’t because I couldn’t even write anymore and I love writing…………..I have been feeling defeated. </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yesterday, I had a friend reach out to me. Each time for the past three months when this friend asked me to meet up and talk I declined. When they asked me what was wrong I said everything was fine. I am </span><span style=\"font-size: 14pt; background-color: transparent; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">always </span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">fine……...well that is what I always say……But yesterday, I decided to just spill it all. I was stuck in traffic last night after the gym. I was sitting in my car just talking on the bluetooth speaker and telling my friend what really was going on. I finally had the courage to speak on all of this. As soon as I finished saying everything that happened a car slammed into the back of me. I just wanted to cry………</span></span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I was at a breaking point. Everything that was going wrong in my life, I finally decided to open up and speak about it and THEN THIS!!! Yesterday evening I was angry. I was angry when I was sitting in my car. I was angry when the cop was creating the report. And I just sat there feeling defeated because I felt overwhelmed with life. I drove home with my head pounding. I don’t know if it was from the accident or just from my feelings…but as I pulled up in my driveway I started thinking about how I finally was at a point to turn my life around, and then I got hit…….I was ready to be happy again and let all that hurt go and then someone slammed into my car……...I was so close…………. I was almost there with my healing…..</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">“Never let a minor issue impede your overall progress” </span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">This is something that I have told myself all throughout life. Whether it was with my studies, personal ventures, or whatever. I’ve always been the type of person who will push through and make it to the end no matter what. I will work even when I am sick because I truly believe in reaching my end goal no matter what. </span><span style=\"font-size: 14pt; background-color: transparent; font-weight: bold; font-style: italic; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t let little things stop me from accomplishing MAJOR goals</span><span style=\"font-size: 14pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">………….In other words, I can’t let this accident stop me from being happy…. Because I worked too damn hard to get to that point on November 12th, 2019 at 6:30pm. </span></span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">I can’t sweat the small stuff. I just can’t allow myself to do that anymore. I have to be happy. I choose to be happy. That’s how I want it. No longer can I be upset with myself for being kind to others. Sure what happened to me sucks and will probably take so much time and money to clear up…. But I can no longer allow all of that to deter me from being me ...Good ole happy Monica…….</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Life\'s too short to be anything but happy. I say this over and over and over again. And I apologize to myself for forgetting this. Sometimes life is rough, but you can’t let that get you all the way down. There is always something to be happy about. And sometimes it is hard to find it. Sometimes it is VERY, VERY, VERY hard lol. But the rain doesn’t last forever…...I’m happy that I am finally getting out of this rainy season of my life…….</span></p>\n<span class=\"\" style=\"font-family: \'Averia Serif Libre\', serif;\"><span class=\"zedity-spacer\"> </span><span class=\"zedity-spacer\"> </span></span>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 14pt; font-family: \'Averia Serif Libre\', serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">-Monica Renata</span></p>\n\n<div><span style=\"font-size: 14pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><span class=\"zedity-spacer\"> </span></span></div>\n \n\n</div>\n</div>\n<div class=\"zedity-watermark\" style=\"position: absolute; background: rgba(70,70,70,0.75); z-index: 99999; padding: 0 6px 1px; border-radius: 6px; height: 20px; line-height: 20px; bottom: 0; right: 0;\" data-pos=\"bottomright\"><span style=\"color: #ffd6ba; font-size: 11px; font-family: Tahoma,Arial,sans-serif;\">Powered by <a href=\"https://zedity.com\" target=\"_blank\" style=\"font-size: 11px; font-weight: bold; color: white; font-family: Verdana,Tahoma; text-decoration: none;\" rel=\"noopener noreferrer\">Zedity</a></span></div>\n</div>\n</div>\n ','It has been a while...... Let me write.....','','inherit','closed','closed','','1824-revision-v1','','','2019-11-26 11:32:23','2019-11-26 17:32:23','',1824,'http://www.monicarenata.com/1824-revision-v1/',0,'revision','',0),(1834,1,'2019-11-26 11:57:36','2019-11-26 17:57:36','<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:verse -->\n<pre class=\"wp-block-verse\"><em>\"When you are consumed with sadness you must decide if you will use that pain to move forward and drown in that sadness.... \"</em></pre>\n<!-- /wp:verse -->','Can You Feel the Raindrops','','publish','open','open','','can-you-feel-the-raindrops','','','2019-11-26 11:57:42','2019-11-26 17:57:42','',0,'http://www.monicarenata.com/?p=1834',0,'post','',0),(1836,1,'2019-11-26 11:47:36','2019-11-26 17:47:36','<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->','Can You Feel the Raindrops','','inherit','closed','closed','','1834-revision-v1','','','2019-11-26 11:47:36','2019-11-26 17:47:36','',1834,'http://www.monicarenata.com/1834-revision-v1/',0,'revision','',0),(1837,1,'2019-11-26 11:48:15','2019-11-26 17:48:15','<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:nextpage -->\n<!--nextpage-->\n<!-- /wp:nextpage -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->','Can You Feel the Raindrops','','inherit','closed','closed','','1834-revision-v1','','','2019-11-26 11:48:15','2019-11-26 17:48:15','',1834,'http://www.monicarenata.com/1834-revision-v1/',0,'revision','',0),(1838,1,'2019-11-26 11:49:26','2019-11-26 17:49:26','<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->','Can You Feel the Raindrops','','inherit','closed','closed','','1834-revision-v1','','','2019-11-26 11:49:26','2019-11-26 17:49:26','',1834,'http://www.monicarenata.com/1834-revision-v1/',0,'revision','',0),(1839,1,'2019-11-26 11:55:46','2019-11-26 17:55:46','<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->','Can You Feel the Raindrops','','inherit','closed','closed','','1834-revision-v1','','','2019-11-26 11:55:46','2019-11-26 17:55:46','',1834,'http://www.monicarenata.com/1834-revision-v1/',0,'revision','',0),(1840,1,'2019-11-26 11:57:36','2019-11-26 17:57:36','<!-- wp:paragraph -->\n<p>Gliding down your cheeks</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Making you seep into your inner thoughts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Drowning you before you drift to sleep</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pressuring you to stay where you are</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Grounded in deep sorrow </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But God has other plans for you so you must move forward</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can you feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As they roll to your ears</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Followed by others like them </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like men in lines walking the battle field</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much sorrow but will you drown or grow</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know you can feel the raindrops</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But now it is time to decide which way you will go</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:verse -->\n<pre class=\"wp-block-verse\"><em>\"When you are consumed with sadness you must decide if you will use that pain to move forward and drown in that sadness.... \"</em></pre>\n<!-- /wp:verse -->','Can You Feel the Raindrops','','inherit','closed','closed','','1834-revision-v1','','','2019-11-26 11:57:36','2019-11-26 17:57:36','',1834,'http://www.monicarenata.com/1834-revision-v1/',0,'revision','',0),(1886,1,'2021-08-02 13:31:12','2021-08-02 18:31:12','<span style=\"font-weight: 500;\">I touched your flesh and felt coldness</span>\r\n\r\n<span style=\"font-weight: 500;\">Yet you claim to be alive</span>\r\n\r\n<span style=\"font-weight: 500;\">You say your heart is beating</span>\r\n\r\n<span style=\"font-weight: 500;\">But your blood pools from time to time</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You smile and take a picture</span>\r\n\r\n<span style=\"font-weight: 500;\">What a beautiful photograph</span>\r\n\r\n<span style=\"font-weight: 500;\">But behind your smile is cobwebs</span>\r\n\r\n<span style=\"font-weight: 500;\">For long happiness hasn’t resided there</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">To others your entire being shows life</span>\r\n\r\n<span style=\"font-weight: 500;\">But that is far from the truth</span>\r\n\r\n<span style=\"font-weight: 500;\">Your identity is a mystery</span>\r\n\r\n<span style=\"font-weight: 500;\">Not only to others but also you</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Driving a car you don’t like</span>\r\n\r\n<span style=\"font-weight: 500;\">Wearing what others say is in style</span>\r\n\r\n<span style=\"font-weight: 500;\">Justifying your existence by being here and there</span>\r\n\r\n<span style=\"font-weight: 500;\">And faking happiness with a smile</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Career decided because of parents</span>\r\n\r\n<span style=\"font-weight: 500;\">Hobbies dictated by opinions of peers and friends</span>\r\n\r\n<span style=\"font-weight: 500;\">So afraid to be yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">You will be trapped in a box til the end</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Living for the masses instead of yourself</span>\r\n\r\n<span style=\"font-weight: 500;\">Life like this is no fun</span>\r\n\r\n<span style=\"font-weight: 500;\">I touched your flesh and you are dead</span>\r\n\r\n<span style=\"font-weight: 500;\">Why don’t you decide to be alive for once?</span>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n<em>\"If you cannot live your life to your own terms, are you truly living? Freedom to be yourself makes you truly alive.\"</em> - Monica Renata','Living Dilemma','','publish','open','open','','living-dilemma','','','2021-08-02 13:31:12','2021-08-02 18:31:12','',0,'http://www.monicarenata.com/?p=1886',0,'post','',0),(1891,1,'2021-09-12 01:08:32','2021-09-12 06:08:32','<span style=\"font-weight: 500;\">Can you just stop</span>\r\n\r\n<span style=\"font-weight: 500;\">For one moment</span>\r\n\r\n<span style=\"font-weight: 500;\">Let me talk to your for a while</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I see beyond those glistening eyes</span>\r\n\r\n<span style=\"font-weight: 500;\">I can see behind your smile</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">There is a longing for some peace of mind</span>\r\n\r\n<span style=\"font-weight: 500;\">You want to be taken away</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Still hurting from what happened in the past</span>\r\n\r\n<span style=\"font-weight: 500;\">Your thoughts you cannot escape</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Each waking moment it consumes your mind</span>\r\n\r\n<span style=\"font-weight: 500;\">And you still won’t let it go</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">What happened has already happened my friend</span>\r\n\r\n<span style=\"font-weight: 500;\">It is time to let it all go</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">A heart</span>\r\n\r\n<span style=\"font-weight: 500;\">Your heart </span>\r\n\r\n<span style=\"font-weight: 500;\">Was broken</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Feelings shattered</span>\r\n\r\n<span style=\"font-weight: 500;\">I been there and I know it hurts</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">I can see the hesitation in the way you move</span>\r\n\r\n<span style=\"font-weight: 500;\">You are now afraid to love </span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">You fear it may happen again</span>\r\n\r\n<span style=\"font-weight: 500;\">So you protect yourself by not opening up</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">But I can see that you yearn for more</span>\r\n\r\n<span style=\"font-weight: 500;\">And I know that you are missing out</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Burying yourself in work my friend</span>\r\n\r\n<span style=\"font-weight: 500;\">Won’t ease your troubled thoughts</span>\r\n\r\n<span style=\"font-weight: 500;\">They will once again surface over and over again</span>\r\n\r\n<span style=\"font-weight: 500;\">Until you come to peace with what was</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">What happened has already happened</span>\r\n\r\n<span style=\"font-weight: 500;\">You cannot change the past</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Pain only comes from those you love</span>\r\n\r\n<span style=\"font-weight: 500;\">And each time we love we take that chance</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">So would you rather take another chance</span>\r\n\r\n<span style=\"font-weight: 500;\">Or never experience love again at all</span>\r\n\r\n \r\n\r\n<span style=\"font-weight: 500;\">Rain doesn’t last forever dear friend</span>\r\n\r\n<span style=\"font-weight: 500;\">Please let go of the pain and live once more</span>\r\n\r\n \r\n\r\n<i><span style=\"font-weight: 500;\">“In life people may hurt you. Do not let that hurt stop you from loving and trusting others. “ - Monica Renata</span></i>','Dear Friend. Move On.','','publish','open','open','','dear-friend-move-on','','','2021-09-12 01:08:32','2021-09-12 06:08:32','',0,'http://www.monicarenata.com/?p=1891',0,'post','',0),(1986,1,'2025-06-10 09:44:29','2025-06-10 14:44:29',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 800px; max-height: 940px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 800px; height: 940px; overflow: hidden;\" data-origw=\"800\" data-origh=\"940\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 641px; height: 920px; z-index: 12; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; overflow: auto;\">\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Has it been ten thousand days?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">For when ten thousand days have passed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">We truly begin to count our days<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The youth we thought we once had forever<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Is fleeting like the seasons pass<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">We watch those who wilt around us<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">And we finally know that death is real<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The rocks of family structures begin to move slower<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Their hair lost the color before<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Then suddenly we lose one<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">And then another comes again<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">The time we thought we had<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Becomes the time we wished we cherished<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Some stay healthy while others get sick<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Life truly isn’t fair<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 14.0pt; line-height: 115%; font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-size: 20px; font-family: Georgia, serif;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">How many days have you watched the sun rise?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">Do you appreciate the sun?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 115%; font-family: Georgia, serif;\">For we rarely appreciate great moments in life<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\" align=\"center\" style=\"text-align: center;\"><span style=\"font-size: 18px; line-height: 115%; font-family: Georgia, serif;\"><span class=\"\" style=\"font-size: 20px;\">Until those moments are gone</span><o:p></o:p></span></p>\r\n<span class=\"zedity-spacer\"> </span>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Ten Thousand Days','','publish','open','open','','ten-thousand-days','','','2025-06-10 09:58:02','2025-06-10 14:58:02','',0,'https://www.monicarenata.com/?p=1986',0,'post','',0),(1926,1,'2023-11-29 13:42:45','2023-11-29 19:42:45','The eyes are the windows to the soul they say\r\n\r\nBut what happens when eyes meet and they do not gaze\r\n\r\nFor they stare for a second and then venture elsewhere\r\n\r\nTo the flesh that is around and other physical beauties that are there\r\n\r\n \r\n\r\nAttraction is the beast that we say is not cruel\r\n\r\nBut what happens when attraction is for the flesh and not you\r\n\r\nLooking into eyes to just confirm the interest is there\r\n\r\nBut never venture deeper into what underneath the flesh entails\r\n\r\n \r\n\r\nA mere object of desire\r\n\r\nPhysical attraction it seems to only be\r\n\r\nMental attraction doesn’t matter\r\n\r\nNeither does the true things that define me\r\n\r\n \r\n\r\nIn the midst of this I do not cry\r\n\r\nFor there is no reason to weep\r\n\r\nBut I will smile and go about my day\r\n\r\nAnd you will say something is wrong with me\r\n\r\n \r\n\r\nFor why would I walk away from someone who was into me\r\n\r\nWho showered me with gifts?\r\n\r\nWho said they loved everything about me?\r\n\r\n \r\n\r\nNow just imagine myself pouring that cup that doesn’t pour into me\r\n\r\nWho doesn’t care about my interests?\r\n\r\nWho don’t care about getting to know me?\r\n\r\n \r\n\r\nThe eyes are the windows to the soul\r\n\r\nAnd when our eyes meet I gaze deep\r\n\r\nBut your eyes venture elsewhere to the parts of me that you value indeed\r\n\r\nAnd each time I was thinking to myself\r\n\r\nI wish you would truly get to know me\r\n\r\n \r\n\r\n<em>“The true beauty of a person is truly what is inside. Take the time to get to know people. You might miss the best part of someone when you are so infatuated with the flesh.”</em> – Monica Renata','Deep Gaze','','publish','open','open','','deep-gaze','','','2023-11-29 13:42:45','2023-11-29 19:42:45','',0,'http://www.monicarenata.com/?p=1926',0,'post','',0),(1927,1,'2023-11-29 13:40:38','2023-11-29 19:40:38','','Man Woman Face to face','','inherit','open','closed','','comparemanwoman','','','2023-11-29 13:41:05','2023-11-29 19:41:05','',1926,'http://www.monicarenata.com/wp-content/uploads/2023/11/comparemanwoman.jpg',0,'attachment','image/jpeg',0),(1996,1,'2025-06-10 10:49:08','2025-06-10 15:49:08','I run to my pen and paper\r\n\r\nFor it is my shelter from the storm\r\n\r\nIt sheds the tears that I will not drop\r\n\r\nWords reflecting the cries that come from my soul\r\n\r\n \r\n\r\nScribbling away as my thoughts are scattered\r\n\r\nFinding flow in the chaos around\r\n\r\nThe doctor said I should journal\r\n\r\nBut journaling unmasks me in front of all\r\n\r\n \r\n\r\nStanding completely naked\r\n\r\nI question who are you to judge\r\n\r\nHave we not all sinned or done something foolish\r\n\r\nHas perfection been a constant in the lives of us all?\r\n\r\n \r\n\r\nHappiness, Sadness, and pure disgust\r\n\r\nWe feel it deep within\r\n\r\nHow we decide to digest poison\r\n\r\nAt times reflect how we digest the sweet\r\n\r\n \r\n\r\nI write my thoughts on paper\r\n\r\nInk flowing from my pen\r\n\r\nMy absent voice speaks loud and clear\r\n\r\nIn my solitude it cannot be contained\r\n\r\n \r\n\r\nRegurgitating my feelings\r\n\r\nI face it all in front of me\r\n\r\nIt is true that in order to master oneself\r\n\r\nYou have to face what lies beneath\r\n\r\n ','Writing in My Journal','','publish','open','open','','writing-in-my-journal','','','2025-06-10 10:49:41','2025-06-10 15:49:41','',0,'https://www.monicarenata.com/?p=1996',0,'post','',0),(1997,1,'2025-06-10 10:42:11','2025-06-10 15:42:11','','Man in Thought AI','','inherit','open','closed','','man-in-thought-ai','','','2025-06-10 10:42:11','2025-06-10 15:42:11','',1996,'http://www.monicarenata.com/wp-content/uploads/2025/06/Man-in-Thought-AI.png',0,'attachment','image/png',0),(2000,1,'2025-06-10 10:47:57','2025-06-10 15:47:57','I run to my pen and paper\r\n\r\nFor it is my shelter from the storm\r\n\r\nIt sheds the tears that I will not drop\r\n\r\nWords reflecting the cries that come from my soul\r\n\r\n \r\n\r\nScribbling away as my thoughts are scattered\r\n\r\nFinding flow in the chaos around\r\n\r\nThe doctor said I should journal\r\n\r\nBut journalling unmasks me in front of all\r\n\r\n \r\n\r\nStanding completely naked\r\n\r\nI question who are you to judge\r\n\r\nHave we not all sinned or done something foolish\r\n\r\nHas perfection been a constant in the lives of us all?\r\n\r\n \r\n\r\nHappiness, Sadness, and pure disgust\r\n\r\nWe feel it deep within\r\n\r\nHow we decide to digest poison\r\n\r\nAt times reflect how we digest the sweet\r\n\r\n \r\n\r\nI write my thoughts on paper\r\n\r\nInk flowing from my pen\r\n\r\nMy absent voice speaks loud and clear\r\n\r\nIn my solitude it cannot be contained\r\n\r\n \r\n\r\nRegurgitating my feelings\r\n\r\nI face it all in front of me\r\n\r\nIt is true that in order to master oneself\r\n\r\nYou have to face what lies beneath\r\n\r\n ','','','inherit','closed','closed','','1996-revision-v1','','','2025-06-10 10:47:57','2025-06-10 15:47:57','',1996,'https://www.monicarenata.com/?p=2000',0,'revision','',0),(2001,1,'2025-06-10 10:48:48','2025-06-10 15:48:48','I run to my pen and paper\r\n\r\nFor it is my shelter from the storm\r\n\r\nIt sheds the tears that I will not drop\r\n\r\nWords reflecting the cries that come from my soul\r\n\r\n \r\n\r\nScribbling away as my thoughts are scattered\r\n\r\nFinding flow in the chaos around\r\n\r\nThe doctor said I should journal\r\n\r\nBut journaling unmasks me in front of all\r\n\r\n \r\n\r\nStanding completely naked\r\n\r\nI question who are you to judge\r\n\r\nHave we not all sinned or done something foolish\r\n\r\nHas perfection been a constant in the lives of us all?\r\n\r\n \r\n\r\nHappiness, Sadness, and pure disgust\r\n\r\nWe feel it deep within\r\n\r\nHow we decide to digest poison\r\n\r\nAt times reflect how we digest the sweet\r\n\r\n \r\n\r\nI write my thoughts on paper\r\n\r\nInk flowing from my pen\r\n\r\nMy absent voice speaks loud and clear\r\n\r\nIn my solitude it cannot be contained\r\n\r\n \r\n\r\nRegurgitating my feelings\r\n\r\nI face it all in front of me\r\n\r\nIt is true that in order to master oneself\r\n\r\nYou have to face what lies beneath\r\n\r\n ','','','inherit','closed','closed','','1996-revision-v1','','','2025-06-10 10:48:48','2025-06-10 15:48:48','',1996,'https://www.monicarenata.com/?p=2001',0,'revision','',0),(2002,1,'2025-06-10 10:49:41','2025-06-10 15:49:41','I run to my pen and paper\r\n\r\nFor it is my shelter from the storm\r\n\r\nIt sheds the tears that I will not drop\r\n\r\nWords reflecting the cries that come from my soul\r\n\r\n \r\n\r\nScribbling away as my thoughts are scattered\r\n\r\nFinding flow in the chaos around\r\n\r\nThe doctor said I should journal\r\n\r\nBut journaling unmasks me in front of all\r\n\r\n \r\n\r\nStanding completely naked\r\n\r\nI question who are you to judge\r\n\r\nHave we not all sinned or done something foolish\r\n\r\nHas perfection been a constant in the lives of us all?\r\n\r\n \r\n\r\nHappiness, Sadness, and pure disgust\r\n\r\nWe feel it deep within\r\n\r\nHow we decide to digest poison\r\n\r\nAt times reflect how we digest the sweet\r\n\r\n \r\n\r\nI write my thoughts on paper\r\n\r\nInk flowing from my pen\r\n\r\nMy absent voice speaks loud and clear\r\n\r\nIn my solitude it cannot be contained\r\n\r\n \r\n\r\nRegurgitating my feelings\r\n\r\nI face it all in front of me\r\n\r\nIt is true that in order to master oneself\r\n\r\nYou have to face what lies beneath\r\n\r\n ','Writing in My Journal','','inherit','closed','closed','','1996-revision-v1','','','2025-06-10 10:49:41','2025-06-10 15:49:41','',1996,'https://www.monicarenata.com/?p=2002',0,'revision','',0),(2006,1,'2025-07-09 09:48:45','2025-07-09 14:48:45',' \r\n<div id=\"zed_bewz4t6w\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1020px; max-height: 1990px;\">\r\n<div id=\"zed_bewz4t6w\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1020px; height: 1990px; overflow: hidden;\" data-origw=\"1020\" data-origh=\"1990\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 42px; top: 14px; width: 789px; height: 1862px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p style=\"margin: 0px; color: black; font-size: 14px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-family: \'Bad Script\', cursive; font-size: 18pt; background-color: transparent;\">A dog sits in the living room</span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">You two just finished playing fetch<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I am scouring the internet trying to figure out our next trip<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Our sons play on the football team<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">One is a nerd just like me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">We’re patiently waiting for our little girl<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Soon our family will be complete<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">A house in the countryside<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Another in the city<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">We made great decisions in our lives and live life so freely<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I can see it all as clear as day<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I work hard to make it be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I stress myself tirelessly<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">This is the life I want my life to be<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But what if the dog is in the living room<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">And it is just him and I<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">What if our kids never happen?<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">What happens if we never tried? <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">My worry will keep worrying<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">My thoughts would be consumed<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">I will stress myself in the morning, night, and even afternoons<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But then it all finally comes to me on a rainy June night<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe I don’t exist in the future<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">That future that I worry about<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">A twist in my side<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">This realization seems so cold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe God has other plans<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe my dreams are not meant to unfold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"> </span></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">Maybe I do not exist in the future I am so worried about<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">It sounds cold<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">But also there is relief<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; line-height: 115%; font-family: \'Bad Script\', cursive;\">For now I can just live life freely<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18.0pt; line-height: 115%; font-family: \'Abadi Extra Light\',sans-serif; mso-bidi-font-family: \'ADLaM Display\';\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\">And let my life just BE</span><o:p></o:p></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','Future Thinking','','publish','open','open','','future-thinking','','','2025-07-09 09:48:45','2025-07-09 14:48:45','',0,'https://www.monicarenata.com/?p=2006',0,'post','',0),(1998,1,'2025-06-10 10:43:46','2025-06-10 15:43:46',' \r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-wrapper zedity-premium\" style=\"max-width: 1050px; max-height: 1230px;\">\r\n<div id=\"zed_g6kkt2lk\" class=\"zedity-editor zedity-notheme zedity-responsive\" style=\"position: relative; width: 1050px; height: 1230px; overflow: hidden;\" data-origw=\"1050\" data-origh=\"1230\">\r\n<div class=\"zedity-box zedity-box-Text zedity-edited\" data-boxtype=\"Text\" data-ol=\"1\" style=\"position: absolute; left: 0px; top: 0px; width: 843px; height: 1209px; z-index: 12; display: table; table-layout: fixed; background-color: transparent;\">\r\n<div class=\"zedity-content\" style=\"width: 100%; height: 100%; color: black; line-height: 1.2; font-size: 14px; font-family: Arial,Helvetica,sans-serif; display: table-cell; overflow: hidden;\">\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">I run to my pen and paper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">For it is my shelter from the storm<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">It sheds the tears that I will not drop<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Words reflecting the cries that come from my soul<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\"> </span></o:p></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Scribbling away as my thoughts are scattered<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Finding flow in the chaos around<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">The doctor said I should journal<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">But journalling unmasks me in front of all<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\"> </span></o:p></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Standing completely naked<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">I question who are you to judge<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Have we not all sinned or done something foolish<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Has perfection been a constant in the lives of us all? <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\"> </span></o:p></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Happiness, Sadness, and pure disgust<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">We feel it deep within<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">How we decide to digest poison <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">At times reflect how we digest the sweet<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\"> </span></o:p></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">I write my thoughts on paper<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Ink flowing from my pen<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">My absent voice speaks loud and clear<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">In my solitude it cannot be contained<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><o:p><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\"> </span></o:p></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">Regurgitating my feelings<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">I face it all in front of me<o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive; font-size: 22px;\">It is true that in order to master oneself <o:p></o:p></span></p>\r\n<p class=\"MsoNormal\"><span class=\"\" style=\"font-family: \'Bad Script\', cursive;\"><span class=\"\" style=\"font-size: 22px;\">You have to face what lies beneath</span><o:p></o:p></span></p>\r\n \r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ','','','inherit','closed','closed','','1996-revision-v1','','','2025-06-10 10:43:46','2025-06-10 15:43:46','',1996,'https://www.monicarenata.com/?p=1998',0,'revision','',0),(1999,1,'2025-06-10 10:46:54','2025-06-10 15:46:54','','Man in Thought AI2','','inherit','open','closed','','man-in-thought-ai2','','','2025-06-10 10:46:54','2025-06-10 15:46:54','',1996,'http://www.monicarenata.com/wp-content/uploads/2025/06/Man-in-Thought-AI2.png',0,'attachment','image/png',0),(2028,2,'2026-06-19 04:28:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-06-19 04:28:44','0000-00-00 00:00:00','',0,'https://www.monicarenata.com/?p=2028',0,'post','',0),(2029,2,'2026-06-19 04:29:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-06-19 04:29:49','0000-00-00 00:00:00','',0,'https://www.monicarenata.com/?p=2029',0,'post','',0),(2030,2,'2026-06-19 04:29:49','2026-06-19 09:29:49','{\"version\": 3, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-britt','','','2026-06-19 04:29:49','2026-06-19 09:29:49','',0,'https://www.monicarenata.com/wp-global-styles-britt/',0,'wp_global_styles','',0),(2024,0,'2025-07-09 14:48:45','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay0xNS41LWJldGEnLS0+CjwhLS1KZXRwYWNrX1NpdGVtYXBfQnVmZmVyX1BhZ2VfWE1MV3JpdGVyLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Ii8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2l0ZW1hcC54c2wiPz4KPHVybHNldCB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCIgeG1sbnM9Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkiPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vPC9sb2M+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbGxvLXdvcmxkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMjFUMTY6MDI6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jb25uZWN0LXdpdGgtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wMS0wNVQwOTo1MzowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1jYW5ub3RzLW9mLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0yNVQxMzoyMzowOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NhZG5lc3MtaXMtYm9ybi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTI1VDEzOjI0OjU3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJldHR5LWxpdHRsZS1waWN0dXJlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zb21lLXRoaW5ncy13aWxsLW5ldmVyLWNoYW5nZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJldHR5LWZsb3dlcnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjowM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NvbmZlc3Npb25zLW9mLXRoZS1oZWFydC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbmV2ZXItZW5kaW5nLXRpbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21yLWNhcmUtdG9vLW11Y2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0wMVQxODo1MjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktaGF2ZS1iZWVuLXRoaW5raW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oYXBweXRvd24tdGhlLXRyYWluLXN0b3AvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS10ZWFycy1vZi10aGUtd2lsbG93LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pZi1pLWRpZG50LWNhcmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ltLW5vdC15b3VyLV9fX19fX19fX19fX19fX18vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21pc3Rha2VzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGFua3MtZm9yLWJlbGlldmluZy1pbi1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdG8tZGVjb2RlLWEtcmlkZGxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZWF1dGlmdWwtbGllcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhhbmtzLWZvci1iZWluZy1hLWdyZWF0LWZyaWVuZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmFsbGluZy1pbi1sb3ZlLXdpdGgtcG90ZW50aWFsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtc3VuLWNhbnQtc2hpbmUtdGhlLXNhbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1idWxseS1kb2VzLWl0LWV4aXN0LWluLXRoZS1hZHVsdC13b3JsZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1mZWVsLXNvcnJ5LWZvci1uby1vbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZpbmRpbmctaGFwcHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1yb2NrLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93YWl0aW5nLWZvci1vdGhlcnMtdG8taG9sZC1teS1oYW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sZXQtZnJlZWRvbS1yaW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdG9ybXktZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9lbmRsZXNzLWVjaG9lcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXRocmlsbC1pcy1nb25lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ldmVyeS1vdW5jZS1vZi1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1jYW50LW1ha2UteW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93b3Jkcy12cy1hY3Rpb25zLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3UtY2FudC1sZXQtdGhlLXNhbWUtdGhpbmcta2VlcC1odXJ0aW5nLXlvdS1vdmVyLWFuZC1vdmVyLWFnYWluLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zYW5kbWFuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wYXRpZW5jZS1pcy1hLXZpcnR1ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3VtbWVyLWRheXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21vb24tbG92ZS1zdG9wLW92ZXJ2YWx1aW5nLWZhaW50aW5nLXN0YXJzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kcmVhZGZ1bC1ob2xpZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vdmVybG9va2VkLWJpcnRoLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saWZlLXB1cnBvc2UtbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20va2lzc2VkLXRoZS1taWRuaWdodC1tb29uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWFtLXRvby1uaWNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hcHByZWNpYXRlLXRoZS1uaWdodC1za3kvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktdGhvdWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXN1bi1hZnRlci10aGUtc3Rvcm0vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0YW5kaW5nLXVwLWlzLXRoZS1oYXJkLXBhcnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo0NFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hvbGRpbmctb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2J1YmJsZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjMyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZnVsbC1jaXJjbGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOS0xOVQxMzoyNTo1N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZlYXRoZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NhZGF2ZXJzLWRyZWFtLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWRyZWFtZWQtYS1kcmVhbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJvbWlzZXMtYXJlLXRoZXktcmVhbGx5LW1hZGUtdG8tYmUtYnJva2VuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NDhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oZXJvcy1jdXJzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXBhdGgtdG8tdmljdG9yeS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXVubm90aWNlZC1ibG9vbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmlzaGVybWFucy10cmVhc3VyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcG9yY2VsYWluLWRvbGwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo1MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Rhc3RlLXlvdXItd29yZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1sZXR0ZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjozM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RpbWUtaG93LW11Y2gtZG8teW91LXJlYWxseS1oYXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MzNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtc2VhcmNoLWZvci1oYXBweS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vam91cm5leS10by10aGUtbW91bnRhaW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo1Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dvaW5nLWl0LWFsb25lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtd2FpdC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW5zaWRlcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWJyaWNrcy10aGV5LXNoYWxsLXRocm93LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NTlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGV5LXNhaWQtaS13b3VsZG50LW1ha2UtaXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo1OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZseS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjU5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2ludGVyLXRvLXNwcmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE3OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbm8tZXhjZXB0aW9ucy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE3OjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vanVzdC1naXZlLWl0LXlvdXItYWxsLW9yLW1heWJlLW5vdC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE3OjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZG9udC1nZXQtdG9vLWNvbWZvcnRhYmxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTc6MDNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90cmFuc2Zvcm0vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNzowM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2l0cy1oYXJkLWZvci1tZS10by1leHByZXNzLW15LWZlZWxpbmdzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMDZUMTU6MTA6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbS1iZWF1dGlmdWwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNzowNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS10cmFwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTc6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wYXBlci1wZW9wbGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNzowNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3ByZXR0aWVyLXRoYW4tbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNzowN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktdW5kZXJzdGFuZC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA4LTAzVDEzOjIyOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW4tdGhlLWNvcm5lci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1taXNzZWQtdGhlLWJ1cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdmFsZW50aW5lcy1kYXktZnJlZWJpZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2xpY2hlLWxvdmUtcG9lbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZml2ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RvbmUtZmFjZWQtc29sZGllci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91LWktbG92ZS15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Jlc3Qtc2VydmVkLWNvbGQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RpbWUtd2FpdHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvc3QtaGVhcnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hvcGUtaW4tcGVyZmVjdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RpY2t5LXNpdHVhdGlvbnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dpbnRlci1zdG9ybS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjM1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXJlLXlvdS1saXZpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozNVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NuZWFreS1zYXJhLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MzZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ib2pvLXRoZS1iYW5kaXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2pvZWpvZXMtY2hvY29sYXRlcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjM3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1qdXN0LXdhbnQteW91LXRvLWtub3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LWxpZ2h0LWluLXRoZS1za3kvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2luYWRlcXVhdGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doaXRlLWZsYWcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NhbnQtbWFrZS15b3Utc3RheS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGluY2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktY2FtZS1pLXNhdy1pLWNvbnF1ZXJlZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91LWFyZS15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21hbi12cy10aGllZi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhleS13YW50LW1lLXRvLWZvbGxvdy1pbnN0cnVjdGlvbnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktdHJpZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1oZWFydGJyZWFrZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wOS0wNFQxMzo1Nzo0N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doby13YW50cy10by1iZS1ub3JtYWwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2tub2NraW5nLWF0LW15LWRvb3IvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoYXQtcGVyc29uLW5ldmVyLWxlZnQtYS1zaG9ydC1zdG9yeS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQ2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJldHR5LWxpdHRsZS1waWN0dXJlLTIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RhbmNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6NTBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saWZlLWlzbnQtYS1nYW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zbGVlcGxlc3MtbmlnaHQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo1Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xpZ2h0LWluLXRoZS1kYXJrbmVzcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjU0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW0tanVzdC1ub3Qtd2hlcmUtaW0tc3VwcG9zZWQtdG8tYmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo1NFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doYXQtYXJlLXdlLWZpZ2h0aW5nLWZvci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjU0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaGFwcHktaG9saWRheXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo1OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21lbW9yeS13YWxscy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWdpdmluZy10cmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ieWUtbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZ2VudGxlLW15LWRhcmxpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Jlc3QtcGFydC1vZi1teS1kYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS13ZWlnaHQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Rrby88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZWR1Y2F0aW9uLWhhdmUteW91LWJlZW4tZW5saWdodGVuZWQtdG9kYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hvbGRpbmctaW4tdHJ1dGhzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGluZ3MtdGhhdC1tYWtlLW1lLXNtaWxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jYW5keS1jb2F0ZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2tlZXAtaG9waW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kZWNlbWJlci1pcy1zby1jb2xkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zcGVja2xlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9leHRyYW9yZGluYXJ5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9uby1tb3JlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9teS13b3Jrcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjA3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGxlYXNlLWNoZWNrLW91dC1teS1ib29rLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ncm93aW5nLXVwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vZmZpY2lhbGx5LW9mZmljaWFsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kYW5jaW5nLXRlYXJkcm9wcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxpb25zLW5vc2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doYXQtd2FzLWktc3VwcG9zZWQtdG8tZG8vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RvbnQtY3J5LWZvci1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVjZW1iZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JlLXRoYW5rZnVsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9maWxsLW15LWN1cC13aXRoLWNvZmZlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYnJlYWtkb3duLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kZWNpc2lvbnMtanVzdC10aG91Z2h0cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZ2V0LW92ZXItaXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NvbmZldHRpLWhlYXJ0cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXdpbnRlci1tYXJjaC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXNub3ctcXVlZW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JydW5jaC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmxvd2Vycy1ibG9vbS1pbi13aW50ZXItdG9vLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aG8tYXJlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjIyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91LXVzZWQtdG8vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ltLXRyeWluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjIyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGlyZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS1wcm9taXNlZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWNvbnZlcnNhdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3JpdGluZy1wcm9tcHQtaXMtbG92ZS1lbm91Z2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BlYWNlLWJlLXN0aWxsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZ2FyZGVuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ob3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dldHRpbmctcmlkLW9mLXRoZS1idXJkZW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvdmUtbGV0dGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9rcmlzcHkta3JlbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doby1rbm93cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmFjaW5nLWZvcndhcmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoyOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Nob3J0LXN3ZWV0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90dWctb2Ytd2FyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mb2xsb3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDozM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1jb3Zlci11cC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjMzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXMtaS1sYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDozNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FnYWluLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MzZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtaG91c2VjYXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDozNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1wb3VyaW5nLXJhaW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDozN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2luLXlvdXItYWJzZW5jZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWhvc3QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo0Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dyYW5kbWFzLWhvdXNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NDNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZ2l2ZW4tZ2lmdC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjQ1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxvdmVsaWVzdC1vZi1sb3ZlbHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktd2lsbC1ub3QtYmUtYWZyYWlkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pZi15b3UtZXZlci1zaGFsbC1mb3JnZXQtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0wOFQxMToyOTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1wc3ljaGljLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jb25zdHJ1Y3RpdmUtY3JpdGljaXNtLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtbmV3cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjUyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWhvbWVjb21pbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tLzEyMTMxNC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd29ya2luZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGVhbnV0LWJ1dHRlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW1wcmlzb25lZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktZHJlYW0tb2YtbWUtYW5kLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2lsZW5jZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLW1vcm5pbmctaHVzdGxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtY2xpbWIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1sYXN0LWtpc3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LWZhdm9yaXRlLWZsb3dlcnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1jb2xsZWN0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MDFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wcmV0dHktcHJldHR5LXByZXR0eS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1jb3VsZC1zYXktaS1taXNzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbW9uZXktbW9uZXktbW9uZXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowNVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dyYW5kcGEtc2FpZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hhdGUtYW4tdW5uZWNjZXNzYXJ5LWJ1cmRlbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYS1uZXctdHJ1dGgtanVzdC1zb21ldGhpbmctb24tbXktbWluZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGVhcm4tdG8tbGlzdGVuLWxpc3Rlbi10by1sZWFybi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGV0LXlvdXItZ3VhcmQtZG93bi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2FudC1icmluZy1tZS1kb3duLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9rZWVwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MDlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9nZW51aW5lLWtpbmRuZXNzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saWZlLWlzLWJlYXV0aWZ1bC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjExWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2ludGVyLWNvbWVzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jaGFuZ2luZy1vdGhlcnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1zaGlwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aGF0LXdha2VzLXlvdS11cC1pbi10aGUtbW9ybmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbmV2ZXItY2hhbmdlLWZvci1vdGhlcnMtb25seS1jaGFuZ2UtZm9yLXlvdXJzZWxmLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGF0LW1vbWVudC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGVyZmVjdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vMXN0LXBsYWNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtY3V0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aG8taXMtaG9sZGluZy15b3UtYmFjay88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjE4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXMtaS1uZWVkLXlvdS10b2RheS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjE5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcnVubmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLW1hbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVsZXRlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtc29uZy1hYm91dC15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1iZW5lZml0cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjIxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGF0aWVuY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JpdGNoLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtaG91c2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL25ldmVyLWxlYXZlLXlvdS1sb25lbHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zsb3dlcnMtbmV2ZXItYmxvb20vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2p1c3QtYmVjYXVzZS10aGV5LWRvbnQtc2F5LWktbG92ZS15b3UtZG9lc250LW1lYW4tdGhleS1kb250LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ldmVyeW9uZS1lbHNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZS10aGUtY2hhbmdlLXlvdS13aXNoLXRvLXNlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXdvcmRzLXRvLXNheS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc29tZWJvZHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NyeWluZy1pbi10aGUtcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktbmlnaHQtdW5kZXItdGhlLXN0YXJzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vbi10aGUtcm9hZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktaGVhcnQtYmVhdHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1zZWNyZXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOS0wMlQxNjo1NjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NwZWFrLWxpZmUtaW50by1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjM1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmlzaC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjM2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbW9ybmluZ3MtY29tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjM2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhleS1zYWlkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcmVtZWR5LWlzLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9taXJyb3ItbWlycm9yLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtYXdrd2FyZC1idXR0ZXJmbHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0YXRpc3RpY3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JhaW4tcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjM5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2Vla2x5LWNoYWxsZW5nZS0xMC1hY2NvbXBsaXNoLXNvbWV0aGluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaGFwcGluZXNzLWlzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91LXNhaWQteW91LXdvdWxkLXN0YXJ0LXRvbW9ycm93LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWtpbmRhLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9leWUtZm9yLWFuLWV5ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQ1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZXZlcnlvbmUtaXMtYS13aW5uZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FuLXVudG91Y2hlZC1tZW1vcnkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS1saWdodC11cC1teS1saWZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mb3JldmVyLW5ldmVyLWxhc3RzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbi10aGUtZW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWNhbnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zpbmdlci1wb2ludGVycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQ5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaGF2ZS15b3UtZXZlci1oYWQtYS1zaGFkb3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doYXQtaXMtdGhlLXBvaW50LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTktdGFrZS10aW1lLXRvLW5vdGljZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjUyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWpvdXJuZXktb2YtdGhlLWhlYXJ0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLXZzLWhhdGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hvcnJpZmljLXRyYXZlbHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RvbW9ycm93LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTgta25vdy15b3VyLXdvcnRoLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hLW5ldy1iZWdpbm5pbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JpdmVyLW9mLXRlYXJzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aWNrLXRvY2svPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dlZWtseS1jaGFsbGVuZ2UtNy1maW5kLW91dC13aGF0LWluc3BpcmVzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjU5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RhbmRhcmRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pZi1pLWhhZC1hLW1pbGxpb24td2lzaGVzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZWNhdXNlLWktaGF2ZS1hLXNpc3Rlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjAyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXRydXRoLWFib3V0LW15LWxvdmUtcG9lbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWtpbmRlc3QtaGVhcnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N3ZWV0LWxvdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS13aW5keS1uaWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVhci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2Vla2x5LWNoYWxsZW5nZS02LXNoYXJlLWEtY2hpbGRob29kLW1lbW9yeS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcXVpdC1naXZlLXVwLXlvdXJlLWJlYXRlbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdG8teW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mcm9tLWhlYWQtdG8tdG9lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbS1nbGFkLWl0LXdhc250LW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTUtbGlzdC0yNS10cnV0aHMtYWJvdXQteW91cnNlbGYvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2EtY2hvaWNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kcmlmdGluZy1hd2F5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTQtZGV0ZXJtaW5lLWhvdy15b3Utd2FudC1zaXR1YXRpb25zLXRvLWFmZmVjdC15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dpdGhvdXQtd29yZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NwZWFrLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtd29ybGQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JlYWxpdHktdHYvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dlZWtseS1jaGFsbGVuZ2UtMy1hcHByZWNpYXRlLXdoYXQteW91LWhhdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktYW0tanVzdC1saWtlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXMtaS13YWxrLWluLW15LWRyZWFtcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbG92ZS1ydW4tZnJlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYnJvd24tYmx1ZS1ncmVlbi1hbmQtaGF6ZWwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dpbnRlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2h5LWRvLXdvbWVuLXNheS1jaGlsdmFscnktaXMtZGVhZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2UtYXJlLXRvZ2V0aGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTIta25vdy10aHlzZWxmLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mbG9hdGluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc21hbGwtYnV0LXN3ZWV0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtdHJ1dGgtc2hhbGwtc2V0LXlvdS1mcmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMTItMjNUMDM6Mjc6NTZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZW5lYXRoLXRoZS13aWxsb3ctdHJlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWZlYXItb2YtYmVpbmctc2luZ2xlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZW4tYW5kLXBhcGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTEtdGFrZS10aGUtdGltZS10by1leHBlcmllbmNlLXRoZS13b3JsZC1hcm91bmQteW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWEtcmFuZG9tLXRob3VnaHQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1iYXR0bGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hhdC1hcmUteW91LXRoYW5rZnVsLWZvci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXNlZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1yZWFsaXphdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaWYtbG92ZS13YXMtbWVhbnQtZm9yLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZHJpbmsvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1saXR0bGUtZ2lybC13aG8tYmVsaWV2ZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZXNlLWZlZWxpbmdzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hcmUteW91LXN1cmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS13YWxsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pdHMtbm90LW11Y2gtYnV0LWl0cy1hbGwtaS1oYXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcmVhbGl0eS1vZi1hLWxvc3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LWhlYXJ0LWluLXdvcmRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aHktYXJlLXdlLWFmcmFpZC10by1mYWxsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90cnVlLWJlYXV0eS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZ29zc2lwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9raW5kbmVzcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVlbGluZy1hbG9uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA5LTA0VDEyOjI4OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWVuZGxlc3MtY2lyY2xlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kcmFmdC1tZS1hLXBvcnRyYWl0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMTY6MzA6MDJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaXRzLW9ubHktdGVtcG9yYXJ5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjZUMDI6NDY6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9uby1sb3ZlLWxvc3Qtbm8tbG92ZS1mb3VuZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hvLWFyZS15b3UtdG8tdGhlLXdvcmxkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWxpdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lzLXRoaXMtcmVhbGx5LWxvdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbGxvLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hYm91dC1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE5LTA3LTExVDE5OjA3OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktbW9tZW50LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMjFUMTg6NTI6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcm9zZXMtdGhvcm4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0yN1QxMjo1OTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1jYXVsZHJvbi1vZi1kZWNlaXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOS0xNlQxODowODowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktdHJ5LXRvLXdyaXRlLWEtaGFwcHktcG9lbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTMxVDE4OjI5OjUxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2VjcmV0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMDVUMDE6MTQ6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZS1raW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMDZUMTQ6NDI6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWluLWNhc2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0wM1QxODoyMjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3VuYm90aGVyZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0wOFQwMDoxOTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RocmVlLXdvcmRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMDhUMTM6NDQ6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90by1zYXktaXQtZG9lc250LWJvdGhlci1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTA5VDEwOjUzOjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZ29uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTA5VDE0OjMyOjQ1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGVzc29ucy1vZi1wYXN0LXllc3RlcmRheXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0xMFQxNDozMzo0MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RvZGF5cy1hbmQteWVzdGVyZGF5cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTEwVDE4OjA2OjIzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3VuZGF5LW1vcm5pbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0xM1QxMzoyNDo1Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JhaXNpbmctcm95YWx0eS1wcmluY2Vzcy1xdWVlbi1wcmluY2Uta2luZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTE2VDEyOjQzOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3Bva2VuLXdvcmRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMjFUMTc6MDg6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93b3JraW5nLW9uLWEtcHJvamVjdC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTIxVDIzOjU2OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2V0LXlvdS1mcmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMjFUMTg6NTA6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wbGVhc2UtZG9udC1mYWxsLWluLWxvdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0yM1QyMDo0MjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2luLXlvdXItc2xlZXAvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0yM1QwMToxOTo0OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lsbC10b2RheS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTI0VDE2OjM3OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc29tZXRoaW5nLXJlYWwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0wMlQxNDozMzowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JlbWluZGVycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTI4VDAwOjQ5OjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZm9yZXZlci1qdXN0LXlvdS1hbmQtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMC0yOFQwMToxODozM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NpdHRpbmctYW1vbmctZmxvd2Vycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEwLTI5VDEzOjI0OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZnJlYWtpbmctZmFudGFzdGljLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMjlUMTg6MDE6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mcnVpdC1vZi1saWZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTAtMzBUMDE6MzM6MDVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdGF5LWluLWNoYXJhY3Rlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTAyVDEzOjE4OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2VsbC1ydW5zLWRyeS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTAzVDE0OjA1OjA3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZnJ1aXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0wNVQxNTowMjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xpZmUtaXMtc3dlZXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0xMFQyMjo0ODowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BvaXNvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTEwVDIyOjMwOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmV0dXJuLXRvLWxvdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0xNFQxODowMjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1raW5kZXN0LW9uZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0xNFQxNjo0Mzo1Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Nhbi15b3Utd2FrZS1tZS11cC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTE0VDIxOjU1OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3Rvcm0td2VsbC1tYWtlLWl0LXRocm91Z2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0xNFQxOToyNzoxNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0cmFuZ2VyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTEtMjVUMTM6MTM6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLWJsaW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTEtMjRUMTk6Mjg6MTZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wbGVhc2UtZG9udC1icmVhay1teS1oZWFydC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTExLTI0VDE5OjQzOjE3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2hhcmQtb2YtdHJ1c3QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMS0yNVQxMzoxMjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Jvb2stb2YtbGlmZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTEwVDE1OjUxOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hhdC13YXMtaXQtbGlrZS10by1sb3NlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTEwVDE1OjUwOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGF5cy1vZi10aGUtd2Vlay88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTEwVDE2OjIwOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGxlYXNlLXN0b3AtdGV4dGluZy1teS1waG9uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTEwVDE1OjU1OjE0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWdyYW5kLXBpYW5vLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMTdUMTk6MDU6MzNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZWJibGVzLWluLXRoZS1zYW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMjVUMTk6NDk6MzNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wYWludGluZy1mb3JldmVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMTZUMTY6MTY6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLXdpbGwtbm90LWZhbGwtaW4tbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTE5VDE4OjAyOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1zaGFsbC1sb3ZlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTE5VDIwOjQ0OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLW1pbmQtaXMtYS1iZWF1dGlmdWwtdGhpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMi0yMlQyMTozNjowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1oZWFydGJyZWFrLXNvbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0xMi0yOFQyMDo1MDoyNVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS1uZXZlci1idXktbWUtZmxvd2Vycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTI4VDIxOjAxOjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2FuLWktZ2V0LWEtc2Vjb25kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMjhUMjE6MDY6MTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbS1odW1hbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTEyLTMxVDAxOjQ3OjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaWYtaGVhdmVuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMzFUMDE6MzM6MjdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3Utc2F5LXlvdS1taXNzLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMTItMzFUMDI6MTk6MjRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS8yMS1kYXlzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMDJUMTc6NTA6NDlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbnZpbmNpYmxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTItMTdUMDI6MTM6MTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWEtdGhvdWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTEzVDEzOjEyOjQ3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2FzZS1vZi10aGUtZG9udC13YW50cy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTA2VDE0OjMyOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmV0dGVyLWRheXMtYXJlLWNvbWluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTA2VDE1OjAxOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1taXNzLXlvdS1zby88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTA5VDE4OjA4OjA5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXRlc3QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0xM1QxNzowMzowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lzLXRoaXMtbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTE2VDEyOjIxOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmxlc2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0xNVQyMDo1Mjo0Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2p1c3QtYmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0yMFQwNDoxMToxOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JhYnktY291bnQteW91ci1ibGVzc2luZ3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0xN1QxOTozNDoxN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbGxvLTIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0xN1QwNzoxOTo0OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doaXRlLXBpY2tldC1mZW5jZS1mYW1pbHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0xNlQxOTo1OToxNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktbG9zdC1teS1kcmVhbS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTIwVDE0OjM1OjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGllcy10aGlua2luZy1vdXQtbG91ZC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTIwVDE0OjI5OjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1jYW50LXRoaW5rLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjBUMTk6MDU6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ldmVyeWRheS10b2RheS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTIwVDE5OjMyOjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGFsbS1vZi1teS1oYW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjBUMTk6MzY6NTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWxpdmVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjBUMTk6NDQ6NTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9tb3JlLXRoYW4teW91LWtub3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0yMFQxOTo1Mjo1Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvdmUtd2l0aG91dC1icmFrZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMS0yMVQxOToyNjowOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lycmVzaXN0aWJsZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTI2VDE2OjQxOjE4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJldHR5LXBpY3R1cmVzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjZUMTc6MDE6MzZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9teS1kYXktYW5kLW5pZ2h0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDEtMjZUMTc6MzQ6NTNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yZWxheC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAxLTI4VDE5OjE5OjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdW5hdHRhaW5hYmxlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDNUMTQ6Mjg6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zaW1wbGljaXR5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDNUMTQ6MzU6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mYXN0LW1vbmV5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDNUMTQ6NDA6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wYWludC1teS1waWN0dXJlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDRUMTc6MDM6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sYXVnaC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTA0VDE4OjQ1OjQ5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYS10cmlsbGlvbi1kb2xsYXJzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDRUMTk6MTQ6MDFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtamF1bnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0wNlQxNDozNTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1vcHBvc2l0ZS1vZi1ob25lc3R5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDhUMTk6MjE6MTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9uby1sb25nZXItZGlzYXBwb2ludGVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDhUMjM6NDQ6MjRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3VyZS1nb25uYS1taXNzLW1lLXdoZW4taW0tZ29uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTA5VDAzOjA1OjI0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZHJlYW1pbmctb3V0LWxvdWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0wOVQxMzowNDo0NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2EtcGllY2Utb2YtaGFwcHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0wOVQxNTo1MzoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2F0LXRoZS10b3Atb2YtdGhlLW1vdW50YWluLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMDlUMTY6MDk6MzlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLW1lLXdpdGgtdGhlLWxpZ2h0cy1vbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTA5VDE3OjUzOjQ4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2l0aC1hbGwtbXktaGVhcnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0wOVQxOToxMDoyNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktZmVhci1teS1mcmllbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0xMFQyMjowNTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RlYXJkcm9wcy1pbi10aGUtcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTExVDE2OjM1OjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZHJlYW0tZXllcy1vcGVuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTFUMTk6MDY6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zaXR0aW5nLXNpbGVudGx5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMDQ6NTk6MTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ub3QtZW5vdWdoLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMTI6MzY6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kby15b3Uta25vdy1ob3ctaS1mZWVsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMTM6MTA6NTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ob2xkLXlvdXItYnJlYXRoZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTEzVDE1OjM0OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYWxsLW9yLW5vdGhpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0xM1QxNTowNjo1OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21pc2VyeS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTEzVDE1OjQ5OjAxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmxvY2tzLW9mLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0xM1QxNjowOTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NvbnZlbmllbnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMi0xM1QxNjo1NTo0NFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RlZmluaXRpb24tZGlzYXBwb2ludGVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMTc6MzE6MDFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90YXN0ZS1vZi1zdWNjZXNzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTNUMTc6NTI6MzVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hYnNlbnNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTdUMjE6NTI6MjFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3UtcmVtaW5kLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMThUMTQ6MDI6NTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zYW1teS1zdG9ybS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTE4VDE4OjEyOjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdW5hcG9sb2dldGljLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMTlUMTM6MDk6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9rYXR5LWtpY2tlci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTE5VDE0OjU0OjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGF1bGEtdGhlLXBlcmZvcm1lci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAyLTE5VDE2OjA0OjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVhci10by1saXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMjBUMTM6NDU6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wdXp6bGUtcGllY2VzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMjJUMDY6MzM6MjhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mb3J3YXJkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDItMjNUMTM6NDg6MThaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLWFsd2F5cy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAzLTA0VDAzOjMyOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmVpZ24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMy0xMFQxMjoxODowMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Fza2luZy1hbm5pZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTAzLTEwVDE0OjM0OjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXMtd2UtbGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDMtMTBUMTg6MjI6NTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kb250LXN0b3AtYmVsaWV2aW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDMtMTNUMTk6MDk6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWZvdW5kLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDMtMTNUMTk6NTQ6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGFuay15b3UtZm9yLWh1cnRpbmctbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wMy0xM1QyMDoxMTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktbWlzcy10aGUtd2F5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDMtMTdUMTg6MjU6MTZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZXR0ZXItZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDMtMjVUMDM6MjU6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLXVuZGVyc3RhbmQtdGhlLWx5cmljcy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTA3VDA0OjMwOjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91LWFyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTA3VDExOjI4OjQxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaWYteW91LXdhbnQtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNC0wN1QxMzoyNjoyM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2tlZXAtaXQtdG8teW91cnNlbGYvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNC0wOVQxMzoxMToxOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RlY2lzaW9ucy1kZWNpc2lvbnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNC0wOVQxNTowMTo1MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FmcmFpZC10by1oYXZlLWZlZWxpbmdzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDQtMDlUMTU6NTM6NTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWNhbGxlZC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTEyVDA0OjM2OjQxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcG9vci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTEyVDA0OjU3OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGFpbHktbW90aXZhdGlvbi1kb250LXN3ZWF0LXRoZS1zbWFsbC1zdHVmZi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTEzVDEyOjIzOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGltZS1zdG9wcy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTE0VDEyOjEzOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYi1wLWwteS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTIzVDIwOjMwOjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY29uc2NpZW50aW91cy1jYXJsYS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTI3VDE4OjE0OjM3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYnJhdmUtYmV5b25kLWltYWdpbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNC0yOFQwMTowOTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xpdmUtbGlmZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA0LTI3VDE4OjUxOjM2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmxlc2gteW91LWRvbnQtc2VlLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDQtMzBUMTU6NTM6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oYXBwaW5lc3MtaXQtaXMtaW4teW91ci1oYW5kcy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA1LTAxVDE3OjM0OjIyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZG9udC1jYXJlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDUtMDdUMDM6MDY6MzVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLWNpcmNsZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNS0xNVQxODozMTo1M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NhbmRsZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNS0yNlQxNToxNjo1MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BhdGllbnRseS10aGUtd2FpdC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA2LTAyVDEzOjU4OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd29yZHMtb2YtZ29sZC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA2LTAyVDE3OjQyOjAyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20va2lzcy1tZS1pbi10aGUtbW9ybmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA2LTIyVDE0OjQ5OjA4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmFuZC1haWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNi0wOVQxNToyOTo1MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvdmUtd2hpbGUtYmxpbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wNi0xMVQxODowOToxOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktZmVsbC1pbi1sb3ZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDYtMjJUMTQ6NTg6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aG9zZS10aHJlZS13b3Jkcy88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA2LTI1VDE3OjU2OjIxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXJhY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wOS0wM1QxNTowMTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hpLW15LW5hbWUtaXMtbG92ZWx5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDctMjhUMTk6MTc6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLW1lLXRocm91Z2gtdGhlLXN0b3JtLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDctMjhUMTU6NDE6MDNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yYWxseS1vbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA4LTMxVDAzOjM5OjU2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmlyZWZsaWVzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDgtMDdUMTg6Mzg6MTlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWFtLWxvdmVseS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA4LTEyVDE1OjQzOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY3VyaW9zaXR5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDgtMTRUMTM6MDU6NDFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3VyLWJ1cm5pbmctbGlnaHQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wOC0yMFQxNjo0MzozN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RveGljLWFpci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA4LTIwVDE2OjQ3OjQ4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGV0YWxzLWluLXRoZS13aW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDgtMzFUMDQ6MDA6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZWF1dGlmdWwtbXVzaWMtbGlmZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA4LTMxVDEzOjA1OjQ5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYWZ0ZXJ0aG91Z2h0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMDktMDJUMTY6NTk6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3UtbWlzcy1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA5LTAyVDE2OjU0OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGFuY2luZy1pbi10aGUtcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA5LTA0VDEyOjQwOjM0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmFpcnktdGFsZXMtYXJlbnQtcmVhbC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA5LTA4VDE4OjU3OjUxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXRtb3NwaGVyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA5LTA5VDE4OjU1OjUwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd29tYW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0wOS0yOFQxMjo1MToxMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1sZXR0ZXIteW91cmUtZ29pbmctdG8tbG92ZS1tZS13aGVuLWl0cy10b28tbGF0ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTA5LTI4VDE0OjIyOjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcm9jay1ib3R0b20vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0wMVQxNTozNjo1OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21hc3F1ZXJhZGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0wNVQxMjowMjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTA1VDEzOjU2OjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2FyYm9uLWNvcHktb2YteW91ci1kcmVhbS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTA4VDE3OjA0OjA0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmxvcmVzY2VudC1saWdodHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0xNFQxNjo0OToyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1uaWdodC1rbm93cy1tZS13ZWxsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMTAtMjJUMTI6MzQ6MTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZXRhbHMtb24tdGhlLWZsb3dlci88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTIyVDEzOjE2OjMxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaWYteW91LWV2ZXItZmluZC1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTIyVDE4OjQxOjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZG9udC1ldmVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTAtMjZUMTg6MjM6MzdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jZWlsaW5nLWZhbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTI5VDAwOjQ1OjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktaGVhcnQtdXNlZC10by1iZWF0LWZvci15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0yOVQwMDo0OToyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlLWRhbmNlZC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTI5VDAwOjUxOjA2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY29tYmluYXRpb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0yOVQwMDo1MzoyNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JsYWNraG9sZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTI5VDAyOjA5OjQ2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2lnYXItbWFuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMTAtMjlUMDI6MjU6MjJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oZS13aWxsLW5ldmVyLWxlYXZlLW1lLWFsb25lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTUtMTAtMjlUMDI6NTQ6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iaXR0ZXJzd2VldC88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTI5VDA0OjQ1OjA1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2xvd24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0yOVQwNDo1MTo0MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL29uZS1kYXkteW91bGwtbG92ZS1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEwLTI5VDA1OjEyOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmVzdC1mcmllbmQtYmVzdC1mcmllbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0zMFQwMzozNzo1Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL21pc2NoaWVmLXdlZGRpbmctYmFuZC1hc3RyYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMC0zMFQwMzozOTozN1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ltLWJyb2tlbi88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTExLTE0VDAxOjAzOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbWFrZS15b3Utd2Vhay88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEyLTIzVDA1OjE4OjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2VsZWN0aXZlLWhlYXJpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNS0xMi0zMVQyMDo0MzowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3R1cm5lZC10aGUtcGFnZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTAxVDAyOjEyOjE2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdHVybi1vZmYtZXZlcnl0aGluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTAzVDAzOjE4OjQ2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vanVzdC1jb21lLWhvbWUtaS1taXNzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTAzVDAzOjI3OjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20veW91ci1oZWFydC1pcy1pbi1hLWNsb3NldC88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTA0VDA0OjM0OjI1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2FuZC1pcy1zYW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDEtMDRUMDQ6NTM6MDlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pZC1sb3ZlLXRvLXJlYWxseS1sb3ZlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTA1VDAxOjA3OjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVlbC1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAzLTE0VDA0OjQyOjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1jYW50LWhlbHAteW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDEtMDVUMDE6MTc6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWhhdGUtaG93LW11Y2gtaS1saWtlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTE1VDIxOjA1OjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktd2FpdC1kb2VzbnQtbGFzdC88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAxLTE1VDIxOjIwOjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RyYW5nZXItaW4tbXktYmVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDEtMTVUMjE6Mjc6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLXNhdy15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wMi0wMlQwMjoxOTowNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RpZy1teS1ob2xlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDMtMTRUMDQ6MjM6MTVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ibGFjay1kb3ZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDItMjRUMDA6MTc6MjBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbi1nb2RzLWV5ZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0xMC0yNlQxODowMTowNVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvb2stYW5kLXlvdS1zaGFsbC1maW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDgtMTBUMTY6MjE6MjZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sZXQtdGhlLXN1bi1zaGluZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTAzLTMxVDEyOjE1OjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktdGltZS1pcy12ZXJ5LXByZWNpb3VzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDMtMzFUMTI6NDM6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90cnVzdC10aGUtY3VwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDMtMzFUMTQ6Mjg6NDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWRuZXNkYXlzLXRlc3QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNC0wNFQxNjo0MTo0MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RydXN0LWxveWFsdHktaXMtaGFyZC10by1maW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDQtMDRUMTY6NDA6MTZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wbGF5Z3JvdW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDQtMDVUMTk6NTE6NTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLXdpc2gteW91LWRpZG50LWNhbGwtbWUtYmVhdXRpZnVsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDQtMDVUMjA6MDA6MDNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zaXR0aW5nLWluLWEtYm94LzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDQtMDdUMTM6MjA6MTJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iYXR0bGluZy1taXNzLXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNC0xM1QyMToyNDowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hhdmUteW91LWV2ZXItYmVlbi1hZnJhaWQtdG8tYmUtaGFwcHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNC0xNFQxNzozMDo0MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lzbnQtaXQtZnVubnktdGFibGVzLXR1cm5lZC88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA0LTI2VDE3OjUxOjQ1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdW5yZXF1aXRlZC1taXNmb3J0dW5lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDUtMzFUMTQ6MTg6NTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb2NrZXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNi0wN1QwNjoyNjoyOFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1rZXktZG9lc250LWZpdC88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA2LTA5VDEzOjA5OjUyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbm90LW1lYW50LWZvci1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA2LTEwVDEzOjU4OjQ3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmF0ZWQtZGlzc29sdXRpb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNi0xMFQxODoxODozNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Vuc3Bva2VuLWNhbmRvci88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA2LTEwVDE4OjMzOjQzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmxhY2svPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNi0xN1QxNTo0NzoxMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1kZWNpc2lvbi1zaG91bGQtaS1zdGF5LW9yLXNob3VsZC1pLWxlYXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDYtMjJUMTQ6MzI6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWhvcGUteW91LW5ldmVyLWxvc2UtdGhhdC1zbWlsZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA2LTIyVDE0OjQ3OjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGVybmljaW91cy1yZWNvbGxlY3Rpb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNi0yNFQxMjozMjoyM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwOi8vd3d3LmFtYXpvbi5jb20vTW9uaWNhLVJlbmF0YS9lL0IwMEo2OVVaQksvcmVmPWRwX2J5bGluZV9jb250X2Jvb2tfMSNuZXdfdGFiPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0xMFQxNTo1OTo1OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5hbWF6b24uY29tL0F3a3dhcmQtQnV0dGVyZmx5LU1vbmljYS1SZW5hdGEvZHAvMTQ5MjM0Mzc4MS9yZWY9dG1tX3BhcF9zd2F0Y2hfMD9fZW5jb2Rpbmc9VVRGOCZhbXA7IzAzODtxaWQ9JmFtcDsjMDM4O3NyPSNuZXdfdGFiPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0xMFQxNjoxODozNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5hbWF6b24uY29tL0tleXdvcmQtSW5uZXItU3RyZW5ndGgtTW9uaWNhLVJlbmF0YS9kcC8xNDkyODM0MTQ5P2llPVVURjgmYW1wOyMwMzg7cWlkPTE0NjgxNjU2MDkmYW1wOyMwMzg7cmVmXz1sYV9CMDBKNjlVWkJLXzFfNCZhbXA7IzAzODtzPWJvb2tzJmFtcDsjMDM4O3NyPTEtNDwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDctMTBUMTY6MTk6MjVaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cuYW1hem9uLmNvbS9Nb25pY2EtUmVuYXRhLUtleXdvcmQtTG92ZS0xL2RwLzE0OTI3MjQyMTE/aWU9VVRGOCZhbXA7IzAzODtxaWQ9MTQ2ODE2NTYwOSZhbXA7IzAzODtyZWZfPWxhX0IwMEo2OVVaQktfMV81JmFtcDsjMDM4O3M9Ym9va3MmYW1wOyMwMzg7c3I9MS01I25ld190YWI8L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA3LTEwVDE2OjIwOjEwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1wcmF5LXlvdS1jYXRjaC1tZS13aGVuLWktZmFsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA3LTExVDE0OjI0OjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYWdvbnktb2YtYXNwaHl4aWF0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDctMTNUMTQ6MTU6MjZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saW1pdGxlc3MtbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTEyLTA5VDEzOjQzOjA0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaWYteW91LWtuZXcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0xOFQxMzo1MDozMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0dWNrLWxpa2UtZ2x1ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA3LTIyVDAwOjQxOjM2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdHJ1c3QtaW4tbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0yNVQxNzo1MDowM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dyb3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0yNVQxODoyMTo0NFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tLzg4LWtleXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0yNlQxNDowNDoxNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS1kb250LWtub3ctbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0zMVQwMDoxNTo1OFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1hcnQtb2YtbGlmZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA4LTA1VDE5OjQ3OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3JvbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wOC0wOFQyMTozNDo1NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RhZ2dlcnMta2lzcy88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA4LTA4VDE3OjE4OjA5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW52YWx1YWJsZS1jYW1hcmFkZXJpZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA4LTEwVDE0OjA1OjM2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZXhjZXB0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDktMDZUMjA6MzE6MzNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kaXJ0eS1taXJyb3Itc2VsZi1lc3RlZW0vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0xMC0wNVQxMzo1OTo1N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL29wZW4tbWVzc2FnZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0xMC0xOFQxNzoyNTo1Mlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktd3JpdGUtbXktd3JvbmdzLWluLWNvbG9yLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTEtMzBUMDQ6MDU6MDNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbm9yZGluYXRlLWNvbnRlbXBsYXRpb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0xMi0wM1QxNzoyMTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktc2VlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTEyLTAzVDIyOjQ3OjQ2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vb3B0aWNhbC1pbnRlcnByZXRhdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTEyLTA5VDEzOjQxOjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmVmb3JlLXlvdS10b3VjaGVkLW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTItMDlUMTU6NTQ6NDlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlcnMtcmVtb3JzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTEyLTE2VDE1OjAxOjQxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXNwaXJhdGlvbnMtbWlzZm9ydHVuZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTEyLTE1VDE2OjIzOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW4tdGhlLW1lYW50aW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTItMjhUMDI6MTU6NTBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdHJlbmd0aC1wZXJzb25pZmllZC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAyLTA5VDE2OjM3OjA5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hvLWFtLWkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wOVQxNjozNDo0OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktZG8tbm90LWZlYXItdGhlLWdhbGxvd3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0xM1QxNjoyNzowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1hcnQtb2YtcGVyc3Vhc2lvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAyLTEzVDIyOjA3OjI5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY29sZC1hcy1pY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0xNVQxOToxODo0Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BhdXNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDItMjJUMTY6MDQ6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3VyLXdhbGsvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0yNFQxMzozNjo1N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3lvdS1taXNzZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0yNFQxNzo1Mjo1MFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktd2lzaC15b3UtY291bGQtc2VlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDMtMTRUMjM6MDk6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9icmFpZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMy0xNFQyMzoxNDowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FuYWx5dGljYWwtc2lkZS1icmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTIwVDIwOjU1OjU1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2lyY2xpbmctdGhlLXNxdWFyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTE2VDE4OjE3OjE5WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWJsb29taW5nLXRyZWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMy0yMFQyMToyODo0N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbHBpbmctaGFuZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMy0yNVQxODowMTowOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL25pZ2h0dGltZS1kaWxlbW1hLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDMtMjVUMTg6MzQ6MzBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZW9wbGUtd2lsbG93cy88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTI1VDE5OjAzOjEwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXVuZGVydmFsdWVkLWNydXNhZGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMDVUMDE6MzQ6MjNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zb21lb25lLXRvLXNvbWVvbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0wNlQwMDo0MzoyMVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZvcmdvdHRlbi1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA0LTEyVDAyOjM4OjI4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmUtaGFwcHktYW5kLWdldC1wYWlkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMTVUMTg6NDg6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdGF0aW9uYXJ5LXRyYXZlbGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMjBUMDM6MjU6NTdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oZWF2eS1mb2cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0yNVQwMTo1MzoyMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Vhc3ktYnJlYXRoZS1hcmVudC11bmRlcndhdGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMjVUMDI6MDY6MzJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mYWxsZW4tc29uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMDlUMDM6NDM6NDRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90by10aGUtYnJpbS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA1LTA5VDIyOjA5OjUzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktY29sb3ItZnJpZW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMjdUMTA6NTU6NTRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pY2UtaWNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMjdUMTE6MzQ6MDBaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yb290cy88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA1LTMxVDEzOjI2OjE0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmV3YXJkLWZvci10aGUtd2FpdC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA2LTAyVDEzOjQwOjQ2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbmlnaHQtbGlmZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA2LTA2VDAzOjU4OjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdG8tdGhlLXdpbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNi0xMlQwNDozNDo1N1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xhdGUtZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDYtMTJUMDQ6NDA6MjRaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sYXRlLW5pZ2h0LXRydXRocy88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA2LTEyVDA0OjUyOjMwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcGFwZXItcHVzaGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDYtMTJUMDQ6NTU6NDJaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kYXktaW5uZXItYmFyay10dXJuZWQtYnJvd24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNi0xMlQwNTo0MTowNFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Nsb3NlZC1tb3V0aC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA2LTE4VDIyOjEzOjI3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2hlbWlzdHJ5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDctMTZUMTY6MzM6MjFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtYnJva2VuLW1hbi88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA3LTI3VDE1OjQ3OjAyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVlcC1kaXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDgtMDhUMTI6NTk6MTFaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zZWFzb25zLWNoYW5nZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA4LTIwVDIzOjIyOjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHVwcGV0ZWVycy1kZW1pc2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wOC0xNlQxODo0NDoxM1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZpcmUtdG8tc21va2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wOC0xOFQwMzowNDo0OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RhaXNpZXMtaW4tdGhlLWRlc2VydC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA5LTE2VDA0OjI3OjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXJldml2aWZpY2F0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMTEtMDZUMDQ6Mzk6NTNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vYnNlcnZhdGlvbi1vZi1iZXRyYXlhbC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTExLTA2VDA0OjUyOjM3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmFuZG9tLXBob3Rvcy88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTExLTA2VDA1OjI1OjIzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RyZWFtLW9mLWxldGhlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTgtMDEtMDJUMDA6NDE6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jb21taXRtZW50LWRpbGVtbWEvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOC0wMi0xMlQyMTo1NDo0NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JlLWdvb2QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOC0wNC0xN1QxODoyOTo0Nlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1rZXlzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTgtMDQtMTdUMTk6MTU6MzhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vbmUtZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTgtMDQtMjVUMTY6MDM6NDhaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdGFuZC1zdGlsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE4LTA2LTIyVDIxOjI1OjAxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1kby1ub3QtY2FyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE4LTA3LTE3VDE4OjI1OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbWlycm9yLW1vdGl2YXRpb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOC0xMC0wNVQwMzo1MDozNlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1qb3VybmV5LXRvLXRoZS13aW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOS0wNC0wMlQxMTozMTowMFo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hpcy88L2xvYz4KICA8bGFzdG1vZD4yMDE5LTAzLTIxVDAzOjQzOjU4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbG92ZS1zdG9wLzwvbG9jPgogIDxsYXN0bW9kPjIwMTktMDMtMjFUMDM6NTg6MzlaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS91bnNlZWFibGUtZGVzY2VudC88L2xvYz4KICA8bGFzdG1vZD4yMDE5LTA5LTA3VDE4OjA4OjAwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhpbi1za2luLXNvY2lldHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOS0wOS0yNlQxNjowMjo1OVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2l0LWhhcy1iZWVuLWEtd2hpbGUtbGV0LW1lLXdyaXRlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTktMTEtMjZUMTc6MzI6MjZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jYW4teW91LWZlZWwtdGhlLXJhaW5kcm9wcy88L2xvYz4KICA8bGFzdG1vZD4yMDE5LTExLTI2VDE3OjU3OjQyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20va2VlcC1nb2luZy1vbi88L2xvYz4KICA8bGFzdG1vZD4yMDIwLTExLTE1VDE1OjMxOjEyWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hvLXlvdS1hcmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMC0xMS0xNVQxNTo0MToxOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2VzdHJhbmdlbWVudC88L2xvYz4KICA8bGFzdG1vZD4yMDIwLTEyLTAyVDE5OjI1OjU2WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY29mZmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMjAtMTItMTJUMDc6MTQ6NDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hbmdlbC13aW5ncy88L2xvYz4KICA8bGFzdG1vZD4yMDIwLTEyLTIzVDE2OjA4OjE1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGl2aW5nLWRpbGVtbWEvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMS0wOC0wMlQxODozMToxMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RlYXItZnJpZW5kLW1vdmUtb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMS0wOS0xMlQwNjowODozMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvdmUtZGlmZmVyZW50LzwvbG9jPgogIDxsYXN0bW9kPjIwMjEtMDktMTJUMDY6MTI6MzdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mZWFyLW9mLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMS0wOS0xOVQxNjowMDo0NVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktd2lsbC1iZS1saWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDIxLTExLTEwVDAxOjI0OjM1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVzZW5zaXRpemVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMjEtMTEtMTBUMDM6MjY6NTNaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3N0LWFuZC1mb3VuZC88L2xvYz4KICA8bGFzdG1vZD4yMDIxLTExLTI5VDE5OjU4OjE4WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcmVwcmVzc2VkLWVtb3Rpb25zLzwvbG9jPgogIDxsYXN0bW9kPjIwMjItMDItMTZUMDM6MTc6MDdaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZmluYWwtdmlld2luZy88L2xvYz4KICA8bGFzdG1vZD4yMDIyLTAyLTE2VDAzOjI3OjEzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxhc3QtZmlnaHQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMi0xMC0yN1QwMjoxODoyOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JlZmxlY3Rpbmctdmlld3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMy0wMi0xNlQwMzozMTo1MVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RlZXAtZ2F6ZS88L2xvYz4KICA8bGFzdG1vZD4yMDIzLTExLTI5VDE5OjQyOjQ1WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3ByaW5rbGVzLW9mLXdoaXRlLzwvbG9jPgogIDxsYXN0bW9kPjIwMjQtMDEtMDJUMDU6MTA6MDZaPC9sYXN0bW9kPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wcmlzb25lci13aXRoLXRoZS1vcGVuLWRvb3IvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNC0wMS0wMlQxNzo1MzoyOVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NhdmUteW91cnNlbGYvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNC0xMC0xN1QxNTozMTozNVo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lsbC1iZWxpZXZlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDI0LTExLTA0VDEzOjE2OjIwWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJpZGUtbWFzay1vZi1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDI0LTExLTA4VDE1OjMxOjAzWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXBoaWxpc3RpbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNC0xMS0xOVQxMzoyNTo0M1o8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xhc3QtZmlyc3QtZGF0ZS88L2xvYz4KICA8bGFzdG1vZD4yMDI0LTEyLTIwVDAzOjIwOjE3WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3Vuc2hpbmUtc2hhZG93cy88L2xvYz4KICA8bGFzdG1vZD4yMDI1LTA1LTIzVDAxOjMzOjI0WjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGVuLXRob3VzYW5kLWRheXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNS0wNi0xMFQxNDo1ODowMlo8L2xhc3Rtb2Q+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dyaXRpbmctaW4tbXktam91cm5hbC88L2xvYz4KICA8bGFzdG1vZD4yMDI1LTA2LTEwVDE1OjQ5OjQxWjwvbGFzdG1vZD4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZnV0dXJlLXRoaW5raW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMjUtMDctMDlUMTQ6NDg6NDVaPC9sYXN0bW9kPgogPC91cmw+CjwvdXJsc2V0Pgo=','sitemap-1.xml','','draft','closed','closed','','','','','2026-02-15 23:06:27','2026-02-16 05:06:27','',0,'https://www.monicarenata.com/?p=2024',0,'jp_sitemap','',0),(2025,0,'2025-07-09 14:47:59','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay0xNS41LWJldGEnLS0+CjwhLS1KZXRwYWNrX1NpdGVtYXBfQnVmZmVyX0ltYWdlX1hNTFdyaXRlci0tPgo8P3htbC1zdHlsZXNoZWV0IHR5cGU9InRleHQveHNsIiBocmVmPSIvL3d3dy5tb25pY2FyZW5hdGEuY29tL2ltYWdlLXNpdGVtYXAueHNsIj8+Cjx1cmxzZXQgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IGh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkvc2l0ZW1hcC54c2QiIHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczppbWFnZT0iaHR0cDovL3d3dy5nb29nbGUuY29tL3NjaGVtYXMvc2l0ZW1hcC1pbWFnZS8xLjEiPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXRlYXJzLW9mLXRoZS13aWxsb3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjowNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDYvd2VlcGluZ3dpbGxvdy1qcGcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXJvY2svPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDUvNDI2MTIwNjExMl81NDRkMzlhZmEyX28ucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2FpdGluZy1mb3Itb3RoZXJzLXRvLWhvbGQtbXktaGFuZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjA5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNS90dW1ibHJfbWRlM3Y5VWFMUDFxZjAxZmtvMV81MDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGV0LWZyZWVkb20tcmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjEwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNS8xMDM4LnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0b3JteS1kYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjoxNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDUvc3Rvcm15LWRheS1jYXJvbC1tY2xhZ2FuLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2VuZGxlc3MtZWNob2VzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzA1L2hlYXItbWUtbm93LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS10aHJpbGwtaXMtZ29uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjIwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNS9TYWQtY291cGxlLWxvc2luZy1sb3ZlLWdvb2QtYnllLWxldHRpbmctZ28tc2FkLWxvdmUtd2FsbHBhcGVyLWxlYXZpbmctcXVvdGVzLXBob3Rvcy1mYW56d2F2ZS1uZXQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZXZlcnktb3VuY2Utb2YtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjoyM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDUvTG92ZS1XYWxscGFwZXJzLWxvdmUtMzMwMDIxMzQtMTkyMC0xMjAwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktY2FudC1tYWtlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjI0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNS8wM2JiZTA3ZWQ1NzlhODNiNzg2NWQyM2FiMTc2OGZlNC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zYW5kbWFuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6MjVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzA1L3NhbmQtMi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdW1tZXItZGF5cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjI1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNC9mbGlwZmxvcHNfXzEyODIxNDkyNTlfMDA0MC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9raXNzZWQtdGhlLW1pZG5pZ2h0LW1vb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjozOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDQvV2hlbi1UaGVyZS1BcmUtRm9vdHByaW50cy1Pbi1UaGUtTW9vbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9raXNzZWQtdGhlLW1pZG5pZ2h0LW1vb24vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo0MFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDQvZTUwNTM1NWYzNjYzNDcwNDQ4NmZhZTBlZWJhYmExMjEuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXBwcmVjaWF0ZS10aGUtbmlnaHQtc2t5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NDJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzA0L2JlYXV0aWZ1bC1uaWdodC1za3ktbW9vbm91cmFub3Mtb3VyLWZhcnRoZXItc2t5LWN1cnNlZC1sdWt0N2lyay5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtc3VuLWFmdGVyLXRoZS1zdG9ybS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNC9hZnRlci10aGUtc3Rvcm0uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RhbmRpbmctdXAtaXMtdGhlLWhhcmQtcGFydC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNC9yaXNlLXVwLWFuZC1iZS10aGUtYmVzdC15b3UtY2FuLWJlLWJlY2F1c2UteW91ci13b3JsZC1pcy13YWl0aW5nLWZvci15b3UuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaG9sZGluZy1vbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wNC9ob2xkaW5nLW9uLWxldHRpbmctZ28uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVhdGhlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy9mZWF0aGVycy1pbi10aGUtd2luZC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWRyZWFtZWQtYS1kcmVhbS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy8xMDgzODQyOC0yNTYtazc1NzYyMy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oZXJvcy1jdXJzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjQ4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy9sb25lbHktd2Fycmlvci5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcGF0aC10by12aWN0b3J5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NTBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAzL3ZpY3RvcnktMDIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmlzaGVybWFucy10cmVhc3VyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy82NDkzMzAzODA3X2EwNTc1MzY2NTFfei5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wb3JjZWxhaW4tZG9sbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjUxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy8zNS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtbGV0dGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NTFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAzL2xldHRlci5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9nb2luZy1pdC1hbG9uZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE2OjU3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMy8yNzExNDA1LTUwNjEwNi15b3VuZy13b21hbi1zaXR0aW5nLWFsb25lLWluLXRoZS1jaW5lbWEtYW5kLXdhdGNoaW5nLWEtbW92aWUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXdhaXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNjo1OFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDMvcXVvdGUtYWJvdXQtZG9udC1tYWtlLW1lLXdhaXQtanVzdC1iZWNhdXNlLXlvdS1rbm93LWktd2lsbC5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbnNpZGVzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTY6NThaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAzL2RvbnQta2VlcC15b3VyLWZlZWxpbmcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2ludGVyLXRvLXNwcmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE3OjAwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMi93aW50ZXItdG8tc3ByaW5nLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL25vLWV4Y2VwdGlvbnMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxNzowMlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDIvUGVyc29uYWwtUEFDLTEwLTItMTItTm8tRXhjZXB0aW9ucy1iYWNrLTEucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW0tYmVhdXRpZnVsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTc6MDVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyL1lvdS1BcmUtQmVhdXRpZnVsLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS10cmFwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTc6MDZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyL2hhbmdpbmctMjUyNTIwY2xpZmYuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1taXNzZWQtdGhlLWJ1cy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMi9idXNfdHJhbnNwb3J0YXRpb25fMTE4Mzg2X3Rucy5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS92YWxlbnRpbmVzLWRheS1mcmVlYmllLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MjhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyL1ZhbGVudGluZS1zLUZyZWViaWUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdmFsZW50aW5lcy1kYXktZnJlZWJpZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMi80MXIxdnJyS2taTC5fU1kzNDRfUEpsb29rLWluc2lkZS12Mi1Ub3BSaWdodC0xLTBfU0gyMF9CTzEtMjA0LTIwMy0yMDBfLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3ZhbGVudGluZXMtZGF5LWZyZWViaWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wNy0xMFQxNTo0NzozOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDIvNTFwc2UzODBSSkwuX1NZMzQ0X1BKbG9vay1pbnNpZGUtdjItVG9wUmlnaHQtMS0wX1NIMjBfQk8xLTIwNC0yMDMtMjAwXy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS92YWxlbnRpbmVzLWRheS1mcmVlYmllLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MjlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyLzQxU2xXWE4xWFZMLl9TWTM0NF9QSmxvb2staW5zaWRlLXYyLVRvcFJpZ2h0LTEtMF9TSDIwX0JPMS0yMDQtMjAzLTIwMF8uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZml2ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjI5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMi9jYl9jb3VwbGVfYmVkXzA3MDYwMV9tcy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdG9uZS1mYWNlZC1zb2xkaWVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MzBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyLzc4MjE5X21heC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3N0LWhlYXJ0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MzFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAyL2Jyb2tlbi1oZWFydC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdGlja3ktc2l0dWF0aW9ucy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjMzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS9IYW5kZWxpbmctc3RpY2t5LXNpdHVhdGlvbnMtaWxsdXN0cmF0aW9ucy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aW50ZXItc3Rvcm0vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTozNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDEvY2xhdWRpYS1hZGFtcy1sb2ctY2FiaW4taW4tc25vd3ktd29vZHMtY2hpcHBld2EtY291bnR5LW1pY2hpZ2FuLXVzYS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zbmVha3ktc2FyYS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjM2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS9zbmVha3kuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYm9qby10aGUtYmFuZGl0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MzdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAxL0Rpdm9yY2UxLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ktanVzdC13YW50LXlvdS10by1rbm93LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6MzhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzAxLzE3LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LWxpZ2h0LWluLXRoZS1za3kvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTQvMDEvWW91LTIwTGlnaHQtMjBVcC0yME15LTIwTGlmZS0yMGltYWdlXzEucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW5hZGVxdWF0ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS9vdmVyY29taW5nLWluYWRlcXVhY3ktMjE0NzM1ODQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hpdGUtZmxhZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS93dmUtd2hpdGUtZmxhZy0yNjAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20va25vY2tpbmctYXQtbXktZG9vci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQ2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS9SZWFkeS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wcmV0dHktbGl0dGxlLXBpY3R1cmUtMi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjQ3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wMS9OYXAtMjB0aW1lLTIwcmVhZHktMjB0by0yMHBvc3QuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGFuY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToxOTo0OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTIvZGFuY2VyczEuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGlmZS1pc250LWEtZ2FtZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjUxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi8zMWUyMTRiNi02ODRhLTQ4ZjctOWVmNy1jMWFiYzNkN2VmOTctdmlkZW8tZ2FtZS1saWJyYXJ5LW1hcmlvLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NsZWVwbGVzcy1uaWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjUyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi9DYW5fdFNsZWVwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xpZ2h0LWluLXRoZS1kYXJrbmVzcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjE5OjU0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi9mb2ctaW4tZGFyay1mb3Jlc3QuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hhdC1hcmUtd2UtZmlnaHRpbmctZm9yLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MTk6NTRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEyLzQzODkwNjQ5Nl82NDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbWVtb3J5LXdhbGxzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEyL3dhbGxzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1naXZpbmctdHJlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE2LTA3LTEwVDE1OjQ2OjE0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi90aGUtZ2l2aW5nLXRyZWUtamVycnkta2lyay5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ieWUtbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjAzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi90dW1ibHJfbWxjNmMxYjZIbDFxZjVxeGNvMV8yNTAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmVzdC1wYXJ0LW9mLW15LWRheS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjA0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi9zdG9jay1waG90by05NTQ0NzE2LW1hbi1jb21pbmctaG9tZS1mcm9tLXdvcmstbG92ZXJzLWtpc3NpbmcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGtvLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MDZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEyL2s0NjYwNjI5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NwZWNrbGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDowNlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTIvMjAwOTAzLWZsb2tvdC1hcnQ3LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BsZWFzZS1jaGVjay1vdXQtbXktYm9vay88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjA3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi9TY3JlZW5zaG90XzIwMTMtMTEtMjEtMDctMTgtNDAucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZ3Jvd2luZy11cC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjA4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMi93aGVuLWktZ3Jvdy11cC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vZmZpY2lhbGx5LW9mZmljaWFsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEyL0V4X0J1c2luZXNzX0J1c2luZXNzbWFuLTIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVjZW1iZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTIvSU1HXzc1Ni03NjE4MjguanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmlsbC1teS1jdXAtd2l0aC1jb2ZmZWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDoxNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvNjQ4NjMxOS1jdXAtb2YtY29mZmVlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dldC1vdmVyLWl0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL0J1aWxkSXQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY29uZmV0dGktaGVhcnRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL0hlYXJ0LXNoYXBlZC1jb25mZXR0aS0wMDcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXdpbnRlci1tYXJjaC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjE4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9pbWFnZS0yMGNlbWV0ZXJ5LTIwaW4tMjB3aW50ZXIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYnJ1bmNoLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MTlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExLzgwNTk3MzA1MzBfNmQ2OTllNGMwZV96LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zsb3dlcnMtYmxvb20taW4td2ludGVyLXRvby88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjIwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9hcjEyOTQ1MTc5Mjc3MjQzNC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aG8tYXJlLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9hZnJpY2FuLWFtZXJpY2FuLWJveS1sb29raW5nLWluLW1pcnJvci1GMjE0LTIyLTYwNS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3UtdXNlZC10by88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9zdHJhbmdlci03MDR4MzAwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RpcmVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL3R1bWJscl9sZnEyMDZLenpLMXFkZzhxd28xXzUwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZWFjZS1iZS1zdGlsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS83YzQzNGVlMjUzYmViZmU5YmIyMjQ4N2Y4YjMxYmExNi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZWFjZS1iZS1zdGlsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9wZWFjZS1iZS1zdGlsbC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZ2FyZGVuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL3Rob3VnaHRzLWFyZS1zZWVkcy02NDB4OTYwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xvdmUtbGV0dGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL2xvdmUtaGVhcnQtd3JpdGluZy1sZXR0ZXIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hvLWtub3dzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MjlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL2p1c3QtZnJpZW5kcy0wMS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yYWNpbmctZm9yd2FyZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjI5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS95b3VyLXRob3VnaHRzLWNyZWF0ZS15b3VyLWZ1dHJlLWNyb3AucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2hvcnQtc3dlZXQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDozMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvNjczNzA5NTdfc3dhbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90dWctb2Ytd2FyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6MzBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL21hbl93b21hbl90dWctb2Ytd2FyLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1ob3VzZWNhdC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjM2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9kZXhzdGFyci0zMDB4MjUwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2luLXlvdXItYWJzZW5jZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjQxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9MdWp1cmlhX0x1c3RfUGVjYWRvX09yaWdpbmFsXy0zOTY5OTIxODI5LS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ncmFuZG1hcy1ob3VzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjQzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9GYWlyaG9wZV9Td2luZy11bmRlci10aGUtdHJlZS05eDcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWdpdmVuLWdpZnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo0NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvaW1nXzA0MTQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxvdmVsaWVzdC1vZi1sb3ZlbHkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo0OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvcHJldmlldy5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLXdpbGwtbm90LWJlLWFmcmFpZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjUwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS93YWxraW5nX29uX2hlbGxfYnlfRW1lcnNvbnByaWVzdC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pZi15b3UtZXZlci1zaGFsbC1mb3JnZXQtbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvdHVtYmxyX2xycjRiNDFHNVMxcWl4YTEzbzFfcjFfNTAwX2xhcmdlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1uZXdzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL2ltZ19lbmR0aGV2aW9sZW5jZV9sb2dvLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1ob21lY29taW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL3NvbGRpZXItc3Vuc2V0LTU3MHgyMDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vMTIxMzE0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL3dlZGRpbmctcmluZy04Mzg3Ni5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93b3JraW5nLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExLzEyMDQtMjAxMjEwMDItV09SSy1XT1JLLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BlYW51dC1idXR0ZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1N1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvUE9WX1BlYW51dEJ1dHRlci5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9teS1kcmVhbS1vZi1tZS1hbmQteW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjA6NThaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL1Bob3Rvc2hvcC1GYW50YXN5LURyZWFtaW5nLWFydC1tcm0uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc2lsZW5jZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9TaWxlbmNlLURlYWZlbnMxLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1tb3JuaW5nLWh1c3RsZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIwOjU4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9mZWVsaW5nLXRpcmVkLXdvb3p5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1sYXN0LWtpc3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMDo1OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvS2lzc2luZy1pbi10aGUtcmFpbi1pbi1ibGFjay5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtY29sbGVjdGlvbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjAxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9hcnR3b3Jrcy0wMDAwMDUxMTI3MzQtbWd0ZXY1LW9yaWdpbmFsLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3ByZXR0eS1wcmV0dHktcHJldHR5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MDJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL3RoZV9naXJsX2luX3RoZV9taXJyb3JfX2J5X3ByZXR0eV9hc19hX3BpY3R1cmUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS1jb3VsZC1zYXktaS1taXNzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9taXNzLXlvdS0wNTYuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbW9uZXktbW9uZXktbW9uZXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvaW5saW5lLXlvdS1hcmUtcmljaC1ub3ctd2hhdC1sb25lbHktZ3V5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dyYW5kcGEtc2FpZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjA1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMS9hbmdlbC1ibHVlLUhlYXJ0LVdpdGgtV2luZ3MuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowNlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvaWxfZnVsbHhmdWxsLjM2NjY1OTEyN19jMXZqLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xlYXJuLXRvLWxpc3Rlbi1saXN0ZW4tdG8tbGVhcm4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvbGlzdGVuaW5nLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2tlZXAvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTowOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvbWFuLXdhbGtpbmctYXdheS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9nZW51aW5lLWtpbmRuZXNzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExL2Z1bGxfMTMyODU3NDcwM2tpbmRuZXNzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2xpZmUtaXMtYmVhdXRpZnVsLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzExLzEzOTQ0MDhfNTQ1NTUyNTA4ODU5NjUyXzIwNTY5Njc4NzZfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aW50ZXItY29tZXMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToxMlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTEvQ29sZC1Db2xkLUhlYXJ0LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2NoYW5naW5nLW90aGVycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjEzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMC9ob2xzdGVlLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL25ldmVyLWNoYW5nZS1mb3Itb3RoZXJzLW9ubHktY2hhbmdlLWZvci15b3Vyc2VsZi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjE0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8xMC83OTUxODUyMDUwX2YyNDNjNWEzMTguanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhhdC1tb21lbnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToxNlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTAvRnJvemVuLWluLVRpbWUtYnktU3RpbmFCRy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS8xc3QtcGxhY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToxN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTAvMzg1Mzk2Ml8zMDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hvLWlzLWhvbGRpbmcteW91LWJhY2svPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToxOFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTAvNmEwMGQ4MzQ1NWYxMTM2OWUyMDE3NzQzMmY1NzIzOTcwZC0zMjB3aS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9tcy1pLW5lZWQteW91LXRvZGF5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MTlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEwL0NyeWluZ19ieV96ZXJvX3JpZGVyLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3J1bm5pbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMTAvZmFzaGlvbjMtY2stMDQwOS1sZy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtbWFuLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEwL3NoYWRvdy1tYW4ucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWJlbmVmaXRzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzEwLzgwMjcyMjMtYmxhbmstdmludGFnZS1yZWQtd292ZS1wYXBlci1jYXJkMS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iaXRjaC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOS9EVkFNLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1ob3VzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOS8xMTY4OTU1NS1zaWxob3VldHRlLW9mLWZhbWlseS13aXRoLWx1Z2dhZ2Utc3RhbmRpbmctbmVhci13aW5kb3ctaW4tYWlycG9ydC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWJlY2F1c2UtdGhleS1kb250LXNheS1pLWxvdmUteW91LWRvZXNudC1tZWFuLXRoZXktZG9udC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOS90dW1ibHJfbDg4ZmR5OU9VVzFxYXJncWtvMV81MDAucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZXZlcnlvbmUtZWxzZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOS9Tb21ldGltZXMtSS1oYXZlLXRvLXJlbWluZC1teXNlbGYtdGhhdC1JLWRvbnQtaGF2ZS10by1kby13aGF0LWV2ZXJ5b25lLWVsc2UtaXMtZG9pbmcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmUtdGhlLWNoYW5nZS15b3Utd2lzaC10by1zZWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMToyN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDkvVEhFLUFXS1dBUkQtQlVUVEVSRkxZLmpwZWc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtd29yZHMtdG8tc2F5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MjdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA5L3R3by1oZWFydHMtdGllZC10b2dldGhlci13aXRoLWEtcmluZy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zb21lYm9keS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjI4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOS8xNzA4OTY2XzMwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jcnlpbmctaW4tdGhlLXJhaW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDkvd29tYW4tMjBvbi0yMGJlbmNoLTIwaW4tMjByYWluLmdpZjwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LW5pZ2h0LXVuZGVyLXRoZS1zdGFycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjMwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOC9tb29uLTEzLXNreS1uaWdodC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9vbi10aGUtcm9hZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjMxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOC8xNDc3Mjk3NDY5XzFiMzU2N2E4NjUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXNlY3JldC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjMyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wOC9MRVQtVEhFLVNFQ1JFVC1HRVQtT1VUNC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zcGVhay1saWZlLWludG8tbWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDgvaGVhZGVyLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zpc2gvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozNlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDgvdW5kZXJfdGhlX3NlYS0xMS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGV5LXNhaWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTozN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDgvYmVsaWV2ZS1pbi15b3Vyc2VsZi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9taXJyb3ItbWlycm9yLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA4L01pcnJvcl9taXJyb3Jfb25fdGhlX3dhbGxfX19fYnlfaUtpbmsuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWF3a3dhcmQtYnV0dGVyZmx5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDctMTBUMTU6NDc6NDlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA4L1RoZS1Bd2t3YXJkLUJ1dHRlcmZseS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zdGF0aXN0aWNzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6MzlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA4L3N0YXRzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dlZWtseS1jaGFsbGVuZ2UtMTAtYWNjb21wbGlzaC1zb21ldGhpbmcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0MFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDgvMTQ0My5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oYXBwaW5lc3MtaXMteW91LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA4LzI3NjJkMTM1NjgwMjAxNC1oYXBwaW5lc3Mtbm93LXBob3RvLWJ1dGVyZmx5LXN1bi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3Utc2FpZC15b3Utd291bGQtc3RhcnQtdG9tb3Jyb3cvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0Mlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDcvVFAtMTUxXzEteW91bmctdG8tb2xkLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2p1c3Qta2luZGEvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDcvd29yZF9jbG91ZC45MTExMzMyNi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9ldmVyeW9uZS1pcy1hLXdpbm5lci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQ2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNy9ldmVyeW9uZS13aW5zLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FuLXVudG91Y2hlZC1tZW1vcnkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0Nlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDcvRHVzdHktcm9hZC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mb3JldmVyLW5ldmVyLWxhc3RzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NDdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA2L05ldmVyV2FzdGVBbk9wcG9ydHVuaXR5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2luLXRoZS1lbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDYvdG9vLWN1dGUtLmpwZWc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pLWNhbnQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo0OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDYvS3Jpc3RpYW4tRF9jcnBkLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zpbmdlci1wb2ludGVycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjQ5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNi90aGUtYmxhbWUtZ2FtZS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9oYXZlLXlvdS1ldmVyLWhhZC1hLXNoYWRvdy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjUxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNi9odWdlLjYuMzQ1NjIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2Vla2x5LWNoYWxsZW5nZS05LXRha2UtdGltZS10by1ub3RpY2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDYva2luZG5lc3MtcXVvdGVzLVdoZW4tSS13YXMteW91bmctSS1hZG1pcmVkLWNsZXZlci1wZW9wbGUuLU5vdy10aGF0LUktYW0tb2xkLUktYWRtaXJlLWtpbmQtcGVvcGxlLi1BYnJhaGFtLUpvc2h1YS1IZXNjaGVsLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1qb3VybmV5LW9mLXRoZS1oZWFydC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjUyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNi90dW1ibHJfbThwNjU3M0ZsdjFxbXF6djlvMV81MDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbG92ZS12cy1oYXRlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjE6NTJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA2LzEyNDAzMzQyNjQyNDE1MTU0NDg5NV8xLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hvcnJpZmljLXRyYXZlbHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDYvbC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90b21vcnJvdy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjU1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNi9ZZXN0ZXJkYXktVG9kYXktVG9tb3Jyb3ctMjAxMS1NZXRyby1tYW5pbGEtRmlsbS1GZXN0aXZhbC1kcmFtYS1lbnRyeS1yZWdhbC1maWxtcy1qdW4tbGFuYS1waW5veS1tb3ZpZS1ibG9nZ2VyLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2EtbmV3LWJlZ2lubmluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjU1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9yaXZlcl9vZl90ZWFycy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yaXZlci1vZi10ZWFycy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjU3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9yaXZlci10ZWFycy5naWY8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aWNrLXRvY2svPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMTo1N1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvdGljay10b2NrLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dlZWtseS1jaGFsbGVuZ2UtNy1maW5kLW91dC13aGF0LWluc3BpcmVzLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIxOjU5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9pbnNwaXJlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N0YW5kYXJkcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjAwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9oaWdoX3N0YW5kYXJkcy5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZWNhdXNlLWktaGF2ZS1hLXNpc3Rlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjAyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9pbF9mdWxseGZ1bGwuMjUyMDQ1MzA4LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1raW5kZXN0LWhlYXJ0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA1LzQxOTA4MF8zNjAwMzI0OTczNjE5MzRfMTA0NDc3NTYyN19uLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3N3ZWV0LWxvdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvc3RvY2stdmVjdG9yLXN3ZWV0LWxvdmUtYmlyZC1jYXJkLTkyMjM1NDUxLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS13aW5keS1uaWdodC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9taWx0b24uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZmVhci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9uaWdodF90ZXJyb3JzX2lpX2J5X2FuaV9yLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3F1aXQtZ2l2ZS11cC15b3VyZS1iZWF0ZW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvNzAwMjYzX19sYXJnZS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90by15b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvYnJva2VuLWhlYXJ0LWxvc3QtbG92ZS1wYXBlci1GYXZpbS5jb20tMjYyMjI2X2xhcmdlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Zyb20taGVhZC10by10b2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvNTUwcHgtR2V0LWEtQm95LWluLU1pZGRsZS1TY2hvb2wtdG8tTGlrZS1Zb3UtU3RlcC0xLVZlcnNpb24tMy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pbS1nbGFkLWl0LXdhc250LW1lLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA1L2p1aWNlX3RyYXlfMi5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hLWNob2ljZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjA4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNS9jcmVhdGluZ195b3Vyc2VsZi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kcmlmdGluZy1hd2F5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MDhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA1L0lfc3RpbGxfdGhpbmtfYWJvdXRfeW91X2J5X0Fua3lTaHBhbmt5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dpdGhvdXQtd29yZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjowOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDUvQ29tbXVuaWNhdGluZy1XaXRob3V0LVdvcmRzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NwZWFrLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA1LzQ4ODAzMzc3NzZfOTViNTg5NmM5Ml96LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3JlYWxpdHktdHYvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxMVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvYmlnc3RvY2stUmVhbGl0eS1UVi03MTA3OTE4LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dlZWtseS1jaGFsbGVuZ2UtMy1hcHByZWNpYXRlLXdoYXQteW91LWhhdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxMlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvc3RvcF90b19hcHByZWNpYXRlX3RoZV9wcmVzZW50X2J5X3N3ZWV0X2luc2FuaXR5LWQ0bTM0Y2guanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYXMtaS13YWxrLWluLW15LWRyZWFtcy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjEzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC93YXJyZW5fMjUyNzFfMi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9sb3ZlLXJ1bi1mcmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L2xvdmUyMDEyLmpwZWc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9icm93bi1ibHVlLWdyZWVuLWFuZC1oYXplbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjEzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9leWVzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dpbnRlci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC90aGVfc25vd19zdG9ybV9ieV9hbnVnZXJhaF9pbGFoaS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93aHktZG8td29tZW4tc2F5LWNoaWx2YWxyeS1pcy1kZWFkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L2NoaXZhbHJ5Mi5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZS1hcmUtdG9nZXRoZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvNDUwNDcxOTItZW5kLXJlbGF0aW9uc2hpcC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93ZWVrbHktY2hhbGxlbmdlLTIta25vdy10aHlzZWxmLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L2tub3dfdGh5c2VsZi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mbG9hdGluZy88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9LaW5nZG9tT2ZIZWF2ZW4uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc21hbGwtYnV0LXN3ZWV0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L2xpbGllcy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtdHJ1dGgtc2hhbGwtc2V0LXlvdS1mcmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L3RydXRoLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JlbmVhdGgtdGhlLXdpbGxvdy10cmVlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L2ZsYXQtNTUweDU1MC0wNzUtZi51Mi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZmVhci1vZi1iZWluZy1zaW5nbGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxNlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvTGVhcm5pbmctdG8tTG92ZS1Zb3Vyc2VsZi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wZW4tYW5kLXBhcGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MTdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L3Blbi1hbmQtcGFwZXIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2Vla2x5LWNoYWxsZW5nZS0xLXRha2UtdGhlLXRpbWUtdG8tZXhwZXJpZW5jZS10aGUtd29ybGQtYXJvdW5kLXlvdS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9FeWUtaW4tdGhlLVNreS0xNjgweDEwNTAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vanVzdC1hLXJhbmRvbS10aG91Z2h0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MThaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0LzIxMDI0XzQ5NjYxODcyMDM5MzM4NF8xMDI4NTIyNTg4X24ucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWJhdHRsZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjE5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC81OTUyXzQ4NzA4MzY3ODAxMzU1NV8yNDg3MjkyMTJfbi5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS95b3UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoxOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvMzA2MTgyNjU2NV8xXzNfZWlWVk45Y0EuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2hhdC1hcmUteW91LXRoYW5rZnVsLWZvci88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIwWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9iZV9ncmF0ZWZ1bF9waG90b18tX0NvcHlfMV8uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXNlZWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvNjAyMjMxXzU1ODQ5NDgxMDg0MjMzOV8xNzExNjU4ODIyX24uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXJlYWxpemF0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0LzQyODg2N181MDUwODgwNTYxOTI3ODFfMTA1MTA1Mzc1OF9uLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2lmLWxvdmUtd2FzLW1lYW50LWZvci1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIxWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC81NDMwNjVfMzkyMzM0ODg0MTc0NTMxXzE0MDQ0NDU3NDlfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZHJpbmsvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvcGVhY2VfbG92ZV9zdG9wX2RyaW5raW5nX2FuZF9kcml2aW5nX3Bvc3RfY2FyZHMtcmI0OGM3MGQ0YmYxOTQzNzBiZDE3MmNlMTY3MWI3YjAzX3ZnYmFxXzhieXZyXzUxMi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtbGl0dGxlLWdpcmwtd2hvLWJlbGlldmVkLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L0xpZmUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlc2UtZmVlbGluZ3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvdHVtYmxyX2xtbHBmamdmc00xcWl1ZmF5bzFfNTAwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FyZS15b3Utc3VyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9BcmUtWW91LVN1cmUtNDgweDMzMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtd2FsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9XYWxsQXJvdW5kSGVhcnQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaXRzLW5vdC1tdWNoLWJ1dC1pdHMtYWxsLWktaGF2ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC8zOTI5MDFfNTY0NjI5MTUzNTYyMjM4XzE0MDIwOTIyMzJfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcmVhbGl0eS1vZi1hLWxvc3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyMlo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvNTQzMzMxXzQxMDA5ODAwMjM2NjM2MV8xMzUyMjQyMDQ2X25fbGFyZ2UuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktaGVhcnQtaW4td29yZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvNDg0NTIwXzQ4Mzc5NjY5NDk2NTYyOF8yMDMyNDI5NzgwX24uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2h5LWFyZS13ZS1hZnJhaWQtdG8tZmFsbC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9BZnJhaWQtb2YtRmFsbGluZy4wMDEtMDAxLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RydWUtYmVhdXR5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L1RydWUtQmVhdXR5LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2dvc3NpcC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjIzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9Hb3NzaXAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20va2luZG5lc3MvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvS08wMjgtQXJ0LW9mLUtpbmRuZXNzLWZyb250X29yaWdpbmFsLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ZlZWxpbmctYWxvbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQveW91X2FyZV9uZXZlcl9hbG9uZS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZW5kbGVzcy1jaXJjbGUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvNTYxMDM3XzEwMTUxMTQ0Mzg5MTYyMjcyXzEwNzcxMzExNDlfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9kcmFmdC1tZS1hLXBvcnRyYWl0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0LzQyMTA4MF8xMDE1MTI3NTExMDEyNTE3NV8xMjM1OTc2Njhfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtcmFpbi88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC9SYWluX1N0b3JtX2J5X2hvcnJvcm1vdmUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaXRzLW9ubHktdGVtcG9yYXJ5LzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L3R1bWJscl9seHZyNjNMaTNiMXFhOXU2a28xXzUwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9uby1sb3ZlLWxvc3Qtbm8tbG92ZS1mb3VuZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC82MDUyM18zNzY1MTIwMzU3NzAwNTFfMjA4MTM5MjU0Nl9uLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3doby1hcmUteW91LXRvLXRoZS13b3JsZC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI3WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC83Mjg0Ml8xMDE1MTM4MzY4ODYxOTM2Nl85OTc1NzY3Njlfbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9qdXN0LWxpdmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNC0wOC0wOVQyMToyMjoyN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDQvQUNRWVItV2FsbHBhcGVyLTAxNl9OaWptZWgtMTAyNHg3NjguanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaXMtdGhpcy1yZWFsbHktbG92ZS88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTA5VDIxOjIyOjI4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMy8wNC8zOTQzNjJfNDkzMzAzMjg3MzQ4MzAyXzg5NTc4MjA2NV9uLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbGxvLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMDlUMjE6MjI6MjhaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEzLzA0L3dhbGwtcG9wcy1saWZlLWlzLWJlYXV0aWZ1bC1xdW90ZS0yLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Fsd2F5cy1iZWxpZXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMDctMTBUMTU6NDI6NDdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzA4L0Fsd2F5cy1CZWxpZXZlLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL215LW1vbWVudC88L2xvYz4KICA8bGFzdG1vZD4yMDE0LTA4LTIwVDE2OjI0OjI0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNC8wOC9yb2FkLWFuZC1za3kuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaS10cnktdG8td3JpdGUtYS1oYXBweS1wb2VtLzwvbG9jPgogIDxsYXN0bW9kPjIwMTQtMDgtMzFUMTg6Mjg6NTVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE0LzA4L2NyeWluZy13cml0ZXIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbWFrZS15b3Utd2Vhay88L2xvYz4KICA8bGFzdG1vZD4yMDE1LTEyLTIzVDAzOjUyOjExWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNS8xMi8yNjE1MjYxMC1jdXRlLXlvdW5nLXNhZC1zdXNwaWNpb3VzLW9yLXNlZHVjdGl2ZS1naXJsLWxvb2tpbmctYXQtY2FtZXJhLWVhc3ktZWRpdGFibGUtbGF5ZXJlZC1pbGx1c3RyYXRpb24uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbG9vay1hbmQteW91LXNoYWxsLWZpbmQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNi0wOC0xMFQxNjoyMTowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTYvMDMvU2NyZWVuc2hvdF8yMDE2MDgxMC0xMTE0MjUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW5vcmRpbmF0ZS1jb250ZW1wbGF0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTItMDNUMTc6MDY6MzVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzEyL2ZhbGwuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vaW5vcmRpbmF0ZS1jb250ZW1wbGF0aW9uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTYtMTItMDNUMTc6MDc6NTBaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE2LzEyL2ZhbGwucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd2ludGVyLXRvLXNwcmluZy0zLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDEtMTZUMTY6NTQ6MzFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL3dpbnRlci10by1zcHJpbmcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdmludGFnZV9wYXBlcl9jYW1lb19rZXlfcGVuX2Jvb2tfNzYyNzdfMzg0MHgyNDAwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDEtMTZUMjE6MTY6MTJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL3ZpbnRhZ2VfcGFwZXJfY2FtZW9fa2V5X3Blbl9ib29rXzc2Mjc3XzM4NDB4MjQwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUta2V5LW9mLXlvdXItc291bC1hbmQtdGhlLXZpbnRhZ2UtcGFwZXJfNTEyMHgzMjAwLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDEtMTZUMjE6MTY6NTJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1RoZS1rZXktb2YteW91ci1zb3VsLWFuZC10aGUtdmludGFnZS1wYXBlcl81MTIweDMyMDAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbW90aGVyLW5hdHVyZS1kZXNrdG9wLXdhbGxwYXBlci1iYWNrZ3JvdW5kLTEvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNFQwMjoyMzoyMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvbW90aGVyLW5hdHVyZS1kZXNrdG9wLXdhbGxwYXBlci1iYWNrZ3JvdW5kLTEuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vNTU2LW1vdGhlci1uYXR1cmUtd29tYW4tZmFpcnkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNFQwMjoyNzozN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvNTU2LW1vdGhlci1uYXR1cmUtd29tYW4tZmFpcnkuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYnV0dGVyZmx5LXdvbWFuLTU3NngzNDMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNFQwMjozNTozM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvQnV0dGVyZmx5LXdvbWFuLTU3NngzNDMuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vYmFubmVyX3BvZXRyeS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAyLTA0VDAzOjQzOjAyWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMi9iYW5uZXJfcG9ldHJ5LmdpZjwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3BlYWNlZnVsLXBsYWNlLWFuaW1lLXNjZW5lcnktd2FsbHBhcGVycy1hbmQtaW1hZ2VzLWRlc2t0b3AtbmV4dXMtNTkyMDIzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDItMDVUMDA6Mjk6NDNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAyL3BlYWNlZnVsLXBsYWNlLWFuaW1lLXNjZW5lcnktd2FsbHBhcGVycy1hbmQtaW1hZ2VzLWRlc2t0b3AtbmV4dXMtNTkyMDIzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NreS1sZWF2ZXMtZmFsbC1icmlkZ2UtZHJhZ29uZmx5LWJ1dHRlcmZseS1hdXR1bW4tcGFwaWxsb24tdHdpbGlnaHQtbGlnaHRzLWV2ZW5pbmctZ2xvdy1zdW1tZXItbmlnaHQtZm9nLWxpZ2h0LWJpcmQtYW1iZXItbWlzdC1lZXJpZS10cmVlcy1yb3BlLXdhbGxwYXBlci1oZC1mcmVlLWRvd25sb2FkLTEzNjZ4NzY4LzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDItMDVUMDA6MzE6MDdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAyL3NreS1sZWF2ZXMtZmFsbC1icmlkZ2UtZHJhZ29uZmx5LWJ1dHRlcmZseS1hdXR1bW4tcGFwaWxsb24tdHdpbGlnaHQtbGlnaHRzLWV2ZW5pbmctZ2xvdy1zdW1tZXItbmlnaHQtZm9nLWxpZ2h0LWJpcmQtYW1iZXItbWlzdC1lZXJpZS10cmVlcy1yb3BlLXdhbGxwYXBlci1oZC1mcmVlLWRvd25sb2FkLTEzNjZ4NzY4LmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2ltYWdlMTEwLTEvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNVQwNTozMTozNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvaW1hZ2UxMTAtMS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS8xNDAzNzk2ODIyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDItMDVUMDU6MzY6MjFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAyLzE0MDM3OTY4MjIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vMmFmZmFlMTg1ZGEwMDI1YjI1MTRhMDYwOTk1ZTFhMjkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNVQwNTo0MToyNFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvMmFmZmFlMTg1ZGEwMDI1YjI1MTRhMDYwOTk1ZTFhMjktZTE0ODYyNzMyNzk2MjEuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdmludGFnZV9wYXBlcl9jYW1lb19rZXlfcGVuX2Jvb2tfNzYyNzdfMzg0MHgyNDAwLTIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNVQwNTozNzo0MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDIvdmludGFnZV9wYXBlcl9jYW1lb19rZXlfcGVuX2Jvb2tfNzYyNzdfMzg0MHgyNDAwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Nyb3BwZWQtdGhlLWF3a3dhcmQtYnV0dGVyZmx5LWpwZWcvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMi0wNVQwNjozMDo1MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTMvMDkvY3JvcHBlZC1USEUtQVdLV0FSRC1CVVRURVJGTFkuanBlZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Nyb3BwZWQtdmludGFnZV9wYXBlcl9jYW1lb19rZXlfcGVuX2Jvb2tfNzYyNzdfMzg0MHgyNDAwLWpwZy88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAyLTA1VDA2OjM1OjA0WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLXZpbnRhZ2VfcGFwZXJfY2FtZW9fa2V5X3Blbl9ib29rXzc2Mjc3XzM4NDB4MjQwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jcm9wcGVkLXZpbnRhZ2VfcGFwZXJfY2FtZW9fa2V5X3Blbl9ib29rXzc2Mjc3XzM4NDB4MjQwMC1qcGctMi88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTA0VDE4OjQ4OjQ5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMi9jcm9wcGVkLXZpbnRhZ2VfcGFwZXJfY2FtZW9fa2V5X3Blbl9ib29rXzc2Mjc3XzM4NDB4MjQwMC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saXR0bGUtYmxhY2stZ2lybC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTA2VDAwOjIxOjE5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9MaXR0bGUtQmxhY2stR2lybC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9hbmFseXRpY2FsLXNpZGUtYnJhaW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMy0wNlQwMTo1NjoxN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvY3JlYXRpdmUtYW5hbHl0aWNhbC1icmFpbjQ4MjgtNjIweDM1NC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jaXJjbGluZy10aGUtc3F1YXJlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDMtMTZUMTc6NDY6MzZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2luc2VjdXJpdHktYmVhdXRpZnVsLWJlYXV0eS1RdW90ZXMuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vY2lyY2xpbmctdGhlLXNxdWFyZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTE2VDE3OjQ4OjU4WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9hZWE1N2E4N2UwZGQyMGFhMjZkN2NkNzNiYmNlYzQ4Ny5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtYmxvb21pbmctdHJlZS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTIwVDIxOjAyOjEzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy9UcmVlLVdvbWFuLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2hlbHBpbmctaGFuZHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wMy0yNVQxNzo1ODo0MVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDMvaC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9uaWdodHRpbWUtZGlsZW1tYS88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTAzLTI1VDE4OjMyOjU1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMy93cGlkLXNwb29uaW5nLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Blb3BsZS13aWxsb3dzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDMtMjVUMTk6MDE6MTZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAzL2Nyb3BwZWQtd2lsbG93LXRyZWUtc3dpbmcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLXVuZGVydmFsdWVkLWNydXNhZGVyLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMDVUMDE6MzM6NThaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA0LzUxNzEwNi5naWY8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9zb21lb25lLXRvLXNvbWVvbmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0wNlQwMDozNzo0NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDQvZGZiNDc0NzY2MmE5MGNmYWM2NGEzY2NlYmUxMzhjZWNfY2FydG9vbi1wZW9wbGUtY2xpcC1hcnQtZnJlZS1mcmVlLWNsaXBhcnQtb2YtZGlmZmVyZW50LXBlb3BsZV81NTAtMjc3LnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JlLWhhcHB5LWFuZC1nZXQtcGFpZC88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA0LTEyVDE5OjU4OjExWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wNC9QaG90b0dyaWRfMTQ5MTk5ODQ3OTA2Mi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9iZS1oYXBweS1hbmQtZ2V0LXBhaWQvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0xMlQxOTo1ODoyMVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDQvUGhvdG9HcmlkXzE0ODc2ODYzOTM5ODgucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RhdGlvbmFyeS10cmF2ZWxlci88L2xvYz4KICA8bGFzdG1vZD4yMDE3LTA0LTE4VDAzOjI4OjE1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wNC9UcmF2ZWxlci5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9saXR0bGUtYmxhY2stZ2lybC0yLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMjVUMDE6Mzk6MzlaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA0L0xpdHRsZS1CbGFjay1HaXJsLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3Bvc3RpdmUtdGhvdWdodHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0yNVQwMTozOTo0NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDQvUG9zdGl2ZS1UaG91Z2h0cy5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90aGUtZ3JpZXZpbmctY3ljbGVfYXJ0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDQtMjVUMDE6Mzk6NDZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA0L1RoZS1HcmlldmluZy1DeWNsZV9hcnQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZWFzeS1icmVhdGhlLWFyZW50LXVuZGVyd2F0ZXIvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNC0yNVQwMjowNTowNVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDQvdW5kZXItd2F0ZXItMi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mYWxsZW4tc29uLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMDlUMDM6NDI6MTRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA1L0ZhbGxlbi1zb24ucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdG8tdGhlLWJyaW0vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNS0wOVQwNDowMjo1NVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDUvNWVlMDRlMjA3NDgyOTljNTM4ZDQ5OWY5MzM5MjJiNzcuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbXktY29sb3ItZnJpZW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMjdUMTA6NTE6MDRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA1L0JsYWNrLVdoaXRlLUZyaWVuZC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9pY2UtaWNlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDUtMjdUMTE6MTQ6NThaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA1L2JvdHRsZS1vZi13YXRlci5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9yZXdhcmQtZm9yLXRoZS13YWl0LzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDYtMDJUMTM6NDA6NDFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA2LzZmMzZhYTEzZmZmYmFiNmFhN2MyZDE3OGMwMzczMjEzLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RvLXRoZS13aW5kLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDYtMTJUMDQ6MzQ6MDRaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA2L3dpbmQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGF0ZS1uaWdodC10cnV0aHMvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNi0xMlQwNDo0OTo0OVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDYvdGVub3IuZ2lmPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGF5LWlubmVyLWJhcmstdHVybmVkLWJyb3duLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDYtMTJUMDU6NDA6MjJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA2LzUtVGhpbmdzLVlvdS1OZWVkLXRvLUtub3ctQWJvdXQtVGhlLVRyZWUtb2YtTGlmZS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jaGVtaXN0cnkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNy0xNlQxNjozMjowMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDcvVmFsZW50aW5lcy1EYXktS2lzc2luZy1TaGFkb3ctQ291cGxlLVdpZGUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vdGhlLWJyb2tlbi1tYW4vPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wNy0yN1QxNToyOToyMFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDcvaW1hZ2UucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZGVlcC1kaXZlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDgtMDhUMTI6NTA6NTVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA4L2ltYWdlLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3NlYXNvbnMtY2hhbmdlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDgtMTZUMTc6NTA6MDVaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA4L2ltYWdlLTEucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHVwcGV0ZWVycy1kZW1pc2UvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxNy0wOC0xNlQxODozNTo1NVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDgvaW1hZ2UtMi5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9maXJlLXRvLXNtb2tlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTctMDgtMTdUMTM6NTg6MDFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzA4L2ltYWdlLTMucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vc3RyZWFtLW9mLWxldGhlLzwvbG9jPgogIDxsYXN0bW9kPjIwMTgtMDEtMDJUMDA6MTI6NTFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAxL3dpbGQtdHVya2V5cy1hcHBhbGFjaGlhbi10aGFua3NnaXZpbmctbGFuZHNjYXBlLWNoaWxkaG9vZC1tZW1vcmllcy1jb3VudHJ5LWxpZmUtYW1lcmljYW5hLXdhbHQtY3VybGVlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2JlLWdvb2QvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOC0wNC0xN1QxODoyOTo0NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvdHVtYmxyX21ndWphZjVtcXMxcmlrZHZybzFfNTAwLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1rZXlzLzwvbG9jPgogIDxsYXN0bW9kPjIwMTgtMDQtMTdUMTk6MTU6MzdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L2ltYWdlLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL29uZS1kYXkvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAxOC0wNC0yNVQxNTo1ODozM1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvc2FkLWdpcmwtbHlpbmctaW4tYmVkLXBpY3R1cmUtaWQ0OTMxNTU5MTAuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vZXN0cmFuZ2VtZW50LzwvbG9jPgogIDxsYXN0bW9kPjIwMjAtMTItMDJUMTk6MjU6NDFaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIwLzEyL2VzdHJhbmdlbWVudC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9jb2ZmZWUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMC0xMi0xMlQwNzoxNDowN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMjAvMTIvY29mZmVlLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2FuZ2VsLXdpbmdzLzwvbG9jPgogIDxsYXN0bW9kPjIwMjAtMTItMjNUMTY6MDc6NDJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIwLzEyL1NhZC1Xb21hbi5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9mZWFyLW9mLWxpZmUvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyMS0wOS0xOVQxNjowMDoyN1o8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMjEvMDkvb3ZlcmNvbWluZ19mZWFyLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1sYXN0LWZpZ2h0LzwvbG9jPgogIDxsYXN0bW9kPjIwMjItMTAtMjdUMDI6MTY6MjZaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzEwL0NvdXBsZV9CYW5uZXItNzY4eDQzMi0xLmpwZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2RlZXAtZ2F6ZS88L2xvYz4KICA8bGFzdG1vZD4yMDIzLTExLTI5VDE5OjQxOjA1WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAyMy8xMS9jb21wYXJlbWFud29tYW4uanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJpc29uZXItd2l0aC10aGUtb3Blbi1kb29yLzwvbG9jPgogIDxsYXN0bW9kPjIwMjQtMDEtMDJUMTc6NDk6MDJaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDI0LzAxL2pvYXF1aW4tcGF6LXktbWluby1PQU0yY05vNVU5VS11bnNwbGFzaC1zY2FsZWQuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJpc29uZXItd2l0aC10aGUtb3Blbi1kb29yLzwvbG9jPgogIDxsYXN0bW9kPjIwMjQtMDEtMDJUMTc6NTE6MjNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDI0LzAxL2pvYXF1aW4tcGF6LXktbWluby1PQU0yY05vNVU5VS11bnNwbGFzaC0xLXNjYWxlZC5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS9wcmlzb25lci13aXRoLXRoZS1vcGVuLWRvb3IvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNC0wMS0wMlQxNzo1MzoxOVo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMjQvMDEvam9hcXVpbi1wYXoteS1taW5vLU9BTTJjTm81VTlVLXVuc3BsYXNoLTIuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vcHJpZGUtbWFzay1vZi1tZS88L2xvYz4KICA8bGFzdG1vZD4yMDI0LTExLTA4VDE1OjI3OjAzWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAyNC8xMS9QcmlkZS1jYW4tYmUtYS12aXJ0dWUtYnV0LWl0LW5lZWQtdG8tYmUtdGhlLXJpZ2h0LWtpbmQtb2YtcHJpZGUud2VicDwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3RoZS1waGlsaXN0aW5lLzwvbG9jPgogIDxsYXN0bW9kPjIwMjQtMTEtMTlUMTM6MjU6MDNaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDI0LzExL1BISUxJU1RJTkUuanBnPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgogPHVybD4KICA8bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vbGFzdC1maXJzdC1kYXRlLzwvbG9jPgogIDxsYXN0bW9kPjIwMjQtMTItMjBUMDM6MTk6NDdaPC9sYXN0bW9kPgogIDxpbWFnZTppbWFnZT4KICAgPGltYWdlOmxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDI0LzEyL0xhc3QtRmlyc3QtRGF0ZS5qcGc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS90ZW4tdGhvdXNhbmQtZGF5cy88L2xvYz4KICA8bGFzdG1vZD4yMDI1LTA2LTEwVDE0OjM3OjU2WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAyNS8wNi9UaW1lLVdhbGtpbmctTWFuLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL3dyaXRpbmctaW4tbXktam91cm5hbC88L2xvYz4KICA8bGFzdG1vZD4yMDI1LTA2LTEwVDE1OjQyOjExWjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAyNS8wNi9NYW4taW4tVGhvdWdodC1BSS5wbmc8L2ltYWdlOmxvYz4KICA8L2ltYWdlOmltYWdlPgogPC91cmw+CiA8dXJsPgogIDxsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cml0aW5nLWluLW15LWpvdXJuYWwvPC9sb2M+CiAgPGxhc3Rtb2Q+MjAyNS0wNi0xMFQxNTo0Njo1NFo8L2xhc3Rtb2Q+CiAgPGltYWdlOmltYWdlPgogICA8aW1hZ2U6bG9jPmh0dHBzOi8vd3d3Lm1vbmljYXJlbmF0YS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMjUvMDYvTWFuLWluLVRob3VnaHQtQUkyLnBuZzwvaW1hZ2U6bG9jPgogIDwvaW1hZ2U6aW1hZ2U+CiA8L3VybD4KIDx1cmw+CiAgPGxvYz5odHRwczovL3d3dy5tb25pY2FyZW5hdGEuY29tL2Z1dHVyZS10aGlua2luZy88L2xvYz4KICA8bGFzdG1vZD4yMDI1LTA3LTA5VDE0OjQ3OjU5WjwvbGFzdG1vZD4KICA8aW1hZ2U6aW1hZ2U+CiAgIDxpbWFnZTpsb2M+aHR0cHM6Ly93d3cubW9uaWNhcmVuYXRhLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAyNS8wNy9DaGF0R1BULUltYWdlLUp1bC05LTIwMjUtMDlfNDdfMTgtQU0ucG5nPC9pbWFnZTpsb2M+CiAgPC9pbWFnZTppbWFnZT4KIDwvdXJsPgo8L3VybHNldD4K','image-sitemap-1.xml','','draft','closed','closed','','','','','2026-02-15 23:06:27','2026-02-16 05:06:27','',0,'https://www.monicarenata.com/?p=2025',0,'jp_img_sitemap','',0);
/*!40000 ALTER TABLE `wp_xwml_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_term_relationships`
--
DROP TABLE IF EXISTS `wp_xwml_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_term_relationships`
--
LOCK TABLES `wp_xwml_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_xwml_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_xwml_term_relationships` VALUES (1,1,0),(4,1,0),(5,1,0),(6,1,0),(7,1,0),(8,1,0),(9,1,0),(10,1,0),(11,1,0),(12,1,0),(13,1,0),(14,1,0),(15,1,0),(16,1,0),(17,1,0),(18,1,0),(19,1,0),(20,1,0),(21,1,0),(22,1,0),(23,1,0),(24,1,0),(25,1,0),(26,1,0),(27,1,0),(28,1,0),(29,1,0),(30,1,0),(31,1,0),(32,1,0),(33,1,0),(34,1,0),(35,1,0),(36,1,0),(37,1,0),(38,1,0),(39,1,0),(40,1,0),(41,1,0),(42,1,0),(43,1,0),(44,1,0),(45,1,0),(46,1,0),(47,1,0),(48,1,0),(49,1,0),(50,1,0),(51,1,0),(52,1,0),(53,1,0),(54,1,0),(55,1,0),(56,1,0),(57,1,0),(58,1,0),(59,1,0),(60,1,0),(61,1,0),(62,1,0),(63,1,0),(64,1,0),(65,1,0),(66,1,0),(67,1,0),(68,1,0),(69,1,0),(70,1,0),(71,1,0),(72,1,0),(73,1,0),(74,1,0),(75,1,0),(76,1,0),(78,1,0),(79,1,0),(80,1,0),(81,1,0),(82,1,0),(83,1,0),(84,1,0),(85,1,0),(86,1,0),(89,1,0),(88,1,0),(90,1,0),(93,1,0),(92,1,0),(94,1,0),(95,1,0),(96,1,0),(97,1,0),(98,1,0),(99,1,0),(100,1,0),(101,1,0),(102,1,0),(103,1,0),(104,1,0),(105,1,0),(106,1,0),(107,1,0),(108,1,0),(109,1,0),(110,1,0),(111,1,0),(112,1,0),(113,1,0),(114,1,0),(115,1,0),(116,1,0),(117,1,0),(118,1,0),(119,1,0),(120,1,0),(121,1,0),(122,1,0),(123,1,0),(124,1,0),(125,1,0),(126,1,0),(127,1,0),(128,1,0),(129,1,0),(130,1,0),(131,1,0),(132,1,0),(133,1,0),(134,1,0),(135,1,0),(136,1,0),(137,1,0),(138,1,0),(139,1,0),(140,1,0),(141,1,0),(142,1,0),(143,1,0),(144,1,0),(145,1,0),(146,1,0),(147,1,0),(148,1,0),(149,1,0),(150,1,0),(151,1,0),(152,1,0),(153,1,0),(154,1,0),(155,1,0),(156,1,0),(157,1,0),(158,1,0),(159,1,0),(160,1,0),(161,1,0),(162,1,0),(163,1,0),(164,1,0),(165,1,0),(166,1,0),(167,1,0),(168,1,0),(169,1,0),(170,1,0),(171,1,0),(172,1,0),(173,1,0),(174,1,0),(175,1,0),(176,1,0),(177,1,0),(178,1,0),(179,1,0),(180,1,0),(181,1,0),(182,1,0),(183,1,0),(184,1,0),(185,1,0),(186,1,0),(187,1,0),(188,1,0),(189,1,0),(190,1,0),(191,1,0),(192,1,0),(193,1,0),(194,1,0),(195,1,0),(196,1,0),(197,1,0),(198,1,0),(200,1,0),(199,1,0),(207,1,0),(205,1,0),(202,1,0),(204,1,0),(91,1,0),(209,1,0),(212,1,0),(87,1,0),(206,1,0),(203,1,0),(208,1,0),(210,1,0),(77,1,0),(216,1,0),(211,1,0),(213,1,0),(215,1,0),(214,1,0),(219,1,0),(1312,1,0),(217,1,0),(218,1,0),(1311,1,0),(329,1,0),(220,1,0),(221,1,0),(222,1,0),(223,1,0),(224,1,0),(225,1,0),(226,1,0),(227,1,0),(228,1,0),(229,1,0),(230,1,0),(231,1,0),(232,1,0),(233,1,0),(234,1,0),(235,1,0),(236,1,0),(237,1,0),(238,1,0),(239,1,0),(240,1,0),(241,1,0),(242,1,0),(243,1,0),(244,1,0),(245,1,0),(246,1,0),(247,1,0),(248,1,0),(249,1,0),(250,1,0),(251,1,0),(252,1,0),(253,1,0),(254,1,0),(255,1,0),(256,1,0),(257,1,0),(258,1,0),(259,1,0),(260,1,0),(261,1,0),(262,1,0),(263,1,0),(264,1,0),(265,1,0),(266,1,0),(267,1,0),(268,1,0),(269,1,0),(270,1,0),(271,1,0),(272,1,0),(273,1,0),(274,1,0),(275,1,0),(276,1,0),(277,1,0),(278,1,0),(279,1,0),(280,1,0),(281,1,0),(282,1,0),(283,1,0),(284,1,0),(285,1,0),(286,1,0),(287,1,0),(288,1,0),(289,1,0),(290,1,0),(291,1,0),(292,1,0),(293,1,0),(294,1,0),(295,1,0),(296,1,0),(297,1,0),(298,1,0),(299,1,0),(300,1,0),(301,1,0),(302,1,0),(303,1,0),(304,1,0),(305,1,0),(306,1,0),(307,1,0),(308,1,0),(309,1,0),(310,1,0),(311,1,0),(312,1,0),(313,1,0),(314,1,0),(315,1,0),(316,1,0),(317,1,0),(318,1,0),(319,1,0),(320,1,0),(321,1,0),(322,1,0),(323,1,0),(324,1,0),(325,1,0),(326,1,0),(327,1,0),(328,1,0),(330,1,0),(1310,1,0),(201,1,0),(331,1,0),(332,1,0),(333,1,0),(334,1,0),(335,1,0),(336,1,0),(337,1,0),(338,1,0),(339,1,0),(340,1,0),(341,1,0),(342,1,0),(343,1,0),(344,1,0),(345,1,0),(346,1,0),(347,1,0),(348,1,0),(349,1,0),(566,50,0),(581,50,0),(568,50,0),(570,50,0),(571,50,0),(384,51,0),(385,51,0),(482,51,0),(453,51,0),(562,51,0),(575,51,0),(580,50,0),(585,1,0),(596,1,0),(611,1,0),(613,1,0),(621,1,0),(626,1,0),(628,1,0),(630,1,0),(633,1,0),(636,1,0),(639,1,0),(643,1,0),(646,1,0),(648,1,0),(651,1,0),(652,1,0),(668,1,0),(675,1,0),(678,1,0),(680,1,0),(682,1,0),(684,1,0),(688,1,0),(690,1,0),(692,1,0),(694,1,0),(696,1,0),(698,1,0),(686,1,0),(706,1,0),(710,1,0),(713,1,0),(716,1,0),(720,1,0),(723,1,0),(725,1,0),(728,1,0),(734,1,0),(736,1,0),(739,1,0),(742,1,0),(750,1,0),(752,1,0),(756,1,0),(758,1,0),(761,1,0),(763,1,0),(765,1,0),(770,1,0),(773,1,0),(776,1,0),(779,1,0),(781,1,0),(783,1,0),(785,1,0),(788,1,0),(791,1,0),(793,1,0),(795,1,0),(798,1,0),(801,1,0),(804,1,0),(808,1,0),(813,1,0),(816,1,0),(818,1,0),(821,1,0),(823,1,0),(825,1,0),(827,1,0),(832,1,0),(835,1,0),(839,1,0),(841,1,0),(843,1,0),(845,1,0),(847,1,0),(850,1,0),(857,1,0),(859,1,0),(861,1,0),(863,1,0),(868,1,0),(872,1,0),(875,1,0),(877,1,0),(879,1,0),(881,1,0),(884,1,0),(886,1,0),(888,1,0),(890,1,0),(894,1,0),(897,1,0),(899,1,0),(902,1,0),(904,1,0),(906,1,0),(909,1,0),(911,1,0),(914,1,0),(916,1,0),(918,1,0),(920,1,0),(923,1,0),(925,1,0),(928,1,0),(931,1,0),(933,1,0),(935,1,0),(941,1,0),(943,1,0),(945,1,0),(949,1,0),(951,1,0),(953,1,0),(948,1,0),(957,1,0),(959,1,0),(961,1,0),(963,1,0),(968,1,0),(970,1,0),(972,1,0),(974,1,0),(977,1,0),(979,1,0),(983,1,0),(985,1,0),(988,1,0),(990,1,0),(996,1,0),(998,1,0),(1001,1,0),(1003,1,0),(1005,1,0),(1007,1,0),(1010,1,0),(1012,1,0),(1015,1,0),(1018,1,0),(1020,1,0),(1022,1,0),(1024,1,0),(1026,1,0),(1029,1,0),(1031,1,0),(1034,1,0),(1037,1,0),(1039,1,0),(1041,1,0),(1044,1,0),(1046,1,0),(1048,1,0),(1051,1,0),(1055,1,0),(1057,1,0),(1060,1,0),(1062,1,0),(1064,1,0),(1066,1,0),(1073,1,0),(1075,1,0),(1077,1,0),(1080,1,0),(1083,1,0),(1088,1,0),(1092,1,0),(1095,1,0),(1098,1,0),(1100,1,0),(1107,1,0),(1109,1,0),(1112,1,0),(1114,1,0),(1118,1,0),(1123,1,0),(1127,1,0),(1130,1,0),(1132,1,0),(1135,1,0),(1139,1,0),(1141,1,0),(1146,1,0),(1148,1,0),(1150,1,0),(1152,1,0),(1154,1,0),(1156,1,0),(1158,1,0),(1160,1,0),(1162,1,0),(1164,1,0),(1166,1,0),(1168,1,0),(1171,1,0),(1173,1,0),(1176,1,0),(1181,1,0),(1206,1,0),(1208,1,0),(1211,1,0),(1213,1,0),(1215,1,0),(1217,1,0),(1222,1,0),(1226,1,0),(1228,1,0),(1231,1,0),(1233,1,0),(1235,1,0),(1238,1,0),(1241,1,0),(1243,1,0),(1252,1,0),(1259,1,0),(1261,1,0),(1263,1,0),(1265,1,0),(1266,1,0),(1267,1,0),(1271,1,0),(1273,1,0),(1275,1,0),(1278,1,0),(1280,1,0),(1281,1,0),(1282,1,0),(1286,1,0),(1288,1,0),(1291,1,0),(1292,1,0),(1293,1,0),(1294,1,0),(1295,1,0),(1296,1,0),(1297,1,0),(1302,50,0),(1316,1,0),(1317,1,0),(1320,1,0),(1321,1,0),(1322,1,0),(1324,1,0),(1334,1,0),(1335,1,0),(1340,1,0),(1342,1,0),(1344,1,0),(1347,1,0),(1351,1,0),(1360,1,0),(1368,1,0),(1378,1,0),(1388,1,0),(1392,1,0),(1399,1,0),(1406,1,0),(1413,1,0),(1470,1,0),(1471,1,0),(1479,1,0),(1483,1,0),(1488,1,0),(1491,1,0),(1502,1,0),(1505,1,0),(1509,1,0),(1515,50,0),(1522,1,0),(1824,53,0),(1540,1,0),(1560,1,0),(1567,1,0),(1572,1,0),(1576,1,0),(1581,1,0),(1588,1,0),(1594,1,0),(1598,1,0),(1600,1,0),(1603,1,0),(1608,53,0),(1608,1,0),(1621,1,0),(1634,1,0),(1639,1,0),(1644,1,0),(1649,1,0),(1654,1,0),(1658,1,0),(1665,1,0),(1666,1,0),(1670,1,0),(1673,1,0),(1676,1,0),(1679,1,0),(1683,1,0),(1686,1,0),(1692,1,0),(1698,1,0),(1702,1,0),(1709,1,0),(1714,1,0),(1718,1,0),(1722,1,0),(1737,1,0),(1747,1,0),(1753,1,0),(1755,1,0),(1759,1,0),(1768,1,0),(1770,1,0),(1773,1,0),(1776,1,0),(1784,1,0),(1787,1,0),(1797,1,0),(1804,1,0),(1811,1,0),(1813,1,0),(1816,1,0),(1821,1,0),(1824,1,0),(1834,1,0),(1843,1,0),(1851,1,0),(1853,1,0),(1856,1,0),(1861,1,0),(1863,1,0),(1865,1,0),(1869,1,0),(1872,1,0),(1876,1,0),(1879,1,0),(1886,1,0),(1891,1,0),(1894,1,0),(1897,1,0),(1901,1,0),(1903,1,0),(1906,1,0),(1909,1,0),(1911,1,0),(1915,1,0),(1919,1,0),(1921,1,0),(1926,1,0),(1930,1,0),(1933,1,0),(1948,1,0),(1953,1,0),(1961,1,0),(1967,1,0),(1972,1,0),(1980,1,0),(1986,1,0),(1996,1,0),(2006,1,0),(2030,54,0);
/*!40000 ALTER TABLE `wp_xwml_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_xwml_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_term_taxonomy`
--
LOCK TABLES `wp_xwml_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_xwml_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_xwml_term_taxonomy` VALUES (1,1,'category','',0,688),(50,50,'nav_menu','',0,8),(51,51,'ml-slider','',0,5),(52,52,'post_format','',0,0),(53,53,'category','',0,2),(54,54,'wp_theme','',0,1);
/*!40000 ALTER TABLE `wp_xwml_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_termmeta`
--
DROP TABLE IF EXISTS `wp_xwml_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_termmeta`
--
LOCK TABLES `wp_xwml_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_xwml_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_terms`
--
DROP TABLE IF EXISTS `wp_xwml_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_terms`
--
LOCK TABLES `wp_xwml_terms` WRITE;
/*!40000 ALTER TABLE `wp_xwml_terms` DISABLE KEYS */;
INSERT INTO `wp_xwml_terms` VALUES (1,'Poems','uncategorized',0),(50,'Main Menu','main-menu',0),(51,'572','572',0),(52,'post-format-image','post-format-image',0),(53,'The Analytical Side of The Brain','the-analytical-side-of-the-brain',0),(54,'britt','britt',0);
/*!40000 ALTER TABLE `wp_xwml_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_ufbl_entries`
--
DROP TABLE IF EXISTS `wp_xwml_ufbl_entries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_ufbl_entries` (
`entry_id` mediumint(9) NOT NULL AUTO_INCREMENT,
`form_id` mediumint(9) DEFAULT NULL,
`entry_detail` text COLLATE utf8mb4_unicode_ci,
`entry_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_ufbl_entries`
--
LOCK TABLES `wp_xwml_ufbl_entries` WRITE;
/*!40000 ALTER TABLE `wp_xwml_ufbl_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_ufbl_entries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_ufbl_forms`
--
DROP TABLE IF EXISTS `wp_xwml_ufbl_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_ufbl_forms` (
`form_id` mediumint(9) NOT NULL AUTO_INCREMENT,
`form_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`form_detail` text COLLATE utf8mb4_unicode_ci,
`form_status` int(11) DEFAULT NULL,
`form_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`form_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
UNIQUE KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_ufbl_forms`
--
LOCK TABLES `wp_xwml_ufbl_forms` WRITE;
/*!40000 ALTER TABLE `wp_xwml_ufbl_forms` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_ufbl_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_usermeta`
--
DROP TABLE IF EXISTS `wp_xwml_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_usermeta`
--
LOCK TABLES `wp_xwml_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_xwml_usermeta` DISABLE KEYS */;
INSERT INTO `wp_xwml_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','Monica Renata'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','modern'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_xwml_capabilities','a:13:{s:13:\"administrator\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;}'),(11,1,'wp_xwml_user_level','10'),(12,1,'dismissed_wp_pointers','wp350_media,wp360_revisions,wp360_locks,wp390_widgets,disqus_settings_pointer,wp410_dfw,black_studio_tinymce_widget,nimble-welcome-notice-12-2018,omapi_please_connect_notice'),(13,1,'wp_xwml_dashboard_quick_press_last_post_id','2020'),(14,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\";}'),(15,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(16,1,'wp_xwml_user-settings','libraryContent=browse&siteorigin_settings_tab=1&mfold=o&editor=tinymce&dfw_width=742&post_dfw=on&advImgDetails=hide&hidetb=1&posts_list_mode=list&siteorigin_panels_setting_tab=content&editor_plain_text_paste_warning=1'),(17,1,'wp_xwml_user-settings-time','1752072522'),(18,1,'nav_menu_recently_edited','50'),(19,1,'meta-box-order_page','a:3:{s:4:\"side\";s:93:\"submitdiv,pageparentdiv,vantage-metaslider-page-slider,vantage-menu-icon-metabox,postimagediv\";s:6:\"normal\";s:93:\"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,impact_choose_template\";s:8:\"advanced\";s:12:\"sharing_meta\";}'),(20,1,'screen_layout_page','2'),(21,1,'closedpostboxes_post','a:0:{}'),(22,1,'metaboxhidden_post','a:0:{}'),(23,1,'wporg_favorites','siteorigin-pagebuilder'),(24,1,'session_tokens','a:3:{s:64:\"1382f9fd6976882205201db1dea6171a0f4844c2aa059229d8e8f2e051008934\";a:4:{s:10:\"expiration\";i:1798996773;s:2:\"ip\";s:15:\"108.210.168.129\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36\";s:5:\"login\";i:1767460773;}s:64:\"9a1b9a7bdc1298b2f67d45d36d71e0b90fe1bf1ab7dd87c3295b37379508d23f\";a:4:{s:10:\"expiration\";i:1772932078;s:2:\"ip\";s:15:\"108.210.168.129\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPad; CPU OS 26_3_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/145.0.7632.108 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1772759278;}s:64:\"5201c9f2c0325c6debae5b239cd15b9707382aa9832afd298309e08276cbcba9\";a:4:{s:10:\"expiration\";i:1772932301;s:2:\"ip\";s:15:\"108.210.168.129\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPad; CPU OS 26_3_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/145.0.7632.108 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1772759501;}}'),(103,1,'show_welcome_panel','0'),(25,1,'closedpostboxes_dashboard','a:0:{}'),(26,1,'metaboxhidden_dashboard','a:0:{}'),(27,1,'AtD_options',''),(28,1,'AtD_check_when','onpublish,onupdate'),(29,1,'AtD_guess_lang',''),(30,1,'AtD_ignored_phrases',''),(31,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:63:\"dashboard_right_now,dashboard_activity,wpseo-dashboard-overview\";s:4:\"side\";s:21:\"dashboard_quick_press\";s:7:\"column3\";s:22:\"jetpack_summary_widget\";s:7:\"column4\";s:17:\"dashboard_primary\";}'),(32,1,'wp_xwml_media_library_mode','grid'),(33,1,'edit_post_per_page','500'),(36,1,'ignore_admin_config','1'),(35,1,'wp_xwml_r_tru_u_x','a:2:{s:2:\"id\";s:0:\"\";s:7:\"expires\";i:86400;}'),(37,1,'ignore_share_config','1'),(38,1,'ignore_redux_blast_1484535434','1'),(39,1,'jetpack_tracks_wpcom_id','69892234'),(41,1,'wpseo-remove-upsell-notice','1'),(42,1,'toolset_admin_notices_manager','a:1:{s:17:\"dismissed-notices\";a:1:{s:27:\"customize-page-with-toolset\";b:1;}}'),(44,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"108.210.168.0\";}'),(45,1,'meta-box-order_post','a:3:{s:4:\"side\";s:97:\"layout_sectionid,submitdiv,postimagediv,formatdiv,categorydiv,tagsdiv-post_tag,so_masonry_metabox\";s:6:\"normal\";s:135:\"wpseo_meta,slider_sectionid,revisionsdiv,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv,impact_choose_template\";s:8:\"advanced\";s:26:\"sharing_meta,page-links-to\";}'),(46,1,'screen_layout_post','2'),(47,1,'_yoast_wpseo_profile_updated','1537559545'),(48,1,'czr_fn_last_tgmpa_notice','a:2:{s:7:\"version\";s:6:\"4.1.31\";s:13:\"dismiss_count\";i:0;}'),(71,1,'my-jetpack-cache-date','1749567055'),(72,1,'my-jetpack-wpcom-product-check-hash','b794ef083c65e62d551e032e94735d4b'),(73,1,'my-jetpack-cache','O:8:\"stdClass\":83:{s:15:\"jetpack_premium\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2000;s:12:\"product_name\";s:15:\"Jetpack Premium\";s:12:\"product_slug\";s:15:\"jetpack_premium\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-premium\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$164.95\";s:21:\"combined_cost_display\";s:7:\"$164.95\";s:4:\"cost\";d:164.94999999999998863131622783839702606201171875;s:18:\"cost_smallest_unit\";i:16495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:6:\"$13.75\";}s:16:\"jetpack_business\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2001;s:12:\"product_name\";s:20:\"Jetpack Professional\";s:12:\"product_slug\";s:16:\"jetpack_business\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-business\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$399.95\";s:21:\"combined_cost_display\";s:7:\"$399.95\";s:4:\"cost\";d:399.94999999999998863131622783839702606201171875;s:18:\"cost_smallest_unit\";i:39995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:6:\"$33.33\";}s:12:\"jetpack_free\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2002;s:12:\"product_name\";s:12:\"Jetpack Free\";s:12:\"product_slug\";s:12:\"jetpack_free\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-free\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:2:\"$0\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:23:\"jetpack_premium_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2003;s:12:\"product_name\";s:15:\"Jetpack Premium\";s:12:\"product_slug\";s:23:\"jetpack_premium_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-premium\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_business_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2004;s:12:\"product_name\";s:20:\"Jetpack Professional\";s:12:\"product_slug\";s:24:\"jetpack_business_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-business\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$39.95\";s:21:\"combined_cost_display\";s:6:\"$39.95\";s:4:\"cost\";d:39.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:3995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:16:\"jetpack_personal\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2005;s:12:\"product_name\";s:16:\"Jetpack Personal\";s:12:\"product_slug\";s:16:\"jetpack_personal\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-personal\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$77.95\";s:21:\"combined_cost_display\";s:6:\"$77.95\";s:4:\"cost\";d:77.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:7795;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$6.50\";}s:24:\"jetpack_personal_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2006;s:12:\"product_name\";s:16:\"Jetpack Personal\";s:12:\"product_slug\";s:24:\"jetpack_personal_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-personal\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$6.95\";s:21:\"combined_cost_display\";s:5:\"$6.95\";s:4:\"cost\";d:6.95000000000000017763568394002504646778106689453125;s:18:\"cost_smallest_unit\";i:695;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_security_daily\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2010;s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:12:\"product_slug\";s:22:\"jetpack_security_daily\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:22:\"jetpack-security-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$299.00\";s:21:\"combined_cost_display\";s:4:\"$299\";s:4:\"cost\";i:299;s:18:\"cost_smallest_unit\";i:29900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:149;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$24.92\";}s:30:\"jetpack_security_daily_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2011;s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:12:\"product_slug\";s:30:\"jetpack_security_daily_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:22:\"jetpack-security-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$24.95\";s:21:\"combined_cost_display\";s:6:\"$24.95\";s:4:\"cost\";d:24.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:25:\"jetpack_security_realtime\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2012;s:12:\"product_name\";s:26:\"Jetpack Security Real-time\";s:12:\"product_slug\";s:25:\"jetpack_security_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack-security-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$839.00\";s:21:\"combined_cost_display\";s:4:\"$839\";s:4:\"cost\";i:839;s:18:\"cost_smallest_unit\";i:83900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:419;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$69.92\";}s:33:\"jetpack_security_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2013;s:12:\"product_name\";s:26:\"Jetpack Security Real-time\";s:12:\"product_slug\";s:33:\"jetpack_security_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack-security-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$69.95\";s:21:\"combined_cost_display\";s:6:\"$69.95\";s:4:\"cost\";d:69.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:6995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:16:\"jetpack_complete\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2014;s:12:\"product_name\";s:16:\"Jetpack Complete\";s:12:\"product_slug\";s:16:\"jetpack_complete\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-complete\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$599.40\";s:21:\"combined_cost_display\";s:7:\"$599.40\";s:4:\"cost\";d:599.3999999999999772626324556767940521240234375;s:18:\"cost_smallest_unit\";i:59940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:299.3999999999999772626324556767940521240234375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$49.95\";}s:24:\"jetpack_complete_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2015;s:12:\"product_name\";s:16:\"Jetpack Complete\";s:12:\"product_slug\";s:24:\"jetpack_complete_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-complete\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$74.95\";s:21:\"combined_cost_display\";s:6:\"$74.95\";s:4:\"cost\";d:74.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:7495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:26:\"jetpack_security_t1_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2016;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:26:\"jetpack_security_t1_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.400000000000005684341886080801486968994140625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:27:\"jetpack_security_t1_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2017;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:27:\"jetpack_security_t1_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:26:\"jetpack_security_t2_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2019;s:12:\"product_name\";s:22:\"Jetpack Security (1TB)\";s:12:\"product_slug\";s:26:\"jetpack_security_t2_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$899.40\";s:21:\"combined_cost_display\";s:7:\"$899.40\";s:4:\"cost\";d:899.3999999999999772626324556767940521240234375;s:18:\"cost_smallest_unit\";i:89940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:359.3999999999999772626324556767940521240234375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$74.95\";}s:27:\"jetpack_security_t2_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2020;s:12:\"product_name\";s:22:\"Jetpack Security (1TB)\";s:12:\"product_slug\";s:27:\"jetpack_security_t2_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$74.95\";s:21:\"combined_cost_display\";s:6:\"$74.95\";s:4:\"cost\";d:74.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:7495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_growth_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2021;s:12:\"product_name\";s:14:\"Jetpack Growth\";s:12:\"product_slug\";s:22:\"jetpack_growth_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-growth\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:21:\"jetpack_growth_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2022;s:12:\"product_name\";s:14:\"Jetpack Growth\";s:12:\"product_slug\";s:21:\"jetpack_growth_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-growth\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.400000000000005684341886080801486968994140625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:24:\"jetpack_growth_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2023;s:12:\"product_name\";s:14:\"Jetpack Growth\";s:12:\"product_slug\";s:24:\"jetpack_growth_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-growth\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$383.04\";s:21:\"combined_cost_display\";s:7:\"$383.04\";s:4:\"cost\";d:383.04000000000002046363078989088535308837890625;s:18:\"cost_smallest_unit\";i:38304;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:287.04000000000002046363078989088535308837890625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$15.96\";}s:22:\"jetpack_starter_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2030;s:12:\"product_name\";s:15:\"Jetpack Starter\";s:12:\"product_slug\";s:22:\"jetpack_starter_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:0;s:20:\"billing_product_slug\";s:15:\"jetpack-starter\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$71.40\";s:21:\"combined_cost_display\";s:6:\"$71.40\";s:4:\"cost\";d:71.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:7140;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:47.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$5.95\";}s:23:\"jetpack_starter_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2031;s:12:\"product_name\";s:15:\"Jetpack Starter\";s:12:\"product_slug\";s:23:\"jetpack_starter_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:0;s:20:\"billing_product_slug\";s:15:\"jetpack-starter\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$8.95\";s:21:\"combined_cost_display\";s:5:\"$8.95\";s:4:\"cost\";d:8.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:895;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:29:\"jetpack_security_t1_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2034;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:29:\"jetpack_security_t1_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$383.04\";s:21:\"combined_cost_display\";s:7:\"$383.04\";s:4:\"cost\";d:383.04000000000002046363078989088535308837890625;s:18:\"cost_smallest_unit\";i:38304;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:287.04000000000002046363078989088535308837890625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$15.96\";}s:26:\"jetpack_complete_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2035;s:12:\"product_name\";s:16:\"Jetpack Complete\";s:12:\"product_slug\";s:26:\"jetpack_complete_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-complete\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$959.04\";s:21:\"combined_cost_display\";s:7:\"$959.04\";s:4:\"cost\";d:959.0399999999999636202119290828704833984375;s:18:\"cost_smallest_unit\";i:95904;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:719.0399999999999636202119290828704833984375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$39.96\";}s:23:\"jetpack_boost_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2036;s:12:\"product_name\";s:13:\"Jetpack Boost\";s:12:\"product_slug\";s:23:\"jetpack_boost_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:13:\"jetpack-boost\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$383.04\";s:21:\"combined_cost_display\";s:7:\"$383.04\";s:4:\"cost\";d:383.04000000000002046363078989088535308837890625;s:18:\"cost_smallest_unit\";i:38304;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:287.04000000000002046363078989088535308837890625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$15.96\";}s:30:\"jetpack_social_basic_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2037;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:30:\"jetpack_social_basic_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:27:\"jetpack-social-basic-yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$238.80\";s:21:\"combined_cost_display\";s:7:\"$238.80\";s:4:\"cost\";d:238.80000000000001136868377216160297393798828125;s:18:\"cost_smallest_unit\";i:23880;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.05000000000001136868377216160297393798828125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:22:\"jetpack_scan_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2038;s:12:\"product_name\";s:18:\"Jetpack Scan Daily\";s:12:\"product_slug\";s:22:\"jetpack_scan_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-scan\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:27:\"jetpack_anti_spam_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2039;s:12:\"product_name\";s:25:\"Jetpack Akismet Anti-spam\";s:12:\"product_slug\";s:27:\"jetpack_anti_spam_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-anti-spam\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:41:\"jetpack_backup_addon_storage_10gb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2040;s:12:\"product_name\";s:47:\"Jetpack VaultPress Backup Add-on Storage (10GB)\";s:12:\"product_slug\";s:41:\"jetpack_backup_addon_storage_10gb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:33:\"jetpack-backup-addon-storage-10gb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$2.95\";s:21:\"combined_cost_display\";s:5:\"$2.95\";s:4:\"cost\";d:2.95000000000000017763568394002504646778106689453125;s:18:\"cost_smallest_unit\";i:295;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:42:\"jetpack_backup_addon_storage_100gb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2044;s:12:\"product_name\";s:48:\"Jetpack VaultPress Backup Add-on Storage (100GB)\";s:12:\"product_slug\";s:42:\"jetpack_backup_addon_storage_100gb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:34:\"jetpack-backup-addon-storage-100gb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$5.95\";s:21:\"combined_cost_display\";s:5:\"$5.95\";s:4:\"cost\";d:5.95000000000000017763568394002504646778106689453125;s:18:\"cost_smallest_unit\";i:595;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_1tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2048;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (1TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_1tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-1tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$9.95\";s:21:\"combined_cost_display\";s:5:\"$9.95\";s:4:\"cost\";d:9.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_3tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2052;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (3TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_3tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-3tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$19.95\";s:21:\"combined_cost_display\";s:6:\"$19.95\";s:4:\"cost\";d:19.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_5tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2056;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (5TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_5tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-5tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_backup_daily\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2100;s:12:\"product_name\";s:22:\"Jetpack Backup (Daily)\";s:12:\"product_slug\";s:20:\"jetpack_backup_daily\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-backup-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.00\";s:21:\"combined_cost_display\";s:4:\"$119\";s:4:\"cost\";i:119;s:18:\"cost_smallest_unit\";i:11900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:59;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.92\";}s:28:\"jetpack_backup_daily_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2101;s:12:\"product_name\";s:22:\"Jetpack Backup (Daily)\";s:12:\"product_slug\";s:28:\"jetpack_backup_daily_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-backup-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$9.95\";s:21:\"combined_cost_display\";s:5:\"$9.95\";s:4:\"cost\";d:9.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:23:\"jetpack_backup_realtime\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2102;s:12:\"product_name\";s:26:\"Jetpack Backup (Real-time)\";s:12:\"product_slug\";s:23:\"jetpack_backup_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$599.00\";s:21:\"combined_cost_display\";s:4:\"$599\";s:4:\"cost\";i:599;s:18:\"cost_smallest_unit\";i:59900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:299;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$49.92\";}s:31:\"jetpack_backup_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2103;s:12:\"product_name\";s:26:\"Jetpack Backup (Real-time)\";s:12:\"product_slug\";s:31:\"jetpack_backup_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$49.95\";s:21:\"combined_cost_display\";s:6:\"$49.95\";s:4:\"cost\";d:49.9500000000000028421709430404007434844970703125;s:18:\"cost_smallest_unit\";i:4995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:14:\"jetpack_search\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2104;s:12:\"product_name\";s:14:\"Jetpack Search\";s:12:\"product_slug\";s:14:\"jetpack_search\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-search\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$100.00\";s:21:\"combined_cost_display\";s:4:\"$100\";s:4:\"cost\";i:100;s:18:\"cost_smallest_unit\";i:10000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:1:{i:0;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:0;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:10000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:0;s:12:\"per_unit_fee\";i:10000;s:21:\"minimum_price_display\";s:2:\"$0\";s:29:\"minimum_price_monthly_display\";s:2:\"$0\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:693;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.33\";}s:22:\"jetpack_search_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2105;s:12:\"product_name\";s:14:\"Jetpack Search\";s:12:\"product_slug\";s:22:\"jetpack_search_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-search\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$12.95\";s:21:\"combined_cost_display\";s:6:\"$12.95\";s:4:\"cost\";d:12.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1295;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:1:{i:0;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:0;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:10000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:0;s:12:\"per_unit_fee\";i:1295;s:21:\"minimum_price_display\";s:2:\"$0\";s:29:\"minimum_price_monthly_display\";s:2:\"$0\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:693;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:12:\"jetpack_scan\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2106;s:12:\"product_name\";s:18:\"Jetpack Scan Daily\";s:12:\"product_slug\";s:12:\"jetpack_scan\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-scan\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:20:\"jetpack_scan_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2107;s:12:\"product_name\";s:18:\"Jetpack Scan Daily\";s:12:\"product_slug\";s:20:\"jetpack_scan_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-scan\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:21:\"jetpack_scan_realtime\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2108;s:12:\"product_name\";s:21:\"Jetpack Scan Realtime\";s:12:\"product_slug\";s:21:\"jetpack_scan_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-scan-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$500.00\";s:21:\"combined_cost_display\";s:4:\"$500\";s:4:\"cost\";i:500;s:18:\"cost_smallest_unit\";i:50000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:6:\"$41.67\";}s:29:\"jetpack_scan_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2109;s:12:\"product_name\";s:21:\"Jetpack Scan Realtime\";s:12:\"product_slug\";s:29:\"jetpack_scan_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-scan-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$50.00\";s:21:\"combined_cost_display\";s:3:\"$50\";s:4:\"cost\";i:50;s:18:\"cost_smallest_unit\";i:5000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:17:\"jetpack_anti_spam\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2110;s:12:\"product_name\";s:25:\"Jetpack Akismet Anti-spam\";s:12:\"product_slug\";s:17:\"jetpack_anti_spam\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-anti-spam\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:25:\"jetpack_anti_spam_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2111;s:12:\"product_name\";s:25:\"Jetpack Akismet Anti-spam\";s:12:\"product_slug\";s:25:\"jetpack_anti_spam_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-anti-spam\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_backup_t1_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2112;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t1_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:25:\"jetpack_backup_t1_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2113;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t1_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_backup_t2_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2114;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1TB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t2_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$359.40\";s:21:\"combined_cost_display\";s:7:\"$359.40\";s:4:\"cost\";d:359.3999999999999772626324556767940521240234375;s:18:\"cost_smallest_unit\";i:35940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.400000000000005684341886080801486968994140625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$29.95\";}s:25:\"jetpack_backup_t2_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2115;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1TB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t2_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:18:\"jetpack_videopress\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2116;s:12:\"product_name\";s:18:\"Jetpack VideoPress\";s:12:\"product_slug\";s:18:\"jetpack_videopress\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:18:\"jetpack-videopress\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:26:\"jetpack_videopress_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2117;s:12:\"product_name\";s:18:\"Jetpack VideoPress\";s:12:\"product_slug\";s:26:\"jetpack_videopress_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:18:\"jetpack-videopress\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:28:\"jetpack_videopress_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2119;s:12:\"product_name\";s:18:\"Jetpack VideoPress\";s:12:\"product_slug\";s:28:\"jetpack_videopress_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:18:\"jetpack-videopress\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:24:\"jetpack_backup_t0_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2120;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1GB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t0_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-0\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$35.88\";s:21:\"combined_cost_display\";s:6:\"$35.88\";s:4:\"cost\";d:35.88000000000000255795384873636066913604736328125;s:18:\"cost_smallest_unit\";i:3588;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$2.99\";}s:25:\"jetpack_backup_t0_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2121;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1GB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t0_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-0\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$2.99\";s:21:\"combined_cost_display\";s:5:\"$2.99\";s:4:\"cost\";d:2.9900000000000002131628207280300557613372802734375;s:18:\"cost_smallest_unit\";i:299;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:27:\"jetpack_backup_t1_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2123;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:27:\"jetpack_backup_t1_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:19:\"jetpack_search_free\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2130;s:12:\"product_name\";s:19:\"Jetpack Search Free\";s:12:\"product_slug\";s:19:\"jetpack_search_free\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:19:\"jetpack-search-free\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:2:\"$0\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_search_bi_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2131;s:12:\"product_name\";s:14:\"Jetpack Search\";s:12:\"product_slug\";s:24:\"jetpack_search_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-search\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$160.00\";s:21:\"combined_cost_display\";s:4:\"$160\";s:4:\"cost\";i:160;s:18:\"cost_smallest_unit\";i:16000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:1:{i:0;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:0;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:10000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:0;s:12:\"per_unit_fee\";i:16000;s:21:\"minimum_price_display\";s:2:\"$0\";s:29:\"minimum_price_monthly_display\";s:2:\"$0\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:693;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$6.67\";}s:23:\"jetpack_backup_one_time\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2201;s:12:\"product_name\";s:36:\"Jetpack VaultPress Backup (One-time)\";s:12:\"product_slug\";s:23:\"jetpack_backup_one_time\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-one-time\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.99\";s:21:\"combined_cost_display\";s:5:\"$0.99\";s:4:\"cost\";d:0.9899999999999999911182158029987476766109466552734375;s:18:\"cost_smallest_unit\";i:99;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_stats_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2219;s:12:\"product_name\";s:34:\"Jetpack Stats (Commercial license)\";s:12:\"product_slug\";s:20:\"jetpack_stats_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack_stats_monthly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$100.00\";s:21:\"combined_cost_display\";s:4:\"$100\";s:4:\"cost\";i:100;s:18:\"cost_smallest_unit\";i:10000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:6:{i:0;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";i:10000;s:13:\"minimum_price\";i:10000;s:13:\"maximum_price\";i:10000;s:21:\"minimum_price_display\";s:4:\"$100\";s:29:\"minimum_price_monthly_display\";s:5:\"$8.34\";s:21:\"maximum_price_display\";s:4:\"$100\";s:29:\"maximum_price_monthly_display\";s:5:\"$8.34\";}i:1;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:10001;s:13:\"maximum_units\";i:100000;s:13:\"minimum_price\";i:20000;s:13:\"maximum_price\";i:20000;s:21:\"minimum_price_display\";s:4:\"$200\";s:29:\"minimum_price_monthly_display\";s:6:\"$16.67\";s:21:\"maximum_price_display\";s:4:\"$200\";s:29:\"maximum_price_monthly_display\";s:6:\"$16.67\";}i:2;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:100001;s:13:\"maximum_units\";i:250000;s:13:\"minimum_price\";i:30000;s:13:\"maximum_price\";i:30000;s:21:\"minimum_price_display\";s:4:\"$300\";s:29:\"minimum_price_monthly_display\";s:3:\"$25\";s:21:\"maximum_price_display\";s:4:\"$300\";s:29:\"maximum_price_monthly_display\";s:3:\"$25\";}i:3;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:250001;s:13:\"maximum_units\";i:500000;s:13:\"minimum_price\";i:50000;s:13:\"maximum_price\";i:50000;s:21:\"minimum_price_display\";s:4:\"$500\";s:29:\"minimum_price_monthly_display\";s:6:\"$41.67\";s:21:\"maximum_price_display\";s:4:\"$500\";s:29:\"maximum_price_monthly_display\";s:6:\"$41.67\";}i:4;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:500001;s:13:\"maximum_units\";i:1000000;s:13:\"minimum_price\";i:70000;s:13:\"maximum_price\";i:70000;s:21:\"minimum_price_display\";s:4:\"$700\";s:29:\"minimum_price_monthly_display\";s:6:\"$58.34\";s:21:\"maximum_price_display\";s:4:\"$700\";s:29:\"maximum_price_monthly_display\";s:6:\"$58.34\";}i:5;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:1000001;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:95000;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:1000000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:45000;s:12:\"per_unit_fee\";i:25000;s:21:\"minimum_price_display\";s:4:\"$950\";s:29:\"minimum_price_monthly_display\";s:6:\"$79.17\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:10000;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.33\";}s:21:\"jetpack_stats_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2220;s:12:\"product_name\";s:34:\"Jetpack Stats (Commercial license)\";s:12:\"product_slug\";s:21:\"jetpack_stats_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack_stats_monthly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$12.95\";s:21:\"combined_cost_display\";s:6:\"$12.95\";s:4:\"cost\";d:12.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1295;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:6:{i:0;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";i:10000;s:13:\"minimum_price\";i:1295;s:13:\"maximum_price\";i:1295;s:21:\"minimum_price_display\";s:6:\"$12.95\";s:29:\"minimum_price_monthly_display\";s:6:\"$12.95\";s:21:\"maximum_price_display\";s:6:\"$12.95\";s:29:\"maximum_price_monthly_display\";s:6:\"$12.95\";}i:1;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:10001;s:13:\"maximum_units\";i:100000;s:13:\"minimum_price\";i:2595;s:13:\"maximum_price\";i:2595;s:21:\"minimum_price_display\";s:6:\"$25.95\";s:29:\"minimum_price_monthly_display\";s:6:\"$25.95\";s:21:\"maximum_price_display\";s:6:\"$25.95\";s:29:\"maximum_price_monthly_display\";s:6:\"$25.95\";}i:2;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:100001;s:13:\"maximum_units\";i:250000;s:13:\"minimum_price\";i:3795;s:13:\"maximum_price\";i:3795;s:21:\"minimum_price_display\";s:6:\"$37.95\";s:29:\"minimum_price_monthly_display\";s:6:\"$37.95\";s:21:\"maximum_price_display\";s:6:\"$37.95\";s:29:\"maximum_price_monthly_display\";s:6:\"$37.95\";}i:3;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:250001;s:13:\"maximum_units\";i:500000;s:13:\"minimum_price\";i:6295;s:13:\"maximum_price\";i:6295;s:21:\"minimum_price_display\";s:6:\"$62.95\";s:29:\"minimum_price_monthly_display\";s:6:\"$62.95\";s:21:\"maximum_price_display\";s:6:\"$62.95\";s:29:\"maximum_price_monthly_display\";s:6:\"$62.95\";}i:4;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:500001;s:13:\"maximum_units\";i:1000000;s:13:\"minimum_price\";i:8795;s:13:\"maximum_price\";i:8795;s:21:\"minimum_price_display\";s:6:\"$87.95\";s:29:\"minimum_price_monthly_display\";s:6:\"$87.95\";s:21:\"maximum_price_display\";s:6:\"$87.95\";s:29:\"maximum_price_monthly_display\";s:6:\"$87.95\";}i:5;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:1000001;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:11990;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:1000000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:5600;s:12:\"per_unit_fee\";i:3195;s:21:\"minimum_price_display\";s:7:\"$119.90\";s:29:\"minimum_price_monthly_display\";s:7:\"$119.90\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:10000;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:25:\"jetpack_stats_free_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2221;s:12:\"product_name\";s:43:\"Jetpack Stats (Free non-commercial license)\";s:12:\"product_slug\";s:25:\"jetpack_stats_free_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack_stats_free_yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:2:\"$0\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:2:\"$0\";}s:25:\"jetpack_stats_pwyw_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2222;s:12:\"product_name\";s:20:\"Jetpack Stats (Paid)\";s:12:\"product_slug\";s:25:\"jetpack_stats_pwyw_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack_stats_pwyw_yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:2:\"$0\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";i:0;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:2:\"$0\";}s:23:\"jetpack_stats_bi_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2223;s:12:\"product_name\";s:34:\"Jetpack Stats (Commercial license)\";s:12:\"product_slug\";s:23:\"jetpack_stats_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack_stats_monthly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$160.00\";s:21:\"combined_cost_display\";s:4:\"$160\";s:4:\"cost\";i:160;s:18:\"cost_smallest_unit\";i:16000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:6:{i:0;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";i:10000;s:13:\"minimum_price\";i:16000;s:13:\"maximum_price\";i:16000;s:21:\"minimum_price_display\";s:4:\"$160\";s:29:\"minimum_price_monthly_display\";s:6:\"$13.34\";s:21:\"maximum_price_display\";s:4:\"$160\";s:29:\"maximum_price_monthly_display\";s:6:\"$13.34\";}i:1;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:10001;s:13:\"maximum_units\";i:100000;s:13:\"minimum_price\";i:32000;s:13:\"maximum_price\";i:32000;s:21:\"minimum_price_display\";s:4:\"$320\";s:29:\"minimum_price_monthly_display\";s:6:\"$26.67\";s:21:\"maximum_price_display\";s:4:\"$320\";s:29:\"maximum_price_monthly_display\";s:6:\"$26.67\";}i:2;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:100001;s:13:\"maximum_units\";i:250000;s:13:\"minimum_price\";i:48000;s:13:\"maximum_price\";i:48000;s:21:\"minimum_price_display\";s:4:\"$480\";s:29:\"minimum_price_monthly_display\";s:3:\"$40\";s:21:\"maximum_price_display\";s:4:\"$480\";s:29:\"maximum_price_monthly_display\";s:3:\"$40\";}i:3;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:250001;s:13:\"maximum_units\";i:500000;s:13:\"minimum_price\";i:80000;s:13:\"maximum_price\";i:80000;s:21:\"minimum_price_display\";s:4:\"$800\";s:29:\"minimum_price_monthly_display\";s:6:\"$66.67\";s:21:\"maximum_price_display\";s:4:\"$800\";s:29:\"maximum_price_monthly_display\";s:6:\"$66.67\";}i:4;O:8:\"stdClass\":8:{s:13:\"minimum_units\";i:500001;s:13:\"maximum_units\";i:1000000;s:13:\"minimum_price\";i:112000;s:13:\"maximum_price\";i:112000;s:21:\"minimum_price_display\";s:6:\"$1,120\";s:29:\"minimum_price_monthly_display\";s:6:\"$93.34\";s:21:\"maximum_price_display\";s:6:\"$1,120\";s:29:\"maximum_price_monthly_display\";s:6:\"$93.34\";}i:5;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:1000001;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:152000;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:1000000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:72000;s:12:\"per_unit_fee\";i:40000;s:21:\"minimum_price_display\";s:6:\"$1,520\";s:29:\"minimum_price_monthly_display\";s:7:\"$126.67\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:10000;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$6.67\";}s:23:\"jetpack_monitor_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2241;s:12:\"product_name\";s:15:\"Jetpack Monitor\";s:12:\"product_slug\";s:23:\"jetpack_monitor_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-monitor\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$1.22\";s:21:\"combined_cost_display\";s:5:\"$1.22\";s:4:\"cost\";d:1.2199999999999999733546474089962430298328399658203125;s:18:\"cost_smallest_unit\";i:122;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_monitor_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2242;s:12:\"product_name\";s:15:\"Jetpack Monitor\";s:12:\"product_slug\";s:22:\"jetpack_monitor_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-monitor\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.64\";s:21:\"combined_cost_display\";s:6:\"$14.64\";s:4:\"cost\";d:14.6400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:1464;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$1.22\";}s:21:\"jetpack_boost_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2400;s:12:\"product_name\";s:13:\"Jetpack Boost\";s:12:\"product_slug\";s:21:\"jetpack_boost_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:13:\"jetpack-boost\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_boost_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2401;s:12:\"product_name\";s:13:\"Jetpack Boost\";s:12:\"product_slug\";s:20:\"jetpack_boost_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:13:\"jetpack-boost\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.400000000000005684341886080801486968994140625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:18:\"jetpack_ai_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2450;s:12:\"product_name\";s:20:\"Jetpack AI Assistant\";s:12:\"product_slug\";s:18:\"jetpack_ai_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:10:\"jetpack-ai\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:17:\"jetpack_ai_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2451;s:12:\"product_name\";s:20:\"Jetpack AI Assistant\";s:12:\"product_slug\";s:17:\"jetpack_ai_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:10:\"jetpack-ai\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:20:\"jetpack_ai_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2452;s:12:\"product_name\";s:20:\"Jetpack AI Assistant\";s:12:\"product_slug\";s:20:\"jetpack_ai_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:10:\"jetpack-ai\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:22:\"jetpack_social_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2500;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:22:\"jetpack_social_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-social\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$12.00\";s:21:\"combined_cost_display\";s:3:\"$12\";s:4:\"cost\";i:12;s:18:\"cost_smallest_unit\";i:1200;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:27:\"jetpack_social_basic_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2503;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:27:\"jetpack_social_basic_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:27:\"jetpack-social-basic-yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:28:\"jetpack_social_basic_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2504;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:28:\"jetpack_social_basic_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:27:\"jetpack-social-basic-yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:30:\"jetpack_social_advanced_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2602;s:12:\"product_name\";s:30:\"Jetpack Social Advanced (Beta)\";s:12:\"product_slug\";s:30:\"jetpack_social_advanced_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-social-advanced\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:31:\"jetpack_social_advanced_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2603;s:12:\"product_name\";s:30:\"Jetpack Social Advanced (Beta)\";s:12:\"product_slug\";s:31:\"jetpack_social_advanced_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-social-advanced\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:33:\"jetpack_social_advanced_bi_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2604;s:12:\"product_name\";s:30:\"Jetpack Social Advanced (Beta)\";s:12:\"product_slug\";s:33:\"jetpack_social_advanced_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-social-advanced\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$238.80\";s:21:\"combined_cost_display\";s:7:\"$238.80\";s:4:\"cost\";d:238.80000000000001136868377216160297393798828125;s:18:\"cost_smallest_unit\";i:23880;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:24:\"jetpack_social_v1_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2605;s:12:\"product_name\";s:14:\"Jetpack Social\";s:12:\"product_slug\";s:24:\"jetpack_social_v1_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-social-v1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.39999999999999857891452847979962825775146484375;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:25:\"jetpack_social_v1_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2606;s:12:\"product_name\";s:14:\"Jetpack Social\";s:12:\"product_slug\";s:25:\"jetpack_social_v1_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-social-v1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:27:\"jetpack_social_v1_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2607;s:12:\"product_name\";s:14:\"Jetpack Social\";s:12:\"product_slug\";s:27:\"jetpack_social_v1_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-social-v1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$191.04\";s:21:\"combined_cost_display\";s:7:\"$191.04\";s:4:\"cost\";d:191.039999999999992041921359486877918243408203125;s:18:\"cost_smallest_unit\";i:19104;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.039999999999992041921359486877918243408203125;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:5:\"$7.96\";}s:23:\"jetpack_creator_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2610;s:12:\"product_name\";s:15:\"Jetpack Creator\";s:12:\"product_slug\";s:23:\"jetpack_creator_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-creator\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.949999999999999289457264239899814128875732421875;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_creator_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2611;s:12:\"product_name\";s:15:\"Jetpack Creator\";s:12:\"product_slug\";s:22:\"jetpack_creator_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-creator\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.400000000000005684341886080801486968994140625;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.400000000000005684341886080801486968994140625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:25:\"jetpack_creator_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2612;s:12:\"product_name\";s:15:\"Jetpack Creator\";s:12:\"product_slug\";s:25:\"jetpack_creator_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-creator\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$383.04\";s:21:\"combined_cost_display\";s:7:\"$383.04\";s:4:\"cost\";d:383.04000000000002046363078989088535308837890625;s:18:\"cost_smallest_unit\";i:38304;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":7:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:287.04000000000002046363078989088535308837890625;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;s:6:\"reason\";N;}s:22:\"cost_per_month_display\";s:6:\"$15.96\";}s:29:\"jetpack_golden_token_lifetime\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2900;s:12:\"product_name\";s:20:\"Jetpack Golden Token\";s:12:\"product_slug\";s:29:\"jetpack_golden_token_lifetime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-golden-token\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:2:\"$0\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}}'),(55,1,'_yoast_wpseo_introductions','a:1:{s:42:\"ai-generate-titles-and-descriptions-upsell\";b:1;}'),(50,1,'wp_xwml_metaslider_user_saw_callout_toolbar','1'),(51,1,'adsns_hide_banner_vi_welcome','1'),(86,2,'nickname','jetpack_wordpress'),(87,2,'first_name',''),(88,2,'last_name',''),(89,2,'description',''),(90,2,'rich_editing','true'),(91,2,'syntax_highlighting','true'),(92,2,'comment_shortcuts','false'),(93,2,'admin_color','modern'),(94,2,'use_ssl','0'),(95,2,'show_admin_bar_front','true'),(96,2,'locale',''),(97,2,'wp_xwml_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(98,2,'wp_xwml_user_level','10'),(99,2,'_yoast_wpseo_profile_updated','1756915308'),(100,2,'dismissed_wp_pointers',''),(101,1,'wpcom_user_id','69892234'),(102,1,'wpcom_user_data','O:8:\"stdClass\":10:{s:2:\"ID\";i:69892234;s:5:\"login\";s:17:\"monicawilliams517\";s:5:\"email\";s:27:\"monicawilliams517@gmail.com\";s:3:\"url\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:12:\"display_name\";s:17:\"monicawilliams517\";s:11:\"description\";s:0:\"\";s:16:\"two_step_enabled\";b:0;s:16:\"external_user_id\";i:1;}'),(104,1,'nfd_sp_last_check','1768612297'),(105,2,'session_tokens','a:15:{s:64:\"9632ba2437d48da520e3a7369d9403465e402f69986e879bac35b4c8071c4261\";a:4:{s:10:\"expiration\";i:1782178521;s:2:\"ip\";s:13:\"151.240.45.43\";s:2:\"ua\";s:75:\"Mozilla/5.0 (Windows NT 10.0; Win64; rv:143.0) Gecko/20100101 Firefox/143.0\";s:5:\"login\";i:1782005721;}s:64:\"9759262ff24a0e3f90f9606ffcaf2f281bf4236148b06216fa03b4f0db8c86c5\";a:4:{s:10:\"expiration\";i:1782186173;s:2:\"ip\";s:14:\"140.245.87.101\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782013373;}s:64:\"de9a09ca4e0553d31d6261931031cc29e478e949ccd7a120e0d87082575d3d51\";a:4:{s:10:\"expiration\";i:1782269554;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";s:5:\"login\";i:1782096754;}s:64:\"c57e8b2fb1954450504ab44dc37af040ba88ffd112159e29a093695cfd75884d\";a:4:{s:10:\"expiration\";i:1783306550;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:5:\"login\";i:1782096950;}s:64:\"9f198fa032e3b2d452294f4226ccbd15d950a3cda48b68821ab882f4fdf901fc\";a:4:{s:10:\"expiration\";i:1783306807;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36\";s:5:\"login\";i:1782097207;}s:64:\"11b9dcc37898697fec51375bcaaf4a05578433216e040f637824749148181dbd\";a:4:{s:10:\"expiration\";i:1782270070;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";s:5:\"login\";i:1782097270;}s:64:\"7a36b0baf10c8a530f183be59e46100ee829287516b73d0622a502a0e0920e19\";a:4:{s:10:\"expiration\";i:1783308381;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36\";s:5:\"login\";i:1782098781;}s:64:\"524aa4ab5e27d1bbbd1f07be37d056ce82918f5bb666ba35cfdeced462fef070\";a:4:{s:10:\"expiration\";i:1783309609;s:2:\"ip\";s:15:\"161.123.209.184\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1782100009;}s:64:\"ea2c25a1afc70586a936befaa68a55ee531aedbcfca7115901052c5c8649f9d5\";a:4:{s:10:\"expiration\";i:1782274717;s:2:\"ip\";s:13:\"103.13.193.84\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";s:5:\"login\";i:1782101917;}s:64:\"0cbe905c9d8edbec5779d1d02e304d5db3c8e9961b3312447c484e78059b7b14\";a:4:{s:10:\"expiration\";i:1782283689;s:2:\"ip\";s:14:\"23.109.207.177\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\";s:5:\"login\";i:1782110889;}s:64:\"e125a5e0f32a59cdf685c059f0d2d71455344b73c8f755f120c1cecd2dc86f65\";a:4:{s:10:\"expiration\";i:1782288013;s:2:\"ip\";s:13:\"27.123.253.65\";s:2:\"ua\";s:75:\"Mozilla/5.0 (Windows NT 10.0; Win64; rv:143.0) Gecko/20100101 Firefox/143.0\";s:5:\"login\";i:1782115213;}s:64:\"c3d8cabc0d078cd2c12295a51f2c36e02e0e21346c576c8f2da02cc31e87aedb\";a:4:{s:10:\"expiration\";i:1782288013;s:2:\"ip\";s:13:\"27.123.253.65\";s:2:\"ua\";s:75:\"Mozilla/5.0 (Windows NT 10.0; Win64; rv:143.0) Gecko/20100101 Firefox/143.0\";s:5:\"login\";i:1782115213;}s:64:\"c3594605769018b64bdbc86277bf83c1735c8c46ebe3321b71cea971ddc10323\";a:4:{s:10:\"expiration\";i:1783362930;s:2:\"ip\";s:12:\"59.152.1.237\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782153330;}s:64:\"210ce3d09ba8fd4695fbf4a31dcdcd8b094efabf1a988602d61514138975d204\";a:4:{s:10:\"expiration\";i:1783363266;s:2:\"ip\";s:12:\"59.152.1.237\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782153666;}s:64:\"0d0a2122309d612b2d3e302f71908f7ab00c5b022af6d750537f6a0a1ef2b119\";a:4:{s:10:\"expiration\";i:1782346220;s:2:\"ip\";s:13:\"103.13.193.85\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";s:5:\"login\";i:1782173420;}}'),(106,2,'wp_xwml_dashboard_quick_press_last_post_id','2028'),(107,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"103.13.193.0\";}'),(108,3,'nickname','hafebers'),(109,3,'first_name',''),(110,3,'last_name',''),(111,3,'description',''),(112,3,'rich_editing','true'),(113,3,'syntax_highlighting','true'),(114,3,'comment_shortcuts','false'),(115,3,'admin_color','modern'),(116,3,'use_ssl','0'),(117,3,'show_admin_bar_front','true'),(118,3,'locale',''),(119,3,'wp_xwml_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(120,3,'wp_xwml_user_level','10'),(121,3,'dismissed_wp_pointers','');
/*!40000 ALTER TABLE `wp_xwml_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_users`
--
DROP TABLE IF EXISTS `wp_xwml_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_users`
--
LOCK TABLES `wp_xwml_users` WRITE;
/*!40000 ALTER TABLE `wp_xwml_users` DISABLE KEYS */;
INSERT INTO `wp_xwml_users` VALUES (1,'monicawilliams517@gmail.com','$wp$2y$10$qZ1jsIbSEo7nHHI9PIND0u69pFDJDsoBd4eJnayf3IqT04LsJZlE2','monicawilliams517gmail-com','monicawilliams517@gmail.com','','2014-08-09 21:01:51','',0,'Monica Renata'),(2,'jetpack_wordpress','$wp$2y$10$WNiBdkcDBO8TnWKg1OKvheHTAVJUpXVGfaShFsgnHUnZSd7WXbgre','jetpack_wordpress','','','2025-09-03 16:01:48','',0,'jetpack_wordpress'),(3,'hafebers','$wp$2y$10$tnSuU8pJsuTIDYBSiEJK/uMzcvS2oiPYu8CTTvLk3h8omZzOBinIm','hafebers','monicarenatabf@hotmail.com','','2026-06-22 03:47:11','1782100031:$generic$sjUPwPyhybQnCMeK_Ez4DISGxKk1xYpdncB_Or1m',0,'hafebers');
/*!40000 ALTER TABLE `wp_xwml_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_wpfm_backup`
--
DROP TABLE IF EXISTS `wp_xwml_wpfm_backup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_wpfm_backup` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`backup_name` text COLLATE utf8mb4_unicode_520_ci,
`backup_date` text COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_wpfm_backup`
--
LOCK TABLES `wp_xwml_wpfm_backup` WRITE;
/*!40000 ALTER TABLE `wp_xwml_wpfm_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_xwml_wpfm_backup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_indexable`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_indexable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_indexable` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`permalink` longtext COLLATE utf8mb4_unicode_520_ci,
`permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`object_id` bigint(20) DEFAULT NULL,
`object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`author_id` bigint(20) DEFAULT NULL,
`post_parent` bigint(20) DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci,
`description` mediumtext COLLATE utf8mb4_unicode_520_ci,
`breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`is_public` tinyint(1) DEFAULT NULL,
`is_protected` tinyint(1) DEFAULT '0',
`has_public_posts` tinyint(1) DEFAULT NULL,
`number_of_pages` int(11) unsigned DEFAULT NULL,
`canonical` longtext COLLATE utf8mb4_unicode_520_ci,
`primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`primary_focus_keyword_score` int(3) DEFAULT NULL,
`readability_score` int(3) DEFAULT NULL,
`is_cornerstone` tinyint(1) DEFAULT '0',
`is_robots_noindex` tinyint(1) DEFAULT '0',
`is_robots_nofollow` tinyint(1) DEFAULT '0',
`is_robots_noarchive` tinyint(1) DEFAULT '0',
`is_robots_noimageindex` tinyint(1) DEFAULT '0',
`is_robots_nosnippet` tinyint(1) DEFAULT '0',
`twitter_title` text COLLATE utf8mb4_unicode_520_ci,
`twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
`twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
`twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
`open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
`open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
`open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
`open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
`open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
`link_count` int(11) DEFAULT NULL,
`incoming_link_count` int(11) DEFAULT NULL,
`prominent_words_version` int(11) unsigned DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`blog_id` bigint(20) NOT NULL DEFAULT '1',
`language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`has_ancestors` tinyint(1) DEFAULT '0',
`estimated_reading_time_minutes` int(11) DEFAULT NULL,
`version` int(11) DEFAULT '1',
`object_last_modified` datetime DEFAULT NULL,
`object_published_at` datetime DEFAULT NULL,
`inclusive_language_score` int(3) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
KEY `object_id_and_type` (`object_id`,`object_type`),
KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=1012 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_indexable`
--
LOCK TABLES `wp_xwml_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_indexable` VALUES (1,'https://www.monicarenata.com/','29:644854690fa1506cc9079804daa83dd0',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','A Collection of Poems and Random Thoughts','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,48,NULL,'2024-07-20 21:04:42','2025-09-03 22:01:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-09-03 16:01:23','2013-04-01 13:17:00',NULL),(2,'https://www.monicarenata.com/you-i-love-you/','44:c15ea0738c29c5c4475cc8f6275d5893',90,'post','post',1,0,NULL,NULL,'You, I love YOU','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:13:36','2024-08-22 21:12:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:30','2014-02-12 23:30:00',0),(3,'https://www.monicarenata.com/author/monicawilliams517gmail-com/','63:1ad555191002919464103b1c8f7e2e49',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/f401e5cdfdb76b96271d92184a24c7ed?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2024-07-20 21:13:36','2025-09-03 22:01:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-09-03 16:01:23','2013-04-01 13:17:00',NULL),(4,'https://www.monicarenata.com/i-miss-you-so/','43:7f5f4166fabdc94cf27af37b9a283785',808,'post','post',1,0,NULL,NULL,'I Miss You So','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:15:20','2024-08-23 10:52:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-09 18:08:09','2015-01-09 18:08:09',0),(5,'https://www.monicarenata.com/pinch/','35:7e4dfbf546c2ada856b5c3ef2e86c0fe',106,'post','post',1,0,NULL,NULL,'PINCH','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:22:34','2024-08-22 19:53:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-17 16:03:00',0),(6,'https://www.monicarenata.com/inadequate/','40:8d99c9b48e217ae93455fe2454bede16',103,'post','post',1,0,NULL,NULL,'Inadequate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?fit=378%2C244&ssl=1',NULL,'395','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?fit=378%2C244&ssl=1','395','featured-image','{\"width\":378,\"height\":244,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?fit=378%2C244&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg\",\"size\":\"full\",\"id\":395,\"alt\":\"\",\"pixels\":92232,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 21:23:48','2024-08-22 20:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:41','2014-01-21 14:35:00',0),(7,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-20 21:25:28','2024-07-21 03:25:28',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(8,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-20 21:26:13','2024-07-21 03:26:13',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(9,'https://www.monicarenata.com/im-just-not-where-im-supposed-to-be/','65:2ee1386fcb9acd2757a27e3eff585956',121,'post','post',1,0,NULL,NULL,'I’m Just Not Where I’m Supposed To Be……….','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:29:00','2024-08-22 18:36:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:54','2013-12-27 19:35:00',0),(10,'https://www.monicarenata.com/daggers-kiss/','42:dde54f7c760bb650a42fa522756ff7b2',1340,'post','post',1,0,NULL,NULL,'Dagger’s Kiss','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:50:15','2024-08-24 03:35:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-08-08 17:18:09','2016-08-08 17:18:09',0),(11,'https://www.monicarenata.com/just-give-it-your-all-or-maybe-not/','64:b08737ae1ac1d574d2fc8aaec0c1d0ab',75,'post','post',1,0,NULL,NULL,'Just Give It Your All………Or Maybe Not','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 21:57:50','2024-08-22 22:20:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:03','2014-02-21 15:18:00',0),(12,'https://www.monicarenata.com/the-lions-nose/','44:8f7cc409f3e20380e1682bb80a268054',146,'post','post',1,0,NULL,NULL,'The Lion’s Nose','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 22:09:58','2024-08-22 16:28:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-12-03 20:37:00',0),(13,'https://www.monicarenata.com/reality-tv/','40:c8d65e506fc2c4390f4238c356037fbb',303,'post','post',1,0,NULL,NULL,'Reality TV','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?fit=900%2C561&ssl=1',NULL,'518','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?fit=900%2C561&ssl=1','518','featured-image','{\"width\":900,\"height\":561,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?fit=900%2C561&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg\",\"size\":\"full\",\"id\":518,\"alt\":\"\",\"pixels\":504900,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 22:15:15','2024-08-22 02:55:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:11','2013-04-29 16:47:00',0),(14,'https://www.monicarenata.com/invincible/','40:a7c9fff179ddff9c86613242d2a9de91',795,'post','post',1,0,NULL,NULL,'Invincible','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 22:55:17','2024-08-23 10:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-17 02:13:11','2015-01-02 18:17:49',0),(15,'https://www.monicarenata.com/day-inner-bark-turned-brown/','57:fdb384750b713b50bd18b9428f99ba0b',1686,'post','post',1,0,NULL,NULL,'The Day The Inner Bark Turned Brown','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg?fit=1505%2C886&ssl=1',NULL,'1687','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg?fit=1505%2C886&ssl=1','1687','featured-image','{\"width\":1505,\"height\":886,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg?fit=1505%2C886&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/06/5-Things-You-Need-to-Know-About-The-Tree-of-Life.jpg\",\"size\":\"full\",\"id\":1687,\"alt\":\"\",\"pixels\":1333430,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 07:40:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-12 05:41:04','2017-06-12 05:41:04',0),(16,'https://www.monicarenata.com/braids/','36:a785546ad0876bc1428b2f8440525ac7',1522,'post','post',1,0,NULL,NULL,'Braids','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg?fit=736%2C1093&ssl=1',NULL,'1523','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg?fit=736%2C1093&ssl=1','1523','featured-image','{\"width\":736,\"height\":1093,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg?fit=736%2C1093&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/Little-Black-Girl.jpg\",\"size\":\"full\",\"id\":1523,\"alt\":\"\",\"pixels\":804448,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:23:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-06 00:56:14','2017-03-06 00:34:01',0),(17,'https://www.monicarenata.com/circling-the-square/','49:25b56625d52a071a62dd16db913be0ba',1540,'post','post',1,0,NULL,NULL,'Circling The Square','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg?fit=480%2C825&ssl=1',NULL,'1552','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg?fit=480%2C825&ssl=1','1552','featured-image','{\"width\":480,\"height\":825,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg?fit=480%2C825&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/aea57a87e0dd20aa26d7cd73bbcec487.jpg\",\"size\":\"full\",\"id\":1552,\"alt\":\"\",\"pixels\":396000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:23:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-16 18:17:19','2017-03-16 17:49:38',0),(18,'https://www.monicarenata.com/pause/','35:ba33090b26c4016ec8da4bb7d437c039',1491,'post','post',1,0,NULL,NULL,'Pause','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:07:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-22 16:04:23','2017-02-22 03:41:14',0),(19,'https://www.monicarenata.com/chemistry/','39:c66ba71dd63864d2128b78e792ebf26d',1698,'post','post',1,0,NULL,NULL,'Chemistry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 07:52:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-07-16 16:33:21','2017-07-16 16:33:21',0),(20,'https://www.monicarenata.com/the-blooming-tree/','47:27e0e2ee6b355eaae0f00a3b5c58820b',1560,'post','post',1,0,NULL,NULL,'The Blooming Tree','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?fit=550%2C446&ssl=1',NULL,'1561','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?fit=550%2C446&ssl=1','1561','featured-image','{\"width\":550,\"height\":446,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?fit=550%2C446&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/Tree-Woman.jpg\",\"size\":\"full\",\"id\":1561,\"alt\":\"\",\"pixels\":245300,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:39:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-20 21:28:47','2017-03-20 21:28:47',0),(21,'https://www.monicarenata.com/i-do-not-fear-the-gallows/','55:48f91279fa8ef0ae5bbdde875a1eba03',1479,'post','post',1,0,NULL,NULL,'I Do Not Fear The Gallows','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://thewisdomdaily.com/wp-content/uploads/2016/05/15775540288_4c8e54dbef_b.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://thewisdomdaily.com/wp-content/uploads/2016/05/15775540288_4c8e54dbef_b.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 04:53:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-10 21:37:29','2017-02-10 18:20:07',0),(22,'https://www.monicarenata.com/you-missed/','40:df9a35c0785f459b19bc4e823796f8da',1505,'post','post',1,0,NULL,NULL,'You Missed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:07:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-24 17:52:50','2017-02-24 17:27:04',0),(23,'https://www.monicarenata.com/your-walk/','39:15a3ab050cee205d756fbe84eca2ec85',1502,'post','post',1,0,NULL,NULL,'Your Walk','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 22:58:32','2024-08-24 05:07:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-24 13:36:57','2017-02-24 13:13:19',0),(25,'https://www.monicarenata.com/i-lost-my-dream/','45:d02a5ae4248cb90fc582f756da69b31b',832,'post','post',1,0,NULL,NULL,'I lost my dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 23:07:48','2024-08-23 11:42:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 14:35:27','2015-01-18 05:56:52',0),(26,'https://www.monicarenata.com/your-heart-is-in-a-closet/','55:876e4ab5dbf6d0b9c2c6e57d6db12b11',1215,'post','post',1,0,NULL,NULL,'Your Heart Is In A Closet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://love.catchsmile.com/wp-content/uploads/Love-Hurts-40.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://love.catchsmile.com/wp-content/uploads/Love-Hurts-40.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 23:13:17','2024-08-23 23:53:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-04 04:34:25','2016-01-03 19:57:46',0),(27,'https://www.monicarenata.com/flowers-never-bloom/','49:eec4696bba8de9268a2fe234f7281312',239,'post','post',1,0,NULL,NULL,'Flowers Never Bloom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 23:15:03','2024-08-22 08:08:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:24','2013-09-28 00:49:00',0),(28,'https://www.monicarenata.com/imprisoned/','40:d51ae17ee2c3ac95de9ef1fffc8d7ccc',198,'post','post',1,0,NULL,NULL,'Imprisoned','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig',NULL,NULL,'first-content-image',NULL,NULL,'http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 23:25:03','2024-08-22 11:54:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:58','2013-11-12 19:56:00',0),(29,'https://www.monicarenata.com/stormy-day/','40:0b6a4adfb4e6acb1d8a305fb522cd63d',30,'post','post',1,0,NULL,NULL,'Stormy Day','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?fit=900%2C671&ssl=1',NULL,'354','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?fit=900%2C671&ssl=1','354','featured-image','{\"width\":900,\"height\":671,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?fit=900%2C671&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg\",\"size\":\"full\",\"id\":354,\"alt\":\"\",\"pixels\":603900,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-20 23:26:09','2024-08-23 02:37:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-20 19:26:00',0),(30,'https://www.monicarenata.com/transform/','39:d7dfcced5be4825e536345e298e81d5b',77,'post','post',1,0,NULL,NULL,'Transform','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 23:31:36','2024-08-22 22:20:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:03','2014-02-21 13:36:00',0),(31,'https://www.monicarenata.com/open-messages/','43:be5db906c6dfbc06372cbdf5cc1df806',1351,'post','post',1,0,NULL,NULL,'Open Messages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 23:36:45','2024-08-24 03:58:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-10-18 17:25:52','2016-10-18 17:20:48',0),(32,'https://www.monicarenata.com/pernicious-recollection/','53:9201a7c9ad9767d8e37ac0663267057c',1297,'post','post',1,0,NULL,NULL,'Pernicious Recollection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 23:39:34','2024-08-24 02:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-24 12:32:23','2016-06-24 12:32:23',0),(33,'https://www.monicarenata.com/the-broken-man/','44:11da312e5bece8566f5a14d3a4eff219',1702,'post','post',1,0,NULL,NULL,'The Broken Man','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/07/image.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/07/image.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-20 23:48:34','2024-08-24 07:52:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-07-27 15:47:02','2017-07-27 15:29:25',0),(35,'https://www.monicarenata.com/the-benefits/','42:a85184353acb5ec90120a1a63a70d4e2',234,'post','post',1,0,NULL,NULL,'The Benefits','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?fit=1200%2C1200&ssl=1',NULL,'466','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?fit=1200%2C1200&ssl=1','466','featured-image','{\"width\":1200,\"height\":1200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?fit=1200%2C1200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg\",\"size\":\"full\",\"id\":466,\"alt\":\"\",\"pixels\":1440000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-20 23:54:14','2024-08-22 08:37:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:21','2013-10-10 13:17:00',0),(36,'https://www.monicarenata.com/you-never-buy-me-flowers/','54:11f0a823bb176c835b1bb8296a5c3353',781,'post','post',1,0,NULL,NULL,'You Never Buy Me Flowers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-20 23:59:14','2024-08-23 10:20:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-28 21:01:28','2014-12-28 21:01:28',0),(37,'https://www.monicarenata.com/masquerade/','40:8e459ef081c737a3e53bbab78e630d27',1123,'post','post',1,0,NULL,NULL,'Masquerade','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 00:04:06','2024-08-23 21:46:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-05 12:02:28','2015-10-05 11:53:17',0),(38,'https://www.monicarenata.com/weekly-challenge-9-take-time-to-notice/','68:9cc6111cea22c894e52e9126579060b1',273,'post','post',1,0,NULL,NULL,'Weekly Challenge 9: Take time to Notice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?fit=500%2C500&ssl=1',NULL,'495','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?fit=500%2C500&ssl=1','495','featured-image','{\"width\":500,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?fit=500%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg\",\"size\":\"full\",\"id\":495,\"alt\":\"\",\"pixels\":250000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 00:45:46','2024-08-22 05:33:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:52','2013-06-10 21:37:00',0),(39,'https://www.monicarenata.com/your-burning-light/','48:5c9032ee108e1629325ed326411cc7c0',1080,'post','post',1,0,NULL,NULL,'Your Burning Light','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 01:03:14','2024-08-23 20:09:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-20 16:43:37','2015-08-20 16:42:35',0),(40,'https://www.monicarenata.com/what-are-we-fighting-for/','54:00a897b20fe40377d7b9fc4b5619cdb4',122,'post','post',1,0,NULL,NULL,'What Are We Fighting For?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?fit=640%2C480&ssl=1',NULL,'403','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?fit=640%2C480&ssl=1','403','featured-image','{\"width\":640,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?fit=640%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/438906496_640.jpg\",\"size\":\"full\",\"id\":403,\"alt\":\"\",\"pixels\":307200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 01:07:00','2024-08-22 18:36:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:54','2013-12-27 15:14:00',0),(41,'https://www.monicarenata.com/his/','33:08926dc71c5a01c328df31f74827e437',1811,'post','post',1,0,NULL,NULL,'His','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://pixel.nymag.com/imgs/fashion/daily/2018/03/12/seo/ex-dreams-1.w710.h473.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://pixel.nymag.com/imgs/fashion/daily/2018/03/12/seo/ex-dreams-1.w710.h473.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 01:20:17','2024-08-24 09:36:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-03-21 03:43:58','2019-03-21 03:43:58',0),(42,'https://www.monicarenata.com/short-sweet/','41:6bf93b90efeb90b2fb08267479a14ea9',176,'post','post',1,0,NULL,NULL,'Short & Sweet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?fit=624%2C351&ssl=1',NULL,'429','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?fit=624%2C351&ssl=1','429','featured-image','{\"width\":624,\"height\":351,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?fit=624%2C351&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/67370957_swan.jpg\",\"size\":\"full\",\"id\":429,\"alt\":\"\",\"pixels\":219024,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 01:52:29','2024-08-22 13:35:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:30','2013-11-20 14:24:00',0),(43,'https://www.monicarenata.com/the-weight/','40:cbdb5ecd98ea5e8d1e47853287bd7303',129,'post','post',1,0,NULL,NULL,'The Weight','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 01:56:00','2024-08-22 17:55:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:04','2013-12-17 19:42:00',0),(44,'https://www.monicarenata.com/i-am-lovely/','41:29d8ecb50af9cf7b90a67501c62b1018',1075,'post','post',1,0,NULL,NULL,'I am Lovely','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 01:57:26','2024-08-23 19:50:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-12 15:43:20','2015-08-12 15:43:20',0),(45,'https://www.monicarenata.com/painting-forever/','46:2e65bb479ce01b69c5fcddd98f06de7d',765,'post','post',1,0,NULL,NULL,'Painting Forever','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 01:58:59','2024-08-23 09:36:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-16 12:51:50','2014-12-16 12:51:50',0),(46,'https://www.monicarenata.com/i-called/','38:fc35fec4325851f4b00be58dd6cce1ff',1007,'post','post',1,0,NULL,NULL,'I called','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 02:14:46','2024-08-23 17:22:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-12 04:36:41','2015-04-12 04:17:42',0),(47,'https://www.monicarenata.com/winter-storm/','42:a5b69cb24c669a3d339ac7e222a3dd04',96,'post','post',1,0,NULL,NULL,'Winter Storm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?fit=473%2C355&ssl=1',NULL,'390','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?fit=473%2C355&ssl=1','390','featured-image','{\"width\":473,\"height\":355,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?fit=473%2C355&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg\",\"size\":\"full\",\"id\":390,\"alt\":\"\",\"pixels\":167915,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-21 03:09:27','2024-08-22 20:37:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:35','2014-01-29 02:41:00',0),(48,'https://www.monicarenata.com/growing-up/','40:2e0b3e50a2fb25c45d1a34be79965c35',143,'post','post',1,0,NULL,NULL,'Growing Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?fit=1600%2C1067&ssl=1',NULL,'411','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?fit=1600%2C1067&ssl=1','411','featured-image','{\"width\":1600,\"height\":1067,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?fit=1600%2C1067&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/when-i-grow-up.jpg\",\"size\":\"full\",\"id\":411,\"alt\":\"\",\"pixels\":1707200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 03:29:05','2024-08-22 16:42:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:08','2013-12-04 16:14:00',0),(49,'https://www.monicarenata.com/pretty-little-picture/','51:69829845cbf997682f4e7d03af14a969',6,'post','post',1,0,NULL,NULL,'Pretty Little Picture','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-21 03:33:40','2024-08-23 04:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-07-21 13:36:00',0),(50,'https://www.monicarenata.com/88-keys/','37:d8fbdc71b7c59cfb02334aa018fd16e2',1322,'post','post',1,0,NULL,NULL,'88 Keys','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.mychristianpsychic.com/wp-content/uploads/2013/12/lovers-piano.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.mychristianpsychic.com/wp-content/uploads/2013/12/lovers-piano.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 03:33:51','2024-08-24 03:16:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-26 14:04:16','2016-07-26 14:04:16',0),(51,'https://www.monicarenata.com/please-check-out-my-book/','54:8cc6d34f850b3b9e8b00725cc6469666',142,'post','post',1,0,NULL,NULL,'Please check out my book','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1',NULL,'410','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1','410','featured-image','{\"width\":576,\"height\":1024,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png\",\"size\":\"full\",\"id\":410,\"alt\":\"\",\"pixels\":589824,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-21 03:51:56','2024-08-22 16:42:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','2013-12-05 02:53:00',0),(52,'https://www.monicarenata.com/love-while-blind/','46:c4d87f2355d6925ed9a809f4d0fd9338',1048,'post','post',1,0,NULL,NULL,'Love While Blind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 03:59:44','2024-08-23 19:33:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-11 18:09:19','2015-06-11 18:09:19',0),(53,'https://www.monicarenata.com/december-is-so-cold/','49:2aedb285de524dc231be37ef98bc426b',136,'post','post',1,0,NULL,NULL,'December is So Cold','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:21:03','2024-08-22 17:24:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-11 19:12:00',0),(54,'https://www.monicarenata.com/b-p-l-y/','37:db58db69ba2cac8f694849160c5b1ec1',1018,'post','post',1,0,NULL,NULL,'B.P.L.Y','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:21:52','2024-08-23 17:35:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-23 20:30:31','2015-04-23 20:30:31',0),(55,'https://www.monicarenata.com/man-vs-thief/','42:e176c79447fa6908e480bc1236e44e76',109,'post','post',1,0,NULL,NULL,'Man Vs Thief','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:24:09','2024-08-22 19:44:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-09 18:29:00',0),(56,'https://www.monicarenata.com/palm-of-my-hand/','45:5dd532605ba127204c22a9afb9146934',843,'post','post',1,0,NULL,NULL,'Palm Of My Hand','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:25:55','2024-08-23 11:57:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 19:36:54','2015-01-20 19:36:54',0),(57,'https://www.monicarenata.com/estrangement/','42:8be8391adbf7e64b3c235fa4a9761e7d',1856,'post','post',1,0,NULL,NULL,'Estrangement','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/estrangement.jpg?fit=1260%2C710&ssl=1',NULL,'1859','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/estrangement.jpg?fit=1260%2C710&ssl=1','1859','featured-image','{\"width\":1260,\"height\":710,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/estrangement.jpg?fit=1260%2C710&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2020/12/estrangement.jpg\",\"size\":\"full\",\"id\":1859,\"alt\":\"\",\"pixels\":894600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 04:32:16','2024-08-24 10:20:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-02 19:25:56','2020-12-02 19:25:56',0),(58,'https://www.monicarenata.com/some-things-will-never-change/','59:ade6f7afa7935277602211535376524b',7,'post','post',1,0,NULL,NULL,'Some things will never change','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-21 04:36:26','2024-08-23 04:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-07-21 13:22:00',0),(59,'https://www.monicarenata.com/dont-get-too-comfortable/','54:c2d5bd6f2bff25d4c9c022be8cb34868',76,'post','post',1,0,NULL,NULL,'Don’t get TOO Comfortable','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:51:42','2024-08-22 22:20:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:03','2014-02-21 13:46:00',0),(61,'https://www.monicarenata.com/id-love-to-really-love-you/','56:09d024c370dd22663b11f53fd54855c5',1222,'post','post',1,0,NULL,NULL,'I’d Love to Really Love You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 04:56:44','2024-08-23 23:53:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-05 01:07:58','2016-01-05 01:07:58',0),(62,'https://www.monicarenata.com/you-used-to/','41:cb61249661419e7b9d2f6fd32817fd89',162,'post','post',1,0,NULL,NULL,'You Used To','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?fit=704%2C300&ssl=1',NULL,'421','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?fit=704%2C300&ssl=1','421','featured-image','{\"width\":704,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?fit=704%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/stranger-704x300.jpg\",\"size\":\"full\",\"id\":421,\"alt\":\"\",\"pixels\":211200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 05:18:37','2024-08-22 15:01:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:22','2013-11-24 19:51:00',0),(63,'https://www.monicarenata.com/pretty-flowers/','44:53d0943b1136800733e92f2fc997896e',8,'post','post',1,0,NULL,NULL,'Pretty Flowers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=3&opac=0',NULL,NULL,'first-content-image',NULL,NULL,'http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=3&opac=0',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 05:45:18','2024-08-23 04:40:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:03','2014-07-21 13:08:00',0),(64,'https://www.monicarenata.com/finger-pointers/','45:9eefb7d0d358c563fe5f480ecb70ff6a',270,'post','post',1,0,NULL,NULL,'Finger Pointers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg?fit=226%2C165&ssl=1',NULL,'493','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg?fit=226%2C165&ssl=1','493','featured-image','{\"width\":226,\"height\":165,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg?fit=226%2C165&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/the-blame-game.jpg\",\"size\":\"full\",\"id\":493,\"alt\":\"\",\"pixels\":37290,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 05:55:00','2024-08-22 05:39:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:49','2013-06-17 17:44:00',0),(65,'https://www.monicarenata.com/no-love-lost-no-love-found/','56:9369232d56533c4ae494ea055c2fc782',345,'post','post',1,0,NULL,NULL,'No Love Lost…..No Love Found','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?fit=720%2C561&ssl=1',NULL,'558','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?fit=720%2C561&ssl=1','558','featured-image','{\"width\":720,\"height\":561,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?fit=720%2C561&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg\",\"size\":\"full\",\"id\":558,\"alt\":\"\",\"pixels\":403920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 06:20:19','2024-08-21 23:23:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:27','2013-04-01 15:30:00',0),(66,'https://www.monicarenata.com/you-promised/','42:40b90934cd4ab741a1b81915f60f9af1',165,'post','post',1,0,NULL,NULL,'You Promised','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 07:05:07','2024-08-22 14:39:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:24','2013-11-22 18:55:00',0),(67,'https://www.monicarenata.com/aspirations-misfortune/','52:5ee505faea151cfd42092edb2ebc6431',1406,'post','post',1,0,NULL,NULL,'Aspiration’s Misfortune','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 07:14:11','2024-08-24 04:23:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-15 16:23:00','2016-12-15 16:03:08',0),(68,'https://www.monicarenata.com/fear-of-life/','42:05446317560d6b40782aa5a9ae897129',1897,'post','post',1,0,NULL,NULL,'Fear of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2021/09/overcoming_fear.png?fit=800%2C600&ssl=1',NULL,'1898','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2021/09/overcoming_fear.png?fit=800%2C600&ssl=1','1898','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2021/09/overcoming_fear.png?fit=800%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2021/09/overcoming_fear.png\",\"size\":\"full\",\"id\":1898,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-21 07:19:55','2024-08-24 11:00:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-19 16:00:45','2021-09-19 16:00:45',0),(69,'https://www.monicarenata.com/i-feel-sorry-for-no-one/','53:15340d1ea99ad6b444e8afe31a600007',25,'post','post',1,0,NULL,NULL,'I feel sorry for no one………….','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-21 07:29:04','2024-08-23 03:05:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-30 16:35:00',0),(70,'https://www.monicarenata.com/stationary-traveler/','49:cece3ff14c2e20ab55989d50eb43e9a0',1621,'post','post',1,0,NULL,NULL,'Stationary Traveler','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?fit=500%2C323&ssl=1',NULL,'1622','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?fit=500%2C323&ssl=1','1622','featured-image','{\"width\":500,\"height\":323,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?fit=500%2C323&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/04/Traveler.jpg\",\"size\":\"full\",\"id\":1622,\"alt\":\"\",\"pixels\":161500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 07:39:37','2024-08-24 06:07:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-20 03:25:57','2017-04-18 03:34:12',0),(71,'https://www.monicarenata.com/my-light-in-the-sky/','49:4663f553a12bb3b305bb9c53e977bd2f',102,'post','post',1,0,NULL,NULL,'My Light In The Sky','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1',NULL,'394','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1','394','featured-image','{\"width\":400,\"height\":328,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\",\"size\":\"full\",\"id\":394,\"alt\":\"\",\"pixels\":131200,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-21 07:41:05','2024-08-22 20:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:41','2014-01-21 16:53:00',0),(72,'https://www.monicarenata.com/lost-and-found/','44:9db5008a648a9ff72f6cc35bcc0fcc0b',1906,'post','post',1,0,NULL,NULL,'Lost and Found','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 07:44:10','2024-08-24 11:08:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-11-29 19:58:18','2021-11-29 19:58:18',0),(73,'https://www.monicarenata.com/fishermans-treasure/','49:6aa59d949c0cf367c7263c2b7fd90f0d',60,'post','post',1,0,NULL,NULL,'Fisherman’s Treasure','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?fit=640%2C427&ssl=1',NULL,'371','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?fit=640%2C427&ssl=1','371','featured-image','{\"width\":640,\"height\":427,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?fit=640%2C427&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg\",\"size\":\"full\",\"id\":371,\"alt\":\"\",\"pixels\":273280,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 08:19:38','2024-08-22 23:36:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:51','2014-03-25 12:46:00',0),(74,'https://www.monicarenata.com/never-ending-time/','47:deecc1b4bbf0d93a59e6c34e8aab74d1',10,'post','post',1,0,NULL,NULL,'Never-Ending Time','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-21 08:33:21','2024-08-23 04:21:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-07-09 13:41:00',0),(75,'https://www.monicarenata.com/carbon-copy-of-your-dream/','55:599efae32ec391c5fb58f3f07e79865b',1130,'post','post',1,0,NULL,NULL,'Carbon Copy of Your Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 08:44:04','2024-08-23 21:51:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-08 17:04:04','2015-10-08 17:04:04',0),(76,'https://www.monicarenata.com/love-always/','41:6710f8f01bd8f7e8740a293b68b2a917',963,'post','post',1,0,NULL,NULL,'Love Always','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 08:48:10','2024-08-23 16:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-26 13:39:26','2015-02-26 13:39:26',0),(77,'https://www.monicarenata.com/the-secret/','40:8c126d1f9d6fb6492444ebf090f0e14e',249,'post','post',1,0,NULL,NULL,'The Secret','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?fit=670%2C670&ssl=1',NULL,'477','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?fit=670%2C670&ssl=1','477','featured-image','{\"width\":670,\"height\":670,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?fit=670%2C670&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg\",\"size\":\"full\",\"id\":477,\"alt\":\"\",\"pixels\":448900,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 09:25:02','2024-08-22 07:23:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:32','2013-08-27 22:03:00',0),(78,'https://www.monicarenata.com/the-endless-circle/','48:2ef000745de2c022ea6e95024efdb5cb',341,'post','post',1,0,NULL,NULL,'The Endless Circle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?fit=800%2C500&ssl=1',NULL,'554','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?fit=800%2C500&ssl=1','554','featured-image','{\"width\":800,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?fit=800%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg\",\"size\":\"full\",\"id\":554,\"alt\":\"\",\"pixels\":400000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 09:30:42','2024-08-21 23:55:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:25','2013-04-01 18:45:00',0),(79,'https://www.monicarenata.com/i-hope-you-never-lose-that-smile/','62:01f4cf744da955728490f3da17d94884',1296,'post','post',1,0,NULL,NULL,'I Hope You Never Lose That Smile','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 09:45:40','2024-08-24 02:31:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-22 14:47:12','2016-06-22 14:47:12',0),(80,'https://www.monicarenata.com/my-heart-beats/','44:ae49d4a26ce8f7d23d6df0081a3b64ea',248,'post','post',1,0,NULL,NULL,'My Heart Beats','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 09:52:03','2024-08-22 07:23:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:31','2013-08-28 19:50:00',0),(81,'https://www.monicarenata.com/her/','33:089a55c3439b3bb0086217fc590d3ae2',1127,'post','post',1,0,NULL,NULL,'HER','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 09:52:18','2024-08-23 21:46:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-05 13:56:28','2015-10-05 13:56:28',0),(82,'https://www.monicarenata.com/love-blind/','40:712c215c828ef66fad88622a309cc58f',736,'post','post',1,0,NULL,NULL,'Love Blind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 09:54:34','2024-08-23 08:43:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-24 19:28:16','2014-11-24 19:28:16',0),(83,'https://www.monicarenata.com/weekly-challenge-3-appreciate-what-you-have/','73:b7e2549480483da3fafabb6460811d51',304,'post','post',1,0,NULL,NULL,'Weekly Challenge 3: Appreciate What You Have','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?fit=900%2C548&ssl=1',NULL,'519','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?fit=900%2C548&ssl=1','519','featured-image','{\"width\":900,\"height\":548,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?fit=900%2C548&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg\",\"size\":\"full\",\"id\":519,\"alt\":\"\",\"pixels\":493200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 10:10:04','2024-08-22 02:55:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:12','2013-04-29 12:58:00',0),(84,'https://www.monicarenata.com/my-moment/','39:18cfc00706ce449ef64da39899c053a1',585,'post','post',1,0,NULL,NULL,'My Moment','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg?fit=600%2C938&ssl=1',NULL,'587','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg?fit=600%2C938&ssl=1','587','featured-image','{\"width\":600,\"height\":938,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/road-and-sky.jpg?fit=600%2C938&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/08/road-and-sky.jpg\",\"size\":\"full\",\"id\":587,\"alt\":\"\",\"pixels\":562800,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 10:11:03','2024-08-23 05:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-20 16:28:56','2014-08-20 16:28:56',0),(85,'https://www.monicarenata.com/daisies-in-the-desert/','51:d189a05a5fe3ca52ee6daab7c6dd682c',1737,'post','post',1,0,NULL,NULL,'Daisies in the Desert','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 10:15:16','2024-08-24 08:38:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-09-16 04:27:12','2017-09-16 04:27:12',0),(86,'https://www.monicarenata.com/the-battle/','40:9fceed6d6a9c189ae00f99487ffd28c7',321,'post','post',1,0,NULL,NULL,'The Battle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?fit=500%2C500&ssl=1',NULL,'535','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?fit=500%2C500&ssl=1','535','featured-image','{\"width\":500,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?fit=500%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png\",\"size\":\"full\",\"id\":535,\"alt\":\"\",\"pixels\":250000,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-21 10:25:01','2024-08-22 01:25:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:19','2013-04-12 18:28:00',0),(87,'https://www.monicarenata.com/peanut-butter/','43:da73eb157688dcefa0f2ddb42cc56e61',197,'post','post',1,0,NULL,NULL,'Peanut Butter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?fit=335%2C316&ssl=1',NULL,'442','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?fit=335%2C316&ssl=1','442','featured-image','{\"width\":335,\"height\":316,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?fit=335%2C316&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/POV_PeanutButter.jpg\",\"size\":\"full\",\"id\":442,\"alt\":\"\",\"pixels\":105860,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 10:29:06','2024-08-22 11:54:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:57','2013-11-13 11:58:00',0),(88,'https://www.monicarenata.com/dear-friend-move-on/','49:d06a1af00caeec8df73dc8d3db126117',1891,'post','post',1,0,NULL,NULL,'Dear Friend. Move On.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 10:51:52','2024-08-24 10:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-12 06:08:32','2021-09-12 06:08:32',0),(89,'https://www.monicarenata.com/beneath-the-willow-tree/','53:5678a35320c5ec54d9a745cd938ba4e0',316,'post','post',1,0,NULL,NULL,'Beneath the Willow Tree','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?fit=422%2C550&ssl=1',NULL,'530','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?fit=422%2C550&ssl=1','530','featured-image','{\"width\":422,\"height\":550,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?fit=422%2C550&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg\",\"size\":\"full\",\"id\":530,\"alt\":\"\",\"pixels\":232100,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 11:06:16','2024-08-22 01:53:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:16','2013-04-17 14:30:00',0),(90,'https://www.monicarenata.com/the-pouring-rain/','46:608e3d291b597df419eb27a963aee533',183,'post','post',1,0,NULL,NULL,'The Pouring Rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 11:11:24','2024-08-22 13:09:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:37','2013-11-18 11:50:00',0),(91,'https://www.monicarenata.com/atmosphere/','40:2277e203101d057d0e9323fbb976bcdd',1109,'post','post',1,0,NULL,NULL,'Atmosphere','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 11:12:01','2024-08-23 21:23:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-09 18:55:50','2015-09-09 18:55:50',0),(92,'https://www.monicarenata.com/just-a-random-thought/','51:b1fd8a714cbcc9e78bfb1f84531e7c60',320,'post','post',1,0,NULL,NULL,'Just a Random Thought','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?fit=714%2C719&ssl=1',NULL,'534','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?fit=714%2C719&ssl=1','534','featured-image','{\"width\":714,\"height\":719,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?fit=714%2C719&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png\",\"size\":\"full\",\"id\":534,\"alt\":\"\",\"pixels\":513366,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-21 11:20:54','2024-08-22 01:25:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:18','2013-04-12 19:33:00',0),(93,'https://www.monicarenata.com/the-roses-thorn/','45:caa22e122af9b8234aa9d2ce2bd599da',596,'post','post',1,0,NULL,NULL,'The Rose’s Thorn','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1',NULL,'471','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1','471','featured-image','{\"width\":550,\"height\":850,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\",\"size\":\"full\",\"id\":471,\"alt\":\"\",\"pixels\":467500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 11:22:11','2024-08-23 05:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-26 14:28:25','2014-08-26 13:56:27',0),(94,'https://www.monicarenata.com/conscientious-carla/','49:4bf608013c50374a3ba711adee3c8259',1020,'post','post',1,0,NULL,NULL,'Conscientious Carla','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 11:53:42','2024-08-23 18:21:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-27 18:14:37','2015-04-27 18:14:37',0),(95,'https://www.monicarenata.com/live-life/','39:a3852cd3c8e1fb92f9f2715b9e42ea53',1024,'post','post',1,0,NULL,NULL,'Live Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 12:13:25','2024-08-23 18:21:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-27 18:51:36','2015-04-27 18:51:36',0),(96,'https://www.monicarenata.com/five/','34:b117a96a6196482459805156cd5e3c40',88,'post','post',1,0,NULL,NULL,'Five','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?fit=413%2C310&ssl=1',NULL,'386','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?fit=413%2C310&ssl=1','386','featured-image','{\"width\":413,\"height\":310,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?fit=413%2C310&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg\",\"size\":\"full\",\"id\":386,\"alt\":\"\",\"pixels\":128030,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 12:21:46','2024-08-22 21:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:29','2014-02-12 23:38:00',0),(97,'https://www.monicarenata.com/candy-coated/','42:6477c51d3387aea39a57e4c7ed2ef35e',134,'post','post',1,0,NULL,NULL,'Candy Coated','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 12:27:14','2024-08-22 17:35:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-12 15:18:00',0),(98,'https://www.monicarenata.com/night-life/','40:aa93ce5fbcd00b429221d23bca91682f',1670,'post','post',1,0,NULL,NULL,'Night Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 12:27:51','2024-08-24 06:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-06 03:58:58','2017-06-06 03:58:58',0),(99,'https://www.monicarenata.com/winter/','36:9a4cc952148b875c1744c14a0c276805',309,'post','post',1,0,NULL,NULL,'Winter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?fit=1024%2C768&ssl=1',NULL,'523','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?fit=1024%2C768&ssl=1','523','featured-image','{\"width\":1024,\"height\":768,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?fit=1024%2C768&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg\",\"size\":\"full\",\"id\":523,\"alt\":\"\",\"pixels\":786432,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 12:37:25','2024-08-22 02:24:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:14','2013-04-24 15:03:00',0),(100,'https://www.monicarenata.com/the-undervalued-crusader/','54:59df1239f464b6b1ba202c7f26100cbe',1581,'post','post',1,0,NULL,NULL,'The Undervalued Crusader','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/517106.gif?fit=500%2C281&ssl=1',NULL,'1585','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/517106.gif?fit=500%2C281&ssl=1','1585','featured-image','{\"width\":500,\"height\":281,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/517106.gif?fit=500%2C281&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/04/517106.gif\",\"size\":\"full\",\"id\":1585,\"alt\":\"\",\"pixels\":140500,\"type\":\"image/gif\"}',0,NULL,NULL,'2024-07-21 12:53:27','2024-08-24 05:50:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-05 01:34:23','2017-04-05 01:34:23',0),(101,'https://www.monicarenata.com/the-journey-to-the-win/','52:d82482684b74c18454dfdeb2fdd6c977',1804,'post','post',1,0,NULL,NULL,'The Journey To The Win','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 13:44:03','2024-08-24 09:36:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-03-21 03:08:37','2019-03-21 03:08:37',0),(102,'https://www.monicarenata.com/can-you-feel-the-raindrops/','56:9b1a3ba61982e74ef1c78ca1e6548ea6',1834,'post','post',1,0,NULL,NULL,'Can You Feel the Raindrops','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 13:44:03','2024-08-24 10:05:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-11-26 17:57:42','2019-11-26 17:57:36',0),(103,'https://www.monicarenata.com/thin-skin-society/','47:cbf5fb15fd66b89736c509d0d08dd1cd',1821,'post','post',1,0,NULL,NULL,'Thin Skin Society','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 13:44:03','2024-08-24 09:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-09-26 16:02:59','2019-09-26 16:02:59',0),(104,'https://www.monicarenata.com/it-has-been-a-while-let-me-write/','62:5fcd70dee662ea92f629c07674a56e59',1824,'post','post',1,0,NULL,NULL,'It has been a while…… Let me write…..','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 13:44:03','2024-08-24 09:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-11-26 17:32:26','2019-11-14 05:41:16',0),(105,'https://www.monicarenata.com/feeling-alone/','43:370cbcd34a4c523bd2e146fc173479f9',340,'post','post',1,0,NULL,NULL,'Feeling Alone??','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?fit=1024%2C691&ssl=1',NULL,'553','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?fit=1024%2C691&ssl=1','553','featured-image','{\"width\":1024,\"height\":691,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?fit=1024%2C691&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/you_are_never_alone.jpg\",\"size\":\"full\",\"id\":553,\"alt\":\"\",\"pixels\":707584,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 13:46:00','2024-08-21 23:55:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:24','2013-04-02 12:25:00',0),(106,'https://www.monicarenata.com/ceiling-fan/','41:a88349f2e02fcafc23719ba927220ea2',1148,'post','post',1,0,NULL,NULL,'Ceiling Fan','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 14:36:33','2024-08-23 22:20:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 00:45:13','2015-10-29 00:45:13',0),(107,'https://www.monicarenata.com/i-fell-in-love/','44:3649ecb5401e0c872ee83afac30b513b',1051,'post','post',1,0,NULL,NULL,'I Fell In Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 14:43:41','2024-08-23 19:33:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-22 14:50:51','2015-06-22 14:47:18',0),(108,'https://www.monicarenata.com/waiting-for-others-to-hold-my-hand/','64:021ce1b6b339679f2a412912e91c34c5',28,'post','post',1,0,NULL,NULL,'Waiting For Others to Hold My Hand','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?fit=500%2C746&ssl=1',NULL,'352','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?fit=500%2C746&ssl=1','352','featured-image','{\"width\":500,\"height\":746,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?fit=500%2C746&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg\",\"size\":\"full\",\"id\":352,\"alt\":\"\",\"pixels\":373000,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-21 15:02:55','2024-08-23 02:50:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-23 15:41:00',0),(109,'https://www.monicarenata.com/running/','37:ff51ce0dc86cc90666fd42ea5fae3e4c',230,'post','post',1,0,NULL,NULL,'Running','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?fit=300%2C400&ssl=1',NULL,'464','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?fit=300%2C400&ssl=1','464','featured-image','{\"width\":300,\"height\":400,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?fit=300%2C400&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg\",\"size\":\"full\",\"id\":464,\"alt\":\"\",\"pixels\":120000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 15:32:45','2024-08-22 09:00:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:20','2013-10-18 13:00:00',0),(110,'https://www.monicarenata.com/bye-love/','38:6030784e94fe2ffae0a1f6a22b2b3861',126,'post','post',1,0,NULL,NULL,'Bye Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg?fit=212%2C237&ssl=1',NULL,'406','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg?fit=212%2C237&ssl=1','406','featured-image','{\"width\":212,\"height\":237,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg?fit=212%2C237&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg\",\"size\":\"full\",\"id\":406,\"alt\":\"\",\"pixels\":50244,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 15:53:14','2024-08-22 18:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:03','2013-12-17 20:54:00',0),(111,'https://www.monicarenata.com/please-dont-fall-in-love/','54:76c29a6f46be341088e7703331e904a7',680,'post','post',1,0,NULL,NULL,'Please Don’t Fall In Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 16:47:47','2024-08-23 07:05:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-22 14:24:20','2014-10-22 14:24:20',0),(112,'https://www.monicarenata.com/let-freedom-ring/','46:140a7ac04fac341dc23f7b9c0564f459',29,'post','post',1,0,NULL,NULL,'Let Freedom Ring','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?fit=500%2C300&ssl=1',NULL,'353','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?fit=500%2C300&ssl=1','353','featured-image','{\"width\":500,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?fit=500%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/1038.png\",\"size\":\"full\",\"id\":353,\"alt\":\"\",\"pixels\":150000,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-21 16:59:42','2024-08-23 02:50:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-22 19:37:00',0),(113,'https://www.monicarenata.com/paint-my-picture/','46:cb0843f2504226346187f49309007ec4',877,'post','post',1,0,NULL,NULL,'Paint My Picture','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 17:11:57','2024-08-23 12:52:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-03 19:54:55','2015-02-03 19:54:55',0),(114,'https://www.monicarenata.com/the-snow-queen/','44:04628f57e4d9084e28aab3202ccd611e',158,'post','post',1,0,NULL,NULL,'The Snow Queen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi',NULL,NULL,'first-content-image',NULL,NULL,'http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 17:47:24','2024-08-22 15:26:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:19','2013-11-25 14:26:00',0),(115,'https://www.monicarenata.com/knocking-at-my-door/','49:4846afdcb28fd2b5507fa55b3dbbeb0d',114,'post','post',1,0,NULL,NULL,'Knocking at my door','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg?fit=278%2C273&ssl=1',NULL,'397','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg?fit=278%2C273&ssl=1','397','featured-image','{\"width\":278,\"height\":273,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg?fit=278%2C273&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/Ready.jpg\",\"size\":\"full\",\"id\":397,\"alt\":\"\",\"pixels\":75894,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 18:03:10','2024-08-22 19:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:46','2014-01-02 19:37:00',0),(116,'https://www.monicarenata.com/puppeteers-demise/','47:58e1962937db55c979ad4039d06f15e8',1718,'post','post',1,0,NULL,NULL,'Puppeteer’s Demise','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-2.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 19:06:25','2024-08-24 08:18:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-08-16 18:44:13','2017-08-16 18:36:00',0),(118,'https://www.monicarenata.com/i-thought/','39:5c72f8369548305f34a2fcbb092845fe',47,'post','post',1,0,NULL,NULL,'I Thought…..','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-21 19:16:41','2024-08-23 01:09:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-08 13:51:00',0),(119,'https://www.monicarenata.com/one-day/','37:f15a157006f933a87e7dfb0a131ec52f',1776,'post','post',1,0,NULL,NULL,'One Day','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 20:06:28','2024-08-24 09:13:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-04-25 16:03:48','2018-04-25 15:58:36',0),(121,'https://www.monicarenata.com/weekly-challenge-7-find-out-what-inspires-you/','75:0bd4a1453f0eec144c7207193f6d6d13',282,'post','post',1,0,NULL,NULL,'Weekly Challenge 7: Find out what Inspires you','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?fit=640%2C640&ssl=1',NULL,'503','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?fit=640%2C640&ssl=1','503','featured-image','{\"width\":640,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?fit=640%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/inspire.jpg\",\"size\":\"full\",\"id\":503,\"alt\":\"\",\"pixels\":409600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 20:23:00','2024-08-22 04:47:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:59','2013-05-27 16:23:00',0),(122,'https://www.monicarenata.com/irresistible/','42:3e5950d47c54a48db91ff9fb981593c8',857,'post','post',1,0,NULL,NULL,'Irresistible','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 20:41:10','2024-08-23 12:07:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-26 16:41:18','2015-01-26 16:41:18',0),(123,'https://www.monicarenata.com/shard-of-trust/','44:bf7c6fcf94374fbd1fbe91715c55bd73',742,'post','post',1,0,NULL,NULL,'Shard of Trust','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 21:01:34','2024-08-23 08:57:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-24 19:47:23','2014-11-24 19:47:23',0),(124,'https://www.monicarenata.com/my-favorite-flowers/','49:3524746441f26f8cc5f09129d56553c6',204,'post','post',1,0,NULL,NULL,'My Favorite Flowers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 21:05:32','2024-08-22 11:24:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:00','2013-11-11 02:24:00',0),(125,'https://www.monicarenata.com/category/uncategorized/','52:e9aeb1d7644a993548aa3dbec457c5e6',1,'term','category',NULL,NULL,NULL,NULL,'Poems',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 21:24:21','2025-07-09 20:48:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-09 14:48:45','2013-04-01 13:17:00',NULL),(126,'https://www.monicarenata.com/i-do-not-care/','43:f0bed9c67e1fe15e5d57e1978b656812',1787,'post','post',1,0,NULL,NULL,'I Do Not Care','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 21:31:02','2024-08-24 09:25:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-06-22 21:30:55','2018-06-22 21:30:55',0),(127,'https://www.monicarenata.com/just-come-home-i-miss-you/','55:d17fd93f606a661a1d1bb4f979830b6e',1213,'post','post',1,0,NULL,NULL,'Just Come Home: I Miss You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://images6.fanpop.com/image/photos/35600000/Just-Come-Home-tiva-35696368-500-333.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://images6.fanpop.com/image/photos/35600000/Just-Come-Home-tiva-35696368-500-333.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 21:49:41','2024-08-23 23:39:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-03 03:27:42','2016-01-03 03:27:42',0),(128,'https://www.monicarenata.com/ice-ice/','37:5f75398bc4966be34fd5a1b100f08b4f',1658,'post','post',1,0,NULL,NULL,'Ice Ice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?fit=215%2C328&ssl=1',NULL,'1659','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?fit=215%2C328&ssl=1','1659','featured-image','{\"width\":215,\"height\":328,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?fit=215%2C328&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/05/bottle-of-water.jpg\",\"size\":\"full\",\"id\":1659,\"alt\":\"\",\"pixels\":70520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 21:56:12','2024-08-24 06:36:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-05-27 11:34:00','2017-05-27 11:34:00',0),(129,'https://www.monicarenata.com/peace-be-still/','44:827bb7233a972e1faa4a748401dcb53f',168,'post','post',1,0,NULL,NULL,'Peace Be Still','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg?fit=236%2C295&ssl=1',NULL,'423','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg?fit=236%2C295&ssl=1','423','featured-image','{\"width\":236,\"height\":295,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg?fit=236%2C295&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg\",\"size\":\"full\",\"id\":423,\"alt\":\"\",\"pixels\":69620,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 21:58:06','2024-08-22 14:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:25','2013-11-22 13:46:00',0),(130,'https://www.monicarenata.com/time-waits/','40:71ea3aa96f7f0ed3adcccd0134864fc0',92,'post','post',1,0,NULL,NULL,'Time Waits','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 22:07:48','2024-08-22 21:12:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:30','2014-02-12 23:23:00',0),(131,'https://www.monicarenata.com/the-revivification/','48:6acf945477f517e9cb205a7bdc9095b3',1747,'post','post',1,0,NULL,NULL,'The Revivification','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-21 22:22:45','2024-08-24 08:38:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-11-06 04:39:53','2017-11-06 04:39:53',0),(132,'https://www.monicarenata.com/its-hard-for-me-to-express-my-feelings/','68:241ef8f1dec9356d02ce8fc6d1d3e677',78,'post','post',1,0,NULL,NULL,'It’s hard for me to express my feelings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-21 22:50:23','2024-08-22 22:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:03','2014-02-20 05:21:00',0),(133,'https://www.monicarenata.com/statistics/','40:8a798b4a9b5321c111ef1eb4ba552bcc',257,'post','post',1,0,NULL,NULL,'Statistics','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?fit=472%2C332&ssl=1',NULL,'483','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?fit=472%2C332&ssl=1','483','featured-image','{\"width\":472,\"height\":332,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?fit=472%2C332&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/stats.jpg\",\"size\":\"full\",\"id\":483,\"alt\":\"\",\"pixels\":156704,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-21 23:01:34','2024-08-22 06:40:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:39','2013-08-16 03:42:00',0),(134,'https://www.monicarenata.com/the-winter-march/','46:55e6b15e9c18604d3cc91433a3080548',157,'post','post',1,0,NULL,NULL,'The Winter March','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?fit=540%2C358&ssl=1',NULL,'417','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?fit=540%2C358&ssl=1','417','featured-image','{\"width\":540,\"height\":358,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?fit=540%2C358&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg\",\"size\":\"full\",\"id\":417,\"alt\":\"\",\"pixels\":193320,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 00:10:30','2024-08-22 15:40:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:18','2013-11-25 14:43:00',0),(135,'https://www.monicarenata.com/stream-of-lethe/','45:7c66f0f0b0fcfa8fa9136a1a8ca5fe20',1759,'post','post',1,0,NULL,NULL,'Stream of Lethe','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg?fit=900%2C720&ssl=1',NULL,'1760','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg?fit=900%2C720&ssl=1','1760','featured-image','{\"width\":900,\"height\":720,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg?fit=900%2C720&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2018/01/wild-turkeys-appalachian-thanksgiving-landscape-childhood-memories-country-life-americana-walt-curlee.jpg\",\"size\":\"full\",\"id\":1760,\"alt\":\"\",\"pixels\":648000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 00:19:28','2024-08-24 08:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-01-02 00:41:06','2018-01-02 00:41:06',0),(136,'https://www.monicarenata.com/sneaky-sara/','41:6cd1f3a8669c49324520ce3f11e7df36',98,'post','post',1,0,NULL,NULL,'Sneaky Sara','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?fit=839%2C1024&ssl=1',NULL,'391','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?fit=839%2C1024&ssl=1','391','featured-image','{\"width\":839,\"height\":1024,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?fit=839%2C1024&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/sneaky.jpg\",\"size\":\"full\",\"id\":391,\"alt\":\"\",\"pixels\":859136,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 00:24:26','2024-08-22 20:37:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:36','2014-01-23 20:20:00',0),(137,'https://www.monicarenata.com/keep/','34:9a828558e00df4c5831504cddb7650e8',216,'post','post',1,0,NULL,NULL,'Keep','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?fit=490%2C296&ssl=1',NULL,'454','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?fit=490%2C296&ssl=1','454','featured-image','{\"width\":490,\"height\":296,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?fit=490%2C296&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/man-walking-away.jpg\",\"size\":\"full\",\"id\":454,\"alt\":\"\",\"pixels\":145040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 00:32:05','2024-08-22 10:25:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:09','2013-11-06 01:44:00',0),(138,'https://www.monicarenata.com/connect-with-me/','45:0e936ca7c31c2aa497c126e33618bb95',2,'post','page',1,0,NULL,NULL,'Connect With Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:05:41','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-01 14:16:09','2014-08-09 21:01:51',0),(139,'https://www.monicarenata.com/no-more/','37:829fbef846dd76f97a7294d0e4118958',139,'post','post',1,0,NULL,NULL,'No More','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:07:42','2024-08-22 16:52:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','2013-12-10 19:22:00',0),(140,'https://www.monicarenata.com/prisoner-with-the-open-door/','57:0f346297e2d83dbfd2c0c2efdf5d5e5f',1933,'post','post',1,0,NULL,NULL,'Prisoner with the Open Door','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg?fit=640%2C853&ssl=1',NULL,'1936','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg?fit=640%2C853&ssl=1','1936','featured-image','{\"width\":640,\"height\":853,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg?fit=640%2C853&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2024/01/joaquin-paz-y-mino-OAM2cNo5U9U-unsplash-2.jpg\",\"size\":\"full\",\"id\":1936,\"alt\":\"\",\"pixels\":545920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 01:09:14','2024-08-24 11:35:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-02 17:53:29','2024-01-02 17:53:29',0),(141,'https://www.monicarenata.com/baby-count-your-blessings/','55:0dc6791ae1b3c5a8f971d956cefc10ca',823,'post','post',1,0,NULL,NULL,'Baby Count Your Blessings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:13:00','2024-08-23 11:22:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-17 19:34:17','2015-01-16 19:43:48',0),(142,'https://www.monicarenata.com/helping-hands/','43:9953f9699ea07bca9ff4919caf8f49e0',1567,'post','post',1,0,NULL,NULL,'Helping Hands','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/h.jpg?fit=1382%2C864&ssl=1',NULL,'1568','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/h.jpg?fit=1382%2C864&ssl=1','1568','featured-image','{\"width\":1382,\"height\":864,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/h.jpg?fit=1382%2C864&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/h.jpg\",\"size\":\"full\",\"id\":1568,\"alt\":\"\",\"pixels\":1194048,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 01:24:10','2024-08-24 05:39:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-25 18:01:09','2017-03-25 18:01:09',0),(143,'https://www.monicarenata.com/the-song-about-you/','48:04a65aa3227e199f1350b8940d5fc449',233,'post','post',1,0,NULL,NULL,'The Song About You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:29:32','2024-08-22 08:37:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:20','2013-10-11 02:01:00',0),(144,'https://www.monicarenata.com/living-dilemma/','44:f3eb6ce9b5ce44e7e6b63b2ceee5afac',1886,'post','post',1,0,NULL,NULL,'Living Dilemma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:35:55','2024-08-24 10:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-08-02 18:31:12','2021-08-02 18:31:12',0),(145,'https://www.monicarenata.com/be-thankful/','41:fef5e1e4f07fd83f3716581e27400ec6',151,'post','post',1,0,NULL,NULL,'Be Thankful','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 01:41:31','2024-08-22 16:17:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-11-27 16:02:00',0),(146,'https://www.monicarenata.com/love-stop/','39:e858da399eedf36e8241dec9461f5c2a',1813,'post','post',1,0,NULL,NULL,'Love Stop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 02:20:48','2024-08-24 09:36:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-03-21 03:58:39','2019-03-21 03:58:39',0),(147,'https://www.monicarenata.com/sweet-love/','40:53762bd7a06eee44a96b472a640068eb',288,'post','post',1,0,NULL,NULL,'Sweet Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?fit=450%2C470&ssl=1',NULL,'507','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?fit=450%2C470&ssl=1','507','featured-image','{\"width\":450,\"height\":470,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?fit=450%2C470&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg\",\"size\":\"full\",\"id\":507,\"alt\":\"\",\"pixels\":211500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 02:42:33','2024-08-22 04:07:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:04','2013-05-20 18:18:00',0),(148,'https://www.monicarenata.com/things-that-make-me-smile/','55:a204c6424fb84ca3bfcbcd1165da50b5',133,'post','post',1,0,NULL,NULL,'Things that Make Me Smile','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 02:51:48','2024-08-22 17:35:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-12 19:34:00',0),(149,'https://www.monicarenata.com/speckle/','37:707f17a53b22b9361787b7db621f65d8',137,'post','post',1,0,NULL,NULL,'Speckle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?fit=640%2C466&ssl=1',NULL,'409','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?fit=640%2C466&ssl=1','409','featured-image','{\"width\":640,\"height\":466,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?fit=640%2C466&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/200903-flokot-art7.jpg\",\"size\":\"full\",\"id\":409,\"alt\":\"\",\"pixels\":298240,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 03:02:10','2024-08-22 17:24:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','2013-12-11 14:32:00',0),(150,'https://www.monicarenata.com/he-will-never-leave-me-alone/','58:b5cb5b4b49ee7e968af79d049fe6cf73',1160,'post','post',1,0,NULL,NULL,'He Will Never Leave Me Alone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 03:08:15','2024-08-23 22:52:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 02:54:51','2015-10-29 02:54:51',0),(151,'https://www.monicarenata.com/i-write-my-wrongs-in-color/','56:c585772df3e76d573d2f879cc42b9d09',1360,'post','post',1,0,NULL,NULL,'I Write My Wrongs In Color','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 03:26:33','2024-08-24 03:58:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-11-30 04:05:03','2016-11-30 04:05:03',0),(152,'https://www.monicarenata.com/hello/','35:c2cd0355e675b2f330e055ddd0eb2ce4',349,'post','post',1,0,NULL,NULL,'Hello','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?fit=450%2C450&ssl=1',NULL,'562','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?fit=450%2C450&ssl=1','562','featured-image','{\"width\":450,\"height\":450,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?fit=450%2C450&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg\",\"size\":\"full\",\"id\":562,\"alt\":\"\",\"pixels\":202500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 03:42:57','2024-08-21 23:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2013-04-01 13:17:00',0),(153,'https://www.monicarenata.com/playground/','40:0b12e020abff1d229c6dd317d8887d37',1271,'post','post',1,0,NULL,NULL,'PlayGround','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 03:44:54','2024-08-24 01:22:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-05 19:51:54','2016-04-05 19:51:54',0),(154,'https://www.monicarenata.com/observation-of-betrayal/','53:da41682ed2ead6c9ccde3f78be151b6f',1753,'post','post',1,0,NULL,NULL,'Observation Of Betrayal','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 03:55:07','2024-08-24 08:38:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-11-06 04:52:37','2017-11-06 04:52:37',0),(155,'https://www.monicarenata.com/unbothered/','40:8d0af37e1ad929962fe65b751db6e583',630,'post','post',1,0,NULL,NULL,'Unbothered','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 04:15:21','2024-08-23 06:06:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-06 14:40:25','2014-10-06 14:40:25',0),(156,'https://www.monicarenata.com/i-cant-help-you/','45:af332b0de706abac731a3ff409338a98',1228,'post','post',1,0,NULL,NULL,'I Can’t Help You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.diannesvegankitchen.com/wp-content/uploads/2015/06/Help-Me-Help-You1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.diannesvegankitchen.com/wp-content/uploads/2015/06/Help-Me-Help-You1.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:32:05','2024-08-24 00:12:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-05 01:17:07','2016-01-05 01:17:07',0),(157,'https://www.monicarenata.com/feel-me/','37:f96b1e0c94096d7f5e8a0682a78a29b6',1226,'post','post',1,0,NULL,NULL,'Feel Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/VOdCTNTjXOY/hqdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/VOdCTNTjXOY/hqdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:34:15','2024-08-24 00:12:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-03-14 04:42:55','2016-01-05 01:13:28',0),(158,'https://www.monicarenata.com/i-hate-how-much-i-like-you/','56:1d03a0eb065382f9b9df586bae61f6aa',1231,'post','post',1,0,NULL,NULL,'I Hate How Much I Like You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://data.whicdn.com/images/15419150/original.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://data.whicdn.com/images/15419150/original.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:34:15','2024-08-24 00:12:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-15 21:05:29','2016-01-15 21:05:29',0),(159,'https://www.monicarenata.com/my-wait-doesnt-last/','49:436320cfc6d1a0f160c991356b13a562',1233,'post','post',1,0,NULL,NULL,'My Wait Doesn’t Last','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://austinblevins.files.wordpress.com/2014/10/img_8780.jpg?w=625',NULL,NULL,'first-content-image',NULL,NULL,'https://austinblevins.files.wordpress.com/2014/10/img_8780.jpg?w=625',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:35:00','2024-08-24 00:22:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-15 21:20:29','2016-01-15 21:20:29',0),(160,'https://www.monicarenata.com/seasons-change/','44:83101cba64db575d662a7fcbb52fb033',1714,'post','post',1,0,NULL,NULL,'Seasons Change','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-1.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:35:36','2024-08-24 08:18:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-08-18 03:02:08','2017-08-16 17:50:10',0),(162,'https://www.monicarenata.com/mirror-motivation/','47:d58c65462efcf91eaf5dcc01930da9f8',1797,'post','post',1,0,NULL,NULL,'Mirror Motivation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:35:40','2024-08-24 09:25:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-10-05 03:50:36','2018-10-05 03:50:36',0),(163,'https://www.monicarenata.com/stranger-in-my-bed/','48:70e76024e90a5b078bf20e99f41fc863',1235,'post','post',1,0,NULL,NULL,'Stranger In My Bed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://c2.staticflickr.com/2/1253/5099707442_4f29b5abe8_b.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://c2.staticflickr.com/2/1253/5099707442_4f29b5abe8_b.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 04:37:59','2024-08-24 00:22:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-15 21:27:30','2016-01-15 21:27:30',0),(164,'https://www.monicarenata.com/i-came-i-saw-i-conquered/','54:70be6617d889fe7fd0512cf0424d3eb8',107,'post','post',1,0,NULL,NULL,'I came, I saw, I conquered','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 05:01:46','2024-08-22 19:53:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-15 20:55:00',0),(165,'https://www.monicarenata.com/confetti-hearts/','45:236bae668c61149795501747882827fa',156,'post','post',1,0,NULL,NULL,'Confetti Hearts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?fit=460%2C276&ssl=1',NULL,'416','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?fit=460%2C276&ssl=1','416','featured-image','{\"width\":460,\"height\":276,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?fit=460%2C276&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg\",\"size\":\"full\",\"id\":416,\"alt\":\"\",\"pixels\":126960,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 05:12:31','2024-08-22 15:40:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:16','2013-11-25 19:28:00',0),(166,'https://www.monicarenata.com/the-trap/','38:31b74602bac4058af2b665725799e82d',80,'post','post',1,0,NULL,NULL,'The Trap','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?fit=280%2C280&ssl=1',NULL,'380','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?fit=280%2C280&ssl=1','380','featured-image','{\"width\":280,\"height\":280,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?fit=280%2C280&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/hanging-252520cliff.jpg\",\"size\":\"full\",\"id\":380,\"alt\":\"\",\"pixels\":78400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 05:20:41','2024-08-22 22:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:06','2014-02-19 18:17:00',0),(167,'https://www.monicarenata.com/dirty-mirror-self-esteem/','54:c1965aaebff31a29cf77aace5f6855b0',1347,'post','post',1,0,NULL,NULL,'Dirty Mirror – Self-Esteem','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 05:29:45','2024-08-24 03:58:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-10-05 13:59:57','2016-10-05 13:55:46',0),(168,'https://www.monicarenata.com/misery/','36:6f5f91dc68eda5946a692e16abda4c5f',925,'post','post',1,0,NULL,NULL,'Misery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 05:31:14','2024-08-23 15:00:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 15:49:01','2015-02-13 15:49:01',0),(169,'https://www.monicarenata.com/category/the-analytical-side-of-the-brain/','71:4e5bf48ada3318c3b1384d3492a71eb2',53,'term','category',NULL,NULL,NULL,NULL,'The Analytical Side of The Brain',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 05:35:58','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-11-26 17:32:26','2017-04-12 20:19:18',NULL),(170,'https://www.monicarenata.com/december/','38:92ec3ae2b45e29718960325747d6418a',150,'post','post',1,0,NULL,NULL,'December','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?fit=480%2C640&ssl=1',NULL,'413','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?fit=480%2C640&ssl=1','413','featured-image','{\"width\":480,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?fit=480%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/IMG_756-761828.jpg\",\"size\":\"full\",\"id\":413,\"alt\":\"\",\"pixels\":307200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 06:32:46','2024-08-22 16:17:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-12-02 13:17:00',0),(171,'https://www.monicarenata.com/keep-hoping/','41:63c1698074784c584bb85b9b20ce76b8',135,'post','post',1,0,NULL,NULL,'Keep Hoping','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 06:41:09','2024-08-22 17:24:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-12 14:05:00',0),(172,'https://www.monicarenata.com/gentle-my-darling/','47:08a28701c10c2c8ebacd9ad0eb8c02cc',127,'post','post',1,0,NULL,NULL,'Gentle My Darling','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 07:01:23','2024-08-22 18:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:03','2013-12-17 20:28:00',0),(173,'https://www.monicarenata.com/the-last-fight/','44:9474b8c36225b520e479243064300a19',1915,'post','post',1,0,NULL,NULL,'The Last Fight','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2022/10/Couple_Banner-768x432-1.jpg?fit=768%2C432&ssl=1',NULL,'1916','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2022/10/Couple_Banner-768x432-1.jpg?fit=768%2C432&ssl=1','1916','featured-image','{\"width\":768,\"height\":432,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2022/10/Couple_Banner-768x432-1.jpg?fit=768%2C432&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2022/10/Couple_Banner-768x432-1.jpg\",\"size\":\"full\",\"id\":1916,\"alt\":\"\",\"pixels\":331776,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 07:03:22','2024-08-24 11:27:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-10-27 02:18:29','2022-10-27 02:18:29',0),(174,'https://www.monicarenata.com/you-are-you/','41:09baad3d6619d345862309c7795dce1f',108,'post','post',1,0,NULL,NULL,'You Are You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 07:13:41','2024-08-22 19:44:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-13 15:37:00',0),(175,'https://www.monicarenata.com/i-will-be-light/','45:16bf5d0014f373b8b4217c4a209ee8bd',1901,'post','post',1,0,NULL,NULL,'I Will Be Light','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 07:36:53','2024-08-24 11:00:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-11-10 01:24:35','2021-11-10 01:24:35',0),(176,'https://www.monicarenata.com/in-the-corner/','43:452691970bb5480d0910938709598852',84,'post','post',1,0,NULL,NULL,'In The Corner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 07:51:19','2024-08-22 21:47:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:27','2014-02-16 18:41:00',0),(177,'https://www.monicarenata.com/hello-2/','37:5fcca6b9daeb41d3c1abaf7c4be6bd57',825,'post','post',1,0,NULL,NULL,'Hello','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 08:02:11','2024-08-23 11:22:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-17 07:19:48','2015-01-16 19:49:25',0),(178,'https://www.monicarenata.com/love-me-with-the-lights-on/','56:c96c3843b16aa8b777a1014c7b14eed7',902,'post','post',1,0,NULL,NULL,'Love Me With The Lights On','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 08:05:02','2024-08-23 13:55:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 17:53:48','2015-02-09 17:53:48',0),(179,'https://www.monicarenata.com/the-cover-up/','42:bbd554255ee8f1eac2d1743ae8cb4951',179,'post','post',1,0,NULL,NULL,'The Cover Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi',NULL,NULL,'first-content-image',NULL,NULL,'http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 08:13:56','2024-08-22 13:30:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:33','2013-11-19 15:55:00',0),(180,'https://www.monicarenata.com/trust-loyalty-is-hard-to-find/','59:e7aed7d633977fd3fea393337e6090e2',1267,'post','post',1,0,NULL,NULL,'Trust: Loyalty Is Hard To Find','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 08:39:59','2024-08-24 01:09:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-04 16:40:16','2016-04-04 16:28:22',0),(181,'https://www.monicarenata.com/strength-personified/','50:8a3b6b249a4d64a6644392801666974f',1470,'post','post',1,0,NULL,NULL,'Strength Personified','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://2.bp.blogspot.com/-e4Xo5jGynlU/VMP3hf6UpfI/AAAAAAAAAug/2w3nehmjQ1c/s1600/strength.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://2.bp.blogspot.com/-e4Xo5jGynlU/VMP3hf6UpfI/AAAAAAAAAug/2w3nehmjQ1c/s1600/strength.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 08:50:36','2024-08-24 04:36:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-09 16:37:09','2017-02-09 16:21:41',0),(182,'https://www.monicarenata.com/coffee/','36:6d9fd01c62a3d3ff404cc0f2108fa531',1865,'post','post',1,0,NULL,NULL,'Coffee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/coffee.jpg?fit=510%2C330&ssl=1',NULL,'1866','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/coffee.jpg?fit=510%2C330&ssl=1','1866','featured-image','{\"width\":510,\"height\":330,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/coffee.jpg?fit=510%2C330&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2020/12/coffee.jpg\",\"size\":\"full\",\"id\":1866,\"alt\":\"\",\"pixels\":168300,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 08:50:58','2024-08-24 10:20:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-12 07:14:47','2020-12-12 07:14:47',0),(183,'https://www.monicarenata.com/i-fear-my-friend/','46:c9d7517badb9f0be28f38a20bff56f75',906,'post','post',1,0,NULL,NULL,'I Fear My Friend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 09:30:49','2024-08-23 14:23:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-10 14:07:14','2015-02-10 14:07:14',0),(184,'https://www.monicarenata.com/121314/','36:499ae1d248c8c48b9b898a1b2048c128',195,'post','post',1,0,NULL,NULL,'12/13/14','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?fit=1920%2C1200&ssl=1',NULL,'440','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?fit=1920%2C1200&ssl=1','440','featured-image','{\"width\":1920,\"height\":1200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?fit=1920%2C1200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/wedding-ring-83876.jpg\",\"size\":\"full\",\"id\":440,\"alt\":\"\",\"pixels\":2304000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 09:31:12','2024-08-22 12:09:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:55','2013-11-13 20:03:00',0),(185,'https://www.monicarenata.com/the-cut/','37:73f570f57178d574651543f95781d501',227,'post','post',1,0,NULL,NULL,'The Cut','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'http://cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 09:31:42','2024-08-22 09:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:17','2013-10-29 00:43:00',0),(186,'https://www.monicarenata.com/you-remind-me/','43:247e790afa5c2b82a545d3cdbf0133e1',943,'post','post',1,0,NULL,NULL,'You Remind Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 09:32:03','2024-08-23 15:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-18 14:02:52','2015-02-18 14:02:52',0),(187,'https://www.monicarenata.com/winter-to-spring/','46:f39d818dbe0ee1be166793a1558271d0',73,'post','post',1,0,NULL,NULL,'Winter to Spring','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?fit=1920%2C1200&ssl=1',NULL,'377','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?fit=1920%2C1200&ssl=1','377','featured-image','{\"width\":1920,\"height\":1200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?fit=1920%2C1200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/winter-to-spring.jpg\",\"size\":\"full\",\"id\":377,\"alt\":\"\",\"pixels\":2304000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 09:37:40','2024-08-22 22:36:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:00','2014-02-22 19:05:00',0),(188,'https://www.monicarenata.com/the-psychic/','41:5472f533cb9e6b22671d06c89db6d373',191,'post','post',1,0,NULL,NULL,'The Psychic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 10:07:36','2024-08-22 12:26:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:52','2013-11-14 19:32:00',0),(189,'https://www.monicarenata.com/forever-never-lasts/','49:7579635d1885e46e8f6a9b7cd41d74ed',267,'post','post',1,0,NULL,NULL,'Forever Never Lasts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?fit=475%2C300&ssl=1',NULL,'490','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?fit=475%2C300&ssl=1','490','featured-image','{\"width\":475,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?fit=475%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg\",\"size\":\"full\",\"id\":490,\"alt\":\"\",\"pixels\":142500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 10:13:50','2024-08-22 05:58:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:47','2013-06-27 15:01:00',0),(190,'https://www.monicarenata.com/nighttime-dilemma/','47:c51ef2383d04136a2ef4249410dd3af9',1572,'post','post',1,0,NULL,NULL,'NightTime Dilemma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg?fit=900%2C595&ssl=1',NULL,'1573','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg?fit=900%2C595&ssl=1','1573','featured-image','{\"width\":900,\"height\":595,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg?fit=900%2C595&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/wpid-spooning.jpg\",\"size\":\"full\",\"id\":1573,\"alt\":\"\",\"pixels\":535500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 10:22:10','2024-08-24 05:39:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-25 18:34:30','2017-03-25 18:34:30',0),(191,'https://www.monicarenata.com/fill-my-cup-with-coffee/','53:b0028dc9a26d156c8b43a27c6002b9f7',152,'post','post',1,0,NULL,NULL,'Fill my cup with Coffee','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?fit=1200%2C1200&ssl=1',NULL,'414','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?fit=1200%2C1200&ssl=1','414','featured-image','{\"width\":1200,\"height\":1200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?fit=1200%2C1200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg\",\"size\":\"full\",\"id\":414,\"alt\":\"\",\"pixels\":1440000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 10:38:50','2024-08-22 15:51:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:14','2013-11-27 15:38:00',0),(192,'https://www.monicarenata.com/fallen-son/','40:d0ac888be78e8718cacbf989fd536b06',1644,'post','post',1,0,NULL,NULL,'Fallen Son','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png?fit=261%2C193&ssl=1',NULL,'1645','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png?fit=261%2C193&ssl=1','1645','featured-image','{\"width\":261,\"height\":193,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png?fit=261%2C193&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/05/Fallen-son.png\",\"size\":\"full\",\"id\":1645,\"alt\":\"\",\"pixels\":50373,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-22 10:42:27','2024-08-24 06:21:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-05-09 03:43:44','2017-05-09 03:43:44',0),(193,'https://www.monicarenata.com/they-want-me-to-follow-instructions/','65:ff40a81faab63ff7e362379c3042ceaa',110,'post','post',1,0,NULL,NULL,'They Want Me To Follow Instructions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 10:51:25','2024-08-22 19:44:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-09 14:59:00',0),(194,'https://www.monicarenata.com/summer-days/','41:48054da3c75281cf964d4dd81c0c8053',39,'post','post',1,0,NULL,NULL,'Summer Days','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?fit=368%2C275&ssl=1',NULL,'360','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?fit=368%2C275&ssl=1','360','featured-image','{\"width\":368,\"height\":275,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?fit=368%2C275&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg\",\"size\":\"full\",\"id\":360,\"alt\":\"\",\"pixels\":101200,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-22 11:07:06','2024-08-23 01:46:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-04-30 15:35:00',0),(195,'https://www.monicarenata.com/from-head-to-toe/','46:fccf628c7136cfef68facd2dcde943d7',294,'post','post',1,0,NULL,NULL,'From Head to Toe','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?fit=550%2C344&ssl=1',NULL,'512','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?fit=550%2C344&ssl=1','512','featured-image','{\"width\":550,\"height\":344,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?fit=550%2C344&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg\",\"size\":\"full\",\"id\":512,\"alt\":\"\",\"pixels\":189200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 11:41:43','2024-08-22 03:36:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:07','2013-05-14 14:54:00',0),(196,'https://www.monicarenata.com/the-rock/','38:6b346e17b535fb3d0ef03fde0db97a2f',27,'post','post',1,0,NULL,NULL,'The Rock','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?fit=800%2C1237&ssl=1',NULL,'351','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?fit=800%2C1237&ssl=1','351','featured-image','{\"width\":800,\"height\":1237,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?fit=800%2C1237&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png\",\"size\":\"full\",\"id\":351,\"alt\":\"\",\"pixels\":989600,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-22 12:27:40','2024-08-23 02:50:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-27 14:28:00',0),(197,'https://www.monicarenata.com/the-sun-after-the-storm/','53:30998944b22212a5797d78f81bdb360d',48,'post','post',1,0,NULL,NULL,'The Sun After the Storm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?fit=500%2C332&ssl=1',NULL,'364','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?fit=500%2C332&ssl=1','364','featured-image','{\"width\":500,\"height\":332,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?fit=500%2C332&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/after-the-storm.jpg\",\"size\":\"full\",\"id\":364,\"alt\":\"\",\"pixels\":166000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 12:33:07','2024-08-23 00:51:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:43','2014-04-07 13:22:00',0),(198,'https://www.monicarenata.com/the-kindest-heart/','47:28addac00dc77180a9c3e1e0b1ac309d',287,'post','post',1,0,NULL,NULL,'The Kindest Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?fit=500%2C458&ssl=1',NULL,'506','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?fit=500%2C458&ssl=1','506','featured-image','{\"width\":500,\"height\":458,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?fit=500%2C458&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg\",\"size\":\"full\",\"id\":506,\"alt\":\"\",\"pixels\":229000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 12:50:30','2024-08-22 04:07:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:03','2013-05-21 15:40:00',0),(199,'https://www.monicarenata.com/about-me/','38:db05e1e7770a6f753b2a71d12e28fc49',573,'post','page',1,0,NULL,NULL,'About Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 13:03:18','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-12 19:22:00','2014-08-19 16:14:22',0),(200,'https://www.monicarenata.com/my-works/','38:38c1ddeba17e869a8a209f7e4d9044c9',141,'post','post',1,0,NULL,NULL,'My Works!!!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1',NULL,'383','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1','383','featured-image','{\"width\":228,\"height\":346,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\",\"size\":\"full\",\"id\":383,\"alt\":\"\",\"pixels\":78888,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 13:29:48','2024-08-22 16:52:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','2013-12-06 13:25:00',0),(201,'https://www.monicarenata.com/you-miss-me/','41:1bf7f0997e1603b5f9e17da604a20a63',1098,'post','post',1,0,NULL,NULL,'You Miss Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 13:41:24','2024-08-23 21:07:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-01 17:40:44','2015-09-01 17:33:35',0),(202,'https://www.monicarenata.com/the-heartbreak-song/','49:22932dbbcb66d624f857702338f3a064',779,'post','post',1,0,NULL,NULL,'The Heartbreak Song','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 13:52:20','2024-08-23 09:53:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-28 20:50:25','2014-12-28 20:50:25',0),(203,'https://www.monicarenata.com/black-dove/','40:36948f2cede93d9f43d0e82268544b4e',1243,'post','post',1,0,NULL,NULL,'Black Dove','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 13:57:28','2024-08-24 00:39:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-02-24 00:17:20','2016-02-21 20:56:25',0),(204,'https://www.monicarenata.com/the-ship/','38:735187e2b7358fc1bc1fa8ea9b234bae',221,'post','post',1,0,NULL,NULL,'The Ship','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp',NULL,NULL,'first-content-image',NULL,NULL,'http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 14:14:33','2024-08-22 09:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:13','2013-10-31 13:20:00',0),(205,'https://www.monicarenata.com/let-the-sun-shine/','47:2073df0d7c49c19d5daddc02b6a091e1',1261,'post','post',1,0,NULL,NULL,'Let The Sun Shine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 14:43:28','2024-08-24 00:53:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-03-31 12:15:42','2016-03-31 12:14:07',0),(206,'https://www.monicarenata.com/river-of-tears/','44:218198047fa662162f9e21ea398ca3a2',280,'post','post',1,0,NULL,NULL,'River of Tears','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif?fit=480%2C475&ssl=1',NULL,'501','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif?fit=480%2C475&ssl=1','501','featured-image','{\"width\":480,\"height\":475,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif?fit=480%2C475&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/river-tears.gif\",\"size\":\"full\",\"id\":501,\"alt\":\"\",\"pixels\":228000,\"type\":\"image/gif\"}',0,NULL,NULL,'2024-07-22 15:28:25','2024-08-22 04:58:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:57','2013-05-29 17:41:00',0),(208,'https://www.monicarenata.com/angel-wings/','41:0867820afe491d8ac6d201e72cd5f6b4',1872,'post','post',1,0,NULL,NULL,'Angel Wings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1',NULL,'1873','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1','1873','featured-image','{\"width\":640,\"height\":427,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2020/12/Sad-Woman.jpg\",\"size\":\"full\",\"id\":1873,\"alt\":\"\",\"pixels\":273280,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 16:11:06','2024-08-24 10:20:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-23 16:08:15','2020-12-23 16:08:15',0),(209,'https://www.monicarenata.com/my-night-under-the-stars/','54:eee5cc5c45171a38990a399e3afce467',246,'post','post',1,0,NULL,NULL,'My Night Under The Stars','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?fit=1024%2C768&ssl=1',NULL,'475','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?fit=1024%2C768&ssl=1','475','featured-image','{\"width\":1024,\"height\":768,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?fit=1024%2C768&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/moon-13-sky-night.jpg\",\"size\":\"full\",\"id\":475,\"alt\":\"\",\"pixels\":786432,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 16:20:53','2024-08-22 07:43:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:30','2013-08-30 17:47:00',0),(210,'https://www.monicarenata.com/true-beauty/','41:8eae3995374de057c68c803cb5924058',337,'post','post',1,0,NULL,NULL,'True Beauty','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?fit=225%2C225&ssl=1',NULL,'550','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?fit=225%2C225&ssl=1','550','featured-image','{\"width\":225,\"height\":225,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?fit=225%2C225&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/True-Beauty.jpg\",\"size\":\"full\",\"id\":550,\"alt\":\"\",\"pixels\":50625,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 16:54:02','2024-08-22 00:10:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:23','2013-04-03 12:56:00',0),(211,'https://www.monicarenata.com/life-isnt-a-game/','46:e3ff8bf858a515017894fb0317b02b51',118,'post','post',1,0,NULL,NULL,'Life Isn’t a Game','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?fit=800%2C800&ssl=1',NULL,'400','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?fit=800%2C800&ssl=1','400','featured-image','{\"width\":800,\"height\":800,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?fit=800%2C800&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg\",\"size\":\"full\",\"id\":400,\"alt\":\"\",\"pixels\":640000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 17:09:49','2024-08-22 18:57:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:51','2013-12-31 14:28:00',0),(212,'https://www.monicarenata.com/reflecting-views/','46:2011e13cd32dd41b86f25a53daf48d3e',1919,'post','post',1,0,NULL,NULL,'Reflecting Views','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 17:34:10','2024-08-24 11:27:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-16 03:31:51','2023-02-16 03:28:11',0),(213,'https://www.monicarenata.com/the-final-viewing/','47:3518ef9bc98d529281ef885fe98d25f5',1911,'post','post',1,0,NULL,NULL,'The Final Viewing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 17:34:10','2024-08-24 11:08:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-02-16 03:27:13','2022-02-16 03:27:13',0),(214,'https://www.monicarenata.com/get-over-it/','41:0f18dcf7ee61e3e0c8b6f3f2f17da45f',155,'post','post',1,0,NULL,NULL,'Get Over It','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?fit=347%2C286&ssl=1',NULL,'415','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?fit=347%2C286&ssl=1','415','featured-image','{\"width\":347,\"height\":286,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?fit=347%2C286&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/BuildIt.jpg\",\"size\":\"full\",\"id\":415,\"alt\":\"\",\"pixels\":99242,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 17:53:10','2024-08-22 15:40:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:16','2013-11-26 14:08:00',0),(215,'https://www.monicarenata.com/what-was-i-supposed-to-do/','55:af7ce7fe04a4684dece871b796e3e0bc',147,'post','post',1,0,NULL,NULL,'What was I supposed to do?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 17:59:01','2024-08-22 16:28:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-12-03 20:14:00',0),(216,'https://www.monicarenata.com/someone-to-someone/','48:18528233463df237a064d142dd267723',1588,'post','post',1,0,NULL,NULL,'Someone to Someone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?fit=550%2C277&ssl=1',NULL,'1589','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?fit=550%2C277&ssl=1','1589','featured-image','{\"width\":550,\"height\":277,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?fit=550%2C277&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png\",\"size\":\"full\",\"id\":1589,\"alt\":\"\",\"pixels\":152350,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-22 18:26:22','2024-08-24 05:50:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-06 00:43:21','2017-04-06 00:40:01',0),(217,'https://www.monicarenata.com/1st-place/','39:c1b988f1a33a4260c94c00f1adde3c44',226,'post','post',1,0,NULL,NULL,'1st Place','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?fit=300%2C300&ssl=1',NULL,'461','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?fit=300%2C300&ssl=1','461','featured-image','{\"width\":300,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?fit=300%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/3853962_300.jpg\",\"size\":\"full\",\"id\":461,\"alt\":\"\",\"pixels\":90000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 18:42:32','2024-08-22 09:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:17','2013-10-29 16:40:00',0),(218,'https://www.monicarenata.com/the-little-girl-who-believed/','58:b715ab58d3330d6b8409be0c1f2a3c4a',329,'post','post',1,0,NULL,NULL,'The Little Girl Who Believed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?fit=800%2C600&ssl=1',NULL,'542','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?fit=800%2C600&ssl=1','542','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?fit=800%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Life.jpg\",\"size\":\"full\",\"id\":542,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 19:35:31','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:21','2013-04-07 14:51:00',0),(219,'https://www.monicarenata.com/fast-money/','40:87f1ee502f6e170379d9d479ad472947',875,'post','post',1,0,NULL,NULL,'Fast Money','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 19:45:50','2024-08-23 12:38:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-03 12:45:30','2015-02-03 12:45:30',0),(220,'https://www.monicarenata.com/the-fear-of-being-single/','54:22d033492dfe328afbfa31c85b263b1e',317,'post','post',1,0,NULL,NULL,'The Fear of Being Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?fit=1024%2C682&ssl=1',NULL,'531','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?fit=1024%2C682&ssl=1','531','featured-image','{\"width\":1024,\"height\":682,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?fit=1024%2C682&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg\",\"size\":\"full\",\"id\":531,\"alt\":\"\",\"pixels\":698368,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 20:42:31','2024-08-22 01:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:16','2013-04-16 15:05:00',0),(221,'https://www.monicarenata.com/draft-me-a-portrait/','49:d064bdd8ff813b8627dc34f5cdbe6d7f',342,'post','post',1,0,NULL,NULL,'Draft me a Portrait','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?fit=960%2C544&ssl=1',NULL,'555','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?fit=960%2C544&ssl=1','555','featured-image','{\"width\":960,\"height\":544,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?fit=960%2C544&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg\",\"size\":\"full\",\"id\":555,\"alt\":\"\",\"pixels\":522240,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 20:46:11','2024-08-21 23:35:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 16:30:02','2013-04-01 18:32:00',0),(222,'https://www.monicarenata.com/just-kinda/','40:64d4a11679f8f67825a7695561f4678d',262,'post','post',1,0,NULL,NULL,'Just Kinda','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?fit=796%2C516&ssl=1',NULL,'487','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?fit=796%2C516&ssl=1','487','featured-image','{\"width\":796,\"height\":516,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?fit=796%2C516&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/07/word_cloud.91113326.jpg\",\"size\":\"full\",\"id\":487,\"alt\":\"\",\"pixels\":410736,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 21:13:27','2024-08-22 06:28:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:44','2013-07-23 12:23:00',0),(223,'https://www.monicarenata.com/the-morning-hustle/','48:7c68372f6247aa396a5d4c0013998fd6',201,'post','post',1,0,NULL,NULL,'The Morning Hustle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?fit=252%2C364&ssl=1',NULL,'445','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?fit=252%2C364&ssl=1','445','featured-image','{\"width\":252,\"height\":364,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?fit=252%2C364&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/feeling-tired-woozy.jpg\",\"size\":\"full\",\"id\":445,\"alt\":\"\",\"pixels\":91728,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 21:29:43','2024-08-22 11:45:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:59','2013-11-12 12:03:00',0),(224,'https://www.monicarenata.com/the-given-gift/','44:94819df4bc0bf4c5a7bc416a396a61c6',187,'post','post',1,0,NULL,NULL,'The Given Gift','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?fit=3264%2C2448&ssl=1',NULL,'434','featured-image',NULL,NULL,'https://www.monicarenata.com/wp-content/uploads/2013/11/img_0414-1024x768.jpg','434','featured-image','{\"width\":1024,\"height\":768,\"path\":\"2013/11/img_0414-1024x768.jpg\",\"url\":\"https://www.monicarenata.com/wp-content/uploads/2013/11/img_0414-1024x768.jpg\",\"size\":\"large\",\"id\":434,\"alt\":\"\",\"pixels\":786432,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 21:43:35','2024-08-22 12:51:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:45','2013-11-16 15:36:00',0),(225,'https://www.monicarenata.com/heavy-fog/','39:e09a8581d48ddc005574e0a0d0c1e842',1634,'post','post',1,0,NULL,NULL,'Heavy Fog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?fit=500%2C500&ssl=1',NULL,'1632','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?fit=500%2C500&ssl=1','1632','featured-image','{\"width\":500,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?fit=500%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/04/Postive-Thoughts.jpg\",\"size\":\"full\",\"id\":1632,\"alt\":\"\",\"pixels\":250000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 21:54:54','2024-08-24 06:21:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-25 01:53:22','2017-04-25 01:53:22',0),(226,'https://www.monicarenata.com/let-your-guard-down/','49:7a7c234b9045b27114572243cbfbe636',214,'post','post',1,0,NULL,NULL,'Let Your Guard Down','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 22:06:28','2024-08-22 10:42:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:07','2013-11-06 06:19:00',0),(227,'https://www.monicarenata.com/just-in-case/','42:da2cd50fc00e8821b6122fd87a71b70f',628,'post','post',1,0,NULL,NULL,'Just In Case','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 22:14:21','2024-08-23 06:06:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-03 14:15:09','2014-10-03 14:15:09',0),(228,'https://www.monicarenata.com/silence/','37:f360d18e20f920365ee6a66eb8b3f408',200,'post','post',1,0,NULL,NULL,'Silence','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?fit=730%2C1095&ssl=1',NULL,'444','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?fit=730%2C1095&ssl=1','444','featured-image','{\"width\":730,\"height\":1095,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?fit=730%2C1095&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Silence-Deafens1.jpg\",\"size\":\"full\",\"id\":444,\"alt\":\"\",\"pixels\":799350,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 22:35:25','2024-08-22 11:45:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:58','2013-11-12 16:20:00',0),(229,'https://www.monicarenata.com/happy-holidays/','44:16733b1a34af8cf1c99dd543478bc054',123,'post','post',1,0,NULL,NULL,'Happy Holidays','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-22 22:38:19','2024-08-22 18:25:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:58','2013-12-20 18:57:00',0),(230,'https://www.monicarenata.com/sticky-situations/','47:9eca4b037c1df5eb465809318de17971',95,'post','post',1,0,NULL,NULL,'Sticky Situations','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?fit=520%2C609&ssl=1',NULL,'389','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?fit=520%2C609&ssl=1','389','featured-image','{\"width\":520,\"height\":609,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?fit=520%2C609&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg\",\"size\":\"full\",\"id\":389,\"alt\":\"\",\"pixels\":316680,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-22 22:54:15','2024-08-22 20:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:34','2014-01-29 02:57:00',0),(231,'https://www.monicarenata.com/desensitized/','42:20c959bfc63fee7a678d344c9c92f36d',1903,'post','post',1,0,NULL,NULL,'Desensitized','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-22 23:54:57','2024-08-24 11:00:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-11-10 03:26:53','2021-11-10 03:26:53',0),(232,'https://www.monicarenata.com/officially-official/','49:5dc519c5f191a69a10523a329ae60c46',144,'post','post',1,0,NULL,NULL,'Officially Official','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?fit=2388%2C1772&ssl=1',NULL,'412','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?fit=2388%2C1772&ssl=1','412','featured-image','{\"width\":2388,\"height\":1772,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?fit=2388%2C1772&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg\",\"size\":\"full\",\"id\":412,\"alt\":\"\",\"pixels\":4231536,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 00:14:15','2024-08-22 16:42:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:12','2013-12-04 15:39:00',0),(233,'https://www.monicarenata.com/confessions-of-the-heart/','54:f6584b85ef6796a17fea8ecb1da7a48d',9,'post','post',1,0,NULL,NULL,'Confessions of the Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-23 00:18:26','2024-08-23 04:21:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-07-17 12:20:00',0),(234,'https://www.monicarenata.com/if-you-ever-shall-forget-me/','57:1e9af3c36a26127153df8f8bfb620b31',190,'post','post',1,0,NULL,NULL,'If You Ever Shall Forget Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?fit=500%2C350&ssl=1',NULL,'437','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?fit=500%2C350&ssl=1','437','featured-image','{\"width\":500,\"height\":350,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?fit=500%2C350&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg\",\"size\":\"full\",\"id\":437,\"alt\":\"\",\"pixels\":175000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 00:25:27','2024-08-22 12:36:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:51','2013-11-15 09:24:00',0),(235,'https://www.monicarenata.com/fire-to-smoke/','43:316a3e24f0aeb6305de2c5a1086a1eb2',1722,'post','post',1,0,NULL,NULL,'Fire to Smoke','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/08/image-3.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 00:52:38','2024-08-24 08:18:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-08-18 03:04:49','2017-08-17 13:58:07',0),(237,'https://www.monicarenata.com/the-drink/','39:6af270a2de6c33fbddf7c71e3f0bc813',328,'post','post',1,0,NULL,NULL,'The Drink','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?fit=512%2C512&ssl=1',NULL,'541','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?fit=512%2C512&ssl=1','541','featured-image','{\"width\":512,\"height\":512,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?fit=512%2C512&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg\",\"size\":\"full\",\"id\":541,\"alt\":\"\",\"pixels\":262144,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 01:14:03','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:21','2013-04-07 15:10:00',0),(238,'https://www.monicarenata.com/deep-gaze/','39:da1aa17ea86cc0f869d71357b4d59cd1',1926,'post','post',1,0,NULL,NULL,'Deep Gaze','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2023/11/comparemanwoman.jpg?fit=600%2C599&ssl=1',NULL,'1927','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2023/11/comparemanwoman.jpg?fit=600%2C599&ssl=1','1927','featured-image','{\"width\":600,\"height\":599,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2023/11/comparemanwoman.jpg?fit=600%2C599&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2023/11/comparemanwoman.jpg\",\"size\":\"full\",\"id\":1927,\"alt\":\"\",\"pixels\":359400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 01:34:47','2024-08-24 11:27:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-11-29 19:42:45','2023-11-29 19:42:45',0),(239,'https://www.monicarenata.com/my-day-and-night/','46:b13b211b81fe08e83dff2e8cf183dfef',861,'post','post',1,0,NULL,NULL,'My Day and Night','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 02:03:22','2024-08-23 12:21:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-26 17:34:53','2015-01-26 17:34:53',0),(240,'https://www.monicarenata.com/light-in-the-darkness/','51:baf81b76568320f2b1b4b45c5cecbe50',120,'post','post',1,0,NULL,NULL,'Light In The Darkness','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?fit=1024%2C819&ssl=1',NULL,'402','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?fit=1024%2C819&ssl=1','402','featured-image','{\"width\":1024,\"height\":819,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?fit=1024%2C819&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/fog-in-dark-forest.jpg\",\"size\":\"full\",\"id\":402,\"alt\":\"\",\"pixels\":838656,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 02:23:49','2024-08-22 18:36:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:54','2013-12-30 14:48:00',0),(241,'https://www.monicarenata.com/hello-world/','41:ebb30cd4f8895a3bbd2768ac27349e5c',1,'post','post',1,0,NULL,NULL,'Welcome To My Site','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-23 02:58:16','2024-08-23 05:21:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-20 13:52:50','2014-08-20 09:00:51',0),(242,'https://www.monicarenata.com/days-of-the-week/','46:d26f68b0029daec43512d631b05d5ff2',756,'post','post',1,0,NULL,NULL,'Days of the Week','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 03:36:27','2024-08-23 09:11:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-10 14:37:41','2014-12-10 14:37:41',0),(243,'https://www.monicarenata.com/the-unnoticed-bloom/','49:4c52884923fc2b71997219c339e79074',59,'post','post',1,0,NULL,NULL,'The Unnoticed Bloom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 03:36:44','2024-08-23 00:07:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:50','2014-03-25 13:13:00',0),(244,'https://www.monicarenata.com/sandman/','37:b5903c92228ddeb3658e71cfab589141',37,'post','post',1,0,NULL,NULL,'SandMan','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?fit=640%2C480&ssl=1',NULL,'359','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?fit=640%2C480&ssl=1','359','featured-image','{\"width\":640,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?fit=640%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/sand-2.jpg\",\"size\":\"full\",\"id\":359,\"alt\":\"\",\"pixels\":307200,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-23 03:49:58','2024-08-23 02:16:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-02 13:08:00',0),(245,'https://www.monicarenata.com/kissed-the-midnight-moon/','54:3a49afd6e4b1cfefb4ce39b6a21d675b',44,'post','post',1,0,NULL,NULL,'Kissed the Midnight Moon','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?fit=500%2C430&ssl=1',NULL,'361','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?fit=500%2C430&ssl=1','361','featured-image','{\"width\":500,\"height\":430,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?fit=500%2C430&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg\",\"size\":\"full\",\"id\":361,\"alt\":\"\",\"pixels\":215000,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-23 03:49:58','2024-08-23 01:20:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-16 17:15:00',0),(246,'https://www.monicarenata.com/just-because-they-dont-say-i-love-you-doesnt-mean-they-dont/','89:3e67c873c1bd66eaff7d1b1da81add67',240,'post','post',1,0,NULL,NULL,'Just because they don’t say “I love you” …Doesn’t mean they don’t','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?fit=492%2C347&ssl=1',NULL,'469','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?fit=492%2C347&ssl=1','469','featured-image','{\"width\":492,\"height\":347,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?fit=492%2C347&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png\",\"size\":\"full\",\"id\":469,\"alt\":\"\",\"pixels\":170724,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 03:57:12','2024-08-22 08:08:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:25','2013-09-22 16:19:00',0),(247,'https://www.monicarenata.com/my-dream-of-me-and-you/','52:083a751ec2e269e6ef90fa121ac10172',199,'post','post',1,0,NULL,NULL,'My Dream of Me and You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?fit=1024%2C768&ssl=1',NULL,'443','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?fit=1024%2C768&ssl=1','443','featured-image','{\"width\":1024,\"height\":768,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?fit=1024%2C768&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg\",\"size\":\"full\",\"id\":443,\"alt\":\"\",\"pixels\":786432,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 03:57:14','2024-08-22 11:54:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:58','2013-11-12 19:25:00',0),(248,'https://www.monicarenata.com/taste-of-success/','46:0be1d1171939da6fba651b5db3bb4c5e',935,'post','post',1,0,NULL,NULL,'Taste of Success','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 04:02:36','2024-08-23 15:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 17:52:35','2015-02-13 17:51:24',0),(249,'https://www.monicarenata.com/stranger/','38:a3571450f0e5d956c49db7833e76aabc',734,'post','post',1,0,NULL,NULL,'Stranger…','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 04:43:14','2024-08-23 08:43:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-18 19:26:25','2014-11-18 19:26:25',0),(250,'https://www.monicarenata.com/dancing-teardrops/','47:9dbe7de76d61b55a48deeaaebdabb9ed',145,'post','post',1,0,NULL,NULL,'Dancing Teardrops','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 05:17:23','2024-08-22 16:28:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-12-03 20:58:00',0),(251,'https://www.monicarenata.com/they-said-i-wouldnt-make-it/','57:59103a58144bb0cf90c0bed8fff5cfd3',71,'post','post',1,0,NULL,NULL,'They Said I wouldn’t Make It','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 05:38:38','2024-08-22 22:59:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:59','2014-02-25 14:06:00',0),(252,'https://www.monicarenata.com/porcelain-doll/','44:9d1e1fbc978f8c602cee4b741d2daadb',61,'post','post',1,0,NULL,NULL,'Porcelain Doll','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/35.jpg?fit=224%2C300&ssl=1',NULL,'372','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/35.jpg?fit=224%2C300&ssl=1','372','featured-image','{\"width\":224,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/35.jpg?fit=224%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/35.jpg\",\"size\":\"full\",\"id\":372,\"alt\":\"\",\"pixels\":67200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 05:56:58','2024-08-22 23:36:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:51','2014-03-25 12:18:00',0),(253,'https://www.monicarenata.com/grandpa-said/','42:fcb9afe7a406b3f13fba512a2c6fce54',209,'post','post',1,0,NULL,NULL,'Grandpa Said','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?fit=1024%2C819&ssl=1',NULL,'451','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?fit=1024%2C819&ssl=1','451','featured-image','{\"width\":1024,\"height\":819,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?fit=1024%2C819&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg\",\"size\":\"full\",\"id\":451,\"alt\":\"\",\"pixels\":838656,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 06:01:51','2024-08-22 10:51:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:05','2013-11-08 12:58:00',0),(254,'https://www.monicarenata.com/i-shall-love-you/','46:8e7b9483d186a46f70782e64297ee031',773,'post','post',1,0,NULL,NULL,'I Shall Love You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 06:15:28','2024-08-23 09:53:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-19 18:35:24','2014-12-19 18:35:24',0),(255,'https://www.monicarenata.com/i-dreamed-a-dream/','47:52e1bc83a68d038411d8edef013c57eb',55,'post','post',1,0,NULL,NULL,'I Dreamed A Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?fit=256%2C400&ssl=1',NULL,'368','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?fit=256%2C400&ssl=1','368','featured-image','{\"width\":256,\"height\":400,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?fit=256%2C400&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/10838428-256-k757623.jpg\",\"size\":\"full\",\"id\":368,\"alt\":\"\",\"pixels\":102400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 06:59:40','2024-08-23 00:21:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:48','2014-03-28 14:12:00',0),(256,'https://www.monicarenata.com/fly/','33:450761b3620e41f7d238f0ca8f66427f',72,'post','post',1,0,NULL,NULL,'Fly','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 07:03:53','2024-08-22 22:36:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:59','2014-02-25 13:38:00',0),(257,'https://www.monicarenata.com/in-gods-eyes/','42:2a65261cdb0ca1e1285eb418e8120c47',1252,'post','post',1,0,NULL,NULL,'In God’s Eyes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 07:12:57','2024-08-24 00:39:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-10-26 18:01:05','2016-03-14 04:41:19',0),(258,'https://www.monicarenata.com/people-willows/','44:7b9a9ee0f1a4ba824be6500feef879f3',1576,'post','post',1,0,NULL,NULL,'People Willows','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg?fit=658%2C240&ssl=1',NULL,'1577','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg?fit=658%2C240&ssl=1','1577','featured-image','{\"width\":658,\"height\":240,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg?fit=658%2C240&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/cropped-willow-tree-swing.jpg\",\"size\":\"full\",\"id\":1577,\"alt\":\"\",\"pixels\":157920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 07:35:42','2024-08-24 05:50:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-25 19:03:10','2017-03-25 19:03:10',0),(259,'https://www.monicarenata.com/optical-interpretation/','52:ffdb885c1c98d60485ad48c86de2c48f',1388,'post','post',1,0,NULL,NULL,'Optical Interpretation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://picsoverflow.com/wp-content/uploads/2015/02/Eyes-of-Sadness.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://picsoverflow.com/wp-content/uploads/2015/02/Eyes-of-Sadness.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 07:56:11','2024-08-24 04:12:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-09 13:41:12','2016-12-09 13:36:27',0),(260,'https://www.monicarenata.com/dancing-in-the-rain/','49:05dfd9d22cb4e11b46034f02d448cffd',1100,'post','post',1,0,NULL,NULL,'Dancing In The Rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 08:00:59','2024-08-23 21:07:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-04 12:40:34','2015-09-04 12:40:34',0),(261,'https://www.monicarenata.com/i-am-just-like-you/','48:8be30d4cc74abd28d5d3a01bddc7a4b2',305,'post','post',1,0,NULL,NULL,'I am just like you','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 08:42:15','2024-08-22 02:38:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:12','2013-04-26 18:38:00',0),(262,'https://www.monicarenata.com/cant-make-you-stay/','48:4449cba9f3b2e7b6dab500dd1507c46f',105,'post','post',1,0,NULL,NULL,'Can’t Make You Stay','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 09:13:06','2024-08-22 19:53:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-21 13:40:00',0),(263,'https://www.monicarenata.com/as-we-lay/','39:50f2133017fa15ff1f2c15c3903141b4',974,'post','post',1,0,NULL,NULL,'As We Lay','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 09:17:15','2024-08-23 16:20:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-10 18:22:52','2015-03-10 18:21:07',0),(264,'https://www.monicarenata.com/black/','35:15051603b7d50e245bcdfcffcfcfc8da',1294,'post','post',1,0,NULL,NULL,'Black','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://grandpasart.com/images/dayonewomen.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://grandpasart.com/images/dayonewomen.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 09:34:16','2024-08-24 02:31:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-17 15:47:10','2016-06-17 15:47:10',0),(265,'https://www.monicarenata.com/memory-walls/','42:bd2708f56641076c5ef1e70768b573c4',124,'post','post',1,0,NULL,NULL,'Memory Walls','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?fit=500%2C750&ssl=1',NULL,'404','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?fit=500%2C750&ssl=1','404','featured-image','{\"width\":500,\"height\":750,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?fit=500%2C750&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/walls.jpg\",\"size\":\"full\",\"id\":404,\"alt\":\"\",\"pixels\":375000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 09:35:26','2024-08-22 18:25:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:00','2013-12-20 16:14:00',0),(267,'https://www.monicarenata.com/the-loveliest-of-lovely/','53:ba88850e4371266757e1989a31b2394e',188,'post','post',1,0,NULL,NULL,'The Loveliest of Lovely','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?fit=475%2C636&ssl=1',NULL,'435','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?fit=475%2C636&ssl=1','435','featured-image','{\"width\":475,\"height\":636,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?fit=475%2C636&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/preview.png\",\"size\":\"full\",\"id\":435,\"alt\":\"\",\"pixels\":302100,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 09:49:17','2024-08-22 12:36:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:50','2013-11-16 15:26:00',0),(268,'https://www.monicarenata.com/relax/','35:85c339ef5176c43ebea3cac95b5a3819',863,'post','post',1,0,NULL,NULL,'Relax','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 10:27:24','2024-08-23 12:21:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-28 19:19:42','2015-01-28 19:09:02',0),(269,'https://www.monicarenata.com/in-the-end/','40:faa1cd81e16d75902fe20f7eaeca1e10',268,'post','post',1,0,NULL,NULL,'In the end','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?fit=450%2C556&ssl=1',NULL,'491','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?fit=450%2C556&ssl=1','491','featured-image','{\"width\":450,\"height\":556,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?fit=450%2C556&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/too-cute-.jpeg\",\"size\":\"full\",\"id\":491,\"alt\":\"\",\"pixels\":250200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:01:23','2024-08-22 05:58:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:49','2013-06-25 13:23:00',0),(271,'https://www.monicarenata.com/krispy-kreme/','42:89b2ed66bc460b9f3547dbdd33153edf',173,'post','post',1,0,NULL,NULL,'Krispy Kreme','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 12:35:04','2024-08-22 13:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:29','2013-11-21 14:00:00',0),(272,'https://www.monicarenata.com/education-have-you-been-enlightened-today/','71:44ab6dc92334ae84ee9a65fd7eac2896',131,'post','post',1,0,NULL,NULL,'Education: Have you been Enlightened Today?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 12:41:21','2024-08-22 17:55:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-13 20:33:00',0),(273,'https://www.monicarenata.com/the-garden/','40:ba4614ad01840f59fa282768af8b07d0',169,'post','post',1,0,NULL,NULL,'The Garden','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?fit=640%2C960&ssl=1',NULL,'425','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?fit=640%2C960&ssl=1','425','featured-image','{\"width\":640,\"height\":960,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?fit=640%2C960&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg\",\"size\":\"full\",\"id\":425,\"alt\":\"\",\"pixels\":614400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:43:47','2024-08-22 14:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:26','2013-11-22 13:06:00',0),(274,'https://www.monicarenata.com/stuck-like-glue/','45:073da3a93232c922876d6ad804f683d8',1317,'post','post',1,0,NULL,NULL,'Stuck Like Glue','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:06:52','2024-08-24 02:50:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-22 00:41:36','2016-07-20 18:20:59',0),(275,'https://www.monicarenata.com/racing-forward/','44:60205420f67021492214cb2864064824',175,'post','post',1,0,NULL,NULL,'Racing Forward','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?fit=538%2C404&ssl=1',NULL,'428','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?fit=538%2C404&ssl=1','428','featured-image','{\"width\":538,\"height\":404,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?fit=538%2C404&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png\",\"size\":\"full\",\"id\":428,\"alt\":\"\",\"pixels\":217352,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 13:14:26','2024-08-22 13:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:29','2013-11-20 20:11:00',0),(276,'https://www.monicarenata.com/youre-gonna-miss-me-when-im-gone/','62:1280bbeebead92736e981482930bdeca',890,'post','post',1,0,NULL,NULL,'You’re Gonna Miss Me When I’m Gone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:28:26','2024-08-23 13:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 03:05:24','2015-02-09 00:53:16',0),(277,'https://www.monicarenata.com/writing-prompt-is-love-enough/','59:e1b7e73af9634cd69f05534ee8765b4a',167,'post','post',1,0,NULL,NULL,'Writing Prompt: Is Love Enough?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:04:26','2024-08-22 14:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:24','2013-11-22 15:44:00',0),(278,'https://www.monicarenata.com/holding-in-truths/','47:faeb6daabe5fa086a4f733a5609c8bf2',132,'post','post',1,0,NULL,NULL,'Holding in Truths','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:12:27','2024-08-22 17:35:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-13 14:54:00',0),(279,'https://www.monicarenata.com/i-cant-think/','42:66661501082df41392b96221ebf03bdc',839,'post','post',1,0,NULL,NULL,'I Can’t Think','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:25:42','2024-08-23 11:42:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 14:46:42','2015-01-20 14:46:42',0),(280,'https://www.monicarenata.com/joejoes-chocolates/','48:03808eb8b0a98d330db0bbdb72ed512f',100,'post','post',1,0,NULL,NULL,'JoeJoe’s Chocolates','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:30:56','2024-08-22 20:33:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:37','2014-01-22 20:47:00',0),(281,'https://www.monicarenata.com/reward-for-the-wait/','49:68cebacdabec0f429be725048a2b1889',1666,'post','post',1,0,NULL,NULL,'Reward for The Wait','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 15:27:14','2024-08-24 06:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-02 13:40:46','2017-06-02 13:40:46',0),(282,'https://www.monicarenata.com/poor/','34:74fac47523387fc17f9629da78611f1c',1010,'post','post',1,0,NULL,NULL,'Poor','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:29:14','2024-08-23 17:22:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-12 04:57:00','2015-04-12 04:57:00',0),(283,'https://www.monicarenata.com/getting-rid-of-the-burden/','55:7bc3c05f4924cbabe24070e2eb598981',171,'post','post',1,0,NULL,NULL,'Getting Rid of the Burden','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 15:56:45','2024-08-22 14:12:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:27','2013-11-21 16:11:00',0),(284,'https://www.monicarenata.com/the-truth-shall-set-you-free/','58:4242c8f80b649bb029ee093c2a29ef32',315,'post','post',1,0,NULL,NULL,'The Truth Shall Set You Free!!!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?fit=900%2C600&ssl=1',NULL,'529','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?fit=900%2C600&ssl=1','529','featured-image','{\"width\":900,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?fit=900%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/truth.jpg\",\"size\":\"full\",\"id\":529,\"alt\":\"\",\"pixels\":540000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 16:08:44','2024-08-22 01:53:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-12-23 03:27:56','2013-04-18 15:58:00',0),(285,'https://www.monicarenata.com/as-i-walk-in-my-dreams/','52:4dad39e11e7e9f3a860b553cd07354fd',306,'post','post',1,0,NULL,NULL,'As I walk in My Dreams','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?fit=425%2C500&ssl=1',NULL,'520','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?fit=425%2C500&ssl=1','520','featured-image','{\"width\":425,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?fit=425%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/warren_25271_2.jpg\",\"size\":\"full\",\"id\":520,\"alt\":\"\",\"pixels\":212500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 16:35:45','2024-08-22 02:38:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:13','2013-04-26 18:17:00',0),(286,'https://www.monicarenata.com/no-exceptions/','43:ade3d1ecf455a241f32526712647f51b',74,'post','post',1,0,NULL,NULL,'No Exceptions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?fit=985%2C627&ssl=1',NULL,'378','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?fit=985%2C627&ssl=1','378','featured-image','{\"width\":985,\"height\":627,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?fit=985%2C627&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png\",\"size\":\"full\",\"id\":378,\"alt\":\"\",\"pixels\":617595,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 16:52:37','2024-08-22 22:36:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:03','2014-02-21 21:54:00',0),(287,'https://www.monicarenata.com/tko/','33:a337e0abaa4e059732917f228e0bfb0f',130,'post','post',1,0,NULL,NULL,'TKO','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg?fit=170%2C141&ssl=1',NULL,'408','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg?fit=170%2C141&ssl=1','408','featured-image','{\"width\":170,\"height\":141,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg?fit=170%2C141&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/k4660629.jpg\",\"size\":\"full\",\"id\":408,\"alt\":\"\",\"pixels\":23970,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 18:00:10','2024-08-22 17:55:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:06','2013-12-14 12:28:00',0),(288,'https://www.monicarenata.com/love-without-brakes/','49:d0387645d0dd50b2d09b75c5cd03ece4',850,'post','post',1,0,NULL,NULL,'Love Without Brakes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:33:29','2024-08-23 12:07:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-21 19:26:08','2015-01-21 19:22:59',0),(289,'https://www.monicarenata.com/sprinkles-of-white/','48:74bd3962a16f033dcda72dc1dd8f64fc',1930,'post','post',1,0,NULL,NULL,'Sprinkles of White','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:36:28','2024-08-24 11:35:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-01-02 05:10:06','2024-01-02 05:10:06',0),(290,'https://www.monicarenata.com/tired/','35:1f8f90ed357849833a4d5e5540bd37e9',164,'post','post',1,0,NULL,NULL,'Tired','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?fit=500%2C288&ssl=1',NULL,'422','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?fit=500%2C288&ssl=1','422','featured-image','{\"width\":500,\"height\":288,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?fit=500%2C288&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg\",\"size\":\"full\",\"id\":422,\"alt\":\"\",\"pixels\":144000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 19:01:51','2024-08-22 14:39:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:23','2013-11-22 19:33:00',0),(291,'https://www.monicarenata.com/love-different/','44:c23d9a8050d1e662bba4705d808d87bd',1894,'post','post',1,0,NULL,NULL,'Love Different','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:12:21','2024-08-24 10:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-12 06:12:37','2021-09-12 06:12:37',0),(292,'https://www.monicarenata.com/sleepless-night/','45:edc9c6f9555c0dd3cc32bfc31b1387dc',119,'post','post',1,0,NULL,NULL,'Sleepless Night','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg?fit=300%2C241&ssl=1',NULL,'401','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg?fit=300%2C241&ssl=1','401','featured-image','{\"width\":300,\"height\":241,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg?fit=300%2C241&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/Can_tSleep.jpg\",\"size\":\"full\",\"id\":401,\"alt\":\"\",\"pixels\":72300,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 19:13:33','2024-08-22 18:57:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:52','2013-12-31 03:46:00',0),(293,'https://www.monicarenata.com/white-flag/','40:fd3095271c631fb1cd24b9c10cf8c240',104,'post','post',1,0,NULL,NULL,'White Flag','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?fit=260%2C358&ssl=1',NULL,'396','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?fit=260%2C358&ssl=1','396','featured-image','{\"width\":260,\"height\":358,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?fit=260%2C358&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/wve-white-flag-260.jpg\",\"size\":\"full\",\"id\":396,\"alt\":\"\",\"pixels\":93080,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 19:20:32','2024-08-22 20:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:42','2014-01-21 14:12:00',0),(294,'https://www.monicarenata.com/the-seed/','38:84c3e03ed9f206af70be531bf87cc177',325,'post','post',1,0,NULL,NULL,'The Seed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?fit=559%2C633&ssl=1',NULL,'538','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?fit=559%2C633&ssl=1','538','featured-image','{\"width\":559,\"height\":633,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?fit=559%2C633&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg\",\"size\":\"full\",\"id\":538,\"alt\":\"\",\"pixels\":353847,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 19:32:27','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:20','2013-04-11 12:47:00',0),(295,'https://www.monicarenata.com/prettier-than-me/','46:36a291105804193866ef3b2ec041068a',82,'post','post',1,0,NULL,NULL,'Prettier Than Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-23 19:32:38','2024-08-22 21:54:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:07','2014-02-17 05:40:00',0),(296,'https://www.monicarenata.com/on-the-road/','41:08f3a72080dbf331efe8ff6650496b29',247,'post','post',1,0,NULL,NULL,'On the Road','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?fit=500%2C333&ssl=1',NULL,'476','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?fit=500%2C333&ssl=1','476','featured-image','{\"width\":500,\"height\":333,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?fit=500%2C333&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg\",\"size\":\"full\",\"id\":476,\"alt\":\"\",\"pixels\":166500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 19:34:37','2024-08-22 07:43:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:31','2013-08-30 00:08:00',0),(297,'https://www.monicarenata.com/the-wait/','38:3cde7d51234c107663742a344e035e96',68,'post','post',1,0,NULL,NULL,'The Wait','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?fit=500%2C353&ssl=1',NULL,'375','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?fit=500%2C353&ssl=1','375','featured-image','{\"width\":500,\"height\":353,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?fit=500%2C353&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png\",\"size\":\"full\",\"id\":375,\"alt\":\"\",\"pixels\":176500,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 19:47:28','2024-08-22 23:06:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:58','2014-03-09 22:56:00',0),(298,'https://www.monicarenata.com/dont-cry-for-me/','45:e2ab4b5465378b145fc85038fbd518de',148,'post','post',1,0,NULL,NULL,'Don’t Cry for Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:56:11','2024-08-22 16:17:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','2013-12-03 19:57:00',0),(299,'https://www.monicarenata.com/who-are-you-to-the-world/','54:6b4327250a08a0b2366d9004bcc6b953',346,'post','post',1,0,NULL,NULL,'Who Are You To The World?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?fit=480%2C342&ssl=1',NULL,'559','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?fit=480%2C342&ssl=1','559','featured-image','{\"width\":480,\"height\":342,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?fit=480%2C342&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg\",\"size\":\"full\",\"id\":559,\"alt\":\"\",\"pixels\":164160,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 20:31:37','2024-08-21 23:23:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:27','2013-04-01 15:14:00',0),(300,'https://www.monicarenata.com/commitment-dilemma/','48:1ab093b3543e487e186ee4bb81ff6e40',1768,'post','post',1,0,NULL,NULL,'Commitment Dilemma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:33:24','2024-08-24 08:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-02-12 21:54:45','2018-02-12 21:54:45',0),(301,'https://www.monicarenata.com/to-the-brim/','41:ccd5ab99cc2fb2195d44bd78e7c9c592',1649,'post','post',1,0,NULL,NULL,'To the Brim','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77.jpg?fit=570%2C811&ssl=1',NULL,'1650','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77.jpg?fit=570%2C811&ssl=1','1650','featured-image','{\"width\":570,\"height\":811,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77.jpg?fit=570%2C811&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/05/5ee04e20748299c538d499f933922b77.jpg\",\"size\":\"full\",\"id\":1650,\"alt\":\"\",\"pixels\":462270,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:08:13','2024-08-24 06:36:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-05-09 22:09:53','2017-05-09 22:09:53',0),(302,'https://www.monicarenata.com/that-person-never-left-a-short-story/','66:de18bef1b9dbd2ba4ff17e90291fa1f9',115,'post','post',1,0,NULL,NULL,'THAT PERSON never left………. ( A short story)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 21:47:27','2024-08-22 19:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:46','2014-01-02 17:20:00',0),(303,'https://www.monicarenata.com/not-meant-for-me/','46:8ea73b69c154790ad31b286c281bd141',1291,'post','post',1,0,NULL,NULL,'Not Meant for Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 21:49:14','2024-08-24 02:16:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-10 13:58:47','2016-06-10 13:58:47',0),(304,'https://www.monicarenata.com/hope-in-perfection/','48:cadf288c3b408ced6486d476a553d4ea',94,'post','post',1,0,NULL,NULL,'Hope in Perfection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 22:02:53','2024-08-22 20:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:31','2014-02-08 03:54:00',0),(305,'https://www.monicarenata.com/decisions-just-thoughts/','53:dc09082ed5ec4932a456b453157934d1',154,'post','post',1,0,NULL,NULL,'Decisions… Just Thoughts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 22:41:33','2024-08-22 15:51:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:15','2013-11-26 19:03:00',0),(306,'https://www.monicarenata.com/ill-today/','39:f1d42fd02611bef2f37677d7c86c1825',684,'post','post',1,0,NULL,NULL,'Ill Today','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 22:57:36','2024-08-23 07:05:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-24 13:37:11','2014-10-24 13:37:11',0),(307,'https://www.monicarenata.com/im-trying/','39:ca94496ce5f878710214fc7bd0eab497',163,'post','post',1,0,NULL,NULL,'I’m trying','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 23:16:13','2024-08-22 15:01:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:22','2013-11-24 17:43:00',0),(308,'https://www.monicarenata.com/best-part-of-my-day/','49:26721c6b1a422f91a22601f111d8d984',128,'post','post',1,0,NULL,NULL,'Best Part of My Day','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?fit=365%2C380&ssl=1',NULL,'407','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?fit=365%2C380&ssl=1','407','featured-image','{\"width\":365,\"height\":380,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?fit=365%2C380&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg\",\"size\":\"full\",\"id\":407,\"alt\":\"\",\"pixels\":138700,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 23:40:05','2024-08-22 18:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:04','2013-12-17 20:20:00',0),(309,'https://www.monicarenata.com/beautiful-music-life/','50:dc0449cd79fdc9586cd7a675cea03a00',1092,'post','post',1,0,NULL,NULL,'Beautiful Music: Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 00:06:09','2024-08-23 20:50:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-31 13:05:49','2015-08-31 13:03:23',0),(310,'https://www.monicarenata.com/stone-faced-soldier/','49:c286e5e1fcd93d4fa4a5923bec3e131d',89,'post','post',1,0,NULL,NULL,'Stone-faced Soldier','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?fit=400%2C294&ssl=1',NULL,'387','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?fit=400%2C294&ssl=1','387','featured-image','{\"width\":400,\"height\":294,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?fit=400%2C294&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/78219_max.jpg\",\"size\":\"full\",\"id\":387,\"alt\":\"\",\"pixels\":117600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 01:05:48','2024-08-22 21:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:30','2014-02-12 23:32:00',0),(311,'https://www.monicarenata.com/taste-your-words/','46:71173d448320864875c30270c14be50d',62,'post','post',1,0,NULL,NULL,'Taste Your Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 01:34:26','2024-08-22 23:36:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:33','2014-03-19 13:16:00',0),(312,'https://www.monicarenata.com/cadavers-dream/','44:57e2a8a95ba84ba0ffc6ab407708bc28',54,'post','post',1,0,NULL,NULL,'Cadaver’s Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 01:43:31','2024-08-23 00:21:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-03-31 02:33:00',0),(313,'https://www.monicarenata.com/can-i-get-a-second/','48:1fbc202848caebd0aaf58a87edbc723e',783,'post','post',1,0,NULL,NULL,'Can I Get A Second','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 01:58:50','2024-08-23 10:20:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-28 21:06:14','2014-12-28 21:06:14',0),(314,'https://www.monicarenata.com/the-host/','38:26d64ea1b24b4b4b4e7c2db2a523e130',185,'post','post',1,0,NULL,NULL,'The Host','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 02:25:26','2024-08-22 12:51:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:42','2013-11-17 15:50:00',0),(315,'https://www.monicarenata.com/stand-still/','41:5caebbd88c11742e7e9fec25e47349a0',1784,'post','post',1,0,NULL,NULL,'Stand Still','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs',NULL,NULL,'first-content-image',NULL,NULL,'https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 02:50:43','2024-08-24 09:25:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-06-22 21:25:01','2018-06-22 21:25:01',0),(316,'https://www.monicarenata.com/the-keys/','38:91bafffe580123c22335b012765e8904',1773,'post','post',1,0,NULL,NULL,'The Keys','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/image.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/image.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 02:50:45','2024-08-24 09:13:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-04-17 19:15:38','2018-04-17 19:15:38',0),(318,'https://www.monicarenata.com/be-good/','37:3630ab91308268955f85506c7ad28e9a',1770,'post','post',1,0,NULL,NULL,'Be Good','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 02:50:45','2024-08-24 09:13:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2018-04-17 18:29:46','2018-04-17 18:29:46',0),(320,'https://www.monicarenata.com/i-tried/','37:6580dae802b60ad60ad4483ec602c630',111,'post','post',1,0,NULL,NULL,'I tried','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 03:18:03','2024-08-22 19:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:43','2014-01-09 14:46:00',0),(321,'https://www.monicarenata.com/be-happy-and-get-paid/','51:4fc7522ca92d6e8e6747baf347d3044e',1608,'post','post',1,0,NULL,NULL,'Be Happy and Get Paid','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988-300x300.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 04:13:48','2024-08-24 06:07:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-12 20:27:51','2017-04-12 20:19:18',0),(323,'https://www.monicarenata.com/the-letter-youre-going-to-love-me-when-its-too-late/','81:20866b7b024c4b5a2d8959dfeafb3516',1114,'post','post',1,0,NULL,NULL,'The Letter: You’re Going To Love Me When It’s Too Late','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 04:21:51','2024-08-23 21:23:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-28 14:22:20','2015-09-28 14:17:51',0),(324,'https://www.monicarenata.com/the-opposite-of-honesty/','53:75af796b46e3e4f6493bfe91613ceaf3',886,'post','post',1,0,NULL,NULL,'The Opposite of Honesty','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 06:39:15','2024-08-23 13:14:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-08 19:21:14','2015-02-08 19:21:14',0),(325,'https://www.monicarenata.com/follow/','36:6d65fb150c2110c967057cc152cde4fa',178,'post','post',1,0,NULL,NULL,'Follow','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 07:02:17','2024-08-22 13:35:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:33','2013-11-19 16:50:00',0),(326,'https://www.monicarenata.com/extraordinary/','43:312733893169b0420cc5f86f97a84508',138,'post','post',1,0,NULL,NULL,'Extraordinary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 07:13:21','2024-08-22 16:52:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','2013-12-11 13:57:00',0),(327,'https://www.monicarenata.com/who-wants-to-be-normal/','52:cac45b03ed1fae372998dabc81d43323',113,'post','post',1,0,NULL,NULL,'Who Wants To Be Normal?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi',NULL,NULL,'first-content-image',NULL,NULL,'http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 07:58:06','2024-08-22 19:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:45','2014-01-02 20:29:00',0),(328,'https://www.monicarenata.com/im-not-your-________________/','58:6c457eacc1b4d7fa73c414a3d81dbf28',16,'post','post',1,0,NULL,NULL,'I’m Not Your ________________','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 08:14:57','2024-08-23 03:52:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-23 16:41:00',0),(329,'https://www.monicarenata.com/who-knows/','39:6e460db535b634977de00eca2314940a',174,'post','post',1,0,NULL,NULL,'Who Knows','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?fit=600%2C300&ssl=1',NULL,'427','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?fit=600%2C300&ssl=1','427','featured-image','{\"width\":600,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?fit=600%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/just-friends-01.jpg\",\"size\":\"full\",\"id\":427,\"alt\":\"\",\"pixels\":180000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 08:41:31','2024-08-22 13:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:29','2013-11-21 12:21:00',0),(330,'https://www.monicarenata.com/i-lived/','37:50e5d03169644907e1374b068b11d113',845,'post','post',1,0,NULL,NULL,'I lived','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 09:33:35','2024-08-23 11:57:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 19:44:55','2015-01-20 19:44:55',0),(331,'https://www.monicarenata.com/standing-up-is-the-hard-part/','58:0a2829c52913a577efb4f2f00f6baee2',49,'post','post',1,0,NULL,NULL,'Standing Up Is the Hard Part','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?fit=534%2C580&ssl=1',NULL,'365','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?fit=534%2C580&ssl=1','365','featured-image','{\"width\":534,\"height\":580,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?fit=534%2C580&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg\",\"size\":\"full\",\"id\":365,\"alt\":\"\",\"pixels\":309720,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 10:03:37','2024-08-23 00:51:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:44','2014-04-04 16:41:00',0),(332,'https://www.monicarenata.com/love-me-through-the-storm/','55:021bb5a2724cc3c972e7252e50cdbf4a',1064,'post','post',1,0,NULL,NULL,'Love Me Through The Storm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 10:18:35','2024-08-23 19:40:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-07-28 15:41:03','2015-07-28 15:41:03',0),(333,'https://www.monicarenata.com/i-just-want-you-to-know/','53:cb814690af8b4a71057b7ae861d95d84',101,'post','post',1,0,NULL,NULL,'I Just Want You To Know','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?fit=500%2C232&ssl=1',NULL,'393','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?fit=500%2C232&ssl=1','393','featured-image','{\"width\":500,\"height\":232,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?fit=500%2C232&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/17.jpg\",\"size\":\"full\",\"id\":393,\"alt\":\"\",\"pixels\":116000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 10:18:37','2024-08-22 20:33:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:38','2014-01-21 20:41:00',0),(334,'https://www.monicarenata.com/unrequited-misfortune/','51:94279a90f6496c3ec5a0c53b9402f8e7',1282,'post','post',1,0,NULL,NULL,'Unrequited Misfortune','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 10:18:45','2024-08-24 01:52:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-05-31 14:18:51','2016-05-31 14:08:25',0),(335,'https://www.monicarenata.com/if-you-knew/','41:1de80d09190946b95a27f99e19d45046',1316,'post','post',1,0,NULL,NULL,'If You Knew','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 10:25:09','2024-08-24 02:50:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-18 13:50:32','2016-07-18 13:50:32',0),(336,'https://www.monicarenata.com/i-wish-you-didnt-call-me-beautiful/','64:0306866becd03915368dc1d8b73dd4b5',1273,'post','post',1,0,NULL,NULL,'I Wish You Didn’t Call Me Beautiful','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 10:33:41','2024-08-24 01:22:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-05 20:00:03','2016-04-05 20:00:03',0),(337,'https://www.monicarenata.com/fish/','34:87d473e2902a94c93a92339b8ea1a007',251,'post','post',1,0,NULL,NULL,'Fish','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?fit=640%2C511&ssl=1',NULL,'479','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?fit=640%2C511&ssl=1','479','featured-image','{\"width\":640,\"height\":511,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?fit=640%2C511&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/under_the_sea-11.jpg\",\"size\":\"full\",\"id\":479,\"alt\":\"\",\"pixels\":327040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 10:57:39','2024-08-22 07:10:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:36','2013-08-26 21:54:00',0),(338,'https://www.monicarenata.com/i-miss-the-way/','44:fca7d39fec1d07fd0598669111c17fd3',985,'post','post',1,0,NULL,NULL,'I Miss The Way…','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 10:57:56','2024-08-23 16:37:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-17 18:25:16','2015-03-17 18:22:02',0),(339,'https://www.monicarenata.com/wednesdays-test/','45:a63e7a2bfcf8c2cbed10fd0db24baecb',1266,'post','post',1,0,NULL,NULL,'Wednesday’s Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 12:01:13','2024-08-24 01:09:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-04 16:41:40','2016-04-04 14:45:22',0),(340,'https://www.monicarenata.com/its-only-temporary/','48:906e97400e081866108256ecff7429e8',344,'post','post',1,0,NULL,NULL,'It’s Only Temporary','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?fit=500%2C381&ssl=1',NULL,'557','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?fit=500%2C381&ssl=1','557','featured-image','{\"width\":500,\"height\":381,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?fit=500%2C381&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg\",\"size\":\"full\",\"id\":557,\"alt\":\"\",\"pixels\":190500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 13:07:55','2024-08-21 23:35:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-26 02:46:00','2013-04-01 15:58:00',0),(341,'https://www.monicarenata.com/you-are/','37:926bd84790ca248dcba030b718225596',996,'post','post',1,0,NULL,NULL,'You Are','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 13:07:57','2024-08-23 16:51:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-07 11:28:41','2015-04-07 11:28:41',0),(342,'https://www.monicarenata.com/my-heart-in-words/','47:46efb17e6d0c5a27f54f35b8e9d358d0',335,'post','post',1,0,NULL,NULL,'My Heart In Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?fit=500%2C388&ssl=1',NULL,'548','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?fit=500%2C388&ssl=1','548','featured-image','{\"width\":500,\"height\":388,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?fit=500%2C388&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg\",\"size\":\"full\",\"id\":548,\"alt\":\"\",\"pixels\":194000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 13:16:14','2024-08-22 00:21:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:23','2013-04-04 12:48:00',0),(343,'https://www.monicarenata.com/i-will-not-be-afraid/','50:c8ee78801322b73a3c3f2abfc99c8227',189,'post','post',1,0,NULL,NULL,'I Will Not Be Afraid','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?fit=900%2C600&ssl=1',NULL,'436','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?fit=900%2C600&ssl=1','436','featured-image','{\"width\":900,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?fit=900%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg\",\"size\":\"full\",\"id\":436,\"alt\":\"\",\"pixels\":540000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 13:18:19','2024-08-22 12:36:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:50','2013-11-15 15:14:00',0),(344,'https://www.monicarenata.com/deep-dive/','39:6e04f71837a3b9a08ad48ebca4fda138',1709,'post','post',1,0,NULL,NULL,'Deep Dive','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image.png?fit=683%2C785&ssl=1',NULL,'1710','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image.png?fit=683%2C785&ssl=1','1710','featured-image','{\"width\":683,\"height\":785,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image.png?fit=683%2C785&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/08/image.png\",\"size\":\"full\",\"id\":1710,\"alt\":\"\",\"pixels\":536155,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-24 13:25:33','2024-08-24 07:52:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-08-08 12:59:11','2017-08-08 12:51:04',0),(345,'https://www.monicarenata.com/journey-to-the-mountain/','53:11ce71ac0be62259ed7392a3cd3c98f6',66,'post','post',1,0,NULL,NULL,'Journey to the Mountain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 13:29:07','2024-08-22 23:06:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:52','2014-03-13 14:34:00',0),(346,'https://www.monicarenata.com/somebody/','38:582a1f4a8a6ad9db0803963ba990af2e',244,'post','post',1,0,NULL,NULL,'Somebody','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?fit=300%2C300&ssl=1',NULL,'473','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?fit=300%2C300&ssl=1','473','featured-image','{\"width\":300,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?fit=300%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/1708966_300.jpg\",\"size\":\"full\",\"id\":473,\"alt\":\"\",\"pixels\":90000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 13:31:57','2024-08-22 07:57:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:28','2013-09-13 02:28:00',0),(347,'https://www.monicarenata.com/mischief-wedding-band-astray/','58:f0a8338dc2ef3305b042d802909bd315',1173,'post','post',1,0,NULL,NULL,'Mischief: Wedding Band Astray','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 13:35:24','2024-08-23 23:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-30 03:39:37','2015-10-30 03:39:37',0),(348,'https://www.monicarenata.com/more-than-you-know/','48:4e3589644aafc36a9d57153c41358cfd',847,'post','post',1,0,NULL,NULL,'More Than You Know','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 13:36:32','2024-08-23 12:07:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 19:52:52','2015-01-20 19:52:52',0),(349,'https://www.monicarenata.com/speak/','35:c8e017d40cd0ff1825902e1a597ce365',301,'post','post',1,0,NULL,NULL,'Speak','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?fit=486%2C640&ssl=1',NULL,'517','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?fit=486%2C640&ssl=1','517','featured-image','{\"width\":486,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?fit=486%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg\",\"size\":\"full\",\"id\":517,\"alt\":\"\",\"pixels\":311040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 13:37:36','2024-08-22 03:06:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:10','2013-05-03 15:51:00',0),(350,'https://www.monicarenata.com/if-i-didnt-care/','45:2422d8e4ac1ca75a22ca73c4766539d8',15,'post','post',1,0,NULL,NULL,'If I Didn’t Care','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 13:37:58','2024-08-23 03:52:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-23 16:42:00',0),(351,'https://www.monicarenata.com/hold-your-breathe/','47:b28ae6e6ded942e1adea716f3590f4fd',920,'post','post',1,0,NULL,NULL,'Hold Your Breathe','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 14:05:17','2024-08-23 15:00:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 14:23:36','2015-02-13 14:23:36',0),(352,'https://www.monicarenata.com/bojo-the-bandit/','45:11a564d7e1f252d2b3d4dd78a5c62647',99,'post','post',1,0,NULL,NULL,'Bojo The Bandit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?fit=492%2C327&ssl=1',NULL,'392','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?fit=492%2C327&ssl=1','392','featured-image','{\"width\":492,\"height\":327,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?fit=492%2C327&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/Divorce1.jpg\",\"size\":\"full\",\"id\":392,\"alt\":\"\",\"pixels\":160884,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 14:45:44','2024-08-22 20:33:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:37','2014-01-23 18:53:00',0),(353,'https://www.monicarenata.com/trust-in-me/','41:5c9969d5bae7a85e4274e978e51591de',1320,'post','post',1,0,NULL,NULL,'Trust In Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 15:21:59','2024-08-24 03:16:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-25 17:50:03','2016-07-25 17:50:03',0),(354,'https://www.monicarenata.com/repressed-emotions/','48:aee84d35162559c076ceeb7583d62f3b',1909,'post','post',1,0,NULL,NULL,'Repressed Emotions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1',NULL,'1873','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1','1873','featured-image','{\"width\":640,\"height\":427,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2020/12/Sad-Woman.jpg?fit=640%2C427&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2020/12/Sad-Woman.jpg\",\"size\":\"full\",\"id\":1873,\"alt\":\"\",\"pixels\":273280,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 15:28:38','2024-08-24 11:08:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-02-16 03:17:07','2022-02-16 03:17:07',0),(355,'https://www.monicarenata.com/the-journey-of-the-heart/','54:0a6de65dc841c914f4e88377c454ceb8',274,'post','post',1,0,NULL,NULL,'The journey of the Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?fit=500%2C337&ssl=1',NULL,'496','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?fit=500%2C337&ssl=1','496','featured-image','{\"width\":500,\"height\":337,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?fit=500%2C337&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg\",\"size\":\"full\",\"id\":496,\"alt\":\"\",\"pixels\":168500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 16:06:51','2024-08-22 05:33:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:52','2013-06-10 00:34:00',0),(356,'https://www.monicarenata.com/flowers-bloom-in-winter-too/','57:71c8448ed806d61d1a6451f257f7127a',160,'post','post',1,0,NULL,NULL,'Flowers Bloom In Winter Too','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?fit=800%2C600&ssl=1',NULL,'419','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?fit=800%2C600&ssl=1','419','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?fit=800%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/ar129451792772434.jpg\",\"size\":\"full\",\"id\":419,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 16:13:08','2024-08-22 15:26:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:21','2013-11-25 04:36:00',0),(357,'https://www.monicarenata.com/selective-hearing/','47:413d785f2a30289f87a2b62cf0419be5',1206,'post','post',1,0,NULL,NULL,'Selective Hearing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 16:28:40','2024-08-23 23:25:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-12-31 20:39:29','2015-12-31 20:39:29',0),(358,'https://www.monicarenata.com/why-are-we-afraid-to-fall/','55:f4460fbcf73defc8c1fc233c3b8d951f',336,'post','post',1,0,NULL,NULL,'Why are we afraid to fall??','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?fit=1024%2C640&ssl=1',NULL,'549','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?fit=1024%2C640&ssl=1','549','featured-image','{\"width\":1024,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?fit=1024%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg\",\"size\":\"full\",\"id\":549,\"alt\":\"\",\"pixels\":655360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 17:30:41','2024-08-22 00:10:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:23','2013-04-03 15:38:00',0),(359,'https://www.monicarenata.com/tug-of-war/','40:8a5c9df5f106c047a0f653be09eba02e',177,'post','post',1,0,NULL,NULL,'Tug-Of-War','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?fit=849%2C565&ssl=1',NULL,'430','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?fit=849%2C565&ssl=1','430','featured-image','{\"width\":849,\"height\":565,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?fit=849%2C565&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg\",\"size\":\"full\",\"id\":430,\"alt\":\"\",\"pixels\":479685,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 17:35:47','2024-08-22 13:35:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:30','2013-11-19 17:34:00',0),(360,'https://www.monicarenata.com/better-day/','40:5f2ea6ac9b4ad22743bb88fd915fb19a',988,'post','post',1,0,NULL,NULL,'Better Day','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 18:25:55','2024-08-23 16:51:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-18 19:02:22','2015-03-18 19:02:22',0),(361,'https://www.monicarenata.com/puzzle-pieces/','43:347d291703e419ff7bad8a091af1936b',959,'post','post',1,0,NULL,NULL,'Puzzle Pieces','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 18:36:48','2024-08-23 15:53:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-22 06:33:28','2015-02-22 06:33:28',0),(362,'https://www.monicarenata.com/you-cant-let-the-same-thing-keep-hurting-you-over-and-over-again/','94:612db7856c246c57807293272dd01b60',36,'post','post',1,0,NULL,NULL,'You Can’t Let the Same Thing Keep Hurting You Over and Over Again…..','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 19:00:55','2024-08-23 02:16:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-06 13:45:00',0),(363,'https://www.monicarenata.com/they-said/','39:2a83cfc95395a92aa6d732a603d39ed2',253,'post','post',1,0,NULL,NULL,'They Said','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?fit=949%2C960&ssl=1',NULL,'480','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?fit=949%2C960&ssl=1','480','featured-image','{\"width\":949,\"height\":960,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?fit=949%2C960&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/believe-in-yourself.jpg\",\"size\":\"full\",\"id\":480,\"alt\":\"\",\"pixels\":911040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 19:01:51','2024-08-22 07:10:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:37','2013-08-25 14:59:00',0),(364,'https://www.monicarenata.com/weekly-challenge-8-know-your-worth/','64:052090e41ad0a0dec1d8b780614aba85',278,'post','post',1,0,NULL,NULL,'Weekly Challenge 8: Know Your Worth','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-24 19:02:33','2024-08-22 04:58:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:55','2013-06-03 15:04:00',0),(365,'https://www.monicarenata.com/please-dont-break-my-heart/','56:1ee3652010c208e36927e21bd1d7efa7',739,'post','post',1,0,NULL,NULL,'Please Don’t Break My Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 20:35:13','2024-08-23 08:43:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-24 19:43:17','2014-11-24 19:43:17',0),(366,'https://www.monicarenata.com/every-ounce-of-me/','47:d9c82482564c1a0f8c214cf2917c4ae8',33,'post','post',1,0,NULL,NULL,'Every Ounce of Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?fit=1920%2C1200&ssl=1',NULL,'357','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?fit=1920%2C1200&ssl=1','357','featured-image','{\"width\":1920,\"height\":1200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?fit=1920%2C1200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg\",\"size\":\"full\",\"id\":357,\"alt\":\"\",\"pixels\":2304000,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 20:55:55','2024-08-23 02:24:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-15 14:15:00',0),(367,'https://www.monicarenata.com/unapologetic/','42:87bfe41eef09170f294562eecb1e25ab',949,'post','post',1,0,NULL,NULL,'Unapologetic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 20:55:56','2024-08-23 15:38:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-19 13:09:51','2015-02-19 13:09:51',0),(368,'https://www.monicarenata.com/pretty-pretty-pretty/','50:f084e2dd6200b2731101b56634fdea50',206,'post','post',1,0,NULL,NULL,'Pretty, Pretty, Pretty','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?fit=987%2C1367&ssl=1',NULL,'448','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?fit=987%2C1367&ssl=1','448','featured-image','{\"width\":987,\"height\":1367,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?fit=987%2C1367&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg\",\"size\":\"full\",\"id\":448,\"alt\":\"\",\"pixels\":1349229,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 20:55:56','2024-08-22 11:07:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:03','2013-11-10 16:57:00',0),(369,'https://www.monicarenata.com/appreciate-the-night-sky/','54:cdc1def59d436117c3a07a72e07798e4',46,'post','post',1,0,NULL,NULL,'Appreciate The Night Sky','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?fit=1280%2C1024&ssl=1',NULL,'363','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?fit=1280%2C1024&ssl=1','363','featured-image','{\"width\":1280,\"height\":1024,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?fit=1280%2C1024&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg\",\"size\":\"full\",\"id\":363,\"alt\":\"\",\"pixels\":1310720,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 21:29:32','2024-08-23 01:09:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-09 15:40:00',0),(371,'https://www.monicarenata.com/we-are-together/','45:3fbef1f8f9ce7f71f0915353433f58a0',311,'post','post',1,0,NULL,NULL,'We are together','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?fit=609%2C480&ssl=1',NULL,'525','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?fit=609%2C480&ssl=1','525','featured-image','{\"width\":609,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?fit=609%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/45047192-end-relationship.jpg\",\"size\":\"full\",\"id\":525,\"alt\":\"\",\"pixels\":292320,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:33','2024-08-22 02:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:15','2013-04-23 13:39:00',0),(373,'https://www.monicarenata.com/the-words-to-say/','46:fbc6284a96255e253bf7006dd8878432',243,'post','post',1,0,NULL,NULL,'The Words to Say','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?fit=693%2C873&ssl=1',NULL,'472','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?fit=693%2C873&ssl=1','472','featured-image','{\"width\":693,\"height\":873,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?fit=693%2C873&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg\",\"size\":\"full\",\"id\":472,\"alt\":\"\",\"pixels\":604989,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:34','2024-08-22 07:57:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:27','2013-09-13 13:22:00',0),(376,'https://www.monicarenata.com/why-do-women-say-chilvalry-is-dead/','64:53a4384e015afef014572a9f7679d619',310,'post','post',1,0,NULL,NULL,'Why do women say Chilvalry is dead?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?fit=647%2C356&ssl=1',NULL,'524','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?fit=647%2C356&ssl=1','524','featured-image','{\"width\":647,\"height\":356,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?fit=647%2C356&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/chivalry2.png\",\"size\":\"full\",\"id\":524,\"alt\":\"\",\"pixels\":230332,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-24 21:29:36','2024-08-22 02:24:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:14','2013-04-24 14:52:00',0),(378,'https://www.monicarenata.com/the-letter/','40:b52017dec91a2335c01b2f619f03f956',63,'post','post',1,0,NULL,NULL,'The Letter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?fit=500%2C333&ssl=1',NULL,'373','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?fit=500%2C333&ssl=1','373','featured-image','{\"width\":500,\"height\":333,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?fit=500%2C333&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/letter.jpg\",\"size\":\"full\",\"id\":373,\"alt\":\"\",\"pixels\":166500,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 21:29:40','2024-08-22 23:30:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:33','2014-03-19 12:53:00',0),(381,'https://www.monicarenata.com/going-it-alone/','44:2145750f89b37f839f411a0343a5fe4b',67,'post','post',1,0,NULL,NULL,'Going it Alone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?fit=800%2C531&ssl=1',NULL,'374','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?fit=800%2C531&ssl=1','374','featured-image','{\"width\":800,\"height\":531,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?fit=800%2C531&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg\",\"size\":\"full\",\"id\":374,\"alt\":\"\",\"pixels\":424800,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:42','2024-08-22 23:06:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:57','2014-03-13 00:35:00',0),(383,'https://www.monicarenata.com/have-you-ever-had-a-shadow/','56:9d7456563d388dfcd4d71eae130e9315',271,'post','post',1,0,NULL,NULL,'Have you ever had a Shadow?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?fit=371%2C450&ssl=1',NULL,'494','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?fit=371%2C450&ssl=1','494','featured-image','{\"width\":371,\"height\":450,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?fit=371%2C450&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/huge.6.34562.jpg\",\"size\":\"full\",\"id\":494,\"alt\":\"\",\"pixels\":166950,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:45','2024-08-22 05:39:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:51','2013-06-12 23:35:00',0),(385,'https://www.monicarenata.com/feather/','37:678648f30b9b77f574ad2b5a261f7cdd',53,'post','post',1,0,NULL,NULL,'Feather','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?fit=310%2C400&ssl=1',NULL,'367','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?fit=310%2C400&ssl=1','367','featured-image','{\"width\":310,\"height\":400,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?fit=310%2C400&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/feathers-in-the-wind.jpg\",\"size\":\"full\",\"id\":367,\"alt\":\"\",\"pixels\":124000,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 21:29:46','2024-08-23 00:36:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-03-31 12:53:00',0),(389,'https://www.monicarenata.com/the-housecat/','42:f9ce504f3922289d4a42cf9482e43609',182,'post','post',1,0,NULL,NULL,'The Housecat','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg?fit=300%2C250&ssl=1',NULL,'431','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg?fit=300%2C250&ssl=1','431','featured-image','{\"width\":300,\"height\":250,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg?fit=300%2C250&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/dexstarr-300x250.jpg\",\"size\":\"full\",\"id\":431,\"alt\":\"\",\"pixels\":75000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:49','2024-08-22 13:09:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:36','2013-11-18 17:10:00',0),(392,'https://www.monicarenata.com/small-but-sweet/','45:06e48ff589e441b5271d5000e85805e0',314,'post','post',1,0,NULL,NULL,'Small But Sweet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?fit=330%2C370&ssl=1',NULL,'528','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?fit=330%2C370&ssl=1','528','featured-image','{\"width\":330,\"height\":370,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?fit=330%2C370&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/lilies.jpg\",\"size\":\"full\",\"id\":528,\"alt\":\"\",\"pixels\":122100,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:51','2024-08-22 01:53:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:15','2013-04-18 16:35:00',0),(394,'https://www.monicarenata.com/bitch/','35:d205549b45acfc7ef893999bc930df9e',236,'post','post',1,0,NULL,NULL,'Bitch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?fit=1183%2C1118&ssl=1',NULL,'467','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?fit=1183%2C1118&ssl=1','467','featured-image','{\"width\":1183,\"height\":1118,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?fit=1183%2C1118&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/DVAM.jpg\",\"size\":\"full\",\"id\":467,\"alt\":\"\",\"pixels\":1322594,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:52','2024-08-22 08:23:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:23','2013-09-30 15:28:00',0),(396,'https://www.monicarenata.com/without-words/','43:dd7060e70400760a634edfd5c9cfe904',300,'post','post',1,0,NULL,NULL,'Without Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?fit=860%2C292&ssl=1',NULL,'516','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?fit=860%2C292&ssl=1','516','featured-image','{\"width\":860,\"height\":292,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?fit=860%2C292&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/Communicating-Without-Words.jpg\",\"size\":\"full\",\"id\":516,\"alt\":\"\",\"pixels\":251120,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:53','2024-08-22 03:06:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:09','2013-05-03 15:58:00',0),(398,'https://www.monicarenata.com/the-wall/','38:7cf1f5f5fba34f01a7c3ff8402e3d1ff',332,'post','post',1,0,NULL,NULL,'The Wall','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?fit=512%2C512&ssl=1',NULL,'545','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?fit=512%2C512&ssl=1','545','featured-image','{\"width\":512,\"height\":512,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?fit=512%2C512&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/WallAroundHeart.jpg\",\"size\":\"full\",\"id\":545,\"alt\":\"\",\"pixels\":262144,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:53','2024-08-22 00:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:22','2013-04-07 13:48:00',0),(400,'https://www.monicarenata.com/valentines-day-freebie/','52:30f04a71329ee5e09803920f4f30a5bf',86,'post','post',1,0,NULL,NULL,'Valentine’s Day Freebie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?fit=494%2C516&ssl=1',NULL,'382','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?fit=494%2C516&ssl=1','382','featured-image','{\"width\":494,\"height\":516,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?fit=494%2C516&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg\",\"size\":\"full\",\"id\":382,\"alt\":\"\",\"pixels\":254904,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:54','2024-08-22 21:47:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:29','2014-02-13 00:43:00',0),(402,'https://www.monicarenata.com/love-letter/','41:b2e3c815ec53529ef3c635ba517f2aec',172,'post','post',1,0,NULL,NULL,'Love Letter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?fit=739%2C480&ssl=1',NULL,'426','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?fit=739%2C480&ssl=1','426','featured-image','{\"width\":739,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?fit=739%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/love-heart-writing-letter.jpg\",\"size\":\"full\",\"id\":426,\"alt\":\"\",\"pixels\":354720,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:29:55','2024-08-22 14:12:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:28','2013-11-21 14:36:00',0),(407,'https://www.monicarenata.com/tick-tock/','39:5186b8146144ed46849fc08c521d282d',281,'post','post',1,0,NULL,NULL,'Tick Tock','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?fit=500%2C494&ssl=1',NULL,'502','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?fit=500%2C494&ssl=1','502','featured-image','{\"width\":500,\"height\":494,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?fit=500%2C494&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/tick-tock.jpg\",\"size\":\"full\",\"id\":502,\"alt\":\"\",\"pixels\":247000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:00','2024-08-22 04:47:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:58','2013-05-28 16:54:00',0),(409,'https://www.monicarenata.com/changing-others/','45:8629f92f45f2cf1c5600f81216dacaae',220,'post','post',1,0,NULL,NULL,'Changing Others','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?fit=896%2C649&ssl=1',NULL,'458','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?fit=896%2C649&ssl=1','458','featured-image','{\"width\":896,\"height\":649,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?fit=896%2C649&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/holstee.png\",\"size\":\"full\",\"id\":458,\"alt\":\"\",\"pixels\":581504,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-24 21:30:01','2024-08-22 10:08:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:13','2013-10-31 19:12:00',0),(412,'https://www.monicarenata.com/floating/','38:93a777679faa0ad168ca7992e5567f42',313,'post','post',1,0,NULL,NULL,'Floating','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?fit=960%2C720&ssl=1',NULL,'527','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?fit=960%2C720&ssl=1','527','featured-image','{\"width\":960,\"height\":720,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?fit=960%2C720&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/KingdomOfHeaven.jpg\",\"size\":\"full\",\"id\":527,\"alt\":\"\",\"pixels\":691200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:01','2024-08-22 02:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:15','2013-04-22 12:59:00',0),(414,'https://www.monicarenata.com/im-beautiful/','42:40100b6066504c3261a9f4da91bc3975',79,'post','post',1,0,NULL,NULL,'I’m Beautiful','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?fit=640%2C480&ssl=1',NULL,'379','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?fit=640%2C480&ssl=1','379','featured-image','{\"width\":640,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?fit=640%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/You-Are-Beautiful.jpg\",\"size\":\"full\",\"id\":379,\"alt\":\"\",\"pixels\":307200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:02','2024-08-22 22:11:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:06','2014-02-20 00:11:00',0),(416,'https://www.monicarenata.com/a-new-beginning/','45:6527957b6e91d31f83450ae5709131d3',279,'post','post',1,0,NULL,NULL,'A New Beginning','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg?fit=300%2C290&ssl=1',NULL,'500','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg?fit=300%2C290&ssl=1','500','featured-image','{\"width\":300,\"height\":290,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg?fit=300%2C290&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/river_of_tears.jpg\",\"size\":\"full\",\"id\":500,\"alt\":\"\",\"pixels\":87000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:04','2024-08-22 04:58:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:56','2013-05-29 19:36:00',0),(421,'https://www.monicarenata.com/i-try-to-write-a-happy-poem/','57:ac3734329292d7b66411a69c98ec8379',613,'post','post',1,0,NULL,NULL,'I Try To Write a Happy Poem','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?fit=500%2C335&ssl=1',NULL,'614','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?fit=500%2C335&ssl=1','614','featured-image','{\"width\":500,\"height\":335,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/08/crying-writer.jpg?fit=500%2C335&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/08/crying-writer.jpg\",\"size\":\"full\",\"id\":614,\"alt\":\"\",\"pixels\":167500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:10','2024-08-23 05:53:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-31 18:29:51','2014-08-31 18:29:51',0),(423,'https://www.monicarenata.com/dance/','35:13524fedb976384ca2374804187c43e8',117,'post','post',1,0,NULL,NULL,'Dance','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?fit=1275%2C1650&ssl=1',NULL,'399','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?fit=1275%2C1650&ssl=1','399','featured-image','{\"width\":1275,\"height\":1650,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?fit=1275%2C1650&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/dancers1.jpg\",\"size\":\"full\",\"id\":399,\"alt\":\"\",\"pixels\":2103750,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:11','2024-08-22 18:57:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:50','2013-12-31 17:43:00',0),(426,'https://www.monicarenata.com/grandmas-house/','44:554d8ab0091b2ed9b21be5149a109662',186,'post','post',1,0,NULL,NULL,'Grandma’s House','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?fit=1024%2C797&ssl=1',NULL,'433','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?fit=1024%2C797&ssl=1','433','featured-image','{\"width\":1024,\"height\":797,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?fit=1024%2C797&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg\",\"size\":\"full\",\"id\":433,\"alt\":\"\",\"pixels\":816128,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:50','2024-08-22 12:51:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:43','2013-11-17 00:17:00',0),(428,'https://www.monicarenata.com/heros-curse/','41:2154d6b6abc8210fca73964f68b4ed90',57,'post','post',1,0,NULL,NULL,'Hero’s Curse','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?fit=800%2C566&ssl=1',NULL,'369','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?fit=800%2C566&ssl=1','369','featured-image','{\"width\":800,\"height\":566,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?fit=800%2C566&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/lonely-warrior.jpg\",\"size\":\"full\",\"id\":369,\"alt\":\"\",\"pixels\":452800,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:51','2024-08-23 00:07:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:48','2014-03-27 13:47:00',0),(431,'https://www.monicarenata.com/ms-i-need-you-today/','49:59bbe2ac266fc9bb4538ddf5fc78279e',229,'post','post',1,0,NULL,NULL,'“Ms. I Need You Today”','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?fit=558%2C640&ssl=1',NULL,'463','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?fit=558%2C640&ssl=1','463','featured-image','{\"width\":558,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?fit=558%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg\",\"size\":\"full\",\"id\":463,\"alt\":\"\",\"pixels\":357120,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:54','2024-08-22 09:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:19','2013-10-18 13:46:00',0),(433,'https://www.monicarenata.com/working/','37:4a2eaccf2604e631019c854c0e19d7d1',196,'post','post',1,0,NULL,NULL,'Working','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?fit=1200%2C1486&ssl=1',NULL,'441','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?fit=1200%2C1486&ssl=1','441','featured-image','{\"width\":1200,\"height\":1486,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?fit=1200%2C1486&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg\",\"size\":\"full\",\"id\":441,\"alt\":\"\",\"pixels\":1783200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:54','2024-08-22 12:09:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:56','2013-11-13 14:40:00',0),(435,'https://www.monicarenata.com/in-your-absence/','45:a96d0076ba40350f2a880626f37e2a8e',184,'post','post',1,0,NULL,NULL,'In Your Absence','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?fit=3264%2C1840&ssl=1',NULL,'432','featured-image',NULL,NULL,'https://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829--1024x577.jpg','432','featured-image','{\"width\":1024,\"height\":577,\"path\":\"2013/11/Lujuria_Lust_Pecado_Original_-3969921829--1024x577.jpg\",\"url\":\"https://www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829--1024x577.jpg\",\"size\":\"large\",\"id\":432,\"alt\":\"\",\"pixels\":590848,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:54','2024-08-22 13:09:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:42','2013-11-18 01:16:00',0),(440,'https://www.monicarenata.com/the-rain/','38:d9ad88d94ef763ba25e30d85f7b1d668',343,'post','post',1,0,NULL,NULL,'The Rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?fit=1000%2C834&ssl=1',NULL,'556','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?fit=1000%2C834&ssl=1','556','featured-image','{\"width\":1000,\"height\":834,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?fit=1000%2C834&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg\",\"size\":\"full\",\"id\":556,\"alt\":\"\",\"pixels\":834000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:30:58','2024-08-21 23:35:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:26','2013-04-01 18:30:00',0),(442,'https://www.monicarenata.com/insides/','37:91dfbabfa95188f79b26cadd30889c0d',69,'post','post',1,0,NULL,NULL,'Insides','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?fit=511%2C383&ssl=1',NULL,'376','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?fit=511%2C383&ssl=1','376','featured-image','{\"width\":511,\"height\":383,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?fit=511%2C383&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg\",\"size\":\"full\",\"id\":376,\"alt\":\"\",\"pixels\":195713,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:31:04','2024-08-22 22:59:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:58','2014-03-02 06:43:00',0),(447,'https://www.monicarenata.com/gossip/','36:ab356d2d85b3c8eae1db4c70957e0776',338,'post','post',1,0,NULL,NULL,'Gossip','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg?fit=208%2C243&ssl=1',NULL,'551','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg?fit=208%2C243&ssl=1','551','featured-image','{\"width\":208,\"height\":243,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg?fit=208%2C243&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Gossip.jpg\",\"size\":\"full\",\"id\":551,\"alt\":\"\",\"pixels\":50544,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:31:07','2024-08-22 00:10:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:23','2013-04-03 12:39:00',0),(449,'https://www.monicarenata.com/endless-echoes/','44:da0de3c105b0d7c4f5897b61c16a77bc',31,'post','post',1,0,NULL,NULL,'Endless Echoes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?fit=497%2C348&ssl=1',NULL,'355','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?fit=497%2C348&ssl=1','355','featured-image','{\"width\":497,\"height\":348,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?fit=497%2C348&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/hear-me-now.jpg\",\"size\":\"full\",\"id\":355,\"alt\":\"\",\"pixels\":172956,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 21:31:09','2024-08-23 02:37:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-20 18:52:00',0),(452,'https://www.monicarenata.com/brown-blue-green-and-hazel/','56:b729e9bb163ce6a499605a4cb00970c7',308,'post','post',1,0,NULL,NULL,'Brown, Blue, Green, and Hazel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?fit=640%2C426&ssl=1',NULL,'522','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?fit=640%2C426&ssl=1','522','featured-image','{\"width\":640,\"height\":426,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?fit=640%2C426&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/eyes.jpg\",\"size\":\"full\",\"id\":522,\"alt\":\"\",\"pixels\":272640,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:31:11','2024-08-22 02:24:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:13','2013-04-26 14:53:00',0),(454,'https://www.monicarenata.com/the-last-kiss/','43:dfe072a3c728e299306ca77d07385c9b',203,'post','post',1,0,NULL,NULL,'The Last Kiss','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?fit=346%2C305&ssl=1',NULL,'446','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?fit=346%2C305&ssl=1','446','featured-image','{\"width\":346,\"height\":305,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?fit=346%2C305&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg\",\"size\":\"full\",\"id\":446,\"alt\":\"\",\"pixels\":105530,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:43:37','2024-08-22 11:24:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:59','2013-11-11 03:26:00',0),(456,'https://www.monicarenata.com/holding-on/','40:2557c6e24f754b9b77ede93c45d5d03f',50,'post','post',1,0,NULL,NULL,'Holding On','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?fit=550%2C368&ssl=1',NULL,'366','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?fit=550%2C368&ssl=1','366','featured-image','{\"width\":550,\"height\":368,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?fit=550%2C368&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/04/holding-on-letting-go.jpg\",\"size\":\"full\",\"id\":366,\"alt\":\"\",\"pixels\":202400,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-24 21:43:40','2024-08-23 00:51:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-03 13:10:00',0),(458,'https://www.monicarenata.com/the-jaunt/','39:5c4dfae7a7b0f10c998cabbb38fc7dd9',884,'post','post',1,0,NULL,NULL,'The Jaunt','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 21:44:49','2024-08-23 13:14:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-05 15:14:16','2015-02-05 15:14:16',0),(459,'https://www.monicarenata.com/the-path-to-victory/','49:e8e5d953814dc2ad3f39837c4d410f1c',58,'post','post',1,0,NULL,NULL,'The Path to Victory','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?fit=960%2C540&ssl=1',NULL,'370','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?fit=960%2C540&ssl=1','370','featured-image','{\"width\":960,\"height\":540,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?fit=960%2C540&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/03/victory-02.jpg\",\"size\":\"full\",\"id\":370,\"alt\":\"\",\"pixels\":518400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:45:11','2024-08-23 00:07:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:50','2014-03-25 13:32:00',0),(462,'https://www.monicarenata.com/genuine-kindness/','46:b21e63c76e47c862e0f0f47dc93b903e',217,'post','post',1,0,NULL,NULL,'Genuine Kindness','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?fit=431%2C245&ssl=1',NULL,'455','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?fit=431%2C245&ssl=1','455','featured-image','{\"width\":431,\"height\":245,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?fit=431%2C245&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/full_1328574703kindness.jpg\",\"size\":\"full\",\"id\":455,\"alt\":\"\",\"pixels\":105595,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:45:13','2024-08-22 10:25:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:10','2013-11-05 13:02:00',0),(464,'https://www.monicarenata.com/horrific-travels/','46:78165a5748fcada8f3e5f041ddd753c0',276,'post','post',1,0,NULL,NULL,'Horrific Travels','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?fit=600%2C1091&ssl=1',NULL,'498','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?fit=600%2C1091&ssl=1','498','featured-image','{\"width\":600,\"height\":1091,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?fit=600%2C1091&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/l.jpg\",\"size\":\"full\",\"id\":498,\"alt\":\"\",\"pixels\":654600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 21:46:21','2024-08-22 05:10:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:55','2013-06-07 15:10:00',0),(469,'https://www.monicarenata.com/just-be/','37:46cdc9b4d66dcbdf70db9a679f2b3c8e',821,'post','post',1,0,NULL,NULL,'Just BE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 21:51:25','2024-08-23 11:05:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 04:11:18','2015-01-16 19:34:33',0),(470,'https://www.monicarenata.com/moon-love-stop-overvaluing-fainting-stars/','71:c95c87ccf350a9243eb2f644ed4293ca',40,'post','post',1,0,NULL,NULL,'Moon Love: Stop overvaluing fainting stars','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 22:03:56','2024-08-23 01:46:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-04-23 19:31:00',0),(471,'https://www.monicarenata.com/mr-care-too-much/','46:e9f03a671fceee1b3c5b6e5ac087e814',11,'post','post',1,0,NULL,NULL,'Mr. Care Too Much','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 22:06:36','2024-08-23 04:21:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-07-01 19:58:00',0),(472,'https://www.monicarenata.com/well-runs-dry/','43:3e3a61a7c01fdb3447a65a9411e1a280',706,'post','post',1,0,NULL,NULL,'Well runs dry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 22:11:55','2024-08-23 07:55:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-03 14:05:07','2014-11-03 13:51:31',0),(473,'https://www.monicarenata.com/falling-in-love-with-potential/','60:3b52c48e79b5245ed8cc2a91a60099ee',22,'post','post',1,0,NULL,NULL,'Falling In Love with Potential','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-24 23:35:58','2024-08-23 03:35:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:30','2014-06-09 16:55:00',0),(474,'https://www.monicarenata.com/kindness/','38:e9356b7772bacfea05849053d6ce317d',339,'post','post',1,0,NULL,NULL,'Kindness','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?fit=1000%2C990&ssl=1',NULL,'552','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?fit=1000%2C990&ssl=1','552','featured-image','{\"width\":1000,\"height\":990,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?fit=1000%2C990&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg\",\"size\":\"full\",\"id\":552,\"alt\":\"\",\"pixels\":990000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-24 23:42:50','2024-08-21 23:55:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:24','2013-04-02 17:55:00',0),(475,'https://www.monicarenata.com/who-am-i/','38:ade8f9d1324ffb7398f134eab8e31747',1471,'post','post',1,0,NULL,NULL,'Who Am I?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://img.clipartfest.com/7ae29d851a10ec172a32bed9d47feb16_395855b08cea1c02d517adaae6ac04-two-people-talking-clip-art_649-495.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://img.clipartfest.com/7ae29d851a10ec172a32bed9d47feb16_395855b08cea1c02d517adaae6ac04-two-people-talking-clip-art_649-495.jpeg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 00:57:54','2024-08-24 04:36:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-09 16:34:49','2017-02-09 16:24:18',0),(476,'https://www.monicarenata.com/be-the-change-you-wish-to-see/','59:89b9ca9ca3e1723ec51114314c540f09',242,'post','post',1,0,NULL,NULL,'Be the Change you wish to see','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1',NULL,'471','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1','471','featured-image','{\"width\":550,\"height\":850,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?fit=550%2C850&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg\",\"size\":\"full\",\"id\":471,\"alt\":\"\",\"pixels\":467500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 00:58:01','2024-08-22 07:57:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:27','2013-09-18 23:18:00',0),(477,'https://www.monicarenata.com/a-trillion-dollars/','48:449accdf6856935845b6bbedc470bfc0',881,'post','post',1,0,NULL,NULL,'A Trillion Dollars','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 01:03:34','2024-08-23 12:52:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-04 19:14:01','2015-02-04 19:12:31',0),(478,'https://www.monicarenata.com/you-light-up-my-life/','50:34b8640aad821b7b646a07335597b4e9',266,'post','post',1,0,NULL,NULL,'You Light Up My Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1',NULL,'394','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1','394','featured-image','{\"width\":400,\"height\":328,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?fit=400%2C328&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png\",\"size\":\"full\",\"id\":394,\"alt\":\"\",\"pixels\":131200,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-25 02:16:54','2024-08-22 05:58:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:46','2013-07-09 03:50:00',0),(479,'https://www.monicarenata.com/fated-dissolution/','47:0c506073fdb4bce3e512b3ed52fe0454',1292,'post','post',1,0,NULL,NULL,'Fated Dissolution','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 03:07:11','2024-08-24 02:16:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-10 18:18:36','2016-06-10 18:18:36',0),(480,'https://www.monicarenata.com/make-you-weak/','43:9caedb8a209486c7a1f2164ea07d50c3',1181,'post','post',1,0,NULL,NULL,'Make You Weak','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 03:36:55','2024-08-23 23:25:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-12-23 05:18:43','2015-12-23 03:52:32',0),(482,'https://www.monicarenata.com/speak-life-into-me/','48:b3f64937f12dccdae5f9cc6fdb58d207',250,'post','post',1,0,NULL,NULL,'Speak Life Into Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?fit=560%2C280&ssl=1',NULL,'478','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?fit=560%2C280&ssl=1','478','featured-image','{\"width\":560,\"height\":280,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?fit=560%2C280&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/header.jpg\",\"size\":\"full\",\"id\":478,\"alt\":\"\",\"pixels\":156800,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-25 03:44:11','2024-08-22 07:23:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:35','2013-08-27 21:48:00',0),(483,'https://www.monicarenata.com/decisions-decisions/','49:6d66a1633eb4ecb7d9152efb0dfeb019',1003,'post','post',1,0,NULL,NULL,'Decisions Decisions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 04:21:00','2024-08-23 17:08:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-09 15:01:51','2015-04-09 15:01:51',0),(484,'https://www.monicarenata.com/agony-of-asphyxiation/','51:662e3e2cc7cc221baa14c4a6e35de116',1311,'post','post',1,0,NULL,NULL,'Agony of Asphyxiation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://hotrfm.files.wordpress.com/2014/08/rollercoaster.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://hotrfm.files.wordpress.com/2014/08/rollercoaster.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 06:12:35','2024-08-24 02:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-13 14:15:26','2016-07-13 14:15:26',0),(485,'https://www.monicarenata.com/quit-give-up-youre-beaten/','55:c0a1579c9f82f9908096e94583e09f5d',292,'post','post',1,0,NULL,NULL,'“QUIT! GIVE UP! YOU’RE BEATEN!”','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?fit=288%2C288&ssl=1',NULL,'510','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?fit=288%2C288&ssl=1','510','featured-image','{\"width\":288,\"height\":288,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?fit=288%2C288&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/700263__large.jpg\",\"size\":\"full\",\"id\":510,\"alt\":\"\",\"pixels\":82944,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 07:01:07','2024-08-22 03:50:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:07','2013-05-16 18:10:00',0),(486,'https://www.monicarenata.com/the-news/','38:6cfdb7e469458521bd58a8543d2478d1',193,'post','post',1,0,NULL,NULL,'The News','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?fit=1007%2C419&ssl=1',NULL,'438','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?fit=1007%2C419&ssl=1','438','featured-image','{\"width\":1007,\"height\":419,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?fit=1007%2C419&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg\",\"size\":\"full\",\"id\":438,\"alt\":\"\",\"pixels\":421933,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 08:00:11','2024-08-22 12:26:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:52','2013-11-14 12:19:00',0),(487,'https://www.monicarenata.com/who-you-are/','41:df1b3f707b3be4bff8b69b07077d1920',1853,'post','post',1,0,NULL,NULL,'Who You Are','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 10:45:38','2024-08-24 10:05:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-11-15 15:41:19','2020-11-15 15:41:19',0),(488,'https://www.monicarenata.com/i-see-you/','39:736df9c7e1793676533b23b61f8c0ba4',1378,'post','post',1,0,NULL,NULL,'I See You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://data.whicdn.com/images/236722809/large.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://data.whicdn.com/images/236722809/large.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 12:27:24','2024-08-24 04:12:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-03 22:47:46','2016-12-03 22:47:07',0),(489,'https://www.monicarenata.com/weekly-challenge-2-know-thyself/','61:7e0dc10e67116cf5e63a0bd81d940083',312,'post','post',1,0,NULL,NULL,'Weekly Challenge 2: Know Thyself!!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?fit=478%2C480&ssl=1',NULL,'526','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?fit=478%2C480&ssl=1','526','featured-image','{\"width\":478,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?fit=478%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/know_thyself.jpg\",\"size\":\"full\",\"id\":526,\"alt\":\"\",\"pixels\":229440,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 15:33:27','2024-08-22 02:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:15','2013-04-22 13:18:00',0),(491,'https://www.monicarenata.com/brunch/','36:82ae21fa75c8fad627277aa3288f4878',159,'post','post',1,0,NULL,NULL,'Brunch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?fit=640%2C640&ssl=1',NULL,'418','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?fit=640%2C640&ssl=1','418','featured-image','{\"width\":640,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?fit=640%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg\",\"size\":\"full\",\"id\":418,\"alt\":\"\",\"pixels\":409600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 17:22:18','2024-08-22 15:26:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:19','2013-11-25 14:08:00',0),(493,'https://www.monicarenata.com/drifting-away/','43:5eb3b557d4fe05bece17e5cbd0d64196',298,'post','post',1,0,NULL,NULL,'Drifting Away','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?fit=900%2C688&ssl=1',NULL,'515','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?fit=900%2C688&ssl=1','515','featured-image','{\"width\":900,\"height\":688,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?fit=900%2C688&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg\",\"size\":\"full\",\"id\":515,\"alt\":\"\",\"pixels\":619200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 18:04:55','2024-08-22 03:06:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:08','2013-05-06 12:35:00',0),(495,'https://www.monicarenata.com/life-is-beautiful/','47:ac765a2afcc13eca7f2579f125a79707',218,'post','post',1,0,NULL,NULL,'Life is Beautiful','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?fit=480%2C480&ssl=1',NULL,'456','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?fit=480%2C480&ssl=1','456','featured-image','{\"width\":480,\"height\":480,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?fit=480%2C480&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg\",\"size\":\"full\",\"id\":456,\"alt\":\"\",\"pixels\":230400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 18:51:09','2024-08-22 10:08:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:11','2013-11-05 12:05:00',0),(497,'https://www.monicarenata.com/the-world/','39:cd0f2f329ddcd4e584c7a34b38a9a90f',302,'post','post',1,0,NULL,NULL,'The world','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 19:26:32','2024-08-22 02:55:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:10','2013-05-02 16:30:00',0),(499,'https://www.monicarenata.com/its-not-much-but-its-all-i-have/','61:31757ad9a668ec8b5571076276fab87e',333,'post','post',1,0,NULL,NULL,'It’s Not Much, but its all I have','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?fit=400%2C471&ssl=1',NULL,'546','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?fit=400%2C471&ssl=1','546','featured-image','{\"width\":400,\"height\":471,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?fit=400%2C471&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg\",\"size\":\"full\",\"id\":546,\"alt\":\"\",\"pixels\":188400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 21:24:09','2024-08-22 00:21:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:22','2013-04-06 13:02:00',0),(501,'https://www.monicarenata.com/i-cant-make-you/','45:b34a4218a0f44fb2c4777c5328e01013',34,'post','post',1,0,NULL,NULL,'I Can’t Make You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?fit=236%2C305&ssl=1',NULL,'358','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?fit=236%2C305&ssl=1','358','featured-image','{\"width\":236,\"height\":305,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?fit=236%2C305&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg\",\"size\":\"full\",\"id\":358,\"alt\":\"\",\"pixels\":71980,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-25 21:46:59','2024-08-23 02:24:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-13 12:46:00',0),(503,'https://www.monicarenata.com/what-is-the-point/','47:c09d311143a2e61616aea01cc407b16a',272,'post','post',1,0,NULL,NULL,'What is the point','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-25 22:21:40','2024-08-22 05:33:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:51','2013-06-11 02:11:00',0),(505,'https://www.monicarenata.com/weekly-challenge-10-accomplish-something/','70:4ca3a2af4c957225fa91cdbd8c8995df',259,'post','post',1,0,NULL,NULL,'Weekly Challenge 10: Accomplish Something','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?fit=644%2C714&ssl=1',NULL,'484','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?fit=644%2C714&ssl=1','484','featured-image','{\"width\":644,\"height\":714,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?fit=644%2C714&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/1443.jpg\",\"size\":\"full\",\"id\":484,\"alt\":\"\",\"pixels\":459816,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 00:08:43','2024-08-22 06:40:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:40','2013-08-05 05:21:00',0),(510,'https://www.monicarenata.com/white-picket-fence-family/','55:c4a68a7c124502624fecac81eb49e402',827,'post','post',1,0,NULL,NULL,'White Picket Fence Family','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 01:57:50','2024-08-23 11:22:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-16 19:59:16','2015-01-16 19:59:16',0),(511,'https://www.monicarenata.com/book-of-life/','42:aac70dc56b8c7b4a468d5b1391f3efac',750,'post','post',1,0,NULL,NULL,'Book of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 02:19:13','2024-08-23 08:57:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-05 19:30:46','2014-12-05 19:30:46',0),(513,'https://www.monicarenata.com/dream-eyes-open/','45:e843acc7c88aaac1156a89138e60c542',911,'post','post',1,0,NULL,NULL,'Dream: Eyes Open','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 03:32:31','2024-08-23 14:23:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-11 19:06:32','2015-02-11 19:06:05',0),(514,'https://www.monicarenata.com/to-the-wind/','41:ddb52bbcc58b86b00cfff607a2d110e7',1673,'post','post',1,0,NULL,NULL,'To the Wind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/wind.jpg?fit=736%2C586&ssl=1',NULL,'1675','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/wind.jpg?fit=736%2C586&ssl=1','1675','featured-image','{\"width\":736,\"height\":586,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/wind.jpg?fit=736%2C586&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/06/wind.jpg\",\"size\":\"full\",\"id\":1675,\"alt\":\"\",\"pixels\":431296,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 04:20:39','2024-08-24 07:09:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-12 04:34:57','2017-06-12 04:34:57',0),(517,'https://www.monicarenata.com/trust-the-cup/','43:caab4485e6a032ad9411cce94c0bac7f',1265,'post','post',1,0,NULL,NULL,'Trust The Cup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 08:28:55','2024-08-24 01:09:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-03-31 14:28:40','2016-03-31 14:28:40',0),(518,'https://www.monicarenata.com/is-this-really-love/','49:6e8a667e3a39109453dee0537cba02c0',348,'post','post',1,0,NULL,NULL,'Is this Really Love?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?fit=960%2C727&ssl=1',NULL,'561','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?fit=960%2C727&ssl=1','561','featured-image','{\"width\":960,\"height\":727,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?fit=960%2C727&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg\",\"size\":\"full\",\"id\":561,\"alt\":\"\",\"pixels\":697920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 08:44:29','2024-08-21 23:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2013-04-01 13:38:00',0),(519,'https://www.monicarenata.com/gone/','34:ae6adf926bfe05493ee31a3087a89e74',639,'post','post',1,0,NULL,NULL,'Gone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 08:57:09','2024-08-23 06:22:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-09 14:32:45','2014-10-09 14:32:45',0),(520,'https://www.monicarenata.com/asking-annie/','42:9901435b7e7e049f7ecc2657613a34b8',972,'post','post',1,0,NULL,NULL,'Asking Annie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:16:34','2024-08-23 16:20:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-10 14:34:12','2015-03-10 14:34:12',0),(522,'https://www.monicarenata.com/im-human/','38:54209d4f7085139d326ae1e53dafa814',785,'post','post',1,0,NULL,NULL,'I’m Human','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:32:11','2024-08-23 10:20:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-31 01:47:55','2014-12-28 21:20:47',0),(523,'https://www.monicarenata.com/im-broken/','39:679b2a9e83c0991d710a7bf39beb01b7',1176,'post','post',1,0,NULL,NULL,'I’m Broken','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:47:00','2024-08-23 23:25:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-11-06 20:35:54','2015-11-06 20:35:54',0),(524,'https://www.monicarenata.com/petals-on-the-flower/','50:5169ee29c556a2ade86b8c809933f0e8',1139,'post','post',1,0,NULL,NULL,'Petals on the Flower','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:53:58','2024-08-23 22:11:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-22 13:16:31','2015-10-22 13:16:31',0),(525,'https://www.monicarenata.com/unspoken-candor/','45:6cd7e3db21fc4ae59894a40449448e46',1293,'post','post',1,0,NULL,NULL,'Unspoken Candor','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:55:17','2024-08-24 02:16:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-10 18:33:43','2016-06-10 18:33:43',0),(526,'https://www.monicarenata.com/he-danced/','39:745a4e13f12e5912f1d81d6dc61bdc81',1152,'post','post',1,0,NULL,NULL,'He Danced','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 09:55:22','2024-08-23 22:20:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 00:51:06','2015-10-29 00:51:06',0),(527,'https://www.monicarenata.com/bubble/','36:d5e8325108c9e1a81ed0072e1260a9d8',51,'post','post',1,0,NULL,NULL,'Bubble','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2024-07-26 10:07:16','2024-08-23 00:36:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-01 16:02:00',0),(528,'https://www.monicarenata.com/rally-on/','38:19e1a0e5bb9d6337e7aefe28e059fbe2',1066,'post','post',1,0,NULL,NULL,'Rally On','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:10:22','2024-08-23 20:09:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-31 03:39:56','2015-08-31 03:39:56',0),(529,'https://www.monicarenata.com/turn-off-everything/','49:bcd3136804b2004fc8a80cdba1809aff',1211,'post','post',1,0,NULL,NULL,'Turn Off Everything','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://s2.favim.com/orig/32/beautiful-couple-dark-follow-foolme-kiss-Favim.com-254908.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://s2.favim.com/orig/32/beautiful-couple-dark-follow-foolme-kiss-Favim.com-254908.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 10:22:00','2024-08-23 23:39:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-03 03:18:46','2016-01-03 03:18:46',0),(530,'https://www.monicarenata.com/in-the-meantime/','45:f09cacc92201e9efcd64761c122e8d21',1413,'post','post',1,0,NULL,NULL,'In The Meantime','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/236x/48/db/c3/48dbc3452bdb636e017924fb2038a607.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/236x/48/db/c3/48dbc3452bdb636e017924fb2038a607.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 10:23:25','2024-08-24 04:36:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-28 02:15:50','2016-12-27 19:23:18',0),(531,'https://www.monicarenata.com/lovers-remorse/','44:c0e17dfa78ee8c1537bfa3dccfb62fc3',1399,'post','post',1,0,NULL,NULL,'Lover’s Remorse','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 10:23:33','2024-08-24 04:23:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-16 15:01:41','2016-12-12 20:30:48',0),(532,'https://www.monicarenata.com/return-to-love/','44:b91fc4595e552ee5380be0bc91fad373',720,'post','post',1,0,NULL,NULL,'Return to Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:24:59','2024-08-23 08:11:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-14 13:36:31','2014-11-14 13:34:17',0),(533,'https://www.monicarenata.com/something-real/','44:fdef6fea058566523fd1e1ad6bd8f5b5',686,'post','post',1,0,NULL,NULL,'Something Real','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:25:03','2024-08-23 07:55:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-02 05:39:06','2014-11-02 05:39:06',0),(534,'https://www.monicarenata.com/poison/','36:213ac3b910b4abdbb759af77dced01f0',716,'post','post',1,0,NULL,NULL,'Poison','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:25:17','2024-08-23 08:11:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-10 19:51:10','2014-11-10 19:51:10',0),(535,'https://www.monicarenata.com/fruit/','35:e0e667f6168927f7b3c460f953932d24',710,'post','post',1,0,NULL,NULL,'Fruit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:25:41','2024-08-23 07:55:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-05 06:16:22','2014-11-05 06:16:22',0),(536,'https://www.monicarenata.com/life-is-sweet/','43:0b7ab176690a7c7934802cc7d0f6f72d',713,'post','post',1,0,NULL,NULL,'Life is SWEET','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:25:44','2024-08-23 08:11:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-10 19:10:54','2014-11-10 19:10:54',0),(537,'https://www.monicarenata.com/wrong/','35:a9aa0f7e935cf5b309bdf50ef79a32d8',1335,'post','post',1,0,NULL,NULL,'Wrong','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 10:26:28','2024-08-24 03:23:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-08-08 21:34:55','2016-08-08 17:02:45',0),(538,'https://www.monicarenata.com/tomorrow/','38:216206156ccd00f4fdc42b33958b9778',277,'post','post',1,0,NULL,NULL,'Tomorrow','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?fit=631%2C344&ssl=1',NULL,'499','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?fit=631%2C344&ssl=1','499','featured-image','{\"width\":631,\"height\":344,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?fit=631%2C344&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png\",\"size\":\"full\",\"id\":499,\"alt\":\"\",\"pixels\":217064,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-26 10:27:10','2024-08-22 05:10:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:55','2013-06-03 15:10:00',0),(539,'https://www.monicarenata.com/i-cant/','36:a1fc8fa2f478e5b8bc756aae567a0e8f',269,'post','post',1,0,NULL,NULL,'I can’t','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?fit=190%2C327&ssl=1',NULL,'492','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?fit=190%2C327&ssl=1','492','featured-image','{\"width\":190,\"height\":327,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?fit=190%2C327&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/Kristian-D_crpd.jpg\",\"size\":\"full\",\"id\":492,\"alt\":\"\",\"pixels\":62130,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 10:27:17','2024-08-22 05:39:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:49','2013-06-25 13:17:00',0),(540,'https://www.monicarenata.com/love-vs-hate/','42:f3037ee26caa3b3a4df757f1129b6211',275,'post','post',1,0,NULL,NULL,'Love vs Hate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?fit=386%2C289&ssl=1',NULL,'497','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?fit=386%2C289&ssl=1','497','featured-image','{\"width\":386,\"height\":289,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?fit=386%2C289&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/06/124033426424151544895_1.jpg\",\"size\":\"full\",\"id\":497,\"alt\":\"\",\"pixels\":111554,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 10:27:53','2024-08-22 05:10:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:52','2013-06-07 15:25:00',0),(541,'https://www.monicarenata.com/forgotten-me/','42:ea5a68ca4607747ba33372ad9f231fc9',1594,'post','post',1,0,NULL,NULL,'Forgotten Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 10:28:23','2024-08-24 06:07:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-12 02:38:28','2017-04-12 02:38:28',0),(542,'https://www.monicarenata.com/pretty-pictures/','45:f809ac8f4735246217653e3c0ab61fbf',859,'post','post',1,0,NULL,NULL,'Pretty Pictures','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:29:46','2024-08-23 12:21:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-26 17:01:36','2015-01-26 17:01:36',0),(543,'https://www.monicarenata.com/lies-thinking-out-loud/','52:3d7049e827070a2b5c66bb595911a87d',835,'post','post',1,0,NULL,NULL,'Lies: Thinking Out Loud','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:29:55','2024-08-23 11:42:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 14:29:27','2015-01-20 14:29:27',0),(544,'https://www.monicarenata.com/everyday-today/','44:fa8fa95196c1e03c73219013197cf170',841,'post','post',1,0,NULL,NULL,'Everyday Today','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:31:00','2024-08-23 11:57:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-20 19:32:30','2015-01-20 19:32:30',0),(545,'https://www.monicarenata.com/flesh/','35:b84640fdbef846d235e0bd5b21f9f50d',818,'post','post',1,0,NULL,NULL,'Flesh','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:31:19','2024-08-23 11:05:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-15 20:52:42','2015-01-15 20:52:42',0),(546,'https://www.monicarenata.com/just-a-thought/','44:0c1c9969700efe2afd50ba07103c8354',798,'post','post',1,0,NULL,NULL,'Just a Thought','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:31:26','2024-08-23 10:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-13 13:12:47','2015-01-05 19:59:39',0),(547,'https://www.monicarenata.com/21-days/','37:b0e04e6d30bc16e2e0d42e29ba001eb1',793,'post','post',1,0,NULL,NULL,'21 Days','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:31:57','2024-08-23 10:25:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-02 17:50:49','2015-01-02 17:50:49',0),(548,'https://www.monicarenata.com/case-of-the-dont-wants/','52:fdc363102a3aea1b91f05620145a456a',801,'post','post',1,0,NULL,NULL,'Case of the Don’t Wants','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:32:00','2024-08-23 10:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-05 20:04:07','2015-01-05 20:03:32',0),(549,'https://www.monicarenata.com/is-this-love/','42:b42f7c3a73087330bf27890cd83dd6ac',816,'post','post',1,0,NULL,NULL,'Is This Love?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:32:02','2024-08-23 11:05:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-15 19:53:12','2015-01-15 19:53:12',0),(550,'https://www.monicarenata.com/freaking-fantastic/','48:3fe7819570b1393eabf3b794ba0d0dc9',694,'post','post',1,0,NULL,NULL,'Freaking Fantastic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:32:38','2024-08-23 07:36:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-29 12:27:16','2014-10-29 12:27:16',0),(551,'https://www.monicarenata.com/fruit-of-life/','43:4e6945edc2a34ae00136b558a5a2bb5d',696,'post','post',1,0,NULL,NULL,'Fruit of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:32:55','2024-08-23 07:36:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-30 01:33:05','2014-10-30 01:33:05',0),(552,'https://www.monicarenata.com/be-kind/','37:29ca145c75d9ec1d37e165bf855b20c6',626,'post','post',1,0,NULL,NULL,'Be Kind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:33:19','2024-08-23 05:53:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-02 17:37:57','2014-10-02 17:37:57',0),(553,'https://www.monicarenata.com/sitting-among-flowers/','51:8b4450cb3a901af0b1d8eed9a60214f8',692,'post','post',1,0,NULL,NULL,'Sitting Among Flowers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:33:20','2024-08-23 07:21:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-28 18:28:29','2014-10-28 18:28:29',0),(554,'https://www.monicarenata.com/stay-in-character/','47:acc96d9d8474e5003c60f192ec080c5c',698,'post','post',1,0,NULL,NULL,'Stay In Character','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:33:28','2024-08-23 07:36:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-30 13:02:46','2014-10-30 13:02:46',0),(555,'https://www.monicarenata.com/todays-and-yesterdays/','51:ceba4f91236435f9e7507115bbe93af4',646,'post','post',1,0,NULL,NULL,'Todays and Yesterdays','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:33:29','2024-08-23 06:40:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-10 18:06:23','2014-10-10 18:06:23',0),(556,'https://www.monicarenata.com/sunday-morning/','44:462580ae6e3ef948f29db442efcf6573',648,'post','post',1,0,NULL,NULL,'Sunday Morning','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:33:41','2024-08-23 06:40:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-13 13:24:56','2014-10-13 13:24:56',0),(557,'https://www.monicarenata.com/reminders/','39:c2b9880368935da5335f291069e33c16',688,'post','post',1,0,NULL,NULL,'Reminders','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:34:14','2024-08-23 07:21:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-28 00:49:55','2014-10-28 00:49:55',0),(558,'https://www.monicarenata.com/secret/','36:cdcaaf3623c3240c456321baeb22c120',621,'post','post',1,0,NULL,NULL,'Secret','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:34:20','2024-08-23 05:53:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-01 14:00:33','2014-10-01 14:00:33',0),(559,'https://www.monicarenata.com/working-on-a-project/','50:08a5276e824c1f227751e7c52c430ddb',675,'post','post',1,0,NULL,NULL,'Working on A Project','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:34:31','2024-08-23 06:55:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-20 18:12:07','2014-10-20 18:12:07',0),(560,'https://www.monicarenata.com/forever-just-you-and-me/','53:3565aaa15270f3933827180a855d8961',690,'post','post',1,0,NULL,NULL,'Forever Just You and Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:34:32','2024-08-23 07:21:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-28 01:18:33','2014-10-28 01:18:33',0),(561,'https://www.monicarenata.com/three-words/','41:a135e2551f08c8ef2ef6ab1ffd42e965',633,'post','post',1,0,NULL,NULL,'Three Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:34:43','2024-08-23 06:06:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-07 18:58:48','2014-10-07 18:58:48',0),(562,'https://www.monicarenata.com/raising-royalty-princess-queen-prince-king/','72:7148127af67d35e7b96019fcca41c5ae',652,'post','post',1,0,NULL,NULL,'Raising Royalty: Princess, Queen, Prince, King','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:35:01','2024-08-23 06:40:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-15 23:39:22','2014-10-15 18:55:08',0),(563,'https://www.monicarenata.com/spoken-words/','42:35aa957e8692ad81b9fe09b237ec76c4',668,'post','post',1,0,NULL,NULL,'Spoken Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:35:08','2024-08-23 06:55:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-20 17:49:27','2014-10-20 17:49:27',0),(564,'https://www.monicarenata.com/brave-beyond-imagine/','50:b1f01b627c38abfd480d3a10f1e413b9',1022,'post','post',1,0,NULL,NULL,'Brave Beyond Imagine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:36:10','2024-08-23 18:21:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-27 18:22:30','2015-04-27 18:22:30',0),(565,'https://www.monicarenata.com/time-stops/','40:bef60a22a87ee206e7385a44de2cd063',1015,'post','post',1,0,NULL,NULL,'Time Stops','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:36:25','2024-08-23 17:35:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-14 12:13:58','2015-04-14 12:13:58',0),(566,'https://www.monicarenata.com/flesh-you-dont-see-me/','51:6f502b17ea4f6212c465c8409e74003d',1026,'post','post',1,0,NULL,NULL,'FLESH: You don’t see me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:36:40','2024-08-23 18:37:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-30 15:53:32','2015-04-30 15:38:24',0),(567,'https://www.monicarenata.com/keep-it-to-yourself/','49:b304d3d8c31fe1fb1d7c5ae40da8febc',1001,'post','post',1,0,NULL,NULL,'Keep It To Yourself','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:36:42','2024-08-23 17:08:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-09 13:11:18','2015-04-09 13:11:18',0),(568,'https://www.monicarenata.com/if-you-want-me/','44:73e304cfbfdf91aa54674d53386ac876',998,'post','post',1,0,NULL,NULL,'If You Want Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 10:36:55','2024-08-23 17:08:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-07 13:26:23','2015-04-07 13:26:23',0),(569,'https://www.monicarenata.com/are-you-sure/','42:bad8db8a8dc1306f88cbb16a26a417ad',331,'post','post',1,0,NULL,NULL,'Are You Sure?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?fit=480%2C330&ssl=1',NULL,'544','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?fit=480%2C330&ssl=1','544','featured-image','{\"width\":480,\"height\":330,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?fit=480%2C330&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg\",\"size\":\"full\",\"id\":544,\"alt\":\"\",\"pixels\":158400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 11:04:57','2024-08-22 00:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:22','2013-04-07 14:14:00',0),(572,'https://www.monicarenata.com/everyone-is-a-winner/','50:f7c5caa7cf159707e986319fadab1bc6',264,'post','post',1,0,NULL,NULL,'Everyone Is A Winner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg?fit=250%2C183&ssl=1',NULL,'488','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg?fit=250%2C183&ssl=1','488','featured-image','{\"width\":250,\"height\":183,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg?fit=250%2C183&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/07/everyone-wins.jpg\",\"size\":\"full\",\"id\":488,\"alt\":\"\",\"pixels\":45750,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 11:26:38','2024-08-22 06:08:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:46','2013-07-15 04:05:00',0),(573,'https://www.monicarenata.com/im-glad-it-wasnt-me/','49:6fb7918ba93330f5f88eb6b65b9f1a08',295,'post','post',1,0,NULL,NULL,'I’m Glad It wasn’t me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?fit=600%2C400&ssl=1',NULL,'513','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?fit=600%2C400&ssl=1','513','featured-image','{\"width\":600,\"height\":400,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?fit=600%2C400&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/juice_tray_2.png\",\"size\":\"full\",\"id\":513,\"alt\":\"\",\"pixels\":240000,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-26 12:06:34','2024-08-22 03:36:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:07','2013-05-13 13:51:00',0),(575,'https://www.monicarenata.com/locket/','36:880ab23ffdf61a640de65a9e1344724a',1286,'post','post',1,0,NULL,NULL,'Locket','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.heartsmith.com/blog/wp-content/uploads/2012/05/IMG_20120204_22626414455-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.heartsmith.com/blog/wp-content/uploads/2012/05/IMG_20120204_22626414455-1.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 12:31:13','2024-08-24 01:52:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-07 06:26:28','2016-06-07 06:26:28',0),(577,'https://www.monicarenata.com/i-missed-the-bus/','46:e024d0d0df399476a48e0cd81962d0f5',85,'post','post',1,0,NULL,NULL,'I Missed The Bus','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png?fit=128%2C101&ssl=1',NULL,'381','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png?fit=128%2C101&ssl=1','381','featured-image','{\"width\":128,\"height\":101,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png?fit=128%2C101&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/bus_transportation_118386_tns.png\",\"size\":\"full\",\"id\":381,\"alt\":\"\",\"pixels\":12928,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-26 13:03:41','2024-08-22 21:47:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:27','2014-02-16 18:25:00',0),(579,'https://www.monicarenata.com/a-piece-of-happy/','46:8862f25192a0e606b99c25c5f535ee8b',897,'post','post',1,0,NULL,NULL,'A Piece of Happy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://4.bp.blogspot.com/-tKc31N9O6x4/UaaU0aFCFxI/AAAAAAAACvU/eUjCcdo8AJI/s1600/Banner1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://4.bp.blogspot.com/-tKc31N9O6x4/UaaU0aFCFxI/AAAAAAAACvU/eUjCcdo8AJI/s1600/Banner1.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 13:06:48','2024-08-23 13:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 15:53:28','2015-02-09 15:53:28',0),(583,'https://www.monicarenata.com/breakdown/','39:14cec4f3b4a608dd6fc7760a6d444cad',153,'post','post',1,0,NULL,NULL,'Breakdown','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi',NULL,NULL,'first-content-image',NULL,NULL,'http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 13:51:43','2024-08-22 15:51:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:15','2013-11-26 19:17:00',0),(584,'https://www.monicarenata.com/the-conversation/','46:b340e363c66c09bf08aaa86bfde6ecb3',166,'post','post',1,0,NULL,NULL,'The Conversation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 14:24:59','2024-08-22 14:39:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:24','2013-11-22 18:40:00',0),(586,'https://www.monicarenata.com/no-longer-disappointed/','52:639dc39b79137ec79836a5499fc10167',888,'post','post',1,0,NULL,NULL,'No Longer Disappointed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 14:46:04','2024-08-23 13:14:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-08 23:44:24','2015-02-08 23:44:24',0),(587,'https://www.monicarenata.com/blackhole/','39:66dca3125147246233ee748ed722fde7',1156,'post','post',1,0,NULL,NULL,'BlackHole','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 14:47:45','2024-08-23 22:35:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 02:09:46','2015-10-29 02:09:46',0),(588,'https://www.monicarenata.com/cigar-man/','39:6782729d42e0a2d44e21b81e79671be2',1158,'post','post',1,0,NULL,NULL,'Cigar Man','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 14:47:47','2024-08-23 22:35:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 02:25:22','2015-10-29 02:25:22',0),(589,'https://www.monicarenata.com/paper-pusher/','42:b67b5d9c3d6cfcb7d7f93225f0580010',1683,'post','post',1,0,NULL,NULL,'Paper Pusher','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://thebackbencher.co.uk/wp-content/uploads/2013/04/Money-no-enough-525x250.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://thebackbencher.co.uk/wp-content/uploads/2013/04/Money-no-enough-525x250.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 14:51:24','2024-08-24 07:40:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-12 04:55:42','2017-06-12 04:55:42',0),(590,'https://www.monicarenata.com/late-night-truths/','47:c8cd928aaeb12d2fb9834fcf1a61ce02',1679,'post','post',1,0,NULL,NULL,'Late Night Truths','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 14:51:26','2024-08-24 07:09:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-12 04:52:30','2017-06-12 04:52:30',0),(592,'https://www.monicarenata.com/you-said-you-would-start-tomorrow/','63:e89d9881d9ba77d8f9b895bfe072e18c',261,'post','post',1,0,NULL,NULL,'You Said You would start tomorrow','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?fit=460%2C150&ssl=1',NULL,'486','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?fit=460%2C150&ssl=1','486','featured-image','{\"width\":460,\"height\":150,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?fit=460%2C150&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg\",\"size\":\"full\",\"id\":486,\"alt\":\"\",\"pixels\":69000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 14:53:16','2024-08-22 06:28:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:42','2013-07-30 00:25:00',0),(593,'https://www.monicarenata.com/random-photos/','43:422d93f073263a57eb9400b590e03ada',1755,'post','post',1,0,NULL,NULL,'Random Photos','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download',NULL,NULL,'first-content-image',NULL,NULL,'http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 14:53:54','2024-08-24 08:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-11-06 05:25:23','2017-11-06 05:25:23',0),(597,'https://www.monicarenata.com/everyone-else/','43:4b69a3bc53cf795ea5785448ae8496a1',241,'post','post',1,0,NULL,NULL,'Everyone Else','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?fit=450%2C621&ssl=1',NULL,'470','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?fit=450%2C621&ssl=1','470','featured-image','{\"width\":450,\"height\":621,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?fit=450%2C621&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":279450,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 16:12:32','2024-08-22 08:08:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:27','2013-09-21 23:37:00',0),(599,'https://www.monicarenata.com/you-dont-know-me/','46:6a096567d80c796c0b865c459417ac72',1324,'post','post',1,0,NULL,NULL,'You Don’t Know Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02',NULL,NULL,'first-content-image',NULL,NULL,'https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 17:14:57','2024-08-24 03:23:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-31 00:15:58','2016-07-31 00:15:58',0),(600,'https://www.monicarenata.com/the-night-knows-me-well/','53:58926f769e233fafde23e40fc7580591',1135,'post','post',1,0,NULL,NULL,'The Night Knows Me Well','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 17:15:34','2024-08-23 21:51:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-22 12:34:14','2015-10-22 12:34:14',0),(601,'https://www.monicarenata.com/my-heart-used-to-beat-for-you/','59:227101dfe121ec0d161db2543eb4cd56',1150,'post','post',1,0,NULL,NULL,'My Heart Used to Beat For You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 17:15:51','2024-08-23 22:20:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 00:49:21','2015-10-29 00:49:21',0),(602,'https://www.monicarenata.com/that-moment/','41:c9d3be3f998f638524f2f92554c1896f',224,'post','post',1,0,NULL,NULL,'That Moment','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?fit=600%2C437&ssl=1',NULL,'460','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?fit=600%2C437&ssl=1','460','featured-image','{\"width\":600,\"height\":437,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?fit=600%2C437&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg\",\"size\":\"full\",\"id\":460,\"alt\":\"\",\"pixels\":262200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 17:21:13','2024-08-22 09:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:16','2013-10-29 22:49:00',0),(603,'https://www.monicarenata.com/late-day/','38:7550214f6efa43f41c38dd8895ebab9a',1676,'post','post',1,0,NULL,NULL,'Late Day','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://40.media.tumblr.com/5fb7f6d6155e123107ab0e9ef78a1f5f/tumblr_nxgq87zD2J1r7eta3o1_500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://40.media.tumblr.com/5fb7f6d6155e123107ab0e9ef78a1f5f/tumblr_nxgq87zD2J1r7eta3o1_500.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-26 17:52:29','2024-08-24 07:09:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-12 04:40:24','2017-06-12 04:40:24',0),(604,'https://www.monicarenata.com/the-reality-of-a-loss/','51:2ed45990e14091c2564c3d90d4bc24dc',334,'post','post',1,0,NULL,NULL,'The Reality of a Loss','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?fit=403%2C375&ssl=1',NULL,'547','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?fit=403%2C375&ssl=1','547','featured-image','{\"width\":403,\"height\":375,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?fit=403%2C375&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg\",\"size\":\"full\",\"id\":547,\"alt\":\"\",\"pixels\":151125,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 18:21:21','2024-08-22 00:21:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:22','2013-04-05 12:33:00',0),(606,'https://www.monicarenata.com/how/','33:de7327a8ccfbbd0dae92351a26f81ded',170,'post','post',1,0,NULL,NULL,'How','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 20:24:59','2024-08-22 14:12:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:26','2013-11-22 01:35:00',0),(607,'https://www.monicarenata.com/who-are-you/','41:ebefe3ce195e096f99e165e765d58314',161,'post','post',1,0,NULL,NULL,'Who Are You?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?fit=423%2C335&ssl=1',NULL,'420','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?fit=423%2C335&ssl=1','420','featured-image','{\"width\":423,\"height\":335,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?fit=423%2C335&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg\",\"size\":\"full\",\"id\":420,\"alt\":\"\",\"pixels\":141705,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-26 21:30:46','2024-08-22 15:01:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:22','2013-11-24 23:01:00',0),(608,'https://www.monicarenata.com/all-or-nothing/','44:7fe90af9b20bb319158c23e4c2d399f5',923,'post','post',1,0,NULL,NULL,'All Or Nothing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-26 21:52:57','2024-08-23 15:00:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 15:06:58','2015-02-13 15:06:58',0),(609,'https://www.monicarenata.com/happiness-is-you/','46:9e726489b1973a080c90be0808e69ce4',260,'post','post',1,0,NULL,NULL,'Happiness is You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?fit=716%2C768&ssl=1',NULL,'485','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?fit=716%2C768&ssl=1','485','featured-image','{\"width\":716,\"height\":768,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?fit=716%2C768&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg\",\"size\":\"full\",\"id\":485,\"alt\":\"\",\"pixels\":549888,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 00:24:31','2024-08-22 06:28:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:41','2013-08-04 15:26:00',0),(610,'https://www.monicarenata.com/afraid-to-have-feelings/','53:42b8d8c7b79958abba904adc6d1cdf92',1005,'post','post',1,0,NULL,NULL,'Afraid To Have Feelings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 00:25:45','2024-08-23 17:22:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-09 15:53:55','2015-04-09 15:53:55',0),(611,'https://www.monicarenata.com/isnt-it-funny-tables-turned/','57:fc722a0d58e246416d539178c77f376c',1281,'post','post',1,0,NULL,NULL,'Isn’t It Funny: Tables Turned','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 00:36:22','2024-08-24 01:37:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-26 17:51:45','2016-04-26 17:51:45',0),(612,'https://www.monicarenata.com/i-found-me/','40:1c2d0cccbc4ea8e3647cb0d34e2a1ecf',979,'post','post',1,0,NULL,NULL,'I Found Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 01:18:49','2024-08-23 16:37:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-13 13:55:23','2015-03-13 13:54:08',0),(613,'https://www.monicarenata.com/the-house/','39:cad8d50dffb5148f5124cbe5e2e0b0a1',237,'post','post',1,0,NULL,NULL,'The House','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?fit=1350%2C900&ssl=1',NULL,'468','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?fit=1350%2C900&ssl=1','468','featured-image','{\"width\":1350,\"height\":900,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?fit=1350%2C900&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg\",\"size\":\"full\",\"id\":468,\"alt\":\"\",\"pixels\":1215000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 01:54:19','2024-08-22 08:23:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:24','2013-09-29 06:55:00',0),(615,'https://www.monicarenata.com/i-understand-the-lyrics/','53:1356690dd57c21fadac2fc6c4e30a56f',990,'post','post',1,0,NULL,NULL,'I Understand the Lyrics','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 02:17:22','2024-08-23 16:51:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-07 04:30:29','2015-04-07 04:14:18',0),(616,'https://www.monicarenata.com/at-the-top-of-the-mountain/','56:4b3e3a20eb41920253a32450e64ba495',899,'post','post',1,0,NULL,NULL,'At The Top Of The Mountain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 05:01:09','2024-08-23 13:55:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 16:09:39','2015-02-09 16:09:39',0),(617,'https://www.monicarenata.com/easy-breathe-arent-underwater/','59:a4955dcfde1ffda98cfda859618b3554',1639,'post','post',1,0,NULL,NULL,'It’s Easy To Breathe If You Aren’t Underwater','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg?fit=500%2C374&ssl=1',NULL,'1640','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg?fit=500%2C374&ssl=1','1640','featured-image','{\"width\":500,\"height\":374,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/under-water-2.jpg?fit=500%2C374&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/04/under-water-2.jpg\",\"size\":\"full\",\"id\":1640,\"alt\":\"\",\"pixels\":187000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 05:17:36','2024-08-24 06:21:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-25 02:06:32','2017-04-25 02:06:32',0),(618,'https://www.monicarenata.com/unseeable-descent/','47:cc50f01d098ac038b9dcde4d774dfaf7',1816,'post','post',1,0,NULL,NULL,'Unseeable Descent','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9',NULL,NULL,'first-content-image',NULL,NULL,'https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-27 05:45:08','2024-08-24 09:50:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-08-21 18:43:36','2019-08-19 14:10:16',0),(619,'https://www.monicarenata.com/overlooked-birth/','46:ac15a871709654b91f5f0eb9d8b4d1f8',42,'post','post',1,0,NULL,NULL,'Overlooked Birth','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-27 08:31:37','2024-08-23 01:20:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-23 15:47:00',0),(620,'https://www.monicarenata.com/florescent-lights/','47:7e489e0d2f7b6e02bab0bd1f9403f5ba',1132,'post','post',1,0,NULL,NULL,'Florescent Lights','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 08:36:27','2024-08-23 21:51:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-14 16:49:21','2015-10-14 16:49:21',0),(621,'https://www.monicarenata.com/combination/','41:c9b4d2d8bddafd6a04aef9643310566a',1154,'post','post',1,0,NULL,NULL,'Combination','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 11:25:26','2024-08-23 22:35:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 00:53:26','2015-10-29 00:53:26',0),(622,'https://www.monicarenata.com/have-you-ever-been-afraid-to-be-happy/','67:c20ebbe225097ce9f6fb17532cf2dc87',1280,'post','post',1,0,NULL,NULL,'Have You Ever Been Afraid To Be Happy?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 13:58:44','2024-08-24 01:37:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-14 17:30:40','2016-04-14 17:30:40',0),(623,'https://www.monicarenata.com/bittersweet/','41:40ae34a80daa3b81551d1eb2bc120687',1162,'post','post',1,0,NULL,NULL,'Bittersweet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 14:00:04','2024-08-23 22:52:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 04:45:05','2015-10-29 04:45:05',0),(625,'https://www.monicarenata.com/rain-rain/','39:ab1bbb34c4c86980a4f8f6749feb624b',258,'post','post',1,0,NULL,NULL,'Rain Rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-27 18:33:14','2024-08-22 06:40:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:39','2013-08-08 23:04:00',0),(626,'https://www.monicarenata.com/clown/','35:eea29a0bd21aad5e0c45308693655e08',1164,'post','post',1,0,NULL,NULL,'Clown','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 18:33:38','2024-08-23 22:52:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 04:51:40','2015-10-29 04:51:40',0),(627,'https://www.monicarenata.com/battling-miss-t/','45:f521dfc7ff3fcebcf60d323971bdf47a',1278,'post','post',1,0,NULL,NULL,'Battling Miss T','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 18:34:31','2024-08-24 01:37:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-12 13:33:55','2016-04-12 13:30:24',0),(628,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-27 20:36:41','2024-07-28 02:36:41',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(629,'https://www.monicarenata.com/the-giving-tree/','45:eeb5b112502f8813f396c7bdd43d9619',125,'post','post',1,0,NULL,NULL,'The Giving Tree','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?fit=600%2C693&ssl=1',NULL,'405','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?fit=600%2C693&ssl=1','405','featured-image','{\"width\":600,\"height\":693,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?fit=600%2C693&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg\",\"size\":\"full\",\"id\":405,\"alt\":\"\",\"pixels\":415800,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 21:47:06','2024-08-22 18:25:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:02','2013-12-18 20:25:00',0),(630,'https://www.monicarenata.com/mirror-mirror/','43:483385cccd263932f1a30371ccbf604f',255,'post','post',1,0,NULL,NULL,'Mirror Mirror','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?fit=900%2C1350&ssl=1',NULL,'481','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?fit=900%2C1350&ssl=1','481','featured-image','{\"width\":900,\"height\":1350,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?fit=900%2C1350&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg\",\"size\":\"full\",\"id\":481,\"alt\":\"\",\"pixels\":1215000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 22:17:36','2024-08-22 06:52:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:38','2013-08-25 11:23:00',0),(631,'https://www.monicarenata.com/the-awkward-butterfly/','51:aa10632651d3c7b4c97574ba14bd5dad',256,'post','post',1,0,NULL,NULL,'The Awkward Butterfly','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?fit=644%2C1024&ssl=1',NULL,'482','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?fit=644%2C1024&ssl=1','482','featured-image','{\"width\":644,\"height\":1024,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?fit=644%2C1024&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg\",\"size\":\"full\",\"id\":482,\"alt\":\"\",\"pixels\":659456,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 23:07:11','2024-08-22 06:52:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:39','2013-08-23 02:54:00',0),(632,'https://www.monicarenata.com/these-feelings/','44:e0a066dd40cab5b670dc7560f6c4d825',330,'post','post',1,0,NULL,NULL,'These Feelings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?fit=500%2C375&ssl=1',NULL,'543','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?fit=500%2C375&ssl=1','543','featured-image','{\"width\":500,\"height\":375,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?fit=500%2C375&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg\",\"size\":\"full\",\"id\":543,\"alt\":\"\",\"pixels\":187500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-27 23:07:59','2024-08-22 00:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:22','2013-04-07 14:25:00',0),(633,'https://www.monicarenata.com/sitting-in-a-box/','46:1a8fe0cf317c807a194f46aed4442f84',1275,'post','post',1,0,NULL,NULL,'Sitting In a Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 23:11:12','2024-08-24 01:22:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-04-07 13:20:12','2016-04-07 13:10:44',0),(634,'https://www.monicarenata.com/the-art-of-persuasion/','51:a38e1ac1c3262290943774c9d6d38b0b',1483,'post','post',1,0,NULL,NULL,'The Art of Persuasion','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://content.artofmanliness.com/uploads/2010/11/cicero.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://content.artofmanliness.com/uploads/2010/11/cicero.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-27 23:11:21','2024-08-24 04:53:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-13 22:07:29','2017-02-13 22:07:29',0),(635,'https://www.monicarenata.com/one-day-youll-love-me/','51:ad8f188c4eb850ce430be664949b8b61',1166,'post','post',1,0,NULL,NULL,'One Day You’ll Love Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-27 23:11:57','2024-08-23 23:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-29 05:12:16','2015-10-29 05:12:16',0),(636,'https://www.monicarenata.com/patience-is-a-virtue/','50:c3c0a218c32900743fd9b8d1128ccfb4',38,'post','post',1,0,NULL,NULL,'Patience is a Virtue','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-27 23:35:55','2024-08-23 02:16:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-04-30 17:49:00',0),(637,'https://www.monicarenata.com/i-have-been-thinking/','50:f9b6a79222f0696c3ab76784b75a6399',12,'post','post',1,0,NULL,NULL,'I Have Been Thinking','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-28 00:33:36','2024-08-23 04:05:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-25 18:53:00',0),(638,'https://www.monicarenata.com/just-live/','39:224d72d5d8513ae9a4cf8f03e7822af7',347,'post','post',1,0,NULL,NULL,'Just LIVE!!!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?fit=1024%2C768&ssl=1',NULL,'560','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?fit=1024%2C768&ssl=1','560','featured-image','{\"width\":1024,\"height\":768,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?fit=1024%2C768&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg\",\"size\":\"full\",\"id\":560,\"alt\":\"\",\"pixels\":786432,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-28 01:37:30','2024-08-21 23:23:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2013-04-01 15:04:00',0),(639,'https://www.monicarenata.com/roots/','35:25a501fa391bf8e0e6439503ba718fd2',1665,'post','post',1,0,NULL,NULL,'Roots','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-28 03:46:08','2024-08-24 06:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-05-31 13:26:14','2017-05-31 13:26:14',0),(640,'https://www.monicarenata.com/best-friend-best-friend/','53:4cc14b3778855bce82a4efbcaa976ca9',1171,'post','post',1,0,NULL,NULL,'Best Friend, Best Friend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-28 03:46:29','2024-08-23 23:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-30 03:37:56','2015-10-30 03:37:56',0),(641,'https://www.monicarenata.com/cold-as-ice/','41:3756bafb504b8fbf2faf7c3c1935810b',1488,'post','post',1,0,NULL,NULL,'Cold As Ice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'http://img14.deviantart.net/4e0d/i/2008/041/6/b/harsh_words_by_xr3drum.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://img14.deviantart.net/4e0d/i/2008/041/6/b/harsh_words_by_xr3drum.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-28 03:47:01','2024-08-24 04:53:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-02-15 19:18:46','2017-02-15 18:49:05',0),(643,'https://www.monicarenata.com/lost-heart/','40:574de2ceeecf3444eee54ea55e61cf4a',93,'post','post',1,0,NULL,NULL,'Lost Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?fit=400%2C300&ssl=1',NULL,'388','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?fit=400%2C300&ssl=1','388','featured-image','{\"width\":400,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?fit=400%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/broken-heart.jpg\",\"size\":\"full\",\"id\":388,\"alt\":\"\",\"pixels\":120000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-28 04:47:23','2024-08-22 20:52:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:31','2014-02-08 23:43:00',0),(644,'https://www.monicarenata.com/my-color-friend/','45:a6199ea7d95fa1ecf05e69f466f43d15',1654,'post','post',1,0,NULL,NULL,'My Color Friend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg?fit=956%2C537&ssl=1',NULL,'1655','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg?fit=956%2C537&ssl=1','1655','featured-image','{\"width\":956,\"height\":537,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg?fit=956%2C537&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/05/Black-White-Friend.jpg\",\"size\":\"full\",\"id\":1655,\"alt\":\"\",\"pixels\":513372,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-28 08:16:19','2024-08-24 06:36:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-05-27 10:55:54','2017-05-27 10:55:54',0),(645,'https://www.monicarenata.com/set-you-free/','42:463f7a84e7139b0c394890a763037e2c',678,'post','post',1,0,NULL,NULL,'Set You Free','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-28 12:04:35','2024-08-23 06:55:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-21 14:34:15','2014-10-21 14:34:15',0),(646,'https://www.monicarenata.com/the-remedy-is-me/','46:e12076d4df07aab276884b8b29f72e2f',254,'post','post',1,0,NULL,NULL,'The Remedy Is Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-28 12:36:53','2024-08-22 06:52:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:38','2013-08-25 13:39:00',0),(647,'https://www.monicarenata.com/time-how-much-do-you-really-have/','62:58dc88294d34eecee8e0cc80eff802f5',64,'post','post',1,0,NULL,NULL,'Time: How much do you really have?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-28 12:55:48','2024-08-22 23:30:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:33','2014-03-18 15:37:00',0),(649,'https://www.monicarenata.com/i-will-not-fall-in-love/','53:b9e6be13436931871e2daa2f4ea0ab42',770,'post','post',1,0,NULL,NULL,'I Will Not Fall in Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-28 23:48:37','2024-08-23 09:36:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-19 16:11:27','2014-12-19 16:11:27',0),(650,'https://www.monicarenata.com/afterthought/','42:24b98011cf49f880f49f2ad0d5498970',1095,'post','post',1,0,NULL,NULL,'Afterthought','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-29 00:21:03','2024-08-23 20:50:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-01 17:29:43','2015-08-31 13:28:28',0),(651,'https://www.monicarenata.com/inordinate-contemplation/','54:b2546192c4d58b0314a6713a7edc98ab',1368,'post','post',1,0,NULL,NULL,'Inordinate Contemplation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2016/12/fall-300x252.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-29 04:38:23','2024-08-24 04:12:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-03 17:21:00','2016-12-03 17:20:03',0),(654,'https://www.monicarenata.com/beautiful-lies/','44:ab7cda1e0ec05591f28d4ec8191e8617',20,'post','post',1,0,NULL,NULL,'Beautiful Lies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-29 10:30:30','2024-08-23 03:37:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:29','2014-06-11 18:18:00',0),(655,'https://www.monicarenata.com/mornings-come/','43:070561c260847a6331ce8b11c9da5cd7',252,'post','post',1,0,NULL,NULL,'Mornings Come','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi',NULL,NULL,'first-content-image',NULL,NULL,'http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-29 12:24:23','2024-08-22 07:10:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:36','2013-08-26 11:25:00',0),(656,'https://www.monicarenata.com/eye-for-an-eye/','44:e575f074935c729b412b5ac2262cb3a8',263,'post','post',1,0,NULL,NULL,'Eye for an Eye','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-29 13:13:36','2024-08-22 06:08:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:45','2013-07-15 13:18:00',0),(658,'https://www.monicarenata.com/as-i-lay/','38:5a9229297b131614bbf833c3aa0645e9',180,'post','post',1,0,NULL,NULL,'As I Lay','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-29 19:13:29','2024-08-22 13:30:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:36','2013-11-19 13:05:00',0),(660,'https://www.monicarenata.com/thank-you-for-hurting-me/','54:e604f7a6f32f5e146c75d5eee1148fda',983,'post','post',1,0,NULL,NULL,'Thank You For Hurting Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 00:43:00','2024-08-23 16:37:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-13 14:36:56','2015-03-13 14:36:56',0),(661,'https://www.monicarenata.com/keep-going-on/','43:3d400f22fec2490466b4505cfe89a76e',1851,'post','post',1,0,NULL,NULL,'Keep Going On','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 02:40:02','2024-08-24 10:05:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-11-15 15:31:12','2020-11-15 15:31:12',0),(662,'https://www.monicarenata.com/sammy-storm/','41:88d9f92179bb26c92281e10ed87851c7',945,'post','post',1,0,NULL,NULL,'Sammy Storm','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 03:45:54','2024-08-23 15:38:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-18 18:12:42','2015-02-18 15:14:17',0),(663,'https://www.monicarenata.com/the-homecoming/','44:644125ddd896b3e9abb10e4f69cd3b32',194,'post','post',1,0,NULL,NULL,'The Homecoming','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?fit=570%2C200&ssl=1',NULL,'439','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?fit=570%2C200&ssl=1','439','featured-image','{\"width\":570,\"height\":200,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?fit=570%2C200&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg\",\"size\":\"full\",\"id\":439,\"alt\":\"\",\"pixels\":114000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-30 04:44:26','2024-08-22 12:09:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:53','2013-11-13 23:33:00',0),(664,'https://www.monicarenata.com/look-and-you-shall-find/','53:ecab7fb8e31d0bab3e873e8997ec33d9',1259,'post','post',1,0,NULL,NULL,'Look And You Shall Find','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2016/03/Screenshot_20160810-111425.jpg?fit=1438%2C1402&ssl=1',NULL,'1343','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2016/03/Screenshot_20160810-111425.jpg?fit=1438%2C1402&ssl=1','1343','featured-image','{\"width\":1438,\"height\":1402,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2016/03/Screenshot_20160810-111425.jpg?fit=1438%2C1402&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2016/03/Screenshot_20160810-111425.jpg\",\"size\":\"full\",\"id\":1343,\"alt\":\"\",\"pixels\":2016076,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-30 08:34:37','2024-08-24 00:53:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-08-10 16:21:26','2016-03-31 12:09:08',0),(665,'https://www.monicarenata.com/before-you-touched-me/','51:0679665b53e7ef97f3ef2f8341c5f4d2',1392,'post','post',1,0,NULL,NULL,'Before You Touched Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-30 11:36:31','2024-08-24 04:23:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-09 15:54:49','2016-12-09 14:41:18',0),(666,'https://www.monicarenata.com/money-money-money/','47:525b21523aa8ef1629b9772443a754d9',208,'post','post',1,0,NULL,NULL,'Money, Money, Money','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?fit=610%2C350&ssl=1',NULL,'450','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?fit=610%2C350&ssl=1','450','featured-image','{\"width\":610,\"height\":350,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?fit=610%2C350&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg\",\"size\":\"full\",\"id\":450,\"alt\":\"\",\"pixels\":213500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-30 11:54:12','2024-08-22 11:07:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:05','2013-11-08 15:35:00',0),(667,'https://www.monicarenata.com/paper-people/','42:c5d5d197dff9dff00f1999c4bce78859',81,'post','post',1,0,NULL,NULL,'Paper People','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-30 12:07:07','2024-08-22 21:54:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:17:06','2014-02-17 17:40:00',0),(668,'https://www.monicarenata.com/cliche-love-poem/','46:aea7b9634c8279db5b0508a7c3bfb3cd',87,'post','post',1,0,NULL,NULL,'Cliche Love Poem','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 12:08:33','2024-08-22 21:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:29','2014-02-12 23:39:00',0),(669,'https://www.monicarenata.com/band-aid/','38:957dbe0185e163624be427724db0834a',1046,'post','post',1,0,NULL,NULL,'Band-Aid','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 14:12:54','2024-08-23 19:09:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-09 15:29:51','2015-06-09 15:29:51',0),(670,'https://www.monicarenata.com/delete/','36:a2d7edb112f4eb572b7adb5f067735bb',232,'post','post',1,0,NULL,NULL,'Delete','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-30 15:50:53','2024-08-22 09:00:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:20','2013-10-15 03:28:00',0),(671,'https://www.monicarenata.com/the-bricks-they-shall-throw/','57:e31944da5135d388ea23ca0ba40bd3ba',70,'post','post',1,0,NULL,NULL,'The Bricks They Shall Throw','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-30 17:52:41','2024-08-22 22:59:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:59','2014-02-28 15:37:00',0),(673,'https://www.monicarenata.com/the-collection/','44:77e6de9825aa0bb8ce015a54e40d3921',205,'post','post',1,0,NULL,NULL,'The Collection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?fit=900%2C557&ssl=1',NULL,'447','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?fit=900%2C557&ssl=1','447','featured-image','{\"width\":900,\"height\":557,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?fit=900%2C557&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg\",\"size\":\"full\",\"id\":447,\"alt\":\"\",\"pixels\":501300,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-30 19:23:46','2024-08-22 11:24:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:01','2013-11-11 01:49:00',0),(674,'https://www.monicarenata.com/thanks-for-believing-in-me/','56:04cc617e89b0d4bfc9952edbfe6f8e66',18,'post','post',1,0,NULL,NULL,'Thanks For Believing in Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-07-30 22:53:18','2024-08-23 03:37:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-20 17:48:00',0),(675,'https://www.monicarenata.com/learn-to-listen-listen-to-learn/','61:04dccd5555b8f2e24b3ab7723efa50e4',213,'post','post',1,0,NULL,NULL,'Learn To Listen = Listen to Learn','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?fit=350%2C253&ssl=1',NULL,'453','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?fit=350%2C253&ssl=1','453','featured-image','{\"width\":350,\"height\":253,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?fit=350%2C253&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/listening.jpg\",\"size\":\"full\",\"id\":453,\"alt\":\"\",\"pixels\":88550,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-31 02:57:31','2024-08-22 10:42:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:07','2013-11-06 15:36:00',0),(676,'https://www.monicarenata.com/the-cauldron-of-deceit/','52:d8f6242bcac82b604a73bd7f62ef3b5f',611,'post','post',1,0,NULL,NULL,'The Cauldron of Deceit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-31 05:09:44','2024-08-23 05:41:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-28 13:50:11','2014-08-28 13:50:10',0),(677,'https://www.monicarenata.com/again/','35:a71de8c9622161c9bac512eb0fb620bf',181,'post','post',1,0,NULL,NULL,'Again','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1',NULL,NULL,'first-content-image',NULL,NULL,'http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-31 05:40:43','2024-08-22 13:30:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:36','2013-11-18 19:45:00',0),(678,'https://www.monicarenata.com/the-mind-is-a-beautiful-thing/','59:9c76d6ed193525d4302de73049950b07',776,'post','post',1,0,NULL,NULL,'The Mind is A Beautiful Thing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-31 08:42:55','2024-08-23 09:53:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-22 16:37:15','2014-12-22 16:37:15',0),(679,'https://www.monicarenata.com/the-climb/','39:dfe17a39014f2efbd49d68657394c635',202,'post','post',1,0,NULL,NULL,'The Climb','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-07-31 10:38:47','2024-08-22 11:45:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:59','2013-11-11 13:22:00',0),(680,'https://www.monicarenata.com/constructive-criticism/','52:99f5d7a1694f0c16ec2f9cb1ecf3628f',192,'post','post',1,0,NULL,NULL,'Constructive Criticism','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-31 10:43:26','2024-08-22 12:26:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:52','2013-11-14 15:49:00',0),(681,'https://www.monicarenata.com/i-could-say-i-miss-you/','52:04ff0856f97b96d9a05ca9dccaaad60c',207,'post','post',1,0,NULL,NULL,'I could say I miss you','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?fit=520%2C418&ssl=1',NULL,'449','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?fit=520%2C418&ssl=1','449','featured-image','{\"width\":520,\"height\":418,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?fit=520%2C418&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/miss-you-056.jpg\",\"size\":\"full\",\"id\":449,\"alt\":\"\",\"pixels\":217360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-31 12:25:07','2024-08-22 11:07:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:04','2013-11-09 04:17:00',0),(682,'https://www.monicarenata.com/simplicity/','40:f4d0a56a49b104c6594f2c91ffcfa264',872,'post','post',1,0,NULL,NULL,'Simplicity','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-31 13:18:19','2024-08-23 12:38:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-03 12:25:24','2015-02-03 12:25:24',0),(683,'https://www.monicarenata.com/reign/','35:35aaa15123c80dd79fa87e97b1131c8c',970,'post','post',1,0,NULL,NULL,'Reign','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-31 18:29:23','2024-08-23 16:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-10 12:18:01','2015-03-10 12:18:01',0),(684,'https://www.monicarenata.com/the-life/','38:3caaf43c840697260bdce1cf6af9ac4a',210,'post','post',1,0,NULL,NULL,'The Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?fit=1096%2C855&ssl=1',NULL,'452','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?fit=1096%2C855&ssl=1','452','featured-image','{\"width\":1096,\"height\":855,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?fit=1096%2C855&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg\",\"size\":\"full\",\"id\":452,\"alt\":\"\",\"pixels\":937080,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-31 19:11:10','2024-08-22 10:51:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:06','2013-11-07 22:08:00',0),(686,'https://www.monicarenata.com/woman/','35:9dcc49fd521334fc99364894de1e72b8',1112,'post','post',1,0,NULL,NULL,'Woman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 02:38:47','2024-08-23 21:23:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-28 12:51:10','2015-09-28 12:51:10',0),(688,'https://www.monicarenata.com/the-decision-should-i-stay-or-should-i-leave/','74:16e1b7f437d528282af98ced55249875',1295,'post','post',1,0,NULL,NULL,'The Decision: Should I Stay or Should I Leave','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 04:13:34','2024-08-24 02:31:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-22 14:32:30','2016-06-22 14:32:30',0),(689,'https://www.monicarenata.com/the-thrill-is-gone/','48:0044d7307310a25bc01a90178bddd82b',32,'post','post',1,0,NULL,NULL,'The Thrill is Gone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?fit=467%2C406&ssl=1',NULL,'356','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?fit=467%2C406&ssl=1','356','featured-image','{\"width\":467,\"height\":406,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?fit=467%2C406&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg\",\"size\":\"full\",\"id\":356,\"alt\":\"\",\"pixels\":189602,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-08-01 04:20:51','2024-08-23 02:37:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-20 12:30:00',0),(691,'https://www.monicarenata.com/hi-my-name-is-lovely/','50:f526ad68ff69d85be2fdc692783dea09',1062,'post','post',1,0,NULL,NULL,'Hi, My Name Is Lovely','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 05:29:31','2024-08-23 19:40:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-07-28 15:26:50','2015-07-28 15:26:50',0),(692,'https://www.monicarenata.com/what-was-it-like-to-lose-you/','58:9164367a3108369788e23fbcc0b4d963',752,'post','post',1,0,NULL,NULL,'What was it like to lose you?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 06:30:06','2024-08-23 08:57:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-10 14:32:57','2014-12-10 14:31:29',0),(693,'https://www.monicarenata.com/candles/','37:d8f39699b6896b95831b130001b3fef0',1037,'post','post',1,0,NULL,NULL,'Candles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 10:13:58','2024-08-23 18:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-05-26 15:16:50','2015-05-26 15:16:50',0),(694,'https://www.monicarenata.com/grow/','34:92e888ce06650ce8905584ae573d1b3a',1321,'post','post',1,0,NULL,NULL,'Grow','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.soulseeds.com/wp-content/uploads/2013/05/plant-heart.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.soulseeds.com/wp-content/uploads/2013/05/plant-heart.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-01 12:08:10','2024-08-24 03:16:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-25 18:21:44','2016-07-25 18:21:44',0),(695,'https://www.monicarenata.com/absense/','37:dc9fbd4fb724d84819a2038de6d1d7f2',941,'post','post',1,0,NULL,NULL,'Absense','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 14:14:16','2024-08-23 15:24:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-17 21:52:21','2015-02-17 21:52:21',0),(696,'https://www.monicarenata.com/never-leave-you-lonely/','52:e3fd3e346def16a1c2dec70b92b6fb77',238,'post','post',1,0,NULL,NULL,'Never Leave You Lonely','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-01 17:19:04','2024-08-22 08:23:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:24','2013-09-29 05:40:00',0),(697,'https://www.monicarenata.com/hate-an-unneccessary-burden/','57:b3eca51823641739af26cf30de0552be',211,'post','post',1,0,NULL,NULL,'HATE…….An Unneccessary Burden','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 18:52:39','2024-08-22 10:51:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:06','2013-11-07 14:04:00',0),(698,'https://www.monicarenata.com/cant-bring-me-down/','48:5727809afcb7a765f5b06c11e6a677ea',215,'post','post',1,0,NULL,NULL,'Can’t Bring Me Down','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 18:55:31','2024-08-22 10:25:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:07','2013-11-06 02:48:00',0),(699,'https://www.monicarenata.com/never-change-for-others-only-change-for-yourself/','78:5ea545251010da2999886adc5c4cae3b',223,'post','post',1,0,NULL,NULL,'Never change for others, Only change for YOURSELF.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?fit=500%2C500&ssl=1',NULL,'459','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?fit=500%2C500&ssl=1','459','featured-image','{\"width\":500,\"height\":500,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?fit=500%2C500&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg\",\"size\":\"full\",\"id\":459,\"alt\":\"\",\"pixels\":250000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 20:09:37','2024-08-22 09:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:14','2013-10-31 01:08:00',0),(700,'https://www.monicarenata.com/a-new-truth-just-something-on-my-mind/','67:cdde74e6b4f509404e7c229641b068c9',212,'post','post',1,0,NULL,NULL,'A New Truth {Just Something on my Mind}','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-01 20:27:48','2024-08-22 10:42:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:06','2013-11-07 12:21:00',0),(701,'https://www.monicarenata.com/winter-comes/','42:e3d096a2d2019a28eb7d25f613adad4a',219,'post','post',1,0,NULL,NULL,'Winter Comes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?fit=860%2C576&ssl=1',NULL,'457','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?fit=860%2C576&ssl=1','457','featured-image','{\"width\":860,\"height\":576,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?fit=860%2C576&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg\",\"size\":\"full\",\"id\":457,\"alt\":\"\",\"pixels\":495360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 21:13:57','2024-08-22 10:08:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:12','2013-11-04 01:05:00',0),(702,'https://www.monicarenata.com/thanks-for-being-a-great-friend/','61:9ff9d6c6f4beb6b08da9782647e54367',21,'post','post',1,0,NULL,NULL,'Thanks for Being A Great Friend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-01 22:32:54','2024-08-23 03:35:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:30','2014-06-11 12:20:00',0),(703,'https://www.monicarenata.com/patience/','38:cac26f33bfa4fda7c555ae58a7d35928',235,'post','post',1,0,NULL,NULL,'Patience','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20',NULL,NULL,'first-content-image',NULL,NULL,'http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-02 04:12:38','2024-08-22 08:37:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:21','2013-10-08 00:10:00',0),(704,'https://www.monicarenata.com/perfection/','40:14871608308ecf8b3fece82b4d2c448a',225,'post','post',1,0,NULL,NULL,'Perfection','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA',NULL,NULL,'first-content-image',NULL,NULL,'http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-02 06:32:56','2024-08-22 09:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:16','2013-10-29 17:02:00',0),(707,'https://www.monicarenata.com/katy-kicker/','41:8c6e650b42ba259b396a1837a06395dd',951,'post','post',1,0,NULL,NULL,'Katy Kicker','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 10:42:24','2024-08-23 15:38:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-19 14:54:55','2015-02-19 14:54:55',0),(708,'https://www.monicarenata.com/the-kindest-ones/','46:45d8c7c658ad9628796c796f90842f46',723,'post','post',1,0,NULL,NULL,'The Kindest Ones','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 11:10:41','2024-08-23 08:23:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-14 16:43:56','2014-11-14 16:43:56',0),(709,'https://www.monicarenata.com/laugh/','35:fb2ca32246dde68f41f997fb6f8be3ea',879,'post','post',1,0,NULL,NULL,'Laugh','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 11:43:40','2024-08-23 12:52:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-04 18:45:49','2015-02-04 18:45:49',0),(710,'https://www.monicarenata.com/dreadful-holiday/','46:d51c396e40c0c6e1b47c627b0c0cfadc',41,'post','post',1,0,NULL,NULL,'Dreadful Holiday','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://scm-l3.technorati.com/11/02/05/25519/valentine\'sday.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://scm-l3.technorati.com/11/02/05/25519/valentine\'sday.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2024-08-02 14:27:25','2024-08-23 01:46:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-23 18:58:00',0),(711,'https://www.monicarenata.com/the-man/','37:8fec3336033c9f2eb517608c6b0ccf4a',231,'post','post',1,0,NULL,NULL,'The Man','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png?fit=172%2C198&ssl=1',NULL,'465','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png?fit=172%2C198&ssl=1','465','featured-image','{\"width\":172,\"height\":198,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png?fit=172%2C198&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/shadow-man.png\",\"size\":\"full\",\"id\":465,\"alt\":\"\",\"pixels\":34056,\"type\":\"image/png\"}',0,NULL,NULL,'2024-08-02 17:20:15','2024-08-22 09:00:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:20','2013-10-18 11:57:00',0),(712,'https://www.monicarenata.com/blocks-of-life/','44:acdb2dbe310616d7e9fa790555562859',928,'post','post',1,0,NULL,NULL,'Blocks Of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 17:32:12','2024-08-23 15:06:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 16:09:00','2015-02-13 16:09:00',0),(713,'https://www.monicarenata.com/who-is-holding-you-back/','53:11af6071dfd7fefb392a51cdb098108d',228,'post','post',1,0,NULL,NULL,'Who is holding you back?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?fit=320%2C213&ssl=1',NULL,'462','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?fit=320%2C213&ssl=1','462','featured-image','{\"width\":320,\"height\":213,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?fit=320%2C213&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg\",\"size\":\"full\",\"id\":462,\"alt\":\"\",\"pixels\":68160,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-02 18:09:49','2024-08-22 09:21:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:18','2013-10-28 01:52:00',0),(714,'https://www.monicarenata.com/if-heaven/','39:2a1c40fae2972fd8bab773b15f47a19f',788,'post','post',1,0,NULL,NULL,'If Heaven','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 19:09:39','2024-08-23 10:25:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-31 01:33:27','2014-12-31 01:33:27',0),(715,'https://www.monicarenata.com/in-your-sleep/','43:0bee9bb9c990849205793ed75c011b51',682,'post','post',1,0,NULL,NULL,'In Your Sleep','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 19:48:33','2024-08-23 07:05:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-23 01:19:49','2014-10-23 01:19:49',0),(716,'https://www.monicarenata.com/the-grand-piano/','45:e6f2b33a3bc57e16c990f4dcd5a2b3b4',761,'post','post',1,0,NULL,NULL,'The Grand Piano','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 20:08:32','2024-08-23 09:11:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-17 19:05:33','2014-12-15 02:56:09',0),(718,'https://www.monicarenata.com/can-you-wake-me-up/','48:187dd5ee525031efa6fa23ddbb54cce3',725,'post','post',1,0,NULL,NULL,'Can You Wake Me Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 21:09:09','2024-08-23 08:23:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-14 19:03:09','2014-11-14 19:03:09',0),(719,'https://www.monicarenata.com/toxic-air/','39:c1bf9068a5d8b9d914a27ba7c59d5457',1083,'post','post',1,0,NULL,NULL,'Toxic Air','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 22:04:05','2024-08-23 20:09:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-20 16:47:48','2015-08-20 16:44:55',0),(720,'https://www.monicarenata.com/daily-motivation-dont-sweat-the-small-stuff/','73:91ae23d334c87720bda2ba45de0b055a',1012,'post','post',1,0,NULL,NULL,'Daily Motivation: Don’t Sweat The Small Stuff','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 22:45:38','2024-08-23 17:35:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-04-13 12:23:58','2015-04-13 12:23:58',0),(721,'https://www.monicarenata.com/the-test/','38:49f786a0b32be27ea4d2e35174e3920b',813,'post','post',1,0,NULL,NULL,'The Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-02 23:48:52','2024-08-23 10:52:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-13 13:30:51','2015-01-13 13:29:52',0),(722,'https://www.monicarenata.com/convenient/','40:cc645c445a03647b592e0b8c7afa6a40',931,'post','post',1,0,NULL,NULL,'Convenient','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 00:13:15','2024-08-23 15:06:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 16:55:44','2015-02-13 16:55:44',0),(723,'https://www.monicarenata.com/dont-care/','39:206472b7224a18de4ab5437164b61aef',1031,'post','post',1,0,NULL,NULL,'Don’t Care','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 01:42:21','2024-08-23 18:37:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-05-07 03:06:35','2015-05-07 03:06:35',0),(724,'https://www.monicarenata.com/if-i-had-a-million-wishes/','55:62d94f1edcc30d0118170bb22ad750c3',284,'post','post',1,0,NULL,NULL,'If I had a million wishes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-03 02:14:40','2024-08-22 04:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:01','2013-05-24 15:10:00',0),(725,'https://www.monicarenata.com/sadness-is-born/','45:5bffeda2bbf1ea5c150327026e115a46',5,'post','post',1,0,NULL,NULL,'Sadness is Born','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 02:25:57','2024-08-23 05:21:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-25 13:24:57','2014-08-04 16:23:00',0),(726,'https://www.monicarenata.com/words-vs-actions/','46:f0ee865aa453da5d12296b00c18d92c0',35,'post','post',1,0,NULL,NULL,'Words Vs Actions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-03 03:15:49','2024-08-23 02:24:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-13 12:04:00',0),(728,'https://www.monicarenata.com/love-circles/','42:365291c587e4c19acf01addffec27afe',1034,'post','post',1,0,NULL,NULL,'Love Circles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 04:20:27','2024-08-23 18:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-05-15 18:31:53','2015-05-15 18:31:53',0),(729,'https://www.monicarenata.com/life-purpose-love/','47:4d4574ba37a99750522e68d209401c47',43,'post','post',1,0,NULL,NULL,'Life, Purpose & Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-03 05:01:29','2024-08-23 01:20:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-22 19:03:00',0),(730,'https://www.monicarenata.com/i-am-too-nice/','43:673e805eefc82e62c742f18a4b0ce965',45,'post','post',1,0,NULL,NULL,'I am TOO nice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-03 05:36:36','2024-08-23 01:09:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:32','2014-04-16 14:48:00',0),(731,'https://www.monicarenata.com/rock-bottom/','41:1f326ee51ba69d56e7d8989510c4aa2a',1118,'post','post',1,0,NULL,NULL,'Rock Bottom','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 06:07:59','2024-08-23 21:46:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-01 15:36:59','2015-10-01 15:36:59',0),(732,'https://www.monicarenata.com/the-bully-does-it-exist-in-the-adult-world/','72:fa4d33501d16fc7e0d86d7e3e988fe9e',24,'post','post',1,0,NULL,NULL,'The Bully: Does it Exist in the Adult World?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-03 06:36:34','2024-08-23 03:05:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:30','2014-06-02 14:41:00',0),(733,'https://www.monicarenata.com/storm-well-make-it-through/','56:25f22d7be9e7fd6885fe373256f8c2a0',728,'post','post',1,0,NULL,NULL,'Storm: We’ll Make It Through','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 06:50:27','2024-08-23 08:23:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-14 19:27:14','2014-11-14 19:24:23',0),(734,'https://www.monicarenata.com/mistakes/','38:2d7b52d246971584b0f187a9d856ed1e',17,'post','post',1,0,NULL,NULL,'Mistakes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-03 08:20:04','2024-08-23 03:52:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-20 18:59:00',0),(735,'https://www.monicarenata.com/dont-ever/','39:8ec167b60580bf097559a18bc3997a5f',1146,'post','post',1,0,NULL,NULL,'Don’t Ever','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 08:39:40','2024-08-23 22:11:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-10-26 18:23:37','2015-10-27 01:34:38',0),(736,'https://www.monicarenata.com/forward/','37:14bf025bf122a482e3c1a5aff5220d4a',961,'post','post',1,0,NULL,NULL,'Forward','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 08:56:33','2024-08-23 16:16:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-23 13:48:18','2015-02-23 13:48:18',0),(737,'https://www.monicarenata.com/are-you-living/','44:7f87b771802ec00265e3db895f28eeca',97,'post','post',1,0,NULL,NULL,'Are You Living?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 09:01:26','2024-08-22 20:37:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:35','2014-01-24 18:44:00',0),(738,'https://www.monicarenata.com/turned-the-page/','45:bd242fdf47c3b0bfc157e3e454a1a05b',1208,'post','post',1,0,NULL,NULL,'Turned The Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 10:32:11','2024-08-23 23:39:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-01 02:12:16','2016-01-01 02:12:16',0),(739,'https://www.monicarenata.com/unattainable/','42:d691aa0c531ec99d191baf7211eaec17',868,'post','post',1,0,NULL,NULL,'Unattainable','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 10:42:44','2024-08-23 12:38:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-02 14:20:11','2015-02-02 14:20:11',0),(740,'https://www.monicarenata.com/the-race/','38:08d2ce29baaed4f8240ddbd7c1f8fe41',1060,'post','post',1,0,NULL,NULL,'The Race','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-03 11:29:10','2024-08-23 19:40:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-07-21 18:37:51','2015-07-21 18:37:51',0),(742,'https://www.monicarenata.com/crying-in-the-rain/','48:8cf3d9fbc6daa57ec2eabaa60cd0f314',245,'post','post',1,0,NULL,NULL,'Crying in the rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif?fit=300%2C300&ssl=1',NULL,'474','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif?fit=300%2C300&ssl=1','474','featured-image','{\"width\":300,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif?fit=300%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif\",\"size\":\"full\",\"id\":474,\"alt\":\"\",\"pixels\":90000,\"type\":\"image/gif\"}',0,NULL,NULL,'2024-08-04 01:52:19','2024-08-22 07:43:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:30','2013-09-07 03:09:00',0),(743,'https://www.monicarenata.com/please-stop-texting-my-phone/','58:f6146c4fc07c5f7f8dad58aaa0339ba5',758,'post','post',1,0,NULL,NULL,'Please Stop Texting My Phone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-04 03:44:16','2024-08-23 09:11:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-10 15:55:14','2014-12-10 15:55:14',0),(744,'https://www.monicarenata.com/what-wakes-you-up-in-the-morning/','62:a66e6a8d9b954ebe5c8f8d1d053d5ab5',222,'post','post',1,0,NULL,NULL,'What wakes you up in the morning?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-04 04:03:42','2024-08-22 09:50:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:13','2013-10-31 12:31:00',0),(745,'https://www.monicarenata.com/best-served-cold/','46:225a3a4f8381b8e0eeb11823b8d51199',91,'post','post',1,0,NULL,NULL,'Best Served Cold','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-04 08:27:57','2024-08-22 21:12:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:30','2014-02-12 23:26:00',0),(746,'https://www.monicarenata.com/to-decode-a-riddle/','48:e77923194f4cf19a45f54abaf5ef3dc6',19,'post','post',1,0,NULL,NULL,'To Decode A Riddle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-04 13:01:46','2024-08-23 03:37:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:29','2014-06-17 11:45:00',0),(747,'https://www.monicarenata.com/curiosity/','39:95e2bfa5aa3885818235cd0467b81afa',1077,'post','post',1,0,NULL,NULL,'Curiosity','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-04 15:42:48','2024-08-23 19:50:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-14 13:05:41','2015-08-14 13:04:45',0),(748,'https://www.monicarenata.com/fairy-tales-arent-real/','52:d91e6ed556c71a0c96c5b6e23269d88c',1107,'post','post',1,0,NULL,NULL,'Fairy Tales Aren’t Real','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-04 18:33:20','2024-08-23 21:07:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-08 18:57:51','2015-09-08 18:57:51',0),(750,'https://www.monicarenata.com/the-key-doesnt-fit/','48:a0db83aa991f1830c4201a0dc3b4c2e6',1288,'post','post',1,0,NULL,NULL,'The Key Doesn’t Fit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-04 20:27:33','2024-08-24 01:52:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-06-09 13:09:52','2016-06-09 13:03:35',0),(751,'https://www.monicarenata.com/full-circle/','41:0e09a0c368582e969223153b494b4692',52,'post','post',1,0,NULL,NULL,'Full Circle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-05 01:14:05','2024-08-23 00:36:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-09-19 13:25:57','2014-03-31 13:32:00',0),(753,'https://www.monicarenata.com/pen-and-paper/','43:b7bfb55d36eb0a347228dfb4266c8559',318,'post','post',1,0,NULL,NULL,'Pen and Paper','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?fit=600%2C399&ssl=1',NULL,'532','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?fit=600%2C399&ssl=1','532','featured-image','{\"width\":600,\"height\":399,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?fit=600%2C399&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/pen-and-paper.jpg\",\"size\":\"full\",\"id\":532,\"alt\":\"\",\"pixels\":239400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-05 10:30:10','2024-08-22 01:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:17','2013-04-16 14:45:00',0),(754,'https://www.monicarenata.com/if-love-was-meant-for-me/','54:5f8581c10813c8917cf3f20fe1a34d1b',327,'post','post',1,0,NULL,NULL,'If Love Was Meant For Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?fit=500%2C333&ssl=1',NULL,'540','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?fit=500%2C333&ssl=1','540','featured-image','{\"width\":500,\"height\":333,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?fit=500%2C333&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg\",\"size\":\"full\",\"id\":540,\"alt\":\"\",\"pixels\":166500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-05 12:02:21','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:21','2013-04-08 19:43:00',0),(755,'https://www.monicarenata.com/happytown-the-train-stop/','54:469de53e71bd174ed99960ec900aa0a5',13,'post','post',1,0,NULL,NULL,'HappyTown: The Train Stop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-05 12:38:41','2024-08-23 04:05:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-24 17:15:00',0),(756,'https://www.monicarenata.com/teardrops-in-the-rain/','51:090ed25749645d42c5e8217499cfc7d1',909,'post','post',1,0,NULL,NULL,'Teardrops In The Rain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-05 14:49:18','2024-08-23 14:23:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-11 16:35:28','2015-02-11 16:35:28',0),(758,'https://www.monicarenata.com/a-choice/','38:4be14f83d42b94e3bad680e401487937',297,'post','post',1,0,NULL,NULL,'A Choice','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?fit=500%2C422&ssl=1',NULL,'514','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?fit=500%2C422&ssl=1','514','featured-image','{\"width\":500,\"height\":422,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?fit=500%2C422&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/creating_yourself.jpg\",\"size\":\"full\",\"id\":514,\"alt\":\"\",\"pixels\":211000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-06 05:21:31','2024-08-22 03:22:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:08','2013-05-08 01:09:00',0),(760,'https://www.monicarenata.com/an-untouched-memory/','49:6980482a73d9d96d2698a2ce43918299',265,'post','post',1,0,NULL,NULL,'An Untouched Memory','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?fit=1024%2C772&ssl=1',NULL,'489','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?fit=1024%2C772&ssl=1','489','featured-image','{\"width\":1024,\"height\":772,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?fit=1024%2C772&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/07/Dusty-road.jpg\",\"size\":\"full\",\"id\":489,\"alt\":\"\",\"pixels\":790528,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-06 07:10:29','2024-08-22 06:08:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:21:46','2013-07-09 12:11:00',0),(762,'https://www.monicarenata.com/sand-is-sand/','42:bf208d96b3f5a6c93034d82eeb466735',1217,'post','post',1,0,NULL,NULL,'Sand Is Sand','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG',NULL,NULL,'first-content-image',NULL,NULL,'http://static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-06 18:04:17','2024-08-23 23:53:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-01-04 04:53:09','2016-01-04 04:33:47',0),(763,'https://www.monicarenata.com/to-you/','36:c47ada3d72f266bda53e4f36ee8bf38b',293,'post','post',1,0,NULL,NULL,'To You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?fit=400%2C300&ssl=1',NULL,'511','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?fit=400%2C300&ssl=1','511','featured-image','{\"width\":400,\"height\":300,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?fit=400%2C300&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg\",\"size\":\"full\",\"id\":511,\"alt\":\"\",\"pixels\":120000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-06 23:39:11','2024-08-22 03:36:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:07','2013-05-14 15:46:00',0),(764,'https://www.monicarenata.com/closed-mouth/','42:dc17ce0221752fc26317323a8b422cc8',1692,'post','post',1,0,NULL,NULL,'Closed Mouth','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 10:02:19','2024-08-24 07:40:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-06-18 22:13:27','2017-06-17 22:28:22',0),(765,'https://www.monicarenata.com/i-understand/','42:05fdc621c5e753b62c7167d2bc94af34',83,'post','post',1,0,NULL,NULL,'I Understand','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.bantamapparel.com/sku/2_PI245.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.bantamapparel.com/sku/2_PI245.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:24:34','2024-08-22 21:54:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-03 13:22:20','2014-02-16 20:40:00',0),(766,'https://www.monicarenata.com/what-are-you-thankful-for/','55:0ed14284fe2bb5eec9887bbad72ea2c3',324,'post','post',1,0,NULL,NULL,'What are you Thankful for?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?fit=640%2C383&ssl=1',NULL,'537','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?fit=640%2C383&ssl=1','537','featured-image','{\"width\":640,\"height\":383,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?fit=640%2C383&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg\",\"size\":\"full\",\"id\":537,\"alt\":\"\",\"pixels\":245120,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:25:51','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:20','2013-04-11 13:00:00',0),(767,'https://www.monicarenata.com/you/','33:78a6bb740b8e4212b9ca775dcef6fb9c',323,'post','post',1,0,NULL,NULL,'You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?fit=550%2C333&ssl=1',NULL,'536','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?fit=550%2C333&ssl=1','536','featured-image','{\"width\":550,\"height\":333,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?fit=550%2C333&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg\",\"size\":\"full\",\"id\":536,\"alt\":\"\",\"pixels\":183150,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:26:16','2024-08-22 01:25:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:19','2013-04-11 15:03:00',0),(768,'https://www.monicarenata.com/love-run-free/','43:b474e6abaea28b76771b538626be8eab',307,'post','post',1,0,NULL,NULL,'Love Run Free','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?fit=800%2C600&ssl=1',NULL,'521','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?fit=800%2C600&ssl=1','521','featured-image','{\"width\":800,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?fit=800%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/love2012.jpeg\",\"size\":\"full\",\"id\":521,\"alt\":\"\",\"pixels\":480000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:28:13','2024-08-22 02:38:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:13','2013-04-26 17:35:00',0),(769,'https://www.monicarenata.com/weekly-challenge-1-take-the-time-to-experience-the-world-around-you/','97:9436205e963672be00a2e06dd1dd7db8',319,'post','post',1,0,NULL,NULL,'Weekly Challenge 1: Take the Time To Experience the World Around You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?fit=1024%2C640&ssl=1',NULL,'533','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?fit=1024%2C640&ssl=1','533','featured-image','{\"width\":1024,\"height\":640,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?fit=1024%2C640&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg\",\"size\":\"full\",\"id\":533,\"alt\":\"\",\"pixels\":655360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:28:16','2024-08-22 01:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:17','2013-04-15 16:25:00',0),(770,'https://www.monicarenata.com/the-realization/','45:aeeeef928128ca26b9410271d7939fcd',326,'post','post',1,0,NULL,NULL,'The Realization','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?fit=500%2C400&ssl=1',NULL,'539','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?fit=500%2C400&ssl=1','539','featured-image','{\"width\":500,\"height\":400,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?fit=500%2C400&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg\",\"size\":\"full\",\"id\":539,\"alt\":\"\",\"pixels\":200000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:28:40','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:20','2013-04-10 09:54:00',0),(771,'https://www.monicarenata.com/kiss-me-in-the-morning/','52:8c8e8f39ea4b1df1d55da9b168493943',1044,'post','post',1,0,NULL,NULL,'Kiss Me In The Morning','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:30:50','2024-08-23 19:09:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-22 14:49:08','2015-06-08 11:47:04',0),(772,'https://www.monicarenata.com/those-three-words/','47:d549dfb906b288a9842ae84edd41beb5',1055,'post','post',1,0,NULL,NULL,'Those Three Words','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:31:06','2024-08-23 19:33:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-25 17:56:21','2015-06-25 17:56:21',0),(773,'https://www.monicarenata.com/words-of-gold/','43:dfdb66676c5e03b044bde39ba06fb03b',1041,'post','post',1,0,NULL,NULL,'Words of Gold','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:31:10','2024-08-23 19:09:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-02 17:42:02','2015-06-02 17:42:02',0),(774,'https://www.monicarenata.com/patiently-the-wait/','48:667aefe11ae3644bc72ee46f250ee260',1039,'post','post',1,0,NULL,NULL,'Patiently: The Wait','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:31:19','2024-08-23 18:51:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-01 14:25:20','2015-06-01 14:25:20',0),(775,'https://www.monicarenata.com/i-saw-you/','39:f67c385e6644ed88f5429ea41b71b052',1238,'post','post',1,0,NULL,NULL,'I Saw You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i.ytimg.com/vi/wBRa5S8DfBk/maxresdefault.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://i.ytimg.com/vi/wBRa5S8DfBk/maxresdefault.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:31:49','2024-08-24 00:22:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-02-02 02:19:04','2016-02-02 02:19:04',0),(776,'https://www.monicarenata.com/dig-my-hole/','41:bd8236441e81313afd947f2d3392a848',1241,'post','post',1,0,NULL,NULL,'Dig My Hole','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:31:51','2024-08-24 00:39:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-03-14 04:23:15','2016-02-15 16:50:47',0),(777,'https://www.monicarenata.com/pebbles-in-the-sand/','49:562b4518d9855ff87624af268a93b014',763,'post','post',1,0,NULL,NULL,'Pebbles in the Sand','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:34:08','2024-08-23 09:36:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-25 19:49:33','2014-12-15 05:38:12',0),(778,'https://www.monicarenata.com/you-say-you-miss-me/','49:1513b7a5338c2adcf89b7576c3a96eb4',791,'post','post',1,0,NULL,NULL,'You Say You Miss Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:34:30','2024-08-23 10:25:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-12-31 02:19:24','2014-12-31 02:19:24',0),(779,'https://www.monicarenata.com/standards/','39:395f4b1f43cec68621d74ab967c4b0b3',283,'post','post',1,0,NULL,NULL,'Standards','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png?fit=215%2C250&ssl=1',NULL,'504','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png?fit=215%2C250&ssl=1','504','featured-image','{\"width\":215,\"height\":250,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png?fit=215%2C250&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/high_standards.png\",\"size\":\"full\",\"id\":504,\"alt\":\"\",\"pixels\":53750,\"type\":\"image/png\"}',0,NULL,NULL,'2024-08-07 12:35:19','2024-08-22 04:47:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:00','2013-05-24 18:55:00',0),(780,'https://www.monicarenata.com/because-i-have-a-sister/','53:24b53c186e4cf11cd31924038e373b3d',285,'post','post',1,0,NULL,NULL,'Because I have a Sister','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?fit=1500%2C803&ssl=1',NULL,'505','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?fit=1500%2C803&ssl=1','505','featured-image','{\"width\":1500,\"height\":803,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?fit=1500%2C803&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg\",\"size\":\"full\",\"id\":505,\"alt\":\"\",\"pixels\":1204500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:35:30','2024-08-22 04:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:02','2013-05-22 20:52:00',0),(781,'https://www.monicarenata.com/weekly-challenge-5-list-25-truths-about-yourself/','78:5a4129df3837684071e34ed39bd827cc',296,'post','post',1,0,NULL,NULL,'Weekly Challenge 5: List 25 Truths About Yourself','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:36:06','2024-08-22 03:22:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:07','2013-05-13 12:49:00',0),(782,'https://www.monicarenata.com/fear/','34:69076d223e1d59dd0cfec5f1291c74d1',290,'post','post',1,0,NULL,NULL,'Fear','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?fit=670%2C1000&ssl=1',NULL,'509','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?fit=670%2C1000&ssl=1','509','featured-image','{\"width\":670,\"height\":1000,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?fit=670%2C1000&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg\",\"size\":\"full\",\"id\":509,\"alt\":\"\",\"pixels\":670000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:36:38','2024-08-22 03:50:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:06','2013-05-20 14:18:00',0),(783,'https://www.monicarenata.com/the-truth-about-my-love-poem/','58:65657d07c2548a4709ccfae339e385b4',286,'post','post',1,0,NULL,NULL,'The truth about my Love Poem','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:37:23','2024-08-22 04:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:03','2013-05-22 20:47:00',0),(784,'https://www.monicarenata.com/weekly-challenge-6-share-a-childhood-memory/','73:709aa0ef77cd946ebf3b77958494270b',291,'post','post',1,0,NULL,NULL,'Weekly Challenge 6: Share a childhood memory','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:37:36','2024-08-22 03:50:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:06','2013-05-20 13:00:00',0),(785,'https://www.monicarenata.com/weekly-challenge-4-determine-how-you-want-situations-to-affect-you/','96:f3589672abd6c43e44b33235b492215f',299,'post','post',1,0,NULL,NULL,'Weekly Challenge 4: Determine how you want situations to affect you','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:37:45','2024-08-22 03:22:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:09','2013-05-06 12:35:00',0),(786,'https://www.monicarenata.com/the-windy-night/','45:86e708cc62df7cabb6a114f1c334a431',289,'post','post',1,0,NULL,NULL,'The Windy Night','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?fit=660%2C420&ssl=1',NULL,'508','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?fit=660%2C420&ssl=1','508','featured-image','{\"width\":660,\"height\":420,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?fit=660%2C420&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/05/milton.jpg\",\"size\":\"full\",\"id\":508,\"alt\":\"\",\"pixels\":277200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:37:53','2024-08-22 04:07:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:05','2013-05-20 17:44:00',0),(787,'https://www.monicarenata.com/my-time-is-very-precious/','54:fb842ae21d4fd3aed81f0300cbe6dec9',1263,'post','post',1,0,NULL,NULL,'My Time Is Very Precious','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:38:17','2024-08-24 00:53:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-03-31 12:43:32','2016-03-31 12:37:22',0),(788,'https://www.monicarenata.com/pretty-little-picture-2/','53:df81aee4f42a84f947900b63e7c3a4ed',116,'post','post',1,0,NULL,NULL,'Pretty Little Picture','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?fit=1091%2C800&ssl=1',NULL,'398','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?fit=1091%2C800&ssl=1','398','featured-image','{\"width\":1091,\"height\":800,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?fit=1091%2C800&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg\",\"size\":\"full\",\"id\":398,\"alt\":\"\",\"pixels\":872800,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 12:45:38','2024-08-22 19:05:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:19:48','2014-01-01 19:45:00',0),(789,'https://www.monicarenata.com/the-heartbreaker/','46:367ad54f6f34151ab0bd386d45a578cc',112,'post','post',1,0,NULL,NULL,'The HeartBreaker','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa',NULL,NULL,'first-content-image',NULL,NULL,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 12:46:54','2024-08-22 19:22:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-09-04 13:57:47','2014-01-03 18:35:00',0),(790,'https://www.monicarenata.com/better-days-are-coming/','52:b10a70a32cfbff461c0d27f46d9951ac',804,'post','post',1,0,NULL,NULL,'Better Days Are Coming','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:48:56','2024-08-23 10:52:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-01-06 13:32:05','2015-01-06 13:01:10',0),(791,'https://www.monicarenata.com/the-search-for-happy/','50:e13fddf0bc6d2dabf3bc67bb91f57167',65,'post','post',1,0,NULL,NULL,'The Search For Happy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:51:54','2024-08-22 23:30:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:52','2014-03-13 19:11:00',0),(792,'https://www.monicarenata.com/promises-are-they-really-made-to-be-broken/','72:4f374e966b3f567336fdef64ecb04e39',56,'post','post',1,0,NULL,NULL,'Promises: Are they really made to be broken?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:53:08','2024-08-23 00:21:27',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:16:48','2014-03-27 15:33:00',0),(793,'https://www.monicarenata.com/dont-stop-believing/','49:4afcd056f155e84eea141b0d2d017ab9',977,'post','post',1,0,NULL,NULL,'Don’t Stop Believing','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:55:51','2024-08-23 16:20:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-13 13:39:56','2015-03-13 13:39:56',0),(794,'https://www.monicarenata.com/the-cannots-of-life/','49:c801f76058f2d7f16f001dfbb36adef7',4,'post','post',1,0,NULL,NULL,'The Cannots of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 12:57:31','2024-08-23 05:21:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-11-25 13:23:09','2014-08-05 13:08:00',0),(795,'https://www.monicarenata.com/the-tears-of-the-willow/','53:68aeff6565d064a523300c0616d8c183',14,'post','post',1,0,NULL,NULL,'The Tears of the Willow','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?fit=436%2C600&ssl=1',NULL,'350','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?fit=436%2C600&ssl=1','350','featured-image','{\"width\":436,\"height\":600,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?fit=436%2C600&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/06/weepingwillow-jpg.jpg\",\"size\":\"full\",\"id\":350,\"alt\":\"\",\"pixels\":261600,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-08-07 13:03:37','2024-08-23 04:05:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:28','2014-06-23 17:49:00',0),(796,'https://www.monicarenata.com/the-sun-cant-shine-the-same/','57:9eb1378f9f17374a25382655a2668560',23,'post','post',1,0,NULL,NULL,'The Sun Can’t Shine the Same','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-07 13:04:37','2024-08-23 03:35:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:30','2014-06-04 19:30:00',0),(797,'https://www.monicarenata.com/finding-happy/','43:1427f0ca45758076892bb9e3b55eb603',26,'post','post',1,0,NULL,NULL,'Finding Happy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2024-08-07 13:11:51','2024-08-23 03:05:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:31','2014-05-28 18:37:00',0),(798,'https://www.monicarenata.com/limitless-love/','44:76f4c649c3b52fc9a7921635f524f10c',1312,'post','post',1,0,NULL,NULL,'Limitless Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 13:12:49','2024-08-24 02:50:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-12-09 13:43:04','2016-07-14 18:25:15',0),(799,'https://www.monicarenata.com/i-pray-you-catch-me-when-i-fall/','61:a78943b360578a8981263574fbbf294e',1310,'post','post',1,0,NULL,NULL,'I Pray You Catch Me When I Fall','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://img09.deviantart.net/3107/i/2010/320/c/5/catch_me_if_i_fall_by_amethyst_raindrops-d330axz.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://img09.deviantart.net/3107/i/2010/320/c/5/catch_me_if_i_fall_by_amethyst_raindrops-d330axz.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 13:13:12','2024-08-24 02:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-11 14:24:42','2016-07-11 14:24:42',0),(800,'https://www.monicarenata.com/if-you-ever-find-me/','49:bf569c64b3e162adfb8c9f9ac5260250',1141,'post','post',1,0,NULL,NULL,'If You Ever Find Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-07 13:17:21','2024-08-23 22:11:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-22 18:41:42','2015-10-22 14:42:12',0),(801,'https://www.monicarenata.com/petals-in-the-wind/','48:ca8c0f4ce45472ce81857cb7db3ae695',1088,'post','post',1,0,NULL,NULL,'Petals In The Wind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-07 13:17:37','2024-08-23 20:50:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-31 04:00:15','2015-08-31 03:56:05',0),(803,'https://www.monicarenata.com/happiness-it-is-in-your-hands/','59:1a4ca87c3087e78946b90a67a596eb9d',1029,'post','post',1,0,NULL,NULL,'Happiness: It is in YOUR hands','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-08 17:09:50','2024-08-23 18:37:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-05-01 17:34:22','2015-05-01 17:34:22',0),(805,'https://www.monicarenata.com/definition-disappointed/','53:c747ff5f3d772991a8f81d499a9a8bb3',933,'post','post',1,0,NULL,NULL,'Definition: Disappointed','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-09 05:05:35','2024-08-23 15:06:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 17:31:01','2015-02-13 17:31:01',0),(806,'https://www.monicarenata.com/to-say-it-doesnt-bother-me/','56:36daa0d491b6627929bfc3b92581e9d6',636,'post','post',1,0,NULL,NULL,'To Say It Doesn’t Bother Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-09 12:07:01','2024-08-23 06:22:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-09 10:53:13','2014-10-09 10:53:13',0),(807,'https://www.monicarenata.com/lessons-of-past-yesterdays/','56:a1d50e748c9b560e3e7b6ddcccaec57f',643,'post','post',1,0,NULL,NULL,'Lessons of Past Yesterdays','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-09 12:07:43','2024-08-23 06:22:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-10 14:33:40','2014-10-10 14:33:40',0),(810,'https://www.monicarenata.com/paula-the-performer/','49:d0775eb2c98862f3d45f65b5fe794f97',953,'post','post',1,0,NULL,NULL,'Paula The Performer','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-09 15:43:27','2024-08-23 15:53:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-19 16:04:43','2015-02-19 16:04:43',0),(811,'https://www.monicarenata.com/dreaming-out-loud/','47:f38cbc63554cdf0ef52e398807086b5d',894,'post','post',1,0,NULL,NULL,'Dreaming Out Loud','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/236x/1c/13/12/1c13122708c42cec763b188f8d3ad514.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/236x/1c/13/12/1c13122708c42cec763b188f8d3ad514.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-09 16:40:07','2024-08-23 13:36:15',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 13:04:45','2015-02-09 13:04:45',0),(812,'https://www.monicarenata.com/not-enough/','40:eb2f14d85c8e89e5bd34428c1beea72b',916,'post','post',1,0,NULL,NULL,'Not Enough','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-09 19:09:31','2024-08-23 14:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 05:06:14','2015-02-13 05:06:14',0),(813,'https://www.monicarenata.com/fear-to-live/','42:7088acc25323976d6ace4b625b169a1c',957,'post','post',1,0,NULL,NULL,'Fear To Live','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-10 09:52:24','2024-08-23 15:53:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-20 13:45:51','2015-02-20 13:45:51',0),(814,'https://www.monicarenata.com/with-all-my-heart/','47:4ff9dce215ce0c03efb8c2c68d26646c',904,'post','post',1,0,NULL,NULL,'With All My Heart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-10 10:19:48','2024-08-23 13:55:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-09 19:10:24','2015-02-09 19:10:24',0),(816,'https://www.monicarenata.com/sitting-silently/','46:bdc88004393d85fe4a5fc13350d25385',914,'post','post',1,0,NULL,NULL,'Sitting Silently','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-10 14:25:18','2024-08-23 14:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 04:59:17','2015-02-13 04:59:17',0),(817,'https://www.monicarenata.com/do-you-know-how-i-feel/','52:d74aadcc7baab45819e5b4c0d0176b4d',918,'post','post',1,0,NULL,NULL,'Do You Know How I Feel?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-11 00:59:05','2024-08-23 14:38:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-13 13:10:57','2015-02-13 13:10:57',0),(818,'https://www.monicarenata.com/fireflies/','39:a4a5beba5d6a39310e04c615eecb7e14',1073,'post','post',1,0,NULL,NULL,'Fireflies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-11 03:08:43','2024-08-23 19:50:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-08-07 18:38:19','2015-08-07 18:38:19',0),(819,'https://www.monicarenata.com/the-art-of-life/','45:ce558b0f98ee6802076e8d511c3a3fc2',1334,'post','post',1,0,NULL,NULL,'The Art of Life','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.success.com/sites/default/files/styles/article_main/public/main/articles/CanMoneyBuyHappiness.jpg?itok=SuXi_Jnq',NULL,NULL,'first-content-image',NULL,NULL,'http://www.success.com/sites/default/files/styles/article_main/public/main/articles/CanMoneyBuyHappiness.jpg?itok=SuXi_Jnq',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-11 03:10:49','2024-08-24 03:23:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-08-05 15:52:42','2016-08-05 15:52:42',0),(821,'https://www.monicarenata.com/i-wish-you-could-see/','50:a181407b822637f568b4163d4fceb8f5',1509,'post','post',1,0,NULL,NULL,'I Wish You Could See','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-11 16:08:58','2024-08-24 05:23:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-02 17:44:51','2017-03-02 17:27:53',0),(824,'https://www.monicarenata.com/exception/','39:16eec6676f066e282e6b999e777e5927',1344,'post','post',1,0,NULL,NULL,'Exception','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-13 10:24:52','2024-08-24 03:35:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-09-06 20:31:33','2016-08-22 15:59:34',0),(825,'https://www.monicarenata.com/invaluable-camaraderie/','52:39d282322744af183f09e5fa7ab937b8',1342,'post','post',1,0,NULL,NULL,'Invaluable Camaraderie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://az616578.vo.msecnd.net/files/2016/05/23/635996432757898094-39361363_pinky%20promise.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://az616578.vo.msecnd.net/files/2016/05/23/635996432757898094-39361363_pinky%20promise.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2024-08-13 17:34:45','2024-08-24 03:35:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-08-10 14:05:36','2016-08-10 14:05:36',0),(845,'https://www.monicarenata.com/type/image/','40:b8250f84f205e4fa3ed7faf684f6a001',52,'term','post_format',NULL,NULL,NULL,NULL,'Image',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-21 16:36:10','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(846,'https://www.monicarenata.com/lana-download/','43:cc7d43c6634ebd1f0bb146c104db2ff6',NULL,'post-type-archive','lana_download',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Downloads',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 16:36:10','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(847,'http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1/','75:d61e7f19421e3147906c4f8fed8c8332',1301,'post','page',1,0,NULL,NULL,'My Books','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-21 16:36:10','2024-08-21 22:36:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2016-07-10 15:59:58','2016-07-10 15:59:58',0),(863,'https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0/?_encoding=UTF8&','106:efc0361381f6db2a6798588723964682',1304,'post','page',1,1301,NULL,NULL,'The Awkward Butterfly','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1',NULL,'410','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1','410','featured-image','{\"width\":576,\"height\":1024,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?fit=576%2C1024&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png\",\"size\":\"full\",\"id\":410,\"alt\":\"\",\"pixels\":589824,\"type\":\"image/png\"}',0,NULL,NULL,'2024-08-21 16:53:53','2024-08-21 22:53:53',1,NULL,NULL,NULL,NULL,1,NULL,2,'2016-07-10 16:18:36','2016-07-10 16:01:41',0),(864,'https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/?ie=UTF8&','83:4413161b790979df61beaedf1314edef',1306,'post','page',1,1301,NULL,NULL,'Keyword: Inner Strength','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1',NULL,'385','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1','385','featured-image','{\"width\":228,\"height\":346,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=228%2C346&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\",\"size\":\"full\",\"id\":385,\"alt\":\"\",\"pixels\":78888,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-21 16:53:53','2024-08-21 22:53:53',1,NULL,NULL,NULL,NULL,1,NULL,2,'2016-07-10 16:19:25','2016-07-10 16:02:42',0),(865,'https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211/?ie=UTF8&','75:a5e3fd37bc654e3c6e19b15a322a288a',1308,'post','page',1,1301,NULL,NULL,'Keyword: Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=225%2C346&ssl=1',NULL,'384','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=225%2C346&ssl=1','384','featured-image','{\"width\":225,\"height\":346,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?fit=225%2C346&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg\",\"size\":\"full\",\"id\":384,\"alt\":\"\",\"pixels\":77850,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-21 16:53:53','2024-08-21 22:53:53',1,NULL,NULL,NULL,NULL,1,NULL,2,'2016-07-10 16:20:10','2016-07-10 16:03:34',0),(881,'https://www.monicarenata.com/analytical-side-brain/','51:72a4ac507347912ab9cba826d3e6a9ad',1536,'post','page',1,0,NULL,NULL,'The Analytical Side of the Brain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/creative-analytical-brain4828-620x354.jpg?fit=620%2C354&ssl=1',NULL,'1537','featured-image',NULL,NULL,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/creative-analytical-brain4828-620x354.jpg?fit=620%2C354&ssl=1','1537','featured-image','{\"width\":620,\"height\":354,\"url\":\"https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/creative-analytical-brain4828-620x354.jpg?fit=620%2C354&ssl=1\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2017/03/creative-analytical-brain4828-620x354.jpg\",\"size\":\"full\",\"id\":1537,\"alt\":\"\",\"pixels\":219480,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-21 17:06:05','2024-08-21 23:06:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-03-20 20:55:55','2017-03-06 01:57:35',0),(960,'https://www.monicarenata.com/?p=1600','36:18fa8dfcc1b6aab2f167ffc789126150',1600,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:36:45','2024-08-22 00:36:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-12 16:46:46','0000-00-00 00:00:00',0),(974,'https://www.monicarenata.com/?p=1876','36:1f3d807a4faf6bf21bead08a113d8f5f',1876,'post','post',1,0,NULL,NULL,'Cleanse','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-24 00:22:57','0000-00-00 00:00:00',0),(980,'https://www.monicarenata.com/?page_id=607','41:d11bddfaef284b93c0e72d55fa92637c',607,'post','page',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-26 18:48:35','0000-00-00 00:00:00',0),(981,'https://www.monicarenata.com/?p=140','35:9d34f54521e90890045404f0376c7a94',140,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:07','0000-00-00 00:00:00',0),(982,'https://www.monicarenata.com/?p=149','35:9bae53edf8fa84fc3aff8229057cf9cd',149,'post','post',1,0,NULL,NULL,'25 Days of Missing You','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:20:13','0000-00-00 00:00:00',0),(983,'https://www.monicarenata.com/?p=322','35:d2831b3a0169cb61c9b45735cf617f7d',322,'post','post',1,0,NULL,NULL,'Why are we afraid to be alone?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-08-09 21:22:19','0000-00-00 00:00:00',0),(984,'https://www.monicarenata.com/?p=651','35:b2d33ea07a76a1a9aeb8764d0b194e48',651,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2014-10-15 18:46:28','0000-00-00 00:00:00',0),(985,'https://www.monicarenata.com/?p=948','35:969a51129e2ac9db1445b0cf9304b3fe',948,'post','post',1,0,NULL,NULL,'Fairy Tales Aren’t Real','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-02-19 16:47:07','0000-00-00 00:00:00',0),(986,'https://www.monicarenata.com/?p=968','35:d1dd422c1d7d9b8ccb4c7a5d946aaba2',968,'post','post',1,0,NULL,NULL,'The Blessing In Forgiveness','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-03-10 01:35:45','0000-00-00 00:00:00',0),(987,'https://www.monicarenata.com/?p=1057','36:339d6a528f62eab5f4e73d719d94b219',1057,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-06-30 18:06:15','0000-00-00 00:00:00',0),(988,'https://www.monicarenata.com/?p=1168','36:51888f80419bf0c4b5de860ff73716bf',1168,'post','post',1,0,NULL,NULL,'Hooker’s Paradise','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 18:51:50','2024-08-22 00:51:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-10-30 03:36:46','0000-00-00 00:00:00',0),(989,'https://www.monicarenata.com/?p=1598','36:9eb73857352c94d239803320750f01cd',1598,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-12 16:21:20','0000-00-00 00:00:00',0),(990,'https://www.monicarenata.com/?p=1603','36:0d0128ef2a2d7efc12f488962bdb44c3',1603,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2017-04-12 19:51:12','0000-00-00 00:00:00',0),(991,'https://www.monicarenata.com/?p=1843','36:89d14badde6684c02e2ff64bffd720d3',1843,'post','post',1,0,NULL,NULL,'Fear the Fall','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 04:34:23','0000-00-00 00:00:00',0),(992,'https://www.monicarenata.com/?p=1861','36:fa304f99a1a891fc43fb32bf19583389',1861,'post','post',1,0,NULL,NULL,'Familiar','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-03 03:47:32','0000-00-00 00:00:00',0),(993,'https://www.monicarenata.com/?p=1869','36:46842d5cf25e1ce5c090e2547b07bbb2',1869,'post','post',1,0,NULL,NULL,'Watered Down Hearts','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-12 07:22:17','0000-00-00 00:00:00',0),(994,'https://www.monicarenata.com/?p=1863','36:de07b569086ef687df50a7780d3c32b3',1863,'post','post',1,0,NULL,NULL,'Probability','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-12 13:41:28','0000-00-00 00:00:00',0),(995,'https://www.monicarenata.com/?p=1879','36:ed70bab1a607e546d132dd2e5a4b13bb',1879,'post','post',1,0,NULL,NULL,'Simplicity','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-17 13:39:23','0000-00-00 00:00:00',0),(996,'https://www.monicarenata.com/?p=1921','36:cbf915e8d3d793a5bc2378572f0bb72c',1921,'post','post',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-08-21 19:05:32','2024-08-22 01:05:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-02-16 03:46:05','0000-00-00 00:00:00',0),(997,'https://www.monicarenata.com/save-yourself/','43:0d5935e649b0dde328c0a0d363dbe77f',1948,'post','post',1,0,NULL,NULL,'Save Yourself','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-10-17 14:55:31','2024-10-17 21:31:35',1,NULL,NULL,NULL,NULL,0,2,2,'2024-10-17 15:31:35','2024-10-17 15:31:35',0),(998,'https://www.monicarenata.com/ill-believe-you/','45:eabd3d96a824ed8fa1dc72759f9e94a9',1953,'post','post',1,0,NULL,NULL,'I’ll Believe You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-11-04 12:51:06','2024-11-04 20:16:21',1,NULL,NULL,NULL,NULL,0,2,2,'2024-11-04 13:16:20','2024-11-04 13:16:20',0),(999,'https://www.monicarenata.com/pride-mask-of-me/','46:4e044802dee25e4b629c5f7d20cf8f38',1961,'post','post',1,0,NULL,NULL,'PRIDE: Mask of Me','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp',NULL,'1962','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp','1962','featured-image','{\"width\":2000,\"height\":1200,\"filesize\":20754,\"url\":\"http://www.monicarenata.com/wp-content/uploads/2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2024/11/Pride-can-be-a-virtue-but-it-need-to-be-the-right-kind-of-pride.webp\",\"size\":\"full\",\"id\":1962,\"alt\":\"\",\"pixels\":2400000,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-11-08 15:27:31','2024-11-08 22:31:04',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-08 15:31:03','2024-11-08 15:31:03',0),(1001,'https://www.monicarenata.com/the-philistine/','44:b13c6281577c4fa63d075753d36ec7c6',1967,'post','post',1,0,NULL,NULL,'The Philistine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/11/PHILISTINE.jpg',NULL,'1969','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/11/PHILISTINE.jpg','1969','featured-image','{\"width\":225,\"height\":224,\"filesize\":9093,\"url\":\"http://www.monicarenata.com/wp-content/uploads/2024/11/PHILISTINE.jpg\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2024/11/PHILISTINE.jpg\",\"size\":\"full\",\"id\":1969,\"alt\":\"\",\"pixels\":50400,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-19 13:20:38','2024-11-19 20:25:44',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-19 13:25:43','2024-11-19 13:25:43',0),(1003,'https://www.monicarenata.com/last-first-date/','45:30b65d12629428622338548b81cea5fc',1972,'post','post',1,0,NULL,NULL,'Last First Date','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/12/Last-First-Date.jpg',NULL,'1974','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2024/12/Last-First-Date.jpg','1974','featured-image','{\"width\":770,\"height\":612,\"filesize\":79653,\"url\":\"http://www.monicarenata.com/wp-content/uploads/2024/12/Last-First-Date.jpg\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2024/12/Last-First-Date.jpg\",\"size\":\"full\",\"id\":1974,\"alt\":\"\",\"pixels\":471240,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-12-20 03:18:04','2024-12-20 10:20:17',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-20 03:20:17','2024-12-20 03:20:17',0),(1005,'https://www.monicarenata.com/sunshine-shadows/','46:3694c6ff57f65670cc6b3d199188c013',1980,'post','post',1,0,NULL,NULL,'Sunshine & Shadows','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg',NULL,'1466','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg','1466','featured-image','{\"width\":512,\"height\":512,\"url\":\"http://www.monicarenata.com/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg\",\"path\":\"/home4/monicare/public_html/wp-content/uploads/2013/09/cropped-THE-AWKWARD-BUTTERFLY.jpeg\",\"size\":\"full\",\"id\":1466,\"alt\":\"\",\"pixels\":262144,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-05-23 01:14:38','2025-05-23 07:33:25',1,NULL,NULL,NULL,NULL,0,1,2,'2025-05-23 01:33:24','2025-05-23 01:33:24',0),(1006,'https://www.monicarenata.com/ten-thousand-days/','47:14eba11419c03ed03b5659992f6e3259',1986,'post','post',1,0,NULL,NULL,'Ten Thousand Days','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2025/06/Time-Walking-Man.png',NULL,'1988','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2025/06/Time-Walking-Man.png','1988','featured-image','{\"url\":\"http://www.monicarenata.com/wp-content/uploads/2025/06/Time-Walking-Man.png\",\"width\":640,\"height\":640,\"size\":\"full\",\"id\":1988,\"alt\":\"\",\"pixels\":409600,\"type\":\"image/png\"}',0,NULL,NULL,'2025-06-10 14:32:18','2025-06-10 20:58:03',1,NULL,NULL,NULL,NULL,0,1,2,'2025-06-10 14:58:02','2025-06-10 14:44:29',0),(1008,'https://www.monicarenata.com/writing-in-my-journal/','51:0b97bc263dcdac8c923100f2f7108c01',1996,'post','post',1,0,NULL,NULL,'Writing in My Journal','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2025/06/Man-in-Thought-AI2.png',NULL,'1999','featured-image',NULL,NULL,'http://www.monicarenata.com/wp-content/uploads/2025/06/Man-in-Thought-AI2-1024x1024.png','1999','featured-image','{\"width\":1024,\"height\":1024,\"filesize\":1628284,\"path\":\"2025/06/Man-in-Thought-AI2-1024x1024.png\",\"url\":\"http://www.monicarenata.com/wp-content/uploads/2025/06/Man-in-Thought-AI2-1024x1024.png\",\"size\":\"large\",\"id\":1999,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image/png\"}',0,NULL,NULL,'2025-06-10 15:43:47','2025-06-10 21:49:41',1,NULL,NULL,NULL,NULL,0,1,2,'2025-06-10 15:49:41','2025-06-10 15:49:08',0),(1011,'https://www.monicarenata.com/future-thinking/','45:ae5685297214f92208a30835b123aee8',2006,'post','post',1,0,NULL,NULL,'Future Thinking','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-07-09 14:31:27','2025-07-09 20:48:45',1,NULL,NULL,NULL,NULL,0,2,2,'2025-07-09 14:48:45','2025-07-09 14:48:45',0);
/*!40000 ALTER TABLE `wp_xwml_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_indexable_hierarchy`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_indexable_hierarchy` (
`indexable_id` int(11) unsigned NOT NULL,
`ancestor_id` int(11) unsigned NOT NULL,
`depth` int(11) unsigned DEFAULT NULL,
`blog_id` bigint(20) NOT NULL DEFAULT '1',
PRIMARY KEY (`indexable_id`,`ancestor_id`),
KEY `indexable_id` (`indexable_id`),
KEY `ancestor_id` (`ancestor_id`),
KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_indexable_hierarchy`
--
LOCK TABLES `wp_xwml_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_indexable_hierarchy` VALUES (1,0,0,1),(2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(9,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(17,0,0,1),(18,0,0,1),(19,0,0,1),(20,0,0,1),(21,0,0,1),(22,0,0,1),(23,0,0,1),(25,0,0,1),(26,0,0,1),(27,0,0,1),(28,0,0,1),(29,0,0,1),(30,0,0,1),(31,0,0,1),(32,0,0,1),(33,0,0,1),(35,0,0,1),(36,0,0,1),(37,0,0,1),(38,0,0,1),(39,0,0,1),(40,0,0,1),(41,0,0,1),(42,0,0,1),(43,0,0,1),(44,0,0,1),(45,0,0,1),(46,0,0,1),(47,0,0,1),(48,0,0,1),(49,0,0,1),(50,0,0,1),(51,0,0,1),(52,0,0,1),(53,0,0,1),(54,0,0,1),(55,0,0,1),(56,0,0,1),(57,0,0,1),(58,0,0,1),(59,0,0,1),(61,0,0,1),(62,0,0,1),(63,0,0,1),(64,0,0,1),(65,0,0,1),(66,0,0,1),(67,0,0,1),(68,0,0,1),(69,0,0,1),(70,0,0,1),(71,0,0,1),(72,0,0,1),(73,0,0,1),(74,0,0,1),(75,0,0,1),(76,0,0,1),(77,0,0,1),(78,0,0,1),(79,0,0,1),(80,0,0,1),(81,0,0,1),(82,0,0,1),(83,0,0,1),(84,0,0,1),(85,0,0,1),(86,0,0,1),(87,0,0,1),(88,0,0,1),(89,0,0,1),(90,0,0,1),(91,0,0,1),(92,0,0,1),(93,0,0,1),(94,0,0,1),(95,0,0,1),(96,0,0,1),(97,0,0,1),(98,0,0,1),(99,0,0,1),(100,0,0,1),(101,0,0,1),(102,0,0,1),(103,0,0,1),(104,0,0,1),(105,0,0,1),(106,0,0,1),(107,0,0,1),(108,0,0,1),(109,0,0,1),(110,0,0,1),(111,0,0,1),(112,0,0,1),(113,0,0,1),(114,0,0,1),(115,0,0,1),(116,0,0,1),(118,0,0,1),(119,0,0,1),(121,0,0,1),(122,0,0,1),(123,0,0,1),(124,0,0,1),(125,0,0,1),(126,0,0,1),(127,0,0,1),(128,0,0,1),(129,0,0,1),(130,0,0,1),(131,0,0,1),(132,0,0,1),(133,0,0,1),(134,0,0,1),(135,0,0,1),(136,0,0,1),(137,0,0,1),(138,0,0,1),(139,0,0,1),(140,0,0,1),(141,0,0,1),(142,0,0,1),(143,0,0,1),(144,0,0,1),(145,0,0,1),(146,0,0,1),(147,0,0,1),(148,0,0,1),(149,0,0,1),(150,0,0,1),(151,0,0,1),(152,0,0,1),(153,0,0,1),(154,0,0,1),(155,0,0,1),(156,0,0,1),(157,0,0,1),(158,0,0,1),(159,0,0,1),(160,0,0,1),(162,0,0,1),(163,0,0,1),(164,0,0,1),(165,0,0,1),(166,0,0,1),(167,0,0,1),(168,0,0,1),(169,0,0,1),(170,0,0,1),(171,0,0,1),(172,0,0,1),(173,0,0,1),(174,0,0,1),(175,0,0,1),(176,0,0,1),(177,0,0,1),(178,0,0,1),(179,0,0,1),(180,0,0,1),(181,0,0,1),(182,0,0,1),(183,0,0,1),(184,0,0,1),(185,0,0,1),(186,0,0,1),(187,0,0,1),(188,0,0,1),(189,0,0,1),(190,0,0,1),(191,0,0,1),(192,0,0,1),(193,0,0,1),(194,0,0,1),(195,0,0,1),(196,0,0,1),(197,0,0,1),(198,0,0,1),(199,0,0,1),(200,0,0,1),(201,0,0,1),(202,0,0,1),(203,0,0,1),(204,0,0,1),(205,0,0,1),(206,0,0,1),(208,0,0,1),(209,0,0,1),(210,0,0,1),(211,0,0,1),(212,0,0,1),(213,0,0,1),(214,0,0,1),(215,0,0,1),(216,0,0,1),(217,0,0,1),(218,0,0,1),(219,0,0,1),(220,0,0,1),(221,0,0,1),(222,0,0,1),(223,0,0,1),(224,0,0,1),(225,0,0,1),(226,0,0,1),(227,0,0,1),(228,0,0,1),(229,0,0,1),(230,0,0,1),(231,0,0,1),(232,0,0,1),(233,0,0,1),(234,0,0,1),(235,0,0,1),(237,0,0,1),(238,0,0,1),(239,0,0,1),(240,0,0,1),(241,0,0,1),(242,0,0,1),(243,0,0,1),(244,0,0,1),(245,0,0,1),(246,0,0,1),(247,0,0,1),(248,0,0,1),(249,0,0,1),(250,0,0,1),(251,0,0,1),(252,0,0,1),(253,0,0,1),(254,0,0,1),(255,0,0,1),(256,0,0,1),(257,0,0,1),(258,0,0,1),(259,0,0,1),(260,0,0,1),(261,0,0,1),(262,0,0,1),(263,0,0,1),(264,0,0,1),(265,0,0,1),(267,0,0,1),(268,0,0,1),(269,0,0,1),(271,0,0,1),(272,0,0,1),(273,0,0,1),(274,0,0,1),(275,0,0,1),(276,0,0,1),(277,0,0,1),(278,0,0,1),(279,0,0,1),(280,0,0,1),(281,0,0,1),(282,0,0,1),(283,0,0,1),(284,0,0,1),(285,0,0,1),(286,0,0,1),(287,0,0,1),(288,0,0,1),(289,0,0,1),(290,0,0,1),(291,0,0,1),(292,0,0,1),(293,0,0,1),(294,0,0,1),(295,0,0,1),(296,0,0,1),(297,0,0,1),(298,0,0,1),(299,0,0,1),(300,0,0,1),(301,0,0,1),(302,0,0,1),(303,0,0,1),(304,0,0,1),(305,0,0,1),(306,0,0,1),(307,0,0,1),(308,0,0,1),(309,0,0,1),(310,0,0,1),(311,0,0,1),(312,0,0,1),(313,0,0,1),(314,0,0,1),(315,0,0,1),(316,0,0,1),(318,0,0,1),(320,0,0,1),(321,0,0,1),(323,0,0,1),(324,0,0,1),(325,0,0,1),(326,0,0,1),(327,0,0,1),(328,0,0,1),(329,0,0,1),(330,0,0,1),(331,0,0,1),(332,0,0,1),(333,0,0,1),(334,0,0,1),(335,0,0,1),(336,0,0,1),(337,0,0,1),(338,0,0,1),(339,0,0,1),(340,0,0,1),(341,0,0,1),(342,0,0,1),(343,0,0,1),(344,0,0,1),(345,0,0,1),(346,0,0,1),(347,0,0,1),(348,0,0,1),(349,0,0,1),(350,0,0,1),(351,0,0,1),(352,0,0,1),(353,0,0,1),(354,0,0,1),(355,0,0,1),(356,0,0,1),(357,0,0,1),(358,0,0,1),(359,0,0,1),(360,0,0,1),(361,0,0,1),(362,0,0,1),(363,0,0,1),(364,0,0,1),(365,0,0,1),(366,0,0,1),(367,0,0,1),(368,0,0,1),(369,0,0,1),(371,0,0,1),(373,0,0,1),(376,0,0,1),(378,0,0,1),(381,0,0,1),(383,0,0,1),(385,0,0,1),(389,0,0,1),(392,0,0,1),(394,0,0,1),(396,0,0,1),(398,0,0,1),(400,0,0,1),(402,0,0,1),(407,0,0,1),(409,0,0,1),(412,0,0,1),(414,0,0,1),(416,0,0,1),(421,0,0,1),(423,0,0,1),(426,0,0,1),(428,0,0,1),(431,0,0,1),(433,0,0,1),(435,0,0,1),(440,0,0,1),(442,0,0,1),(447,0,0,1),(449,0,0,1),(452,0,0,1),(454,0,0,1),(456,0,0,1),(458,0,0,1),(459,0,0,1),(462,0,0,1),(464,0,0,1),(469,0,0,1),(470,0,0,1),(471,0,0,1),(472,0,0,1),(473,0,0,1),(474,0,0,1),(475,0,0,1),(476,0,0,1),(477,0,0,1),(478,0,0,1),(479,0,0,1),(480,0,0,1),(482,0,0,1),(483,0,0,1),(484,0,0,1),(485,0,0,1),(486,0,0,1),(487,0,0,1),(488,0,0,1),(489,0,0,1),(491,0,0,1),(493,0,0,1),(495,0,0,1),(497,0,0,1),(499,0,0,1),(501,0,0,1),(503,0,0,1),(505,0,0,1),(510,0,0,1),(511,0,0,1),(513,0,0,1),(514,0,0,1),(517,0,0,1),(518,0,0,1),(519,0,0,1),(520,0,0,1),(522,0,0,1),(523,0,0,1),(524,0,0,1),(525,0,0,1),(526,0,0,1),(527,0,0,1),(528,0,0,1),(529,0,0,1),(530,0,0,1),(531,0,0,1),(532,0,0,1),(533,0,0,1),(534,0,0,1),(535,0,0,1),(536,0,0,1),(537,0,0,1),(538,0,0,1),(539,0,0,1),(540,0,0,1),(541,0,0,1),(542,0,0,1),(543,0,0,1),(544,0,0,1),(545,0,0,1),(546,0,0,1),(547,0,0,1),(548,0,0,1),(549,0,0,1),(550,0,0,1),(551,0,0,1),(552,0,0,1),(553,0,0,1),(554,0,0,1),(555,0,0,1),(556,0,0,1),(557,0,0,1),(558,0,0,1),(559,0,0,1),(560,0,0,1),(561,0,0,1),(562,0,0,1),(563,0,0,1),(564,0,0,1),(565,0,0,1),(566,0,0,1),(567,0,0,1),(568,0,0,1),(569,0,0,1),(572,0,0,1),(573,0,0,1),(575,0,0,1),(577,0,0,1),(579,0,0,1),(583,0,0,1),(584,0,0,1),(586,0,0,1),(587,0,0,1),(588,0,0,1),(589,0,0,1),(590,0,0,1),(592,0,0,1),(593,0,0,1),(597,0,0,1),(599,0,0,1),(600,0,0,1),(601,0,0,1),(602,0,0,1),(603,0,0,1),(604,0,0,1),(606,0,0,1),(607,0,0,1),(608,0,0,1),(609,0,0,1),(610,0,0,1),(611,0,0,1),(612,0,0,1),(613,0,0,1),(615,0,0,1),(616,0,0,1),(617,0,0,1),(618,0,0,1),(619,0,0,1),(620,0,0,1),(621,0,0,1),(622,0,0,1),(623,0,0,1),(625,0,0,1),(626,0,0,1),(627,0,0,1),(628,0,0,1),(629,0,0,1),(630,0,0,1),(631,0,0,1),(632,0,0,1),(633,0,0,1),(634,0,0,1),(635,0,0,1),(636,0,0,1),(637,0,0,1),(638,0,0,1),(639,0,0,1),(640,0,0,1),(641,0,0,1),(643,0,0,1),(644,0,0,1),(645,0,0,1),(646,0,0,1),(647,0,0,1),(649,0,0,1),(650,0,0,1),(651,0,0,1),(654,0,0,1),(655,0,0,1),(656,0,0,1),(658,0,0,1),(660,0,0,1),(661,0,0,1),(662,0,0,1),(663,0,0,1),(664,0,0,1),(665,0,0,1),(666,0,0,1),(667,0,0,1),(668,0,0,1),(669,0,0,1),(670,0,0,1),(671,0,0,1),(673,0,0,1),(674,0,0,1),(675,0,0,1),(676,0,0,1),(677,0,0,1),(678,0,0,1),(679,0,0,1),(680,0,0,1),(681,0,0,1),(682,0,0,1),(683,0,0,1),(684,0,0,1),(686,0,0,1),(688,0,0,1),(689,0,0,1),(691,0,0,1),(692,0,0,1),(693,0,0,1),(694,0,0,1),(695,0,0,1),(696,0,0,1),(697,0,0,1),(698,0,0,1),(699,0,0,1),(700,0,0,1),(701,0,0,1),(702,0,0,1),(703,0,0,1),(704,0,0,1),(707,0,0,1),(708,0,0,1),(709,0,0,1),(710,0,0,1),(711,0,0,1),(712,0,0,1),(713,0,0,1),(714,0,0,1),(715,0,0,1),(716,0,0,1),(718,0,0,1),(719,0,0,1),(720,0,0,1),(721,0,0,1),(722,0,0,1),(723,0,0,1),(724,0,0,1),(725,0,0,1),(726,0,0,1),(728,0,0,1),(729,0,0,1),(730,0,0,1),(731,0,0,1),(732,0,0,1),(733,0,0,1),(734,0,0,1),(735,0,0,1),(736,0,0,1),(737,0,0,1),(738,0,0,1),(739,0,0,1),(740,0,0,1),(742,0,0,1),(743,0,0,1),(744,0,0,1),(745,0,0,1),(746,0,0,1),(747,0,0,1),(748,0,0,1),(750,0,0,1),(751,0,0,1),(753,0,0,1),(754,0,0,1),(755,0,0,1),(756,0,0,1),(758,0,0,1),(760,0,0,1),(762,0,0,1),(763,0,0,1),(764,0,0,1),(765,0,0,1),(766,0,0,1),(767,0,0,1),(768,0,0,1),(769,0,0,1),(770,0,0,1),(771,0,0,1),(772,0,0,1),(773,0,0,1),(774,0,0,1),(775,0,0,1),(776,0,0,1),(777,0,0,1),(778,0,0,1),(779,0,0,1),(780,0,0,1),(781,0,0,1),(782,0,0,1),(783,0,0,1),(784,0,0,1),(785,0,0,1),(786,0,0,1),(787,0,0,1),(788,0,0,1),(789,0,0,1),(790,0,0,1),(791,0,0,1),(792,0,0,1),(793,0,0,1),(794,0,0,1),(795,0,0,1),(796,0,0,1),(797,0,0,1),(798,0,0,1),(799,0,0,1),(800,0,0,1),(801,0,0,1),(803,0,0,1),(805,0,0,1),(806,0,0,1),(807,0,0,1),(810,0,0,1),(811,0,0,1),(812,0,0,1),(813,0,0,1),(814,0,0,1),(816,0,0,1),(817,0,0,1),(818,0,0,1),(819,0,0,1),(821,0,0,1),(824,0,0,1),(825,0,0,1),(845,0,0,1),(847,0,0,1),(863,847,1,1),(864,847,1,1),(865,847,1,1),(881,0,0,1),(960,0,0,1),(974,0,0,1),(980,0,0,1),(981,0,0,1),(982,0,0,1),(983,0,0,1),(984,0,0,1),(985,0,0,1),(986,0,0,1),(987,0,0,1),(988,0,0,1),(989,0,0,1),(990,0,0,1),(991,0,0,1),(992,0,0,1),(993,0,0,1),(994,0,0,1),(995,0,0,1),(996,0,0,1),(997,0,0,1),(998,0,0,1),(999,0,0,1),(1001,0,0,1),(1003,0,0,1),(1005,0,0,1),(1006,0,0,1),(1008,0,0,1),(1011,0,0,1);
/*!40000 ALTER TABLE `wp_xwml_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_migrations`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_migrations` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `wp_xwml_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_migrations`
--
LOCK TABLES `wp_xwml_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836'),(25,'20260105111111');
/*!40000 ALTER TABLE `wp_xwml_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_primary_term`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_primary_term`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_primary_term` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) DEFAULT NULL,
`term_id` bigint(20) DEFAULT NULL,
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`blog_id` bigint(20) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `post_taxonomy` (`post_id`,`taxonomy`),
KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_primary_term`
--
LOCK TABLES `wp_xwml_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_primary_term` VALUES (1,1491,1,'category','2024-07-20 22:58:32','2024-07-21 04:58:32',1),(2,1698,1,'category','2024-07-20 22:58:32','2024-07-21 04:58:32',1),(3,1834,1,'category','2024-07-21 13:44:03','2024-07-21 19:44:03',1),(4,1824,1,'category','2024-07-21 13:44:03','2024-07-21 19:44:03',1),(5,1915,1,'category','2024-07-22 07:03:22','2024-07-22 13:03:22',1),(6,1872,1,'category','2024-07-22 16:11:06','2024-07-22 22:11:06',1),(7,1634,1,'category','2024-07-22 21:54:54','2024-07-23 03:54:54',1),(8,1926,1,'category','2024-07-23 01:34:47','2024-07-23 07:34:47',1),(9,1649,1,'category','2024-07-23 21:08:13','2024-07-24 03:08:13',1),(10,1784,1,'category','2024-07-24 02:50:43','2024-07-24 08:50:43',1),(11,1608,53,'category','2024-07-24 04:13:48','2024-07-24 10:13:48',1),(12,1853,1,'category','2024-07-25 10:45:38','2024-07-25 16:45:38',1),(13,1673,1,'category','2024-07-26 04:20:39','2024-07-26 10:20:39',1),(14,1683,1,'category','2024-07-26 14:51:24','2024-07-26 20:51:24',1),(15,1679,1,'category','2024-07-26 14:51:26','2024-07-26 20:51:26',1),(16,1639,1,'category','2024-07-27 05:17:36','2024-07-27 11:17:36',1),(17,1654,1,'category','2024-07-28 08:16:19','2024-07-28 14:16:19',1),(18,1851,1,'category','2024-07-30 02:40:02','2024-07-30 08:40:02',1);
/*!40000 ALTER TABLE `wp_xwml_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_seo_links`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_seo_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_seo_links` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_id` bigint(20) unsigned NOT NULL,
`target_post_id` bigint(20) unsigned NOT NULL,
`type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`indexable_id` int(11) unsigned DEFAULT NULL,
`target_indexable_id` int(11) unsigned DEFAULT NULL,
`height` int(11) unsigned DEFAULT NULL,
`width` int(11) unsigned DEFAULT NULL,
`size` int(11) unsigned DEFAULT NULL,
`language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `link_direction` (`post_id`,`type`),
KEY `indexable_link_direction` (`indexable_id`,`type`),
KEY `url_index` (`url`(250)),
KEY `target_indexable_id_index` (`target_indexable_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1624 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_seo_links`
--
LOCK TABLES `wp_xwml_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_seo_links` VALUES (1559,'https://zedity.com',1737,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(1562,'https://zedity.com',1747,0,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1565,'https://zedity.com',1753,0,'external',154,NULL,NULL,NULL,NULL,NULL,NULL),(1567,'https://zedity.com',1755,0,'external',593,NULL,NULL,NULL,NULL,NULL,NULL),(1570,'https://zedity.com',1759,0,'external',135,NULL,NULL,NULL,NULL,NULL,NULL),(1579,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg',1776,0,'external',119,NULL,NULL,NULL,NULL,NULL,NULL),(1582,'https://zedity.com',1784,0,'external',315,NULL,NULL,NULL,NULL,NULL,NULL),(1585,'https://zedity.com',1787,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(1595,'https://zedity.com',1816,0,'external',618,NULL,NULL,NULL,NULL,NULL,NULL),(1598,'https://zedity.com',1821,0,'external',103,NULL,NULL,NULL,NULL,NULL,NULL),(1600,'https://zedity.com',1824,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(20,'mailto:?subject=%5BShared%20Post%5D%20Connect%20With%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fconnect-with-me%2F&share=email',2,0,'external',138,NULL,NULL,NULL,NULL,NULL,NULL),(21,'mailto:?subject=%5BShared%20Post%5D%20About%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fabout-me%2F&share=email',573,0,'external',199,NULL,NULL,NULL,NULL,NULL,NULL),(22,'http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1#new_tab?share=facebook',1301,0,'external',847,NULL,NULL,NULL,NULL,NULL,NULL),(23,'http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1#new_tab?share=twitter',1301,0,'external',847,NULL,NULL,NULL,NULL,NULL,NULL),(24,'http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1#new_tab?share=reddit',1301,0,'external',847,NULL,NULL,NULL,NULL,NULL,NULL),(25,'http://www.amazon.com/Monica-Renata/e/B00J69UZBK/ref=dp_byline_cont_book_1#new_tab?share=pinterest',1301,0,'external',847,NULL,NULL,NULL,NULL,NULL,NULL),(26,'mailto:?subject=%5BShared%20Post%5D%20My%20Books&body=http%3A%2F%2Fwww.amazon.com%2FMonica-Renata%2Fe%2FB00J69UZBK%2Fref%3Ddp_byline_cont_book_1%23new_tab&share=email',1301,0,'external',847,NULL,NULL,NULL,NULL,NULL,NULL),(27,'https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr=#new_tab&share=facebook',1304,0,'external',863,NULL,NULL,NULL,NULL,NULL,NULL),(28,'https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr=#new_tab&share=twitter',1304,0,'external',863,NULL,NULL,NULL,NULL,NULL,NULL),(29,'https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr=#new_tab&share=reddit',1304,0,'external',863,NULL,NULL,NULL,NULL,NULL,NULL),(30,'https://www.amazon.com/Awkward-Butterfly-Monica-Renata/dp/1492343781/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr=#new_tab&share=pinterest',1304,0,'external',863,NULL,NULL,NULL,NULL,NULL,NULL),(31,'mailto:?subject=%5BShared%20Post%5D%20The%20Awkward%20Butterfly&body=https%3A%2F%2Fwww.amazon.com%2FAwkward-Butterfly-Monica-Renata%2Fdp%2F1492343781%2Fref%3Dtmm_pap_swatch_0%3F_encoding%3DUTF8%26%23038%3Bqid%3D%26%23038%3Bsr%3D%23new_tab&share=email',1304,0,'external',863,NULL,NULL,NULL,NULL,NULL,NULL),(32,'https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_4&s=books&sr=1-4&share=facebook',1306,0,'external',864,NULL,NULL,NULL,NULL,NULL,NULL),(33,'https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_4&s=books&sr=1-4&share=twitter',1306,0,'external',864,NULL,NULL,NULL,NULL,NULL,NULL),(34,'https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_4&s=books&sr=1-4&share=reddit',1306,0,'external',864,NULL,NULL,NULL,NULL,NULL,NULL),(35,'https://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_4&s=books&sr=1-4&share=pinterest',1306,0,'external',864,NULL,NULL,NULL,NULL,NULL,NULL),(36,'mailto:?subject=%5BShared%20Post%5D%20Keyword%3A%20Inner%20Strength&body=https%3A%2F%2Fwww.amazon.com%2FKeyword-Inner-Strength-Monica-Renata%2Fdp%2F1492834149%3Fie%3DUTF8%26%23038%3Bqid%3D1468165609%26%23038%3Bref_%3Dla_B00J69UZBK_1_4%26%23038%3Bs%3Dbooks',1306,0,'external',864,NULL,NULL,NULL,NULL,NULL,NULL),(37,'https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_5&s=books&sr=1-5#new_tab&share=facebook',1308,0,'external',865,NULL,NULL,NULL,NULL,NULL,NULL),(38,'https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_5&s=books&sr=1-5#new_tab&share=twitter',1308,0,'external',865,NULL,NULL,NULL,NULL,NULL,NULL),(39,'https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_5&s=books&sr=1-5#new_tab&share=reddit',1308,0,'external',865,NULL,NULL,NULL,NULL,NULL,NULL),(40,'https://www.amazon.com/Monica-Renata-Keyword-Love-1/dp/1492724211?ie=UTF8&qid=1468165609&ref_=la_B00J69UZBK_1_5&s=books&sr=1-5#new_tab&share=pinterest',1308,0,'external',865,NULL,NULL,NULL,NULL,NULL,NULL),(41,'mailto:?subject=%5BShared%20Post%5D%20Keyword%3A%20Love&body=https%3A%2F%2Fwww.amazon.com%2FMonica-Renata-Keyword-Love-1%2Fdp%2F1492724211%3Fie%3DUTF8%26%23038%3Bqid%3D1468165609%26%23038%3Bref_%3Dla_B00J69UZBK_1_5%26%23038%3Bs%3Dbooks%26%23038%3Bsr%3D1-5',1308,0,'external',865,NULL,NULL,NULL,NULL,NULL,NULL),(42,'https://zedity.com',1536,0,'external',881,NULL,NULL,NULL,NULL,NULL,NULL),(43,'mailto:?subject=%5BShared%20Post%5D%20The%20Analytical%20Side%20of%20the%20Brain&body=https%3A%2F%2Fwww.monicarenata.com%2Fanalytical-side-brain%2F&share=email',1536,0,'external',881,NULL,NULL,NULL,NULL,NULL,NULL),(44,'https://i0.wp.com/www.idgconnect.com/IMG/570/39570/creative-analytical-brain4828-620x354.jpg?resize=620%2C354',1536,0,'image-ex',881,NULL,NULL,NULL,NULL,NULL,NULL),(45,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg',349,0,'external',152,NULL,NULL,NULL,NULL,NULL,NULL),(46,'mailto:?subject=%5BShared%20Post%5D%20Hello&body=https%3A%2F%2Fwww.monicarenata.com%2Fhello%2F&share=email',349,0,'external',152,NULL,NULL,NULL,NULL,NULL,NULL),(47,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/wall-pops-life-is-beautiful-quote-2.jpg?resize=320%2C320',349,0,'image-ex',152,NULL,NULL,NULL,NULL,NULL,NULL),(48,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg',348,0,'external',518,NULL,NULL,NULL,NULL,NULL,NULL),(49,'mailto:?subject=%5BShared%20Post%5D%20Is%20this%20Really%20Love%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fis-this-really-love%2F&share=email',348,0,'external',518,NULL,NULL,NULL,NULL,NULL,NULL),(50,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/394362_493303287348302_895782065_n.jpg?resize=320%2C242',348,0,'image-ex',518,NULL,NULL,NULL,NULL,NULL,NULL),(51,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg',347,0,'external',638,NULL,NULL,NULL,NULL,NULL,NULL),(52,'mailto:?subject=%5BShared%20Post%5D%20Just%20LIVE%21%21%21&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-live%2F&share=email',347,0,'external',638,NULL,NULL,NULL,NULL,NULL,NULL),(53,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/ACQYR-Wallpaper-016_Nijmeh-1024x768.jpg?resize=320%2C240',347,0,'image-ex',638,NULL,NULL,NULL,NULL,NULL,NULL),(54,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg',346,0,'external',299,NULL,NULL,NULL,NULL,NULL,NULL),(55,'mailto:?subject=%5BShared%20Post%5D%20Who%20Are%20You%20To%20The%20World%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-are-you-to-the-world%2F&share=email',346,0,'external',299,NULL,NULL,NULL,NULL,NULL,NULL),(56,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/72842_10151383688619366_997576769_n.jpg?resize=320%2C228',346,0,'image-ex',299,NULL,NULL,NULL,NULL,NULL,NULL),(57,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg',345,0,'external',65,NULL,NULL,NULL,NULL,NULL,NULL),(58,'mailto:?subject=%5BShared%20Post%5D%20No%20Love%20Lost.....No%20Love%20Found&body=https%3A%2F%2Fwww.monicarenata.com%2Fno-love-lost-no-love-found%2F&share=email',345,0,'external',65,NULL,NULL,NULL,NULL,NULL,NULL),(59,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/60523_376512035770051_2081392546_n.jpg?resize=320%2C249',345,0,'image-ex',65,NULL,NULL,NULL,NULL,NULL,NULL),(60,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg',344,0,'external',340,NULL,NULL,NULL,NULL,NULL,NULL),(61,'mailto:?subject=%5BShared%20Post%5D%20It%27s%20Only%20Temporary&body=https%3A%2F%2Fwww.monicarenata.com%2Fits-only-temporary%2F&share=email',344,0,'external',340,NULL,NULL,NULL,NULL,NULL,NULL),(62,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lxvr63Li3b1qa9u6ko1_500.jpg?resize=320%2C243',344,0,'image-ex',340,NULL,NULL,NULL,NULL,NULL,NULL),(63,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg',343,0,'external',440,NULL,NULL,NULL,NULL,NULL,NULL),(64,'mailto:?subject=%5BShared%20Post%5D%20The%20Rain&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-rain%2F&share=email',343,0,'external',440,NULL,NULL,NULL,NULL,NULL,NULL),(65,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Rain_Storm_by_horrormove.jpg?resize=320%2C266',343,0,'image-ex',440,NULL,NULL,NULL,NULL,NULL,NULL),(66,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg',342,0,'external',221,NULL,NULL,NULL,NULL,NULL,NULL),(67,'mailto:?subject=%5BShared%20Post%5D%20Draft%20me%20a%20Portrait&body=https%3A%2F%2Fwww.monicarenata.com%2Fdraft-me-a-portrait%2F&share=email',342,0,'external',221,NULL,NULL,NULL,NULL,NULL,NULL),(68,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/421080_10151275110125175_123597668_n.jpg?resize=320%2C181',342,0,'image-ex',221,NULL,NULL,NULL,NULL,NULL,NULL),(69,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg',341,0,'external',78,NULL,NULL,NULL,NULL,NULL,NULL),(70,'mailto:?subject=%5BShared%20Post%5D%20The%20Endless%20Circle&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-endless-circle%2F&share=email',341,0,'external',78,NULL,NULL,NULL,NULL,NULL,NULL),(71,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/561037_10151144389162272_1077131149_n.jpg?resize=320%2C200',341,0,'image-ex',78,NULL,NULL,NULL,NULL,NULL,NULL),(72,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg',340,0,'external',105,NULL,NULL,NULL,NULL,NULL,NULL),(73,'http://1.bp.blogspot.com/-YJVIWpOxN5Q/UVrMTy2ihaI/AAAAAAAAAEI/5xjSI2ztdR4/s1600/you_are_never_alone.jpg',340,0,'external',105,NULL,NULL,NULL,NULL,NULL,NULL),(74,'mailto:?subject=%5BShared%20Post%5D%20Feeling%20Alone%3F%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Ffeeling-alone%2F&share=email',340,0,'external',105,NULL,NULL,NULL,NULL,NULL,NULL),(75,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/you_are_never_alone.jpg?resize=640%2C432',340,0,'image-ex',105,NULL,NULL,NULL,NULL,NULL,NULL),(76,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg',339,0,'external',474,NULL,NULL,NULL,NULL,NULL,NULL),(77,'mailto:?subject=%5BShared%20Post%5D%20Kindness&body=https%3A%2F%2Fwww.monicarenata.com%2Fkindness%2F&share=email',339,0,'external',474,NULL,NULL,NULL,NULL,NULL,NULL),(78,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KO028-Art-of-Kindness-front_original.jpg?resize=400%2C395',339,0,'image-ex',474,NULL,NULL,NULL,NULL,NULL,NULL),(79,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg',338,0,'external',447,NULL,NULL,NULL,NULL,NULL,NULL),(80,'mailto:?subject=%5BShared%20Post%5D%20Gossip&body=https%3A%2F%2Fwww.monicarenata.com%2Fgossip%2F&share=email',338,0,'external',447,NULL,NULL,NULL,NULL,NULL,NULL),(81,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Gossip.jpg?resize=342%2C400',338,0,'image-ex',447,NULL,NULL,NULL,NULL,NULL,NULL),(82,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg',337,0,'external',210,NULL,NULL,NULL,NULL,NULL,NULL),(83,'mailto:?subject=%5BShared%20Post%5D%20True%20Beauty&body=https%3A%2F%2Fwww.monicarenata.com%2Ftrue-beauty%2F&share=email',337,0,'external',210,NULL,NULL,NULL,NULL,NULL,NULL),(84,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/True-Beauty.jpg?resize=640%2C640',337,0,'image-ex',210,NULL,NULL,NULL,NULL,NULL,NULL),(85,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg',336,0,'external',358,NULL,NULL,NULL,NULL,NULL,NULL),(86,'mailto:?subject=%5BShared%20Post%5D%20Why%20are%20we%20afraid%20to%20fall%3F%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhy-are-we-afraid-to-fall%2F&share=email',336,0,'external',358,NULL,NULL,NULL,NULL,NULL,NULL),(87,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Afraid-of-Falling.001-001.jpg?resize=640%2C400',336,0,'image-ex',358,NULL,NULL,NULL,NULL,NULL,NULL),(88,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg',335,0,'external',342,NULL,NULL,NULL,NULL,NULL,NULL),(89,'mailto:?subject=%5BShared%20Post%5D%20My%20Heart%20In%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-heart-in-words%2F&share=email',335,0,'external',342,NULL,NULL,NULL,NULL,NULL,NULL),(90,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/484520_483796694965628_2032429780_n.jpg?resize=320%2C248',335,0,'image-ex',342,NULL,NULL,NULL,NULL,NULL,NULL),(91,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg',334,0,'external',604,NULL,NULL,NULL,NULL,NULL,NULL),(92,'mailto:?subject=%5BShared%20Post%5D%20The%20Reality%20of%20a%20Loss&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-reality-of-a-loss%2F&share=email',334,0,'external',604,NULL,NULL,NULL,NULL,NULL,NULL),(93,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543331_410098002366361_1352242046_n_large.jpg?resize=400%2C371',334,0,'image-ex',604,NULL,NULL,NULL,NULL,NULL,NULL),(94,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg',333,0,'external',499,NULL,NULL,NULL,NULL,NULL,NULL),(95,'mailto:?subject=%5BShared%20Post%5D%20It%27s%20Not%20Much%2C%20but%20its%20all%20I%20have&body=https%3A%2F%2Fwww.monicarenata.com%2Fits-not-much-but-its-all-i-have%2F&share=email',333,0,'external',499,NULL,NULL,NULL,NULL,NULL,NULL),(96,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/392901_564629153562238_1402092232_n.jpg?resize=338%2C400',333,0,'image-ex',499,NULL,NULL,NULL,NULL,NULL,NULL),(97,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg',332,0,'external',398,NULL,NULL,NULL,NULL,NULL,NULL),(98,'mailto:?subject=%5BShared%20Post%5D%20The%20Wall&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-wall%2F&share=email',332,0,'external',398,NULL,NULL,NULL,NULL,NULL,NULL),(99,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/WallAroundHeart.jpg?resize=400%2C400',332,0,'image-ex',398,NULL,NULL,NULL,NULL,NULL,NULL),(100,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg',331,0,'external',569,NULL,NULL,NULL,NULL,NULL,NULL),(101,'mailto:?subject=%5BShared%20Post%5D%20Are%20You%20Sure%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fare-you-sure%2F&share=email',331,0,'external',569,NULL,NULL,NULL,NULL,NULL,NULL),(102,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Are-You-Sure-480x330.jpg?resize=320%2C220',331,0,'image-ex',569,NULL,NULL,NULL,NULL,NULL,NULL),(103,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg',330,0,'external',632,NULL,NULL,NULL,NULL,NULL,NULL),(104,'mailto:?subject=%5BShared%20Post%5D%20These%20Feelings&body=https%3A%2F%2Fwww.monicarenata.com%2Fthese-feelings%2F&share=email',330,0,'external',632,NULL,NULL,NULL,NULL,NULL,NULL),(105,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/tumblr_lmlpfjgfsM1qiufayo1_500.jpg?resize=320%2C240',330,0,'image-ex',632,NULL,NULL,NULL,NULL,NULL,NULL),(106,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg',329,0,'external',218,NULL,NULL,NULL,NULL,NULL,NULL),(107,'mailto:?subject=%5BShared%20Post%5D%20The%20Little%20Girl%20Who%20Believed&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-little-girl-who-believed%2F&share=email',329,0,'external',218,NULL,NULL,NULL,NULL,NULL,NULL),(108,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Life.jpg?resize=400%2C300',329,0,'image-ex',218,NULL,NULL,NULL,NULL,NULL,NULL),(109,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg',328,0,'external',237,NULL,NULL,NULL,NULL,NULL,NULL),(110,'mailto:?subject=%5BShared%20Post%5D%20The%20Drink&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-drink%2F&share=email',328,0,'external',237,NULL,NULL,NULL,NULL,NULL,NULL),(111,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/peace_love_stop_drinking_and_driving_post_cards-rb48c70d4bf194370bd172ce1671b7b03_vgbaq_8byvr_512.jpg?resize=400%2C400',328,0,'image-ex',237,NULL,NULL,NULL,NULL,NULL,NULL),(112,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg',327,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(113,'mailto:?subject=%5BShared%20Post%5D%20If%20Love%20Was%20Meant%20For%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-love-was-meant-for-me%2F&share=email',327,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(114,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/543065_392334884174531_1404445749_n.jpg?resize=400%2C266',327,0,'image-ex',754,NULL,NULL,NULL,NULL,NULL,NULL),(115,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg',326,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(116,'mailto:?subject=%5BShared%20Post%5D%20The%20Realization&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-realization%2F&share=email',326,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(117,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/428867_505088056192781_1051053758_n.jpg?resize=320%2C256',326,0,'image-ex',770,NULL,NULL,NULL,NULL,NULL,NULL),(118,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg',325,0,'external',294,NULL,NULL,NULL,NULL,NULL,NULL),(119,'mailto:?subject=%5BShared%20Post%5D%20The%20Seed&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-seed%2F&share=email',325,0,'external',294,NULL,NULL,NULL,NULL,NULL,NULL),(120,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/602231_558494810842339_1711658822_n.jpg?resize=352%2C400',325,0,'image-ex',294,NULL,NULL,NULL,NULL,NULL,NULL),(121,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg',324,0,'external',766,NULL,NULL,NULL,NULL,NULL,NULL),(122,'mailto:?subject=%5BShared%20Post%5D%20What%20are%20you%20Thankful%20for%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-are-you-thankful-for%2F&share=email',324,0,'external',766,NULL,NULL,NULL,NULL,NULL,NULL),(123,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/be_grateful_photo_-_Copy_1_.jpg?resize=400%2C238',324,0,'image-ex',766,NULL,NULL,NULL,NULL,NULL,NULL),(124,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg',323,0,'external',767,NULL,NULL,NULL,NULL,NULL,NULL),(125,'mailto:?subject=%5BShared%20Post%5D%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou%2F&share=email',323,0,'external',767,NULL,NULL,NULL,NULL,NULL,NULL),(126,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/3061826565_1_3_eiVVN9cA.jpg?resize=400%2C241',323,0,'image-ex',767,NULL,NULL,NULL,NULL,NULL,NULL),(127,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png',321,0,'external',86,NULL,NULL,NULL,NULL,NULL,NULL),(128,'mailto:?subject=%5BShared%20Post%5D%20The%20Battle&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-battle%2F&share=email',321,0,'external',86,NULL,NULL,NULL,NULL,NULL,NULL),(129,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/5952_487083678013555_248729212_n.png?resize=320%2C320',321,0,'image-ex',86,NULL,NULL,NULL,NULL,NULL,NULL),(130,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png',320,0,'external',92,NULL,NULL,NULL,NULL,NULL,NULL),(131,'mailto:?subject=%5BShared%20Post%5D%20Just%20a%20Random%20Thought&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-a-random-thought%2F&share=email',320,0,'external',92,NULL,NULL,NULL,NULL,NULL,NULL),(132,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/21024_496618720393384_1028522588_n.png?resize=317%2C320',320,0,'image-ex',92,NULL,NULL,NULL,NULL,NULL,NULL),(133,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg',319,0,'external',769,NULL,NULL,NULL,NULL,NULL,NULL),(134,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%201%3A%20Take%20the%20Time%20To%20Experience%20the%20World%20Around%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-1-take-the-time-to-experience-the-world-around-you%2F&share=email',319,0,'external',769,NULL,NULL,NULL,NULL,NULL,NULL),(135,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Eye-in-the-Sky-1680x1050.jpg?resize=400%2C250',319,0,'image-ex',769,NULL,NULL,NULL,NULL,NULL,NULL),(136,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg',318,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(137,'mailto:?subject=%5BShared%20Post%5D%20Pen%20and%20Paper&body=https%3A%2F%2Fwww.monicarenata.com%2Fpen-and-paper%2F&share=email',318,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(138,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/pen-and-paper.jpg?resize=400%2C265',318,0,'image-ex',753,NULL,NULL,NULL,NULL,NULL,NULL),(139,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg',317,0,'external',220,NULL,NULL,NULL,NULL,NULL,NULL),(140,'mailto:?subject=%5BShared%20Post%5D%20The%20Fear%20of%20Being%20Single&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-fear-of-being-single%2F&share=email',317,0,'external',220,NULL,NULL,NULL,NULL,NULL,NULL),(141,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/Learning-to-Love-Yourself.jpg?resize=400%2C266',317,0,'image-ex',220,NULL,NULL,NULL,NULL,NULL,NULL),(142,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg',316,0,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(143,'mailto:?subject=%5BShared%20Post%5D%20Beneath%20the%20Willow%20Tree&body=https%3A%2F%2Fwww.monicarenata.com%2Fbeneath-the-willow-tree%2F&share=email',316,0,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(144,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/flat-550x550-075-f.u2.jpg?resize=306%2C400',316,0,'image-ex',89,NULL,NULL,NULL,NULL,NULL,NULL),(145,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg',315,0,'external',284,NULL,NULL,NULL,NULL,NULL,NULL),(146,'mailto:?subject=%5BShared%20Post%5D%20The%20Truth%20Shall%20Set%20You%20Free%21%21%21&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-truth-shall-set-you-free%2F&share=email',315,0,'external',284,NULL,NULL,NULL,NULL,NULL,NULL),(147,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/truth.jpg?resize=400%2C266',315,0,'image-ex',284,NULL,NULL,NULL,NULL,NULL,NULL),(148,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg',314,0,'external',392,NULL,NULL,NULL,NULL,NULL,NULL),(149,'mailto:?subject=%5BShared%20Post%5D%20Small%20But%20Sweet&body=https%3A%2F%2Fwww.monicarenata.com%2Fsmall-but-sweet%2F&share=email',314,0,'external',392,NULL,NULL,NULL,NULL,NULL,NULL),(150,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/lilies.jpg?resize=356%2C400',314,0,'image-ex',392,NULL,NULL,NULL,NULL,NULL,NULL),(151,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg',313,0,'external',412,NULL,NULL,NULL,NULL,NULL,NULL),(152,'mailto:?subject=%5BShared%20Post%5D%20Floating&body=https%3A%2F%2Fwww.monicarenata.com%2Ffloating%2F&share=email',313,0,'external',412,NULL,NULL,NULL,NULL,NULL,NULL),(153,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/KingdomOfHeaven.jpg?resize=400%2C300',313,0,'image-ex',412,NULL,NULL,NULL,NULL,NULL,NULL),(154,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg',312,0,'external',489,NULL,NULL,NULL,NULL,NULL,NULL),(155,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%202%3A%20Know%20Thyself%21%21&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-2-know-thyself%2F&share=email',312,0,'external',489,NULL,NULL,NULL,NULL,NULL,NULL),(156,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/know_thyself.jpg?resize=397%2C400',312,0,'image-ex',489,NULL,NULL,NULL,NULL,NULL,NULL),(157,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg',311,0,'external',371,NULL,NULL,NULL,NULL,NULL,NULL),(158,'mailto:?subject=%5BShared%20Post%5D%20We%20are%20together&body=https%3A%2F%2Fwww.monicarenata.com%2Fwe-are-together%2F&share=email',311,0,'external',371,NULL,NULL,NULL,NULL,NULL,NULL),(159,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/45047192-end-relationship.jpg?resize=400%2C315',311,0,'image-ex',371,NULL,NULL,NULL,NULL,NULL,NULL),(160,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png',310,0,'external',376,NULL,NULL,NULL,NULL,NULL,NULL),(161,'mailto:?subject=%5BShared%20Post%5D%20Why%20do%20women%20say%20Chilvalry%20is%20dead%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhy-do-women-say-chilvalry-is-dead%2F&share=email',310,0,'external',376,NULL,NULL,NULL,NULL,NULL,NULL),(162,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/chivalry2.png?resize=400%2C220',310,0,'image-ex',376,NULL,NULL,NULL,NULL,NULL,NULL),(163,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg',309,0,'external',99,NULL,NULL,NULL,NULL,NULL,NULL),(164,'mailto:?subject=%5BShared%20Post%5D%20Winter&body=https%3A%2F%2Fwww.monicarenata.com%2Fwinter%2F&share=email',309,0,'external',99,NULL,NULL,NULL,NULL,NULL,NULL),(165,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/the_snow_storm_by_anugerah_ilahi.jpg?resize=400%2C300',309,0,'image-ex',99,NULL,NULL,NULL,NULL,NULL,NULL),(166,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg',308,0,'external',452,NULL,NULL,NULL,NULL,NULL,NULL),(167,'mailto:?subject=%5BShared%20Post%5D%20Brown%2C%20Blue%2C%20Green%2C%20and%20Hazel&body=https%3A%2F%2Fwww.monicarenata.com%2Fbrown-blue-green-and-hazel%2F&share=email',308,0,'external',452,NULL,NULL,NULL,NULL,NULL,NULL),(168,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/eyes.jpg?resize=400%2C266',308,0,'image-ex',452,NULL,NULL,NULL,NULL,NULL,NULL),(169,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg',307,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(170,'mailto:?subject=%5BShared%20Post%5D%20Love%20Run%20Free&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-run-free%2F&share=email',307,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(171,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/love2012.jpeg?resize=400%2C300',307,0,'image-ex',768,NULL,NULL,NULL,NULL,NULL,NULL),(172,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg',306,0,'external',285,NULL,NULL,NULL,NULL,NULL,NULL),(173,'mailto:?subject=%5BShared%20Post%5D%20As%20I%20walk%20in%20My%20Dreams&body=https%3A%2F%2Fwww.monicarenata.com%2Fas-i-walk-in-my-dreams%2F&share=email',306,0,'external',285,NULL,NULL,NULL,NULL,NULL,NULL),(174,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/warren_25271_2.jpg?resize=340%2C400',306,0,'image-ex',285,NULL,NULL,NULL,NULL,NULL,NULL),(175,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A',305,0,'external',261,NULL,NULL,NULL,NULL,NULL,NULL),(176,'mailto:?subject=%5BShared%20Post%5D%20I%20am%20just%20like%20you&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-am-just-like-you%2F&share=email',305,0,'external',261,NULL,NULL,NULL,NULL,NULL,NULL),(177,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDmuNzdpHdWy4vJ_ZT15O9vKd_6w1LnmtT2PfWfeoCQwM9trMZ5A',305,0,'image-ex',261,NULL,NULL,NULL,NULL,NULL,NULL),(178,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg',304,0,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(179,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%203%3A%20Appreciate%20What%20You%20Have&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-3-appreciate-what-you-have%2F&share=email',304,0,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(180,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/stop_to_appreciate_the_present_by_sweet_insanity-d4m34ch.jpg?resize=400%2C242',304,0,'image-ex',83,NULL,NULL,NULL,NULL,NULL,NULL),(181,'mailto:?subject=%5BShared%20Post%5D%20Reality%20TV&body=https%3A%2F%2Fwww.monicarenata.com%2Freality-tv%2F&share=email',303,0,'external',13,NULL,NULL,NULL,NULL,NULL,NULL),(182,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/04/bigstock-Reality-TV-7107918.jpg?resize=400%2C248',303,0,'image-ex',13,NULL,NULL,NULL,NULL,NULL,NULL),(183,'https://i0.wp.com/si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg?ssl=1',302,0,'external',497,NULL,NULL,NULL,NULL,NULL,NULL),(184,'mailto:?subject=%5BShared%20Post%5D%20The%20world&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-world%2F&share=email',302,0,'external',497,NULL,NULL,NULL,NULL,NULL,NULL),(185,'https://i0.wp.com/si0.twimg.com/profile_images/1144852754/Holding_the_world_in_your_hands_-_water.jpg?resize=400%2C252&ssl=1',302,0,'image-ex',497,NULL,NULL,NULL,NULL,NULL,NULL),(186,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg',301,0,'external',349,NULL,NULL,NULL,NULL,NULL,NULL),(187,'mailto:?subject=%5BShared%20Post%5D%20Speak&body=https%3A%2F%2Fwww.monicarenata.com%2Fspeak%2F&share=email',301,0,'external',349,NULL,NULL,NULL,NULL,NULL,NULL),(188,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/4880337776_95b5896c92_z.jpg?resize=303%2C400',301,0,'image-ex',349,NULL,NULL,NULL,NULL,NULL,NULL),(189,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg',300,0,'external',396,NULL,NULL,NULL,NULL,NULL,NULL),(190,'mailto:?subject=%5BShared%20Post%5D%20Without%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Fwithout-words%2F&share=email',300,0,'external',396,NULL,NULL,NULL,NULL,NULL,NULL),(191,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/Communicating-Without-Words.jpg?resize=400%2C135',300,0,'image-ex',396,NULL,NULL,NULL,NULL,NULL,NULL),(192,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg',298,0,'external',493,NULL,NULL,NULL,NULL,NULL,NULL),(193,'mailto:?subject=%5BShared%20Post%5D%20Drifting%20Away&body=https%3A%2F%2Fwww.monicarenata.com%2Fdrifting-away%2F&share=email',298,0,'external',493,NULL,NULL,NULL,NULL,NULL,NULL),(194,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/I_still_think_about_you_by_AnkyShpanky.jpg?resize=640%2C488',298,0,'image-ex',493,NULL,NULL,NULL,NULL,NULL,NULL),(195,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy',299,0,'external',785,NULL,NULL,NULL,NULL,NULL,NULL),(196,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%204%3A%20Determine%20how%20you%20want%20situations%20to%20affect%20you&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-4-determine-how-you-want-situations-to-affect-you%2F&share=email',299,0,'external',785,NULL,NULL,NULL,NULL,NULL,NULL),(197,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSBARY5evlDdnZS6Xr3Xo9Z6uX6RLi-hoGTtz4qetS4ChDPbOy',299,0,'image-ex',785,NULL,NULL,NULL,NULL,NULL,NULL),(198,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg',297,0,'external',758,NULL,NULL,NULL,NULL,NULL,NULL),(199,'mailto:?subject=%5BShared%20Post%5D%20A%20Choice&body=https%3A%2F%2Fwww.monicarenata.com%2Fa-choice%2F&share=email',297,0,'external',758,NULL,NULL,NULL,NULL,NULL,NULL),(200,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/creating_yourself.jpg?resize=400%2C337',297,0,'image-ex',758,NULL,NULL,NULL,NULL,NULL,NULL),(201,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%205%3A%20List%2025%20Truths%20About%20Yourself&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-5-list-25-truths-about-yourself%2F&share=email',296,0,'external',781,NULL,NULL,NULL,NULL,NULL,NULL),(202,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png',295,0,'external',573,NULL,NULL,NULL,NULL,NULL,NULL),(203,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Glad%20It%20wasn%27t%20me&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-glad-it-wasnt-me%2F&share=email',295,0,'external',573,NULL,NULL,NULL,NULL,NULL,NULL),(204,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/juice_tray_2.png?resize=320%2C213',295,0,'image-ex',573,NULL,NULL,NULL,NULL,NULL,NULL),(205,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg',294,0,'external',195,NULL,NULL,NULL,NULL,NULL,NULL),(206,'mailto:?subject=%5BShared%20Post%5D%20From%20Head%20to%20Toe&body=https%3A%2F%2Fwww.monicarenata.com%2Ffrom-head-to-toe%2F&share=email',294,0,'external',195,NULL,NULL,NULL,NULL,NULL,NULL),(207,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/550px-Get-a-Boy-in-Middle-School-to-Like-You-Step-1-Version-3.jpg?resize=320%2C200',294,0,'image-ex',195,NULL,NULL,NULL,NULL,NULL,NULL),(208,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg',293,0,'external',763,NULL,NULL,NULL,NULL,NULL,NULL),(209,'mailto:?subject=%5BShared%20Post%5D%20To%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fto-you%2F&share=email',293,0,'external',763,NULL,NULL,NULL,NULL,NULL,NULL),(210,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/broken-heart-lost-love-paper-Favim.com-262226_large.jpg?resize=320%2C240',293,0,'image-ex',763,NULL,NULL,NULL,NULL,NULL,NULL),(211,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg',292,0,'external',485,NULL,NULL,NULL,NULL,NULL,NULL),(212,'mailto:?subject=%5BShared%20Post%5D%20%E2%80%9CQUIT%21%20GIVE%20UP%21%20YOU%E2%80%99RE%20BEATEN%21%E2%80%9D&body=https%3A%2F%2Fwww.monicarenata.com%2Fquit-give-up-youre-beaten%2F&share=email',292,0,'external',485,NULL,NULL,NULL,NULL,NULL,NULL),(213,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/700263__large.jpg?resize=400%2C400',292,0,'image-ex',485,NULL,NULL,NULL,NULL,NULL,NULL),(214,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%206%3A%20Share%20a%20childhood%20memory&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-6-share-a-childhood-memory%2F&share=email',291,0,'external',784,NULL,NULL,NULL,NULL,NULL,NULL),(215,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg',290,0,'external',782,NULL,NULL,NULL,NULL,NULL,NULL),(216,'mailto:?subject=%5BShared%20Post%5D%20Fear&body=https%3A%2F%2Fwww.monicarenata.com%2Ffear%2F&share=email',290,0,'external',782,NULL,NULL,NULL,NULL,NULL,NULL),(217,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/night_terrors_ii_by_ani_r.jpg?resize=267%2C400',290,0,'image-ex',782,NULL,NULL,NULL,NULL,NULL,NULL),(218,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg',289,0,'external',786,NULL,NULL,NULL,NULL,NULL,NULL),(219,'mailto:?subject=%5BShared%20Post%5D%20The%20Windy%20Night&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-windy-night%2F&share=email',289,0,'external',786,NULL,NULL,NULL,NULL,NULL,NULL),(220,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/milton.jpg?resize=400%2C253',289,0,'image-ex',786,NULL,NULL,NULL,NULL,NULL,NULL),(221,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg',288,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(222,'mailto:?subject=%5BShared%20Post%5D%20Sweet%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Fsweet-love%2F&share=email',288,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(223,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/stock-vector-sweet-love-bird-card-92235451.jpg?resize=306%2C320',288,0,'image-ex',147,NULL,NULL,NULL,NULL,NULL,NULL),(224,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg',287,0,'external',198,NULL,NULL,NULL,NULL,NULL,NULL),(225,'mailto:?subject=%5BShared%20Post%5D%20The%20Kindest%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-kindest-heart%2F&share=email',287,0,'external',198,NULL,NULL,NULL,NULL,NULL,NULL),(226,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/419080_360032497361934_1044775627_n.jpg?resize=320%2C293',287,0,'image-ex',198,NULL,NULL,NULL,NULL,NULL,NULL),(227,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q',286,0,'external',783,NULL,NULL,NULL,NULL,NULL,NULL),(228,'mailto:?subject=%5BShared%20Post%5D%20The%20truth%20about%20my%20Love%20Poem&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-truth-about-my-love-poem%2F&share=email',286,0,'external',783,NULL,NULL,NULL,NULL,NULL,NULL),(229,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgOizka5kSbXYRdefliMDGUotg0ZJpTiVQK8weXMcYcssrH6xg2Q',286,0,'image-ex',783,NULL,NULL,NULL,NULL,NULL,NULL),(230,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg',285,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(231,'mailto:?subject=%5BShared%20Post%5D%20Because%20I%20have%20a%20Sister&body=https%3A%2F%2Fwww.monicarenata.com%2Fbecause-i-have-a-sister%2F&share=email',285,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(232,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/il_fullxfull.252045308.jpg?resize=400%2C213',285,0,'image-ex',780,NULL,NULL,NULL,NULL,NULL,NULL),(233,'https://i0.wp.com/www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg',284,0,'external',724,NULL,NULL,NULL,NULL,NULL,NULL),(234,'mailto:?subject=%5BShared%20Post%5D%20If%20I%20had%20a%20million%20wishes&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-i-had-a-million-wishes%2F&share=email',284,0,'external',724,NULL,NULL,NULL,NULL,NULL,NULL),(235,'https://i0.wp.com/www.empowernetwork.com/sabatek/files/2013/03/wishes.jpg?resize=320%2C240',284,0,'image-ex',724,NULL,NULL,NULL,NULL,NULL,NULL),(236,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png',283,0,'external',779,NULL,NULL,NULL,NULL,NULL,NULL),(237,'mailto:?subject=%5BShared%20Post%5D%20Standards&body=https%3A%2F%2Fwww.monicarenata.com%2Fstandards%2F&share=email',283,0,'external',779,NULL,NULL,NULL,NULL,NULL,NULL),(238,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/high_standards.png?w=640',283,0,'image-ex',779,NULL,NULL,NULL,NULL,NULL,NULL),(239,'http://addicted2success.com/success-advice/the-legendary-les-browns-6-keys-to-self-motivation/',282,0,'external',121,NULL,NULL,NULL,NULL,NULL,NULL),(240,'http://addicted2success.com/success-advice/5-ways-to-destroy-the-illusion-of-fear/',282,0,'external',121,NULL,NULL,NULL,NULL,NULL,NULL),(241,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg',282,0,'external',121,NULL,NULL,NULL,NULL,NULL,NULL),(242,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%207%3A%20Find%20out%20what%20Inspires%20you&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-7-find-out-what-inspires-you%2F&share=email',282,0,'external',121,NULL,NULL,NULL,NULL,NULL,NULL),(243,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/inspire.jpg?resize=320%2C320',282,0,'image-ex',121,NULL,NULL,NULL,NULL,NULL,NULL),(244,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg',281,0,'external',407,NULL,NULL,NULL,NULL,NULL,NULL),(245,'mailto:?subject=%5BShared%20Post%5D%20Tick%20Tock&body=https%3A%2F%2Fwww.monicarenata.com%2Ftick-tock%2F&share=email',281,0,'external',407,NULL,NULL,NULL,NULL,NULL,NULL),(246,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/tick-tock.jpg?resize=320%2C316',281,0,'image-ex',407,NULL,NULL,NULL,NULL,NULL,NULL),(247,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif',280,0,'external',206,NULL,NULL,NULL,NULL,NULL,NULL),(248,'mailto:?subject=%5BShared%20Post%5D%20River%20of%20Tears&body=https%3A%2F%2Fwww.monicarenata.com%2Friver-of-tears%2F&share=email',280,0,'external',206,NULL,NULL,NULL,NULL,NULL,NULL),(249,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river-tears.gif?resize=640%2C632',280,0,'image-ex',206,NULL,NULL,NULL,NULL,NULL,NULL),(250,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg',279,0,'external',416,NULL,NULL,NULL,NULL,NULL,NULL),(251,'mailto:?subject=%5BShared%20Post%5D%20A%20New%20Beginning&body=https%3A%2F%2Fwww.monicarenata.com%2Fa-new-beginning%2F&share=email',279,0,'external',416,NULL,NULL,NULL,NULL,NULL,NULL),(252,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/05/river_of_tears.jpg?w=640',279,0,'image-ex',416,NULL,NULL,NULL,NULL,NULL,NULL),(253,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw',278,0,'external',364,NULL,NULL,NULL,NULL,NULL,NULL),(254,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%208%3A%20Know%20Your%20Worth&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-8-know-your-worth%2F&share=email',278,0,'external',364,NULL,NULL,NULL,NULL,NULL,NULL),(255,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9x7gwosgKCF3kvOLYsP-wSSWLhwjM3O4U1c0zR4BRAQYNnTVRkw',278,0,'image-ex',364,NULL,NULL,NULL,NULL,NULL,NULL),(256,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png',277,0,'external',538,NULL,NULL,NULL,NULL,NULL,NULL),(257,'mailto:?subject=%5BShared%20Post%5D%20Tomorrow&body=https%3A%2F%2Fwww.monicarenata.com%2Ftomorrow%2F&share=email',277,0,'external',538,NULL,NULL,NULL,NULL,NULL,NULL),(258,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Yesterday-Today-Tomorrow-2011-Metro-manila-Film-Festival-drama-entry-regal-films-jun-lana-pinoy-movie-blogger.png?resize=320%2C174',277,0,'image-ex',538,NULL,NULL,NULL,NULL,NULL,NULL),(259,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg',276,0,'external',464,NULL,NULL,NULL,NULL,NULL,NULL),(260,'mailto:?subject=%5BShared%20Post%5D%20Horrific%20Travels&body=https%3A%2F%2Fwww.monicarenata.com%2Fhorrific-travels%2F&share=email',276,0,'external',464,NULL,NULL,NULL,NULL,NULL,NULL),(261,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/l.jpg?resize=175%2C320',276,0,'image-ex',464,NULL,NULL,NULL,NULL,NULL,NULL),(262,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg',275,0,'external',540,NULL,NULL,NULL,NULL,NULL,NULL),(263,'mailto:?subject=%5BShared%20Post%5D%20Love%20vs%20Hate&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-vs-hate%2F&share=email',275,0,'external',540,NULL,NULL,NULL,NULL,NULL,NULL),(264,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/124033426424151544895_1.jpg?resize=320%2C239',275,0,'image-ex',540,NULL,NULL,NULL,NULL,NULL,NULL),(265,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg',274,0,'external',355,NULL,NULL,NULL,NULL,NULL,NULL),(266,'mailto:?subject=%5BShared%20Post%5D%20The%20journey%20of%20the%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-journey-of-the-heart%2F&share=email',274,0,'external',355,NULL,NULL,NULL,NULL,NULL,NULL),(267,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/tumblr_m8p6573Flv1qmqzv9o1_500.jpg?resize=320%2C215',274,0,'image-ex',355,NULL,NULL,NULL,NULL,NULL,NULL),(268,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg',273,0,'external',38,NULL,NULL,NULL,NULL,NULL,NULL),(269,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%209%3A%20Take%20time%20to%20Notice&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-9-take-time-to-notice%2F&share=email',273,0,'external',38,NULL,NULL,NULL,NULL,NULL,NULL),(270,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/kindness-quotes-When-I-was-young-I-admired-clever-people.-Now-that-I-am-old-I-admire-kind-people.-Abraham-Joshua-Heschel.jpg?resize=320%2C320',273,0,'image-ex',38,NULL,NULL,NULL,NULL,NULL,NULL),(271,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA',272,0,'external',503,NULL,NULL,NULL,NULL,NULL,NULL),(272,'mailto:?subject=%5BShared%20Post%5D%20What%20is%20the%20point&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-is-the-point%2F&share=email',272,0,'external',503,NULL,NULL,NULL,NULL,NULL,NULL),(273,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlngk6UlafLAB8Sk_-m2tuFd2chVCSDvNDbyOUxmA5FAk56Q86hA',272,0,'image-ex',503,NULL,NULL,NULL,NULL,NULL,NULL),(274,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg',271,0,'external',383,NULL,NULL,NULL,NULL,NULL,NULL),(275,'mailto:?subject=%5BShared%20Post%5D%20Have%20you%20ever%20had%20a%20Shadow%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fhave-you-ever-had-a-shadow%2F&share=email',271,0,'external',383,NULL,NULL,NULL,NULL,NULL,NULL),(276,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/huge.6.34562.jpg?resize=263%2C320',271,0,'image-ex',383,NULL,NULL,NULL,NULL,NULL,NULL),(277,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg',270,0,'external',64,NULL,NULL,NULL,NULL,NULL,NULL),(278,'mailto:?subject=%5BShared%20Post%5D%20Finger%20Pointers&body=https%3A%2F%2Fwww.monicarenata.com%2Ffinger-pointers%2F&share=email',270,0,'external',64,NULL,NULL,NULL,NULL,NULL,NULL),(279,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/the-blame-game.jpg?w=640',270,0,'image-ex',64,NULL,NULL,NULL,NULL,NULL,NULL),(280,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg',269,0,'external',539,NULL,NULL,NULL,NULL,NULL,NULL),(281,'mailto:?subject=%5BShared%20Post%5D%20I%20can%27t&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-cant%2F&share=email',269,0,'external',539,NULL,NULL,NULL,NULL,NULL,NULL),(282,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/Kristian-D_crpd.jpg?resize=185%2C320',269,0,'image-ex',539,NULL,NULL,NULL,NULL,NULL,NULL),(283,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg',268,0,'external',269,NULL,NULL,NULL,NULL,NULL,NULL),(284,'mailto:?subject=%5BShared%20Post%5D%20In%20the%20end&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-the-end%2F&share=email',268,0,'external',269,NULL,NULL,NULL,NULL,NULL,NULL),(285,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/too-cute-.jpeg?resize=258%2C320',268,0,'image-ex',269,NULL,NULL,NULL,NULL,NULL,NULL),(286,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg',267,0,'external',189,NULL,NULL,NULL,NULL,NULL,NULL),(287,'mailto:?subject=%5BShared%20Post%5D%20Forever%20Never%20Lasts&body=https%3A%2F%2Fwww.monicarenata.com%2Fforever-never-lasts%2F&share=email',267,0,'external',189,NULL,NULL,NULL,NULL,NULL,NULL),(288,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/06/NeverWasteAnOpportunity.jpg?resize=320%2C202',267,0,'image-ex',189,NULL,NULL,NULL,NULL,NULL,NULL),(289,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png',266,0,'external',478,NULL,NULL,NULL,NULL,NULL,NULL),(290,'mailto:?subject=%5BShared%20Post%5D%20You%20Light%20Up%20My%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-light-up-my-life%2F&share=email',266,0,'external',478,NULL,NULL,NULL,NULL,NULL,NULL),(291,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?resize=320%2C262',266,0,'image-ex',478,NULL,NULL,NULL,NULL,NULL,NULL),(292,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg',265,0,'external',760,NULL,NULL,NULL,NULL,NULL,NULL),(293,'mailto:?subject=%5BShared%20Post%5D%20An%20Untouched%20Memory&body=https%3A%2F%2Fwww.monicarenata.com%2Fan-untouched-memory%2F&share=email',265,0,'external',760,NULL,NULL,NULL,NULL,NULL,NULL),(294,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/Dusty-road.jpg?resize=320%2C241',265,0,'image-ex',760,NULL,NULL,NULL,NULL,NULL,NULL),(295,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg',264,0,'external',572,NULL,NULL,NULL,NULL,NULL,NULL),(296,'mailto:?subject=%5BShared%20Post%5D%20Everyone%20Is%20A%20Winner&body=https%3A%2F%2Fwww.monicarenata.com%2Feveryone-is-a-winner%2F&share=email',264,0,'external',572,NULL,NULL,NULL,NULL,NULL,NULL),(297,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/everyone-wins.jpg?w=640',264,0,'image-ex',572,NULL,NULL,NULL,NULL,NULL,NULL),(298,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q',263,0,'external',656,NULL,NULL,NULL,NULL,NULL,NULL),(299,'mailto:?subject=%5BShared%20Post%5D%20Eye%20for%20an%20Eye&body=https%3A%2F%2Fwww.monicarenata.com%2Feye-for-an-eye%2F&share=email',263,0,'external',656,NULL,NULL,NULL,NULL,NULL,NULL),(300,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0EzGuGJwvSp-CRMlNspq1MOu83hVok_ynnZiQdnqBaIKMnj7Q',263,0,'image-ex',656,NULL,NULL,NULL,NULL,NULL,NULL),(301,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg',262,0,'external',222,NULL,NULL,NULL,NULL,NULL,NULL),(302,'mailto:?subject=%5BShared%20Post%5D%20Just%20Kinda&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-kinda%2F&share=email',262,0,'external',222,NULL,NULL,NULL,NULL,NULL,NULL),(303,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/word_cloud.91113326.jpg?resize=320%2C207',262,0,'image-ex',222,NULL,NULL,NULL,NULL,NULL,NULL),(304,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg',261,0,'external',592,NULL,NULL,NULL,NULL,NULL,NULL),(305,'mailto:?subject=%5BShared%20Post%5D%20You%20Said%20You%20would%20start%20tomorrow&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-said-you-would-start-tomorrow%2F&share=email',261,0,'external',592,NULL,NULL,NULL,NULL,NULL,NULL),(306,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/07/TP-151_1-young-to-old.jpg?resize=320%2C104',261,0,'image-ex',592,NULL,NULL,NULL,NULL,NULL,NULL),(307,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg',260,0,'external',609,NULL,NULL,NULL,NULL,NULL,NULL),(308,'mailto:?subject=%5BShared%20Post%5D%20Happiness%20is%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fhappiness-is-you%2F&share=email',260,0,'external',609,NULL,NULL,NULL,NULL,NULL,NULL),(309,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/2762d1356802014-happiness-now-photo-buterfly-sun.jpg?resize=298%2C320',260,0,'image-ex',609,NULL,NULL,NULL,NULL,NULL,NULL),(310,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg',259,0,'external',505,NULL,NULL,NULL,NULL,NULL,NULL),(311,'mailto:?subject=%5BShared%20Post%5D%20Weekly%20Challenge%2010%3A%20Accomplish%20Something&body=https%3A%2F%2Fwww.monicarenata.com%2Fweekly-challenge-10-accomplish-something%2F&share=email',259,0,'external',505,NULL,NULL,NULL,NULL,NULL,NULL),(312,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1443.jpg?resize=288%2C320',259,0,'image-ex',505,NULL,NULL,NULL,NULL,NULL,NULL),(313,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g',258,0,'external',625,NULL,NULL,NULL,NULL,NULL,NULL),(314,'mailto:?subject=%5BShared%20Post%5D%20Rain%20Rain&body=https%3A%2F%2Fwww.monicarenata.com%2Frain-rain%2F&share=email',258,0,'external',625,NULL,NULL,NULL,NULL,NULL,NULL),(315,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQL_QTubNDxf-NkeuQqvO5eqn-FoV5hguFpMe9mF5sjX-YKO5880g',258,0,'image-ex',625,NULL,NULL,NULL,NULL,NULL,NULL),(316,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg',257,0,'external',133,NULL,NULL,NULL,NULL,NULL,NULL),(317,'mailto:?subject=%5BShared%20Post%5D%20Statistics&body=https%3A%2F%2Fwww.monicarenata.com%2Fstatistics%2F&share=email',257,0,'external',133,NULL,NULL,NULL,NULL,NULL,NULL),(318,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/stats.jpg?resize=320%2C225',257,0,'image-ex',133,NULL,NULL,NULL,NULL,NULL,NULL),(319,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg',256,0,'external',631,NULL,NULL,NULL,NULL,NULL,NULL),(320,'http://www.amazon.com/dp/B00EP5A484/ref=cm_sw_r_tw_dp_B.Sfsb0N6HCRW',256,0,'external',631,NULL,NULL,NULL,NULL,NULL,NULL),(321,'http://www.amazon.com/gp/feature.html/ref=dig_arl_box?ie=UTF8&docId=1000493771',256,0,'external',631,NULL,NULL,NULL,NULL,NULL,NULL),(322,'mailto:?subject=%5BShared%20Post%5D%20The%20Awkward%20Butterfly&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-awkward-butterfly%2F&share=email',256,0,'external',631,NULL,NULL,NULL,NULL,NULL,NULL),(323,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/The-Awkward-Butterfly.jpg?resize=201%2C320',256,0,'image-ex',631,NULL,NULL,NULL,NULL,NULL,NULL),(324,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg',255,0,'external',630,NULL,NULL,NULL,NULL,NULL,NULL),(325,'mailto:?subject=%5BShared%20Post%5D%20Mirror%20Mirror&body=https%3A%2F%2Fwww.monicarenata.com%2Fmirror-mirror%2F&share=email',255,0,'external',630,NULL,NULL,NULL,NULL,NULL,NULL),(326,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/Mirror_mirror_on_the_wall____by_iKink.jpg?resize=213%2C320',255,0,'image-ex',630,NULL,NULL,NULL,NULL,NULL,NULL),(327,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw',254,0,'external',646,NULL,NULL,NULL,NULL,NULL,NULL),(328,'mailto:?subject=%5BShared%20Post%5D%20The%20Remedy%20Is%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-remedy-is-me%2F&share=email',254,0,'external',646,NULL,NULL,NULL,NULL,NULL,NULL),(329,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlsDrzwE0Hra8-arhdV4uyGjTnNWYjTzwy51-kb6FA9FCueL0xFw',254,0,'image-ex',646,NULL,NULL,NULL,NULL,NULL,NULL),(330,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg',253,0,'external',363,NULL,NULL,NULL,NULL,NULL,NULL),(331,'mailto:?subject=%5BShared%20Post%5D%20They%20Said&body=https%3A%2F%2Fwww.monicarenata.com%2Fthey-said%2F&share=email',253,0,'external',363,NULL,NULL,NULL,NULL,NULL,NULL),(332,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/believe-in-yourself.jpg?resize=316%2C320',253,0,'image-ex',363,NULL,NULL,NULL,NULL,NULL,NULL),(333,'http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi',252,0,'external',655,NULL,NULL,NULL,NULL,NULL,NULL),(334,'mailto:?subject=%5BShared%20Post%5D%20Mornings%20Come&body=https%3A%2F%2Fwww.monicarenata.com%2Fmornings-come%2F&share=email',252,0,'external',655,NULL,NULL,NULL,NULL,NULL,NULL),(335,'http://wendysmedley.typepad.com/.a/6a00d834520b6a69e20162fc466d4d970d-500wi',252,0,'image-ex',655,NULL,NULL,NULL,NULL,NULL,NULL),(336,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg',251,0,'external',337,NULL,NULL,NULL,NULL,NULL,NULL),(337,'mailto:?subject=%5BShared%20Post%5D%20Fish&body=https%3A%2F%2Fwww.monicarenata.com%2Ffish%2F&share=email',251,0,'external',337,NULL,NULL,NULL,NULL,NULL,NULL),(338,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/under_the_sea-11.jpg?resize=320%2C255',251,0,'image-ex',337,NULL,NULL,NULL,NULL,NULL,NULL),(339,'http://www.monicarenata.com/wp-content/uploads/2013/08/header-300x150.jpg',250,0,'internal',482,NULL,NULL,NULL,NULL,NULL,NULL),(340,'mailto:?subject=%5BShared%20Post%5D%20Speak%20Life%20Into%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fspeak-life-into-me%2F&share=email',250,0,'external',482,NULL,NULL,NULL,NULL,NULL,NULL),(341,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/header.jpg?resize=320%2C160',250,0,'image-ex',482,NULL,NULL,NULL,NULL,NULL,NULL),(342,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg',249,0,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(343,'mailto:?subject=%5BShared%20Post%5D%20The%20Secret&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-secret%2F&share=email',249,0,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(344,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/LET-THE-SECRET-GET-OUT4.jpg?resize=320%2C320',249,0,'image-ex',77,NULL,NULL,NULL,NULL,NULL,NULL),(345,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug',248,0,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(346,'mailto:?subject=%5BShared%20Post%5D%20My%20Heart%20Beats&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-heart-beats%2F&share=email',248,0,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(347,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT9xdT8TxQhn8JxT9thtYzs3qTR53GV4_uC1xCiCWU2O92OrbtYug',248,0,'image-ex',80,NULL,NULL,NULL,NULL,NULL,NULL),(348,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg',247,0,'external',296,NULL,NULL,NULL,NULL,NULL,NULL),(349,'mailto:?subject=%5BShared%20Post%5D%20On%20the%20Road&body=https%3A%2F%2Fwww.monicarenata.com%2Fon-the-road%2F&share=email',247,0,'external',296,NULL,NULL,NULL,NULL,NULL,NULL),(350,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/1477297469_1b3567a865.jpg?resize=320%2C213',247,0,'image-ex',296,NULL,NULL,NULL,NULL,NULL,NULL),(351,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg',246,0,'external',209,NULL,NULL,NULL,NULL,NULL,NULL),(352,'mailto:?subject=%5BShared%20Post%5D%20My%20Night%20Under%20The%20Stars&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-night-under-the-stars%2F&share=email',246,0,'external',209,NULL,NULL,NULL,NULL,NULL,NULL),(353,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/08/moon-13-sky-night.jpg?resize=320%2C240',246,0,'image-ex',209,NULL,NULL,NULL,NULL,NULL,NULL),(354,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif',245,0,'external',742,NULL,NULL,NULL,NULL,NULL,NULL),(355,'mailto:?subject=%5BShared%20Post%5D%20Crying%20in%20the%20rain&body=https%3A%2F%2Fwww.monicarenata.com%2Fcrying-in-the-rain%2F&share=email',245,0,'external',742,NULL,NULL,NULL,NULL,NULL,NULL),(356,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/woman-20on-20bench-20in-20rain.gif?w=640',245,0,'image-ex',742,NULL,NULL,NULL,NULL,NULL,NULL),(357,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg',244,0,'external',346,NULL,NULL,NULL,NULL,NULL,NULL),(358,'mailto:?subject=%5BShared%20Post%5D%20Somebody&body=https%3A%2F%2Fwww.monicarenata.com%2Fsomebody%2F&share=email',244,0,'external',346,NULL,NULL,NULL,NULL,NULL,NULL),(359,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/1708966_300.jpg?w=640',244,0,'image-ex',346,NULL,NULL,NULL,NULL,NULL,NULL),(360,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg',243,0,'external',373,NULL,NULL,NULL,NULL,NULL,NULL),(361,'mailto:?subject=%5BShared%20Post%5D%20The%20Words%20to%20Say&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-words-to-say%2F&share=email',243,0,'external',373,NULL,NULL,NULL,NULL,NULL,NULL),(362,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/two-hearts-tied-together-with-a-ring.jpg?resize=254%2C320',243,0,'image-ex',373,NULL,NULL,NULL,NULL,NULL,NULL),(363,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg',242,0,'external',476,NULL,NULL,NULL,NULL,NULL,NULL),(364,'mailto:?subject=%5BShared%20Post%5D%20Be%20the%20Change%20you%20wish%20to%20see&body=https%3A%2F%2Fwww.monicarenata.com%2Fbe-the-change-you-wish-to-see%2F&share=email',242,0,'external',476,NULL,NULL,NULL,NULL,NULL,NULL),(365,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/THE-AWKWARD-BUTTERFLY.jpeg?resize=207%2C320',242,0,'image-ex',476,NULL,NULL,NULL,NULL,NULL,NULL),(366,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg',241,0,'external',597,NULL,NULL,NULL,NULL,NULL,NULL),(367,'mailto:?subject=%5BShared%20Post%5D%20Everyone%20Else&body=https%3A%2F%2Fwww.monicarenata.com%2Feveryone-else%2F&share=email',241,0,'external',597,NULL,NULL,NULL,NULL,NULL,NULL),(368,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/Sometimes-I-have-to-remind-myself-that-I-dont-have-to-do-what-everyone-else-is-doing.jpg?resize=231%2C320',241,0,'image-ex',597,NULL,NULL,NULL,NULL,NULL,NULL),(369,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png',240,0,'external',246,NULL,NULL,NULL,NULL,NULL,NULL),(370,'mailto:?subject=%5BShared%20Post%5D%20Just%20because%20they%20don%27t%20say%20%22I%20love%20you%22%20...Doesn%27t%20mean%20they%20don%27t&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-because-they-dont-say-i-love-you-doesnt-mean-they-dont%2F&share=email',240,0,'external',246,NULL,NULL,NULL,NULL,NULL,NULL),(371,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/tumblr_l88fdy9OUW1qargqko1_500.png?resize=320%2C225',240,0,'image-ex',246,NULL,NULL,NULL,NULL,NULL,NULL),(372,'https://i0.wp.com/www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg',239,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(373,'mailto:?subject=%5BShared%20Post%5D%20Flowers%20Never%20Bloom&body=https%3A%2F%2Fwww.monicarenata.com%2Fflowers-never-bloom%2F&share=email',239,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(374,'https://i0.wp.com/www.indiwall.com/big-wallpaper/1280x960/hd-wallpapers-beautiful-winter-desktop-wallpaper-frosted-flower-beauty-wallpixy-1280x960-wallpaper.jpg?resize=320%2C240',239,0,'image-ex',27,NULL,NULL,NULL,NULL,NULL,NULL),(375,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD',238,0,'external',696,NULL,NULL,NULL,NULL,NULL,NULL),(376,'mailto:?subject=%5BShared%20Post%5D%20Never%20Leave%20You%20Lonely&body=https%3A%2F%2Fwww.monicarenata.com%2Fnever-leave-you-lonely%2F&share=email',238,0,'external',696,NULL,NULL,NULL,NULL,NULL,NULL),(377,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTCU43ExGADGS6ofLGgrkW1wulmVOuT1nFTCi4Rm5D6Cwk0BTMD',238,0,'image-ex',696,NULL,NULL,NULL,NULL,NULL,NULL),(378,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg',237,0,'external',613,NULL,NULL,NULL,NULL,NULL,NULL),(379,'mailto:?subject=%5BShared%20Post%5D%20The%20House&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-house%2F&share=email',237,0,'external',613,NULL,NULL,NULL,NULL,NULL,NULL),(380,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/11689555-silhouette-of-family-with-luggage-standing-near-window-in-airport.jpg?resize=320%2C213',237,0,'image-ex',613,NULL,NULL,NULL,NULL,NULL,NULL),(381,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg',236,0,'external',394,NULL,NULL,NULL,NULL,NULL,NULL),(382,'mailto:?subject=%5BShared%20Post%5D%20Bitch&body=https%3A%2F%2Fwww.monicarenata.com%2Fbitch%2F&share=email',236,0,'external',394,NULL,NULL,NULL,NULL,NULL,NULL),(383,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/09/DVAM.jpg?resize=320%2C302',236,0,'image-ex',394,NULL,NULL,NULL,NULL,NULL,NULL),(384,'http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20',235,0,'external',703,NULL,NULL,NULL,NULL,NULL,NULL),(385,'mailto:?subject=%5BShared%20Post%5D%20Patience&body=https%3A%2F%2Fwww.monicarenata.com%2Fpatience%2F&share=email',235,0,'external',703,NULL,NULL,NULL,NULL,NULL,NULL),(386,'http://1.bp.blogspot.com/_HTgBGyHAR0g/S_i3zxCPhpI/AAAAAAAAByA/aRK3yeqKRBE/s1600/impatient-man.jpg%20',235,0,'image-ex',703,NULL,NULL,NULL,NULL,NULL,NULL),(387,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg',234,0,'external',35,NULL,NULL,NULL,NULL,NULL,NULL),(388,'mailto:?subject=%5BShared%20Post%5D%20The%20Benefits&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-benefits%2F&share=email',234,0,'external',35,NULL,NULL,NULL,NULL,NULL,NULL),(389,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/8027223-blank-vintage-red-wove-paper-card1.jpg?resize=320%2C320',234,0,'image-ex',35,NULL,NULL,NULL,NULL,NULL,NULL),(390,'mailto:?subject=%5BShared%20Post%5D%20The%20Song%20About%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-song-about-you%2F&share=email',233,0,'external',143,NULL,NULL,NULL,NULL,NULL,NULL),(391,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ',232,0,'external',670,NULL,NULL,NULL,NULL,NULL,NULL),(392,'mailto:?subject=%5BShared%20Post%5D%20Delete&body=https%3A%2F%2Fwww.monicarenata.com%2Fdelete%2F&share=email',232,0,'external',670,NULL,NULL,NULL,NULL,NULL,NULL),(393,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSIs2d-BfysbI_1_ZYSPOH1Y9owtW9wjppDCdectFIZrD40ORk6hQ',232,0,'image-ex',670,NULL,NULL,NULL,NULL,NULL,NULL),(394,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png',231,0,'external',711,NULL,NULL,NULL,NULL,NULL,NULL),(395,'mailto:?subject=%5BShared%20Post%5D%20The%20Man&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-man%2F&share=email',231,0,'external',711,NULL,NULL,NULL,NULL,NULL,NULL),(396,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/shadow-man.png?resize=277%2C320',231,0,'image-ex',711,NULL,NULL,NULL,NULL,NULL,NULL),(397,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg',230,0,'external',109,NULL,NULL,NULL,NULL,NULL,NULL),(398,'mailto:?subject=%5BShared%20Post%5D%20Running&body=https%3A%2F%2Fwww.monicarenata.com%2Frunning%2F&share=email',230,0,'external',109,NULL,NULL,NULL,NULL,NULL,NULL),(399,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/fashion3-ck-0409-lg.jpg?resize=240%2C320',230,0,'image-ex',109,NULL,NULL,NULL,NULL,NULL,NULL),(400,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg',229,0,'external',431,NULL,NULL,NULL,NULL,NULL,NULL),(401,'mailto:?subject=%5BShared%20Post%5D%20%22Ms.%20I%20Need%20You%20Today%22&body=https%3A%2F%2Fwww.monicarenata.com%2Fms-i-need-you-today%2F&share=email',229,0,'external',431,NULL,NULL,NULL,NULL,NULL,NULL),(402,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Crying_by_zero_rider.jpg?resize=279%2C320',229,0,'image-ex',431,NULL,NULL,NULL,NULL,NULL,NULL),(403,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg',228,0,'external',713,NULL,NULL,NULL,NULL,NULL,NULL),(404,'mailto:?subject=%5BShared%20Post%5D%20Who%20is%20holding%20you%20back%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-is-holding-you-back%2F&share=email',228,0,'external',713,NULL,NULL,NULL,NULL,NULL,NULL),(405,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/6a00d83455f11369e20177432f5723970d-320wi.jpg?w=640',228,0,'image-ex',713,NULL,NULL,NULL,NULL,NULL,NULL),(406,'https://i0.wp.com/cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg',227,0,'external',185,NULL,NULL,NULL,NULL,NULL,NULL),(407,'mailto:?subject=%5BShared%20Post%5D%20The%20Cut&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-cut%2F&share=email',227,0,'external',185,NULL,NULL,NULL,NULL,NULL,NULL),(408,'https://i0.wp.com/cf.bizspeaking.com/image/bizupdate_5f42a8eadc0a984a40995812d27bb1c928621bb7.jpeg?resize=320%2C240',227,0,'image-ex',185,NULL,NULL,NULL,NULL,NULL,NULL),(409,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg',226,0,'external',217,NULL,NULL,NULL,NULL,NULL,NULL),(410,'mailto:?subject=%5BShared%20Post%5D%201st%20Place&body=https%3A%2F%2Fwww.monicarenata.com%2F1st-place%2F&share=email',226,0,'external',217,NULL,NULL,NULL,NULL,NULL,NULL),(411,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/3853962_300.jpg?w=640',226,0,'image-ex',217,NULL,NULL,NULL,NULL,NULL,NULL),(412,'http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA',225,0,'external',704,NULL,NULL,NULL,NULL,NULL,NULL),(413,'mailto:?subject=%5BShared%20Post%5D%20Perfection&body=https%3A%2F%2Fwww.monicarenata.com%2Fperfection%2F&share=email',225,0,'external',704,NULL,NULL,NULL,NULL,NULL,NULL),(414,'http://t0.gstatic.com/images?q=tbn:ANd9GcQ5LKNARwUaokuUY_IBO1QNommjxLcCEu_5oa-qxlrIAbhqd4OuQA',225,0,'image-ex',704,NULL,NULL,NULL,NULL,NULL,NULL),(415,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg',224,0,'external',602,NULL,NULL,NULL,NULL,NULL,NULL),(416,'mailto:?subject=%5BShared%20Post%5D%20That%20Moment&body=https%3A%2F%2Fwww.monicarenata.com%2Fthat-moment%2F&share=email',224,0,'external',602,NULL,NULL,NULL,NULL,NULL,NULL),(417,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/Frozen-in-Time-by-StinaBG.jpg?resize=320%2C233',224,0,'image-ex',602,NULL,NULL,NULL,NULL,NULL,NULL),(418,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg',223,0,'external',699,NULL,NULL,NULL,NULL,NULL,NULL),(419,'mailto:?subject=%5BShared%20Post%5D%20Never%20change%20for%20others%2C%20Only%20change%20for%20YOURSELF.&body=https%3A%2F%2Fwww.monicarenata.com%2Fnever-change-for-others-only-change-for-yourself%2F&share=email',223,0,'external',699,NULL,NULL,NULL,NULL,NULL,NULL),(420,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/7951852050_f243c5a318.jpg?resize=300%2C300',223,0,'image-ex',699,NULL,NULL,NULL,NULL,NULL,NULL),(421,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw',222,0,'external',744,NULL,NULL,NULL,NULL,NULL,NULL),(422,'mailto:?subject=%5BShared%20Post%5D%20What%20wakes%20you%20up%20in%20the%20morning%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-wakes-you-up-in-the-morning%2F&share=email',222,0,'external',744,NULL,NULL,NULL,NULL,NULL,NULL),(423,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIO6C_Bocgijs7dqkj6gbZZw3fWnvBfpXf5x2mA39Z4GjW2WOw',222,0,'image-ex',744,NULL,NULL,NULL,NULL,NULL,NULL),(424,'http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp',221,0,'external',204,NULL,NULL,NULL,NULL,NULL,NULL),(425,'mailto:?subject=%5BShared%20Post%5D%20The%20Ship&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-ship%2F&share=email',221,0,'external',204,NULL,NULL,NULL,NULL,NULL,NULL),(426,'http://t1.gstatic.com/images?q=tbn:ANd9GcQjbbedG77w7BeZqwL7D5HXl4kMDmWJGdA4biTfP9UsfILdpavp',221,0,'image-ex',204,NULL,NULL,NULL,NULL,NULL,NULL),(427,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png',220,0,'external',409,NULL,NULL,NULL,NULL,NULL,NULL),(428,'mailto:?subject=%5BShared%20Post%5D%20Changing%20Others&body=https%3A%2F%2Fwww.monicarenata.com%2Fchanging-others%2F&share=email',220,0,'external',409,NULL,NULL,NULL,NULL,NULL,NULL),(429,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/10/holstee.png?resize=320%2C231',220,0,'image-ex',409,NULL,NULL,NULL,NULL,NULL,NULL),(430,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg',219,0,'external',701,NULL,NULL,NULL,NULL,NULL,NULL),(431,'mailto:?subject=%5BShared%20Post%5D%20Winter%20Comes&body=https%3A%2F%2Fwww.monicarenata.com%2Fwinter-comes%2F&share=email',219,0,'external',701,NULL,NULL,NULL,NULL,NULL,NULL),(432,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Cold-Cold-Heart.jpg?resize=320%2C214',219,0,'image-ex',701,NULL,NULL,NULL,NULL,NULL,NULL),(433,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg',218,0,'external',495,NULL,NULL,NULL,NULL,NULL,NULL),(434,'mailto:?subject=%5BShared%20Post%5D%20Life%20is%20Beautiful&body=https%3A%2F%2Fwww.monicarenata.com%2Flife-is-beautiful%2F&share=email',218,0,'external',495,NULL,NULL,NULL,NULL,NULL,NULL),(435,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1394408_545552508859652_2056967876_n.jpg?resize=320%2C320',218,0,'image-ex',495,NULL,NULL,NULL,NULL,NULL,NULL),(436,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg',217,0,'external',462,NULL,NULL,NULL,NULL,NULL,NULL),(437,'mailto:?subject=%5BShared%20Post%5D%20Genuine%20Kindness&body=https%3A%2F%2Fwww.monicarenata.com%2Fgenuine-kindness%2F&share=email',217,0,'external',462,NULL,NULL,NULL,NULL,NULL,NULL),(438,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/full_1328574703kindness.jpg?resize=320%2C181',217,0,'image-ex',462,NULL,NULL,NULL,NULL,NULL,NULL),(439,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg',216,0,'external',137,NULL,NULL,NULL,NULL,NULL,NULL),(440,'mailto:?subject=%5BShared%20Post%5D%20Keep&body=https%3A%2F%2Fwww.monicarenata.com%2Fkeep%2F&share=email',216,0,'external',137,NULL,NULL,NULL,NULL,NULL,NULL),(441,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man-walking-away.jpg?resize=320%2C193',216,0,'image-ex',137,NULL,NULL,NULL,NULL,NULL,NULL),(442,'mailto:?subject=%5BShared%20Post%5D%20Can%27t%20Bring%20Me%20Down&body=https%3A%2F%2Fwww.monicarenata.com%2Fcant-bring-me-down%2F&share=email',215,0,'external',698,NULL,NULL,NULL,NULL,NULL,NULL),(443,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6',214,0,'external',226,NULL,NULL,NULL,NULL,NULL,NULL),(444,'mailto:?subject=%5BShared%20Post%5D%20Let%20Your%20Guard%20Down&body=https%3A%2F%2Fwww.monicarenata.com%2Flet-your-guard-down%2F&share=email',214,0,'external',226,NULL,NULL,NULL,NULL,NULL,NULL),(445,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS9gNLOQhsLe0rhBK1cJUzlf5jmljc-HqEpJlSKFgKCXcRAVr5tgEAGtS6',214,0,'image-ex',226,NULL,NULL,NULL,NULL,NULL,NULL),(446,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg',213,0,'external',675,NULL,NULL,NULL,NULL,NULL,NULL),(447,'mailto:?subject=%5BShared%20Post%5D%20Learn%20To%20Listen%20%3D%20Listen%20to%20Learn&body=https%3A%2F%2Fwww.monicarenata.com%2Flearn-to-listen-listen-to-learn%2F&share=email',213,0,'external',675,NULL,NULL,NULL,NULL,NULL,NULL),(448,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/listening.jpg?resize=320%2C231',213,0,'image-ex',675,NULL,NULL,NULL,NULL,NULL,NULL),(449,'mailto:?subject=%5BShared%20Post%5D%20A%20New%20Truth%20%7BJust%20Something%20on%20my%20Mind%7D&body=https%3A%2F%2Fwww.monicarenata.com%2Fa-new-truth-just-something-on-my-mind%2F&share=email',212,0,'external',700,NULL,NULL,NULL,NULL,NULL,NULL),(450,'mailto:?subject=%5BShared%20Post%5D%20HATE.......An%20Unneccessary%20Burden&body=https%3A%2F%2Fwww.monicarenata.com%2Fhate-an-unneccessary-burden%2F&share=email',211,0,'external',697,NULL,NULL,NULL,NULL,NULL,NULL),(451,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj-300x234.jpg',210,0,'external',684,NULL,NULL,NULL,NULL,NULL,NULL),(452,'mailto:?subject=%5BShared%20Post%5D%20The%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-life%2F&share=email',210,0,'external',684,NULL,NULL,NULL,NULL,NULL,NULL),(453,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/il_fullxfull.366659127_c1vj.jpg?resize=320%2C249',210,0,'image-ex',684,NULL,NULL,NULL,NULL,NULL,NULL),(454,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg',209,0,'external',253,NULL,NULL,NULL,NULL,NULL,NULL),(455,'mailto:?subject=%5BShared%20Post%5D%20Grandpa%20Said&body=https%3A%2F%2Fwww.monicarenata.com%2Fgrandpa-said%2F&share=email',209,0,'external',253,NULL,NULL,NULL,NULL,NULL,NULL),(456,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/angel-blue-Heart-With-Wings.jpg?resize=320%2C256',209,0,'image-ex',253,NULL,NULL,NULL,NULL,NULL,NULL),(457,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg',208,0,'external',666,NULL,NULL,NULL,NULL,NULL,NULL),(458,'mailto:?subject=%5BShared%20Post%5D%20Money%2C%20Money%2C%20Money&body=https%3A%2F%2Fwww.monicarenata.com%2Fmoney-money-money%2F&share=email',208,0,'external',666,NULL,NULL,NULL,NULL,NULL,NULL),(459,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/inline-you-are-rich-now-what-lonely-guy.jpg?resize=320%2C183',208,0,'image-ex',666,NULL,NULL,NULL,NULL,NULL,NULL),(460,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg',207,0,'external',681,NULL,NULL,NULL,NULL,NULL,NULL),(461,'mailto:?subject=%5BShared%20Post%5D%20I%20could%20say%20I%20miss%20you&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-could-say-i-miss-you%2F&share=email',207,0,'external',681,NULL,NULL,NULL,NULL,NULL,NULL),(462,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/miss-you-056.jpg?resize=320%2C257',207,0,'image-ex',681,NULL,NULL,NULL,NULL,NULL,NULL),(463,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg',206,0,'external',368,NULL,NULL,NULL,NULL,NULL,NULL),(464,'mailto:?subject=%5BShared%20Post%5D%20Pretty%2C%20Pretty%2C%20Pretty&body=https%3A%2F%2Fwww.monicarenata.com%2Fpretty-pretty-pretty%2F&share=email',206,0,'external',368,NULL,NULL,NULL,NULL,NULL,NULL),(465,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/the_girl_in_the_mirror__by_pretty_as_a_picture.jpg?resize=231%2C320',206,0,'image-ex',368,NULL,NULL,NULL,NULL,NULL,NULL),(466,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original-300x185.jpg',205,0,'external',673,NULL,NULL,NULL,NULL,NULL,NULL),(467,'mailto:?subject=%5BShared%20Post%5D%20The%20Collection&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-collection%2F&share=email',205,0,'external',673,NULL,NULL,NULL,NULL,NULL,NULL),(468,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/artworks-000005112734-mgtev5-original.jpg?resize=320%2C198',205,0,'image-ex',673,NULL,NULL,NULL,NULL,NULL,NULL),(469,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi',204,0,'external',124,NULL,NULL,NULL,NULL,NULL,NULL),(470,'mailto:?subject=%5BShared%20Post%5D%20My%20Favorite%20Flowers&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-favorite-flowers%2F&share=email',204,0,'external',124,NULL,NULL,NULL,NULL,NULL,NULL),(471,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPzjqnuCOM9zyDqxo-yeyDXmXRD9QUf5mIs-b60HaqTccpseUi',204,0,'image-ex',124,NULL,NULL,NULL,NULL,NULL,NULL),(472,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg',203,0,'external',454,NULL,NULL,NULL,NULL,NULL,NULL),(473,'mailto:?subject=%5BShared%20Post%5D%20The%20Last%20Kiss&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-last-kiss%2F&share=email',203,0,'external',454,NULL,NULL,NULL,NULL,NULL,NULL),(474,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Kissing-in-the-rain-in-black.jpg?resize=320%2C282',203,0,'image-ex',454,NULL,NULL,NULL,NULL,NULL,NULL),(475,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg',202,0,'external',679,NULL,NULL,NULL,NULL,NULL,NULL),(476,'mailto:?subject=%5BShared%20Post%5D%20The%20Climb&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-climb%2F&share=email',202,0,'external',679,NULL,NULL,NULL,NULL,NULL,NULL),(477,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlXzRMP_OVmVYHOnizswfTl-Kg_eUBs6SiCI87tkbjDxlCy0aCZg',202,0,'image-ex',679,NULL,NULL,NULL,NULL,NULL,NULL),(478,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg',201,0,'external',223,NULL,NULL,NULL,NULL,NULL,NULL),(479,'mailto:?subject=%5BShared%20Post%5D%20The%20Morning%20Hustle&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-morning-hustle%2F&share=email',201,0,'external',223,NULL,NULL,NULL,NULL,NULL,NULL),(480,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/feeling-tired-woozy.jpg?resize=221%2C320',201,0,'image-ex',223,NULL,NULL,NULL,NULL,NULL,NULL),(481,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg',200,0,'external',228,NULL,NULL,NULL,NULL,NULL,NULL),(482,'mailto:?subject=%5BShared%20Post%5D%20Silence&body=https%3A%2F%2Fwww.monicarenata.com%2Fsilence%2F&share=email',200,0,'external',228,NULL,NULL,NULL,NULL,NULL,NULL),(483,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Silence-Deafens1.jpg?resize=213%2C320',200,0,'image-ex',228,NULL,NULL,NULL,NULL,NULL,NULL),(484,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg',199,0,'external',247,NULL,NULL,NULL,NULL,NULL,NULL),(485,'mailto:?subject=%5BShared%20Post%5D%20My%20Dream%20of%20Me%20and%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-dream-of-me-and-you%2F&share=email',199,0,'external',247,NULL,NULL,NULL,NULL,NULL,NULL),(486,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Photoshop-Fantasy-Dreaming-art-mrm.jpg?resize=320%2C240',199,0,'image-ex',247,NULL,NULL,NULL,NULL,NULL,NULL),(487,'http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig',198,0,'external',28,NULL,NULL,NULL,NULL,NULL,NULL),(488,'mailto:?subject=%5BShared%20Post%5D%20Imprisoned&body=https%3A%2F%2Fwww.monicarenata.com%2Fimprisoned%2F&share=email',198,0,'external',28,NULL,NULL,NULL,NULL,NULL,NULL),(489,'http://t3.gstatic.com/images?q=tbn:ANd9GcRkQq7cAexqV0mIh9MHnR06vYoOR8zyowPWndE4GljJmOWNRchPig',198,0,'image-ex',28,NULL,NULL,NULL,NULL,NULL,NULL),(490,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg',197,0,'external',87,NULL,NULL,NULL,NULL,NULL,NULL),(491,'mailto:?subject=%5BShared%20Post%5D%20Peanut%20Butter&body=https%3A%2F%2Fwww.monicarenata.com%2Fpeanut-butter%2F&share=email',197,0,'external',87,NULL,NULL,NULL,NULL,NULL,NULL),(492,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/POV_PeanutButter.jpg?resize=320%2C301',197,0,'image-ex',87,NULL,NULL,NULL,NULL,NULL,NULL),(493,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg',196,0,'external',433,NULL,NULL,NULL,NULL,NULL,NULL),(494,'mailto:?subject=%5BShared%20Post%5D%20Working&body=https%3A%2F%2Fwww.monicarenata.com%2Fworking%2F&share=email',196,0,'external',433,NULL,NULL,NULL,NULL,NULL,NULL),(495,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/1204-20121002-WORK-WORK.jpg?resize=258%2C320',196,0,'image-ex',433,NULL,NULL,NULL,NULL,NULL,NULL),(496,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg',195,0,'external',184,NULL,NULL,NULL,NULL,NULL,NULL),(497,'mailto:?subject=%5BShared%20Post%5D%2012%2F13%2F14&body=https%3A%2F%2Fwww.monicarenata.com%2F121314%2F&share=email',195,0,'external',184,NULL,NULL,NULL,NULL,NULL,NULL),(498,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/wedding-ring-83876.jpg?resize=320%2C200',195,0,'image-ex',184,NULL,NULL,NULL,NULL,NULL,NULL),(499,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg',194,0,'external',663,NULL,NULL,NULL,NULL,NULL,NULL),(500,'mailto:?subject=%5BShared%20Post%5D%20The%20Homecoming&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-homecoming%2F&share=email',194,0,'external',663,NULL,NULL,NULL,NULL,NULL,NULL),(501,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/soldier-sunset-570x200.jpg?resize=320%2C112',194,0,'image-ex',663,NULL,NULL,NULL,NULL,NULL,NULL),(502,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg',193,0,'external',486,NULL,NULL,NULL,NULL,NULL,NULL),(503,'mailto:?subject=%5BShared%20Post%5D%20The%20News&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-news%2F&share=email',193,0,'external',486,NULL,NULL,NULL,NULL,NULL,NULL),(504,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_endtheviolence_logo.jpg?resize=320%2C133',193,0,'image-ex',486,NULL,NULL,NULL,NULL,NULL,NULL),(505,'mailto:?subject=%5BShared%20Post%5D%20Constructive%20Criticism&body=https%3A%2F%2Fwww.monicarenata.com%2Fconstructive-criticism%2F&share=email',192,0,'external',680,NULL,NULL,NULL,NULL,NULL,NULL),(506,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg',191,0,'external',188,NULL,NULL,NULL,NULL,NULL,NULL),(507,'mailto:?subject=%5BShared%20Post%5D%20The%20Psychic&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-psychic%2F&share=email',191,0,'external',188,NULL,NULL,NULL,NULL,NULL,NULL),(508,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Iy8KFXyCOJAL_W6GO4_1rOCTLdC6KhiXv8u7jqnaPnwpJ1MlVg',191,0,'image-ex',188,NULL,NULL,NULL,NULL,NULL,NULL),(509,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg',190,0,'external',234,NULL,NULL,NULL,NULL,NULL,NULL),(510,'mailto:?subject=%5BShared%20Post%5D%20If%20You%20Ever%20Shall%20Forget%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-you-ever-shall-forget-me%2F&share=email',190,0,'external',234,NULL,NULL,NULL,NULL,NULL,NULL),(511,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lrr4b41G5S1qixa13o1_r1_500_large.jpg?resize=320%2C224',190,0,'image-ex',234,NULL,NULL,NULL,NULL,NULL,NULL),(512,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg',189,0,'external',343,NULL,NULL,NULL,NULL,NULL,NULL),(513,'mailto:?subject=%5BShared%20Post%5D%20I%20Will%20Not%20Be%20Afraid&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-will-not-be-afraid%2F&share=email',189,0,'external',343,NULL,NULL,NULL,NULL,NULL,NULL),(514,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/walking_on_hell_by_Emersonpriest.jpg?resize=320%2C213',189,0,'image-ex',343,NULL,NULL,NULL,NULL,NULL,NULL),(515,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png',188,0,'external',267,NULL,NULL,NULL,NULL,NULL,NULL),(516,'mailto:?subject=%5BShared%20Post%5D%20The%20Loveliest%20of%20Lovely&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-loveliest-of-lovely%2F&share=email',188,0,'external',267,NULL,NULL,NULL,NULL,NULL,NULL),(517,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/preview.png?resize=238%2C320',188,0,'image-ex',267,NULL,NULL,NULL,NULL,NULL,NULL),(518,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg',187,0,'external',224,NULL,NULL,NULL,NULL,NULL,NULL),(519,'mailto:?subject=%5BShared%20Post%5D%20The%20Given%20Gift&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-given-gift%2F&share=email',187,0,'external',224,NULL,NULL,NULL,NULL,NULL,NULL),(520,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/img_0414.jpg?resize=320%2C240',187,0,'image-ex',224,NULL,NULL,NULL,NULL,NULL,NULL),(521,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg',186,0,'external',426,NULL,NULL,NULL,NULL,NULL,NULL),(522,'mailto:?subject=%5BShared%20Post%5D%20Grandma%27s%20House&body=https%3A%2F%2Fwww.monicarenata.com%2Fgrandmas-house%2F&share=email',186,0,'external',426,NULL,NULL,NULL,NULL,NULL,NULL),(523,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Fairhope_Swing-under-the-tree-9x7.jpg?resize=320%2C248',186,0,'image-ex',426,NULL,NULL,NULL,NULL,NULL,NULL),(524,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V',185,0,'external',314,NULL,NULL,NULL,NULL,NULL,NULL),(525,'mailto:?subject=%5BShared%20Post%5D%20The%20Host&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-host%2F&share=email',185,0,'external',314,NULL,NULL,NULL,NULL,NULL,NULL),(526,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRUWzlA37GHSBofSO8DGC__cwR0tJLTpMXoG2nw17lAvBiVOg2V',185,0,'image-ex',314,NULL,NULL,NULL,NULL,NULL,NULL),(527,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg',184,0,'external',435,NULL,NULL,NULL,NULL,NULL,NULL),(528,'mailto:?subject=%5BShared%20Post%5D%20In%20Your%20Absence&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-your-absence%2F&share=email',184,0,'external',435,NULL,NULL,NULL,NULL,NULL,NULL),(529,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Lujuria_Lust_Pecado_Original_-3969921829-.jpg?resize=320%2C180',184,0,'image-ex',435,NULL,NULL,NULL,NULL,NULL,NULL),(530,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd',183,0,'external',90,NULL,NULL,NULL,NULL,NULL,NULL),(531,'mailto:?subject=%5BShared%20Post%5D%20The%20Pouring%20Rain&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-pouring-rain%2F&share=email',183,0,'external',90,NULL,NULL,NULL,NULL,NULL,NULL),(532,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5tf2aukSpdlcv2wnt5WsyLnUwnzAC41EpjjiMahWfftXPMJhd',183,0,'image-ex',90,NULL,NULL,NULL,NULL,NULL,NULL),(533,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg',182,0,'external',389,NULL,NULL,NULL,NULL,NULL,NULL),(534,'mailto:?subject=%5BShared%20Post%5D%20The%20Housecat&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-housecat%2F&share=email',182,0,'external',389,NULL,NULL,NULL,NULL,NULL,NULL),(535,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/dexstarr-300x250.jpg?resize=300%2C250',182,0,'image-ex',389,NULL,NULL,NULL,NULL,NULL,NULL),(536,'http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1',181,0,'external',677,NULL,NULL,NULL,NULL,NULL,NULL),(537,'mailto:?subject=%5BShared%20Post%5D%20Again&body=https%3A%2F%2Fwww.monicarenata.com%2Fagain%2F&share=email',181,0,'external',677,NULL,NULL,NULL,NULL,NULL,NULL),(538,'http://3.bp.blogspot.com/-96sPRov0ltc/UooGJGi4ieI/AAAAAAAAGJQ/th3khCldOYA/w346-h230/2013+-+1',181,0,'image-ex',677,NULL,NULL,NULL,NULL,NULL,NULL),(539,'https://i0.wp.com/www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg',180,0,'external',658,NULL,NULL,NULL,NULL,NULL,NULL),(540,'mailto:?subject=%5BShared%20Post%5D%20As%20I%20Lay&body=https%3A%2F%2Fwww.monicarenata.com%2Fas-i-lay%2F&share=email',180,0,'external',658,NULL,NULL,NULL,NULL,NULL,NULL),(541,'https://i0.wp.com/www.wsimagazine.com/images/peter_hujar__candy_darling_on_her_deathbed.jpg?resize=320%2C240',180,0,'image-ex',658,NULL,NULL,NULL,NULL,NULL,NULL),(542,'http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi',179,0,'external',179,NULL,NULL,NULL,NULL,NULL,NULL),(543,'mailto:?subject=%5BShared%20Post%5D%20The%20Cover%20Up&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-cover-up%2F&share=email',179,0,'external',179,NULL,NULL,NULL,NULL,NULL,NULL),(544,'http://askharriete.typepad.com/.a/6a00e55107d1448834017c34ff4355970b-400wi',179,0,'image-ex',179,NULL,NULL,NULL,NULL,NULL,NULL),(545,'https://i0.wp.com/simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg',178,0,'external',325,NULL,NULL,NULL,NULL,NULL,NULL),(546,'mailto:?subject=%5BShared%20Post%5D%20Follow&body=https%3A%2F%2Fwww.monicarenata.com%2Ffollow%2F&share=email',178,0,'external',325,NULL,NULL,NULL,NULL,NULL,NULL),(547,'https://i0.wp.com/simplereminders.com/data/uploads/blog/simplereminders.com-believe-heart-mcgill-withtext-displayres.jpg?resize=320%2C213',178,0,'image-ex',325,NULL,NULL,NULL,NULL,NULL,NULL),(548,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg',177,0,'external',359,NULL,NULL,NULL,NULL,NULL,NULL),(549,'mailto:?subject=%5BShared%20Post%5D%20Tug-Of-War&body=https%3A%2F%2Fwww.monicarenata.com%2Ftug-of-war%2F&share=email',177,0,'external',359,NULL,NULL,NULL,NULL,NULL,NULL),(550,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/man_woman_tug-of-war.jpg?resize=320%2C212',177,0,'image-ex',359,NULL,NULL,NULL,NULL,NULL,NULL),(551,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg',176,0,'external',42,NULL,NULL,NULL,NULL,NULL,NULL),(552,'mailto:?subject=%5BShared%20Post%5D%20Short%20%26%20Sweet&body=https%3A%2F%2Fwww.monicarenata.com%2Fshort-sweet%2F&share=email',176,0,'external',42,NULL,NULL,NULL,NULL,NULL,NULL),(553,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/67370957_swan.jpg?resize=320%2C179',176,0,'image-ex',42,NULL,NULL,NULL,NULL,NULL,NULL),(554,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png',175,0,'external',275,NULL,NULL,NULL,NULL,NULL,NULL),(555,'mailto:?subject=%5BShared%20Post%5D%20Racing%20Forward&body=https%3A%2F%2Fwww.monicarenata.com%2Fracing-forward%2F&share=email',175,0,'external',275,NULL,NULL,NULL,NULL,NULL,NULL),(556,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/your-thoughts-create-your-futre-crop.png?resize=320%2C240',175,0,'image-ex',275,NULL,NULL,NULL,NULL,NULL,NULL),(557,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg',174,0,'external',329,NULL,NULL,NULL,NULL,NULL,NULL),(558,'mailto:?subject=%5BShared%20Post%5D%20Who%20Knows&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-knows%2F&share=email',174,0,'external',329,NULL,NULL,NULL,NULL,NULL,NULL),(559,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/just-friends-01.jpg?resize=320%2C160',174,0,'image-ex',329,NULL,NULL,NULL,NULL,NULL,NULL),(560,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW',173,0,'external',271,NULL,NULL,NULL,NULL,NULL,NULL),(561,'mailto:?subject=%5BShared%20Post%5D%20Krispy%20Kreme&body=https%3A%2F%2Fwww.monicarenata.com%2Fkrispy-kreme%2F&share=email',173,0,'external',271,NULL,NULL,NULL,NULL,NULL,NULL),(562,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQaS4JFVvmESDJOTFwecaIx9WAHi3ea1w92g9EhobL_c5eeADbW',173,0,'image-ex',271,NULL,NULL,NULL,NULL,NULL,NULL),(563,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg',172,0,'external',402,NULL,NULL,NULL,NULL,NULL,NULL),(564,'mailto:?subject=%5BShared%20Post%5D%20Love%20Letter&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-letter%2F&share=email',172,0,'external',402,NULL,NULL,NULL,NULL,NULL,NULL),(565,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/love-heart-writing-letter.jpg?resize=320%2C207',172,0,'image-ex',402,NULL,NULL,NULL,NULL,NULL,NULL),(566,'https://i0.wp.com/emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg',171,0,'external',283,NULL,NULL,NULL,NULL,NULL,NULL),(567,'mailto:?subject=%5BShared%20Post%5D%20Getting%20Rid%20of%20the%20Burden&body=https%3A%2F%2Fwww.monicarenata.com%2Fgetting-rid-of-the-burden%2F&share=email',171,0,'external',283,NULL,NULL,NULL,NULL,NULL,NULL),(568,'https://i0.wp.com/emotionalweightloss.me/wp-content/uploads/2012/12/Image.jpg?resize=320%2C314',171,0,'image-ex',283,NULL,NULL,NULL,NULL,NULL,NULL),(569,'mailto:?subject=%5BShared%20Post%5D%20How&body=https%3A%2F%2Fwww.monicarenata.com%2Fhow%2F&share=email',170,0,'external',606,NULL,NULL,NULL,NULL,NULL,NULL),(570,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg',169,0,'external',273,NULL,NULL,NULL,NULL,NULL,NULL),(571,'mailto:?subject=%5BShared%20Post%5D%20The%20Garden&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-garden%2F&share=email',169,0,'external',273,NULL,NULL,NULL,NULL,NULL,NULL),(572,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/thoughts-are-seeds-640x960.jpg?resize=213%2C320',169,0,'image-ex',273,NULL,NULL,NULL,NULL,NULL,NULL),(573,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg',168,0,'external',129,NULL,NULL,NULL,NULL,NULL,NULL),(574,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/peace-be-still.jpg',168,0,'external',129,NULL,NULL,NULL,NULL,NULL,NULL),(575,'mailto:?subject=%5BShared%20Post%5D%20Peace%20Be%20Still&body=https%3A%2F%2Fwww.monicarenata.com%2Fpeace-be-still%2F&share=email',168,0,'external',129,NULL,NULL,NULL,NULL,NULL,NULL),(576,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/7c434ee253bebfe9bb22487f8b31ba16.jpg?w=640',168,0,'image-ex',129,NULL,NULL,NULL,NULL,NULL,NULL),(577,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/peace-be-still.jpg?resize=320%2C240',168,0,'image-ex',129,NULL,NULL,NULL,NULL,NULL,NULL),(578,'mailto:?subject=%5BShared%20Post%5D%20Writing%20Prompt%3A%20Is%20Love%20Enough%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwriting-prompt-is-love-enough%2F&share=email',167,0,'external',277,NULL,NULL,NULL,NULL,NULL,NULL),(579,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG',166,0,'external',584,NULL,NULL,NULL,NULL,NULL,NULL),(580,'mailto:?subject=%5BShared%20Post%5D%20The%20Conversation&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-conversation%2F&share=email',166,0,'external',584,NULL,NULL,NULL,NULL,NULL,NULL),(581,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTpsvTDVuF2JeDKAzQSztg8QUZVxPGeK6VzVDBpgJrEePO1TjiG',166,0,'image-ex',584,NULL,NULL,NULL,NULL,NULL,NULL),(582,'http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg?resize=320%2C256',165,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(583,'mailto:?subject=%5BShared%20Post%5D%20You%20Promised&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-promised%2F&share=email',165,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(584,'http://miketerrill.files.wordpress.com/2013/10/jesusholdinghandslittleboy.jpg?resize=320%2C256',165,0,'image-ex',66,NULL,NULL,NULL,NULL,NULL,NULL),(585,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg',164,0,'external',290,NULL,NULL,NULL,NULL,NULL,NULL),(586,'mailto:?subject=%5BShared%20Post%5D%20Tired&body=https%3A%2F%2Fwww.monicarenata.com%2Ftired%2F&share=email',164,0,'external',290,NULL,NULL,NULL,NULL,NULL,NULL),(587,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/tumblr_lfq206KzzK1qdg8qwo1_500.jpg?resize=320%2C184',164,0,'image-ex',290,NULL,NULL,NULL,NULL,NULL,NULL),(588,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20trying&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-trying%2F&share=email',163,0,'external',307,NULL,NULL,NULL,NULL,NULL,NULL),(589,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg',162,0,'external',62,NULL,NULL,NULL,NULL,NULL,NULL),(590,'mailto:?subject=%5BShared%20Post%5D%20You%20Used%20To&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-used-to%2F&share=email',162,0,'external',62,NULL,NULL,NULL,NULL,NULL,NULL),(591,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/stranger-704x300.jpg?resize=320%2C135',162,0,'image-ex',62,NULL,NULL,NULL,NULL,NULL,NULL),(592,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg',161,0,'external',607,NULL,NULL,NULL,NULL,NULL,NULL),(593,'mailto:?subject=%5BShared%20Post%5D%20Who%20Are%20You%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-are-you%2F&share=email',161,0,'external',607,NULL,NULL,NULL,NULL,NULL,NULL),(594,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/african-american-boy-looking-in-mirror-F214-22-605.jpg?resize=320%2C253',161,0,'image-ex',607,NULL,NULL,NULL,NULL,NULL,NULL),(595,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg',160,0,'external',356,NULL,NULL,NULL,NULL,NULL,NULL),(596,'mailto:?subject=%5BShared%20Post%5D%20Flowers%20Bloom%20In%20Winter%20Too&body=https%3A%2F%2Fwww.monicarenata.com%2Fflowers-bloom-in-winter-too%2F&share=email',160,0,'external',356,NULL,NULL,NULL,NULL,NULL,NULL),(597,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/ar129451792772434.jpg?resize=320%2C240',160,0,'image-ex',356,NULL,NULL,NULL,NULL,NULL,NULL),(598,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg',159,0,'external',491,NULL,NULL,NULL,NULL,NULL,NULL),(599,'mailto:?subject=%5BShared%20Post%5D%20Brunch&body=https%3A%2F%2Fwww.monicarenata.com%2Fbrunch%2F&share=email',159,0,'external',491,NULL,NULL,NULL,NULL,NULL,NULL),(600,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/8059730530_6d699e4c0e_z.jpg?resize=320%2C320',159,0,'image-ex',491,NULL,NULL,NULL,NULL,NULL,NULL),(601,'http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi',158,0,'external',114,NULL,NULL,NULL,NULL,NULL,NULL),(602,'mailto:?subject=%5BShared%20Post%5D%20The%20Snow%20Queen&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-snow-queen%2F&share=email',158,0,'external',114,NULL,NULL,NULL,NULL,NULL,NULL),(603,'http://kingdomofstyle.typepad.co.uk/.a/6a00d8341c2f0953ef0111689f6d66970c-500wi',158,0,'image-ex',114,NULL,NULL,NULL,NULL,NULL,NULL),(604,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg',157,0,'external',134,NULL,NULL,NULL,NULL,NULL,NULL),(605,'mailto:?subject=%5BShared%20Post%5D%20The%20Winter%20March&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-winter-march%2F&share=email',157,0,'external',134,NULL,NULL,NULL,NULL,NULL,NULL),(606,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/image-20cemetery-20in-20winter.jpg?resize=320%2C212',157,0,'image-ex',134,NULL,NULL,NULL,NULL,NULL,NULL),(607,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg',156,0,'external',165,NULL,NULL,NULL,NULL,NULL,NULL),(608,'mailto:?subject=%5BShared%20Post%5D%20Confetti%20Hearts&body=https%3A%2F%2Fwww.monicarenata.com%2Fconfetti-hearts%2F&share=email',156,0,'external',165,NULL,NULL,NULL,NULL,NULL,NULL),(609,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/Heart-shaped-confetti-007.jpg?resize=320%2C192',156,0,'image-ex',165,NULL,NULL,NULL,NULL,NULL,NULL),(610,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg',155,0,'external',214,NULL,NULL,NULL,NULL,NULL,NULL),(611,'mailto:?subject=%5BShared%20Post%5D%20Get%20Over%20It&body=https%3A%2F%2Fwww.monicarenata.com%2Fget-over-it%2F&share=email',155,0,'external',214,NULL,NULL,NULL,NULL,NULL,NULL),(612,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/BuildIt.jpg?resize=320%2C263',155,0,'image-ex',214,NULL,NULL,NULL,NULL,NULL,NULL),(613,'mailto:?subject=%5BShared%20Post%5D%20Decisions...%20Just%20Thoughts&body=https%3A%2F%2Fwww.monicarenata.com%2Fdecisions-just-thoughts%2F&share=email',154,0,'external',305,NULL,NULL,NULL,NULL,NULL,NULL),(614,'http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi',153,0,'external',583,NULL,NULL,NULL,NULL,NULL,NULL),(615,'mailto:?subject=%5BShared%20Post%5D%20Breakdown&body=https%3A%2F%2Fwww.monicarenata.com%2Fbreakdown%2F&share=email',153,0,'external',583,NULL,NULL,NULL,NULL,NULL,NULL),(616,'http://sweetsweetlife.typepad.com/.a/6a00e553feb2ab88340120a57b9fff970c-500pi',153,0,'image-ex',583,NULL,NULL,NULL,NULL,NULL,NULL),(617,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg',152,0,'external',191,NULL,NULL,NULL,NULL,NULL,NULL),(618,'mailto:?subject=%5BShared%20Post%5D%20Fill%20my%20cup%20with%20Coffee&body=https%3A%2F%2Fwww.monicarenata.com%2Ffill-my-cup-with-coffee%2F&share=email',152,0,'external',191,NULL,NULL,NULL,NULL,NULL,NULL),(619,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/11/6486319-cup-of-coffee.jpg?resize=320%2C320',152,0,'image-ex',191,NULL,NULL,NULL,NULL,NULL,NULL),(620,'mailto:?subject=%5BShared%20Post%5D%20Be%20Thankful&body=https%3A%2F%2Fwww.monicarenata.com%2Fbe-thankful%2F&share=email',151,0,'external',145,NULL,NULL,NULL,NULL,NULL,NULL),(621,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg',150,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(622,'mailto:?subject=%5BShared%20Post%5D%20December&body=https%3A%2F%2Fwww.monicarenata.com%2Fdecember%2F&share=email',150,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(623,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/IMG_756-761828.jpg?resize=240%2C320',150,0,'image-ex',170,NULL,NULL,NULL,NULL,NULL,NULL),(624,'mailto:?subject=%5BShared%20Post%5D%20Don%27t%20Cry%20for%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fdont-cry-for-me%2F&share=email',148,0,'external',298,NULL,NULL,NULL,NULL,NULL,NULL),(625,'http://www.bullyingstatistics.org/content/bullying-and-suicide.html',147,0,'external',215,NULL,NULL,NULL,NULL,NULL,NULL),(626,'mailto:?subject=%5BShared%20Post%5D%20What%20was%20I%20supposed%20to%20do%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-was-i-supposed-to-do%2F&share=email',147,0,'external',215,NULL,NULL,NULL,NULL,NULL,NULL),(627,'mailto:?subject=%5BShared%20Post%5D%20The%20Lion%27s%20Nose&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-lions-nose%2F&share=email',146,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(628,'https://i0.wp.com/freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg',145,0,'external',250,NULL,NULL,NULL,NULL,NULL,NULL),(629,'mailto:?subject=%5BShared%20Post%5D%20Dancing%20Teardrops&body=https%3A%2F%2Fwww.monicarenata.com%2Fdancing-teardrops%2F&share=email',145,0,'external',250,NULL,NULL,NULL,NULL,NULL,NULL),(630,'https://i0.wp.com/freefever.com/stock/teardrop-digital-art-wallpaper-backgrounds.jpg?resize=320%2C240',145,0,'image-ex',250,NULL,NULL,NULL,NULL,NULL,NULL),(631,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg',144,0,'external',232,NULL,NULL,NULL,NULL,NULL,NULL),(632,'mailto:?subject=%5BShared%20Post%5D%20Officially%20Official&body=https%3A%2F%2Fwww.monicarenata.com%2Fofficially-official%2F&share=email',144,0,'external',232,NULL,NULL,NULL,NULL,NULL,NULL),(633,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Ex_Business_Businessman-2.jpg?resize=320%2C237',144,0,'image-ex',232,NULL,NULL,NULL,NULL,NULL,NULL),(634,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg',143,0,'external',48,NULL,NULL,NULL,NULL,NULL,NULL),(635,'mailto:?subject=%5BShared%20Post%5D%20Growing%20Up&body=https%3A%2F%2Fwww.monicarenata.com%2Fgrowing-up%2F&share=email',143,0,'external',48,NULL,NULL,NULL,NULL,NULL,NULL),(636,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/when-i-grow-up.jpg?resize=320%2C213',143,0,'image-ex',48,NULL,NULL,NULL,NULL,NULL,NULL),(637,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png',142,0,'external',51,NULL,NULL,NULL,NULL,NULL,NULL),(638,'mailto:?subject=%5BShared%20Post%5D%20Please%20check%20out%20my%20book&body=https%3A%2F%2Fwww.monicarenata.com%2Fplease-check-out-my-book%2F&share=email',142,0,'external',51,NULL,NULL,NULL,NULL,NULL,NULL),(639,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Screenshot_2013-11-21-07-18-40.png?resize=168%2C300',142,0,'image-ex',51,NULL,NULL,NULL,NULL,NULL,NULL),(640,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(641,'https://www.createspace.com/4430912',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(642,'http://amzn.com/1492343781',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(643,'http://amzn.com/B00EP5A484',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(644,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(645,'https://www.createspace.com/4442730',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(646,'http://amzn.com/1492724211',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(647,'http://amzn.com/B00F7KX2LC',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(648,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(649,'https://www.createspace.com/4459697',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(650,'http://amzn.com/1492834149',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(651,'http://amzn.com/B00FI0PCT6',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(652,'mailto:?subject=%5BShared%20Post%5D%20My%20Works%21%21%21&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-works%2F&share=email',141,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(653,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=210%2C320',141,0,'image-ex',200,NULL,NULL,NULL,NULL,NULL,NULL),(654,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=208%2C320',141,0,'image-ex',200,NULL,NULL,NULL,NULL,NULL,NULL),(655,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=210%2C320',141,0,'image-ex',200,NULL,NULL,NULL,NULL,NULL,NULL),(656,'mailto:?subject=%5BShared%20Post%5D%20No%20More&body=https%3A%2F%2Fwww.monicarenata.com%2Fno-more%2F&share=email',139,0,'external',139,NULL,NULL,NULL,NULL,NULL,NULL),(657,'mailto:?subject=%5BShared%20Post%5D%20Extraordinary&body=https%3A%2F%2Fwww.monicarenata.com%2Fextraordinary%2F&share=email',138,0,'external',326,NULL,NULL,NULL,NULL,NULL,NULL),(658,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg',137,0,'external',149,NULL,NULL,NULL,NULL,NULL,NULL),(659,'mailto:?subject=%5BShared%20Post%5D%20Speckle&body=https%3A%2F%2Fwww.monicarenata.com%2Fspeckle%2F&share=email',137,0,'external',149,NULL,NULL,NULL,NULL,NULL,NULL),(660,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/200903-flokot-art7.jpg?resize=320%2C233',137,0,'image-ex',149,NULL,NULL,NULL,NULL,NULL,NULL),(661,'mailto:?subject=%5BShared%20Post%5D%20December%20is%20So%20Cold&body=https%3A%2F%2Fwww.monicarenata.com%2Fdecember-is-so-cold%2F&share=email',136,0,'external',53,NULL,NULL,NULL,NULL,NULL,NULL),(662,'mailto:?subject=%5BShared%20Post%5D%20Keep%20Hoping&body=https%3A%2F%2Fwww.monicarenata.com%2Fkeep-hoping%2F&share=email',135,0,'external',171,NULL,NULL,NULL,NULL,NULL,NULL),(663,'mailto:?subject=%5BShared%20Post%5D%20Candy%20Coated&body=https%3A%2F%2Fwww.monicarenata.com%2Fcandy-coated%2F&share=email',134,0,'external',97,NULL,NULL,NULL,NULL,NULL,NULL),(664,'mailto:?subject=%5BShared%20Post%5D%20Things%20that%20Make%20Me%20Smile&body=https%3A%2F%2Fwww.monicarenata.com%2Fthings-that-make-me-smile%2F&share=email',133,0,'external',148,NULL,NULL,NULL,NULL,NULL,NULL),(665,'mailto:?subject=%5BShared%20Post%5D%20Holding%20in%20Truths&body=https%3A%2F%2Fwww.monicarenata.com%2Fholding-in-truths%2F&share=email',132,0,'external',278,NULL,NULL,NULL,NULL,NULL,NULL),(666,'mailto:?subject=%5BShared%20Post%5D%20Education%3A%20Have%20you%20been%20Enlightened%20Today%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Feducation-have-you-been-enlightened-today%2F&share=email',131,0,'external',272,NULL,NULL,NULL,NULL,NULL,NULL),(667,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg',130,0,'external',287,NULL,NULL,NULL,NULL,NULL,NULL),(668,'mailto:?subject=%5BShared%20Post%5D%20TKO&body=https%3A%2F%2Fwww.monicarenata.com%2Ftko%2F&share=email',130,0,'external',287,NULL,NULL,NULL,NULL,NULL,NULL),(669,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/k4660629.jpg?w=640',130,0,'image-ex',287,NULL,NULL,NULL,NULL,NULL,NULL),(670,'mailto:?subject=%5BShared%20Post%5D%20The%20Weight&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-weight%2F&share=email',129,0,'external',43,NULL,NULL,NULL,NULL,NULL,NULL),(671,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg',128,0,'external',308,NULL,NULL,NULL,NULL,NULL,NULL),(672,'mailto:?subject=%5BShared%20Post%5D%20Best%20Part%20of%20My%20Day&body=https%3A%2F%2Fwww.monicarenata.com%2Fbest-part-of-my-day%2F&share=email',128,0,'external',308,NULL,NULL,NULL,NULL,NULL,NULL),(673,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/stock-photo-9544716-man-coming-home-from-work-lovers-kissing.jpg?resize=307%2C320',128,0,'image-ex',308,NULL,NULL,NULL,NULL,NULL,NULL),(674,'mailto:?subject=%5BShared%20Post%5D%20Gentle%20My%20Darling&body=https%3A%2F%2Fwww.monicarenata.com%2Fgentle-my-darling%2F&share=email',127,0,'external',172,NULL,NULL,NULL,NULL,NULL,NULL),(675,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg',126,0,'external',110,NULL,NULL,NULL,NULL,NULL,NULL),(676,'mailto:?subject=%5BShared%20Post%5D%20Bye%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Fbye-love%2F&share=email',126,0,'external',110,NULL,NULL,NULL,NULL,NULL,NULL),(677,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/tumblr_mlc6c1b6Hl1qf5qxco1_250.jpg?w=640',126,0,'image-ex',110,NULL,NULL,NULL,NULL,NULL,NULL),(678,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg',125,0,'external',629,NULL,NULL,NULL,NULL,NULL,NULL),(679,'mailto:?subject=%5BShared%20Post%5D%20The%20Giving%20Tree&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-giving-tree%2F&share=email',125,0,'external',629,NULL,NULL,NULL,NULL,NULL,NULL),(680,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/the-giving-tree-jerry-kirk.jpg?resize=276%2C320',125,0,'image-ex',629,NULL,NULL,NULL,NULL,NULL,NULL),(681,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg',124,0,'external',265,NULL,NULL,NULL,NULL,NULL,NULL),(682,'mailto:?subject=%5BShared%20Post%5D%20Memory%20Walls&body=https%3A%2F%2Fwww.monicarenata.com%2Fmemory-walls%2F&share=email',124,0,'external',265,NULL,NULL,NULL,NULL,NULL,NULL),(683,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/walls.jpg?resize=213%2C320',124,0,'image-ex',265,NULL,NULL,NULL,NULL,NULL,NULL),(684,'https://i0.wp.com/www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg',123,0,'external',229,NULL,NULL,NULL,NULL,NULL,NULL),(685,'mailto:?subject=%5BShared%20Post%5D%20Happy%20Holidays&body=https%3A%2F%2Fwww.monicarenata.com%2Fhappy-holidays%2F&share=email',123,0,'external',229,NULL,NULL,NULL,NULL,NULL,NULL),(686,'https://i0.wp.com/www.hdwallpapersinn.com/wp-content/uploads/2013/11/Awesome-Happy-Holiday-Picture-.jpg?resize=640%2C400',123,0,'image-ex',229,NULL,NULL,NULL,NULL,NULL,NULL),(687,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg',122,0,'external',40,NULL,NULL,NULL,NULL,NULL,NULL),(688,'mailto:?subject=%5BShared%20Post%5D%20What%20Are%20We%20Fighting%20For%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-are-we-fighting-for%2F&share=email',122,0,'external',40,NULL,NULL,NULL,NULL,NULL,NULL),(689,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/438906496_640.jpg?resize=320%2C240',122,0,'image-ex',40,NULL,NULL,NULL,NULL,NULL,NULL),(690,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Just%20Not%20Where%20I%27m%20Supposed%20To%20Be..........&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-just-not-where-im-supposed-to-be%2F&share=email',121,0,'external',9,NULL,NULL,NULL,NULL,NULL,NULL),(691,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg',120,0,'external',240,NULL,NULL,NULL,NULL,NULL,NULL),(692,'mailto:?subject=%5BShared%20Post%5D%20Light%20In%20The%20Darkness&body=https%3A%2F%2Fwww.monicarenata.com%2Flight-in-the-darkness%2F&share=email',120,0,'external',240,NULL,NULL,NULL,NULL,NULL,NULL),(693,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/fog-in-dark-forest.jpg?resize=320%2C255',120,0,'image-ex',240,NULL,NULL,NULL,NULL,NULL,NULL),(694,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg',119,0,'external',292,NULL,NULL,NULL,NULL,NULL,NULL),(695,'mailto:?subject=%5BShared%20Post%5D%20Sleepless%20Night&body=https%3A%2F%2Fwww.monicarenata.com%2Fsleepless-night%2F&share=email',119,0,'external',292,NULL,NULL,NULL,NULL,NULL,NULL),(696,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/Can_tSleep.jpg?w=640',119,0,'image-ex',292,NULL,NULL,NULL,NULL,NULL,NULL),(697,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg',118,0,'external',211,NULL,NULL,NULL,NULL,NULL,NULL),(698,'mailto:?subject=%5BShared%20Post%5D%20Life%20Isn%27t%20a%20Game&body=https%3A%2F%2Fwww.monicarenata.com%2Flife-isnt-a-game%2F&share=email',118,0,'external',211,NULL,NULL,NULL,NULL,NULL,NULL),(699,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/31e214b6-684a-48f7-9ef7-c1abc3d7ef97-video-game-library-mario.jpg?resize=320%2C320',118,0,'image-ex',211,NULL,NULL,NULL,NULL,NULL,NULL),(700,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg',117,0,'external',423,NULL,NULL,NULL,NULL,NULL,NULL),(701,'mailto:?subject=%5BShared%20Post%5D%20Dance&body=https%3A%2F%2Fwww.monicarenata.com%2Fdance%2F&share=email',117,0,'external',423,NULL,NULL,NULL,NULL,NULL,NULL),(702,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2013/12/dancers1.jpg?resize=247%2C320',117,0,'image-ex',423,NULL,NULL,NULL,NULL,NULL,NULL),(703,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg',116,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(704,'mailto:?subject=%5BShared%20Post%5D%20Pretty%20Little%20Picture&body=https%3A%2F%2Fwww.monicarenata.com%2Fpretty-little-picture-2%2F&share=email',116,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(705,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Nap-20time-20ready-20to-20post.jpg?resize=320%2C234',116,0,'image-ex',788,NULL,NULL,NULL,NULL,NULL,NULL),(706,'mailto:?subject=%5BShared%20Post%5D%20THAT%20PERSON%20never%20left..........%20%28%20A%20short%20story%29&body=https%3A%2F%2Fwww.monicarenata.com%2Fthat-person-never-left-a-short-story%2F&share=email',115,0,'external',302,NULL,NULL,NULL,NULL,NULL,NULL),(707,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg',114,0,'external',115,NULL,NULL,NULL,NULL,NULL,NULL),(708,'mailto:?subject=%5BShared%20Post%5D%20Knocking%20at%20my%20door&body=https%3A%2F%2Fwww.monicarenata.com%2Fknocking-at-my-door%2F&share=email',114,0,'external',115,NULL,NULL,NULL,NULL,NULL,NULL),(709,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Ready.jpg?w=640',114,0,'image-ex',115,NULL,NULL,NULL,NULL,NULL,NULL),(710,'http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi',113,0,'external',327,NULL,NULL,NULL,NULL,NULL,NULL),(711,'mailto:?subject=%5BShared%20Post%5D%20Who%20Wants%20To%20Be%20Normal%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-wants-to-be-normal%2F&share=email',113,0,'external',327,NULL,NULL,NULL,NULL,NULL,NULL),(712,'http://sempervita.typepad.com/.a/6a00d8341c570e53ef019affdeb68a970c-pi',113,0,'image-ex',327,NULL,NULL,NULL,NULL,NULL,NULL),(713,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa',112,0,'external',789,NULL,NULL,NULL,NULL,NULL,NULL),(714,'mailto:?subject=%5BShared%20Post%5D%20The%20HeartBreaker&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-heartbreaker%2F&share=email',112,0,'external',789,NULL,NULL,NULL,NULL,NULL,NULL),(715,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAJbjmWvRqEg8mtFNk2-GSa5d1AeC0BnmkbfhC0_1peXwhRoPa',112,0,'image-ex',789,NULL,NULL,NULL,NULL,NULL,NULL),(716,'mailto:?subject=%5BShared%20Post%5D%20I%20tried&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-tried%2F&share=email',111,0,'external',320,NULL,NULL,NULL,NULL,NULL,NULL),(717,'mailto:?subject=%5BShared%20Post%5D%20They%20Want%20Me%20To%20Follow%20Instructions&body=https%3A%2F%2Fwww.monicarenata.com%2Fthey-want-me-to-follow-instructions%2F&share=email',110,0,'external',193,NULL,NULL,NULL,NULL,NULL,NULL),(718,'mailto:?subject=%5BShared%20Post%5D%20Man%20Vs%20Thief&body=https%3A%2F%2Fwww.monicarenata.com%2Fman-vs-thief%2F&share=email',109,0,'external',55,NULL,NULL,NULL,NULL,NULL,NULL),(719,'mailto:?subject=%5BShared%20Post%5D%20You%20Are%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-are-you%2F&share=email',108,0,'external',174,NULL,NULL,NULL,NULL,NULL,NULL),(720,'mailto:?subject=%5BShared%20Post%5D%20I%20came%2C%20I%20saw%2C%20I%20conquered&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-came-i-saw-i-conquered%2F&share=email',107,0,'external',164,NULL,NULL,NULL,NULL,NULL,NULL),(721,'mailto:?subject=%5BShared%20Post%5D%20PINCH&body=https%3A%2F%2Fwww.monicarenata.com%2Fpinch%2F&share=email',106,0,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(722,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l',105,0,'external',262,NULL,NULL,NULL,NULL,NULL,NULL),(723,'mailto:?subject=%5BShared%20Post%5D%20Can%27t%20Make%20You%20Stay&body=https%3A%2F%2Fwww.monicarenata.com%2Fcant-make-you-stay%2F&share=email',105,0,'external',262,NULL,NULL,NULL,NULL,NULL,NULL),(724,'https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSY_nE5d69h_Isn8jKzwEctu7VJk7Iff9E62ljLEJzKEnukRG3l',105,0,'image-ex',262,NULL,NULL,NULL,NULL,NULL,NULL),(725,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg',104,0,'external',293,NULL,NULL,NULL,NULL,NULL,NULL),(726,'mailto:?subject=%5BShared%20Post%5D%20White%20Flag&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhite-flag%2F&share=email',104,0,'external',293,NULL,NULL,NULL,NULL,NULL,NULL),(727,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/wve-white-flag-260.jpg?resize=232%2C320',104,0,'image-ex',293,NULL,NULL,NULL,NULL,NULL,NULL),(728,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg',103,0,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(729,'mailto:?subject=%5BShared%20Post%5D%20Inadequate&body=https%3A%2F%2Fwww.monicarenata.com%2Finadequate%2F&share=email',103,0,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(730,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/overcoming-inadequacy-21473584.jpg?resize=320%2C206',103,0,'image-ex',6,NULL,NULL,NULL,NULL,NULL,NULL),(731,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png',102,0,'external',71,NULL,NULL,NULL,NULL,NULL,NULL),(732,'mailto:?subject=%5BShared%20Post%5D%20My%20Light%20In%20The%20Sky&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-light-in-the-sky%2F&share=email',102,0,'external',71,NULL,NULL,NULL,NULL,NULL,NULL),(733,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/You-20Light-20Up-20My-20Life-20image_1.png?resize=320%2C262',102,0,'image-ex',71,NULL,NULL,NULL,NULL,NULL,NULL),(734,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg',101,0,'external',333,NULL,NULL,NULL,NULL,NULL,NULL),(735,'mailto:?subject=%5BShared%20Post%5D%20I%20Just%20Want%20You%20To%20Know&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-just-want-you-to-know%2F&share=email',101,0,'external',333,NULL,NULL,NULL,NULL,NULL,NULL),(736,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/17.jpg?resize=320%2C148',101,0,'image-ex',333,NULL,NULL,NULL,NULL,NULL,NULL),(737,'mailto:?subject=%5BShared%20Post%5D%20JoeJoe%27s%20Chocolates&body=https%3A%2F%2Fwww.monicarenata.com%2Fjoejoes-chocolates%2F&share=email',100,0,'external',280,NULL,NULL,NULL,NULL,NULL,NULL),(738,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg',99,0,'external',352,NULL,NULL,NULL,NULL,NULL,NULL),(739,'mailto:?subject=%5BShared%20Post%5D%20Bojo%20The%20Bandit&body=https%3A%2F%2Fwww.monicarenata.com%2Fbojo-the-bandit%2F&share=email',99,0,'external',352,NULL,NULL,NULL,NULL,NULL,NULL),(740,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Divorce1.jpg?resize=320%2C212',99,0,'image-ex',352,NULL,NULL,NULL,NULL,NULL,NULL),(741,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg',98,0,'external',136,NULL,NULL,NULL,NULL,NULL,NULL),(742,'mailto:?subject=%5BShared%20Post%5D%20Sneaky%20Sara&body=https%3A%2F%2Fwww.monicarenata.com%2Fsneaky-sara%2F&share=email',98,0,'external',136,NULL,NULL,NULL,NULL,NULL,NULL),(743,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/sneaky.jpg?resize=262%2C320',98,0,'image-ex',136,NULL,NULL,NULL,NULL,NULL,NULL),(744,'mailto:?subject=%5BShared%20Post%5D%20Are%20You%20Living%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fare-you-living%2F&share=email',97,0,'external',737,NULL,NULL,NULL,NULL,NULL,NULL),(745,'http://www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa-300x225.jpg',96,0,'internal',47,NULL,NULL,NULL,NULL,NULL,NULL),(746,'mailto:?subject=%5BShared%20Post%5D%20Winter%20Storm&body=https%3A%2F%2Fwww.monicarenata.com%2Fwinter-storm%2F&share=email',96,0,'external',47,NULL,NULL,NULL,NULL,NULL,NULL),(747,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/claudia-adams-log-cabin-in-snowy-woods-chippewa-county-michigan-usa.jpg?resize=320%2C240',96,0,'image-ex',47,NULL,NULL,NULL,NULL,NULL,NULL),(748,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg',95,0,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(749,'mailto:?subject=%5BShared%20Post%5D%20Sticky%20Situations&body=https%3A%2F%2Fwww.monicarenata.com%2Fsticky-situations%2F&share=email',95,0,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(750,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/01/Handeling-sticky-situations-illustrations.jpg?resize=273%2C320',95,0,'image-ex',230,NULL,NULL,NULL,NULL,NULL,NULL),(751,'mailto:?subject=%5BShared%20Post%5D%20Hope%20in%20Perfection&body=https%3A%2F%2Fwww.monicarenata.com%2Fhope-in-perfection%2F&share=email',94,0,'external',304,NULL,NULL,NULL,NULL,NULL,NULL),(752,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg',93,0,'external',643,NULL,NULL,NULL,NULL,NULL,NULL),(753,'mailto:?subject=%5BShared%20Post%5D%20Lost%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Flost-heart%2F&share=email',93,0,'external',643,NULL,NULL,NULL,NULL,NULL,NULL),(754,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/broken-heart.jpg?resize=320%2C240',93,0,'image-ex',643,NULL,NULL,NULL,NULL,NULL,NULL),(755,'mailto:?subject=%5BShared%20Post%5D%20Time%20Waits&body=https%3A%2F%2Fwww.monicarenata.com%2Ftime-waits%2F&share=email',92,0,'external',130,NULL,NULL,NULL,NULL,NULL,NULL),(756,'mailto:?subject=%5BShared%20Post%5D%20Best%20Served%20Cold&body=https%3A%2F%2Fwww.monicarenata.com%2Fbest-served-cold%2F&share=email',91,0,'external',745,NULL,NULL,NULL,NULL,NULL,NULL),(757,'mailto:?subject=%5BShared%20Post%5D%20You%2C%20I%20love%20YOU&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-i-love-you%2F&share=email',90,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(758,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg',89,0,'external',310,NULL,NULL,NULL,NULL,NULL,NULL),(759,'mailto:?subject=%5BShared%20Post%5D%20Stone-faced%20Soldier&body=https%3A%2F%2Fwww.monicarenata.com%2Fstone-faced-soldier%2F&share=email',89,0,'external',310,NULL,NULL,NULL,NULL,NULL,NULL),(760,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/78219_max.jpg?resize=320%2C235',89,0,'image-ex',310,NULL,NULL,NULL,NULL,NULL,NULL),(761,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg',88,0,'external',96,NULL,NULL,NULL,NULL,NULL,NULL),(762,'mailto:?subject=%5BShared%20Post%5D%20Five&body=https%3A%2F%2Fwww.monicarenata.com%2Ffive%2F&share=email',88,0,'external',96,NULL,NULL,NULL,NULL,NULL,NULL),(763,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/cb_couple_bed_070601_ms.jpg?resize=320%2C240',88,0,'image-ex',96,NULL,NULL,NULL,NULL,NULL,NULL),(764,'mailto:?subject=%5BShared%20Post%5D%20Cliche%20Love%20Poem&body=https%3A%2F%2Fwww.monicarenata.com%2Fcliche-love-poem%2F&share=email',87,0,'external',668,NULL,NULL,NULL,NULL,NULL,NULL),(765,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(766,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(767,'https://www.createspace.com/4430912',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(768,'http://amzn.com/1492343781',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(769,'http://amzn.com/B00EP5A484',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(770,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(771,'https://www.createspace.com/4442730',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(772,'http://amzn.com/1492724211',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(773,'http://amzn.com/B00F7KX2LC',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(774,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(775,'https://www.createspace.com/4459697',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(776,'http://amzn.com/1492834149',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(777,'http://amzn.com/B00FI0PCT6',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(778,'mailto:?subject=%5BShared%20Post%5D%20Valentine%27s%20Day%20Freebie&body=https%3A%2F%2Fwww.monicarenata.com%2Fvalentines-day-freebie%2F&share=email',86,0,'external',400,NULL,NULL,NULL,NULL,NULL,NULL),(779,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Valentine-s-Freebie.jpg?resize=306%2C320',86,0,'image-ex',400,NULL,NULL,NULL,NULL,NULL,NULL),(780,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41r1vrrKkZL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=210%2C320',86,0,'image-ex',400,NULL,NULL,NULL,NULL,NULL,NULL),(781,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/51pse380RJL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=208%2C320',86,0,'image-ex',400,NULL,NULL,NULL,NULL,NULL,NULL),(782,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/41SlWXN1XVL._SY344_PJlook-inside-v2-TopRight-1-0_SH20_BO1-204-203-200_.jpg?resize=210%2C320',86,0,'image-ex',400,NULL,NULL,NULL,NULL,NULL,NULL),(783,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png',85,0,'external',577,NULL,NULL,NULL,NULL,NULL,NULL),(784,'mailto:?subject=%5BShared%20Post%5D%20I%20Missed%20The%20Bus&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-missed-the-bus%2F&share=email',85,0,'external',577,NULL,NULL,NULL,NULL,NULL,NULL),(785,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/bus_transportation_118386_tns.png?resize=400%2C315',85,0,'image-ex',577,NULL,NULL,NULL,NULL,NULL,NULL),(786,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN',84,0,'external',176,NULL,NULL,NULL,NULL,NULL,NULL),(787,'mailto:?subject=%5BShared%20Post%5D%20In%20The%20Corner&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-the-corner%2F&share=email',84,0,'external',176,NULL,NULL,NULL,NULL,NULL,NULL),(788,'https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTlBLNKNw5e8PMkncY4uLteWxH5sGpZ4M2CKRFDYE7cOGuD79jN',84,0,'image-ex',176,NULL,NULL,NULL,NULL,NULL,NULL),(789,'https://i0.wp.com/www.bantamapparel.com/sku/2_PI245.jpg',83,0,'external',765,NULL,NULL,NULL,NULL,NULL,NULL),(790,'mailto:?subject=%5BShared%20Post%5D%20I%20Understand&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-understand%2F&share=email',83,0,'external',765,NULL,NULL,NULL,NULL,NULL,NULL),(791,'https://i0.wp.com/www.bantamapparel.com/sku/2_PI245.jpg?resize=320%2C165',83,0,'image-ex',765,NULL,NULL,NULL,NULL,NULL,NULL),(792,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q',82,0,'external',295,NULL,NULL,NULL,NULL,NULL,NULL),(793,'mailto:?subject=%5BShared%20Post%5D%20Prettier%20Than%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fprettier-than-me%2F&share=email',82,0,'external',295,NULL,NULL,NULL,NULL,NULL,NULL),(794,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSEGhipLpqMQP6bM29vaLY4EtkQIPVpZQVve72LocqJwS9yt67Q',82,0,'image-ex',295,NULL,NULL,NULL,NULL,NULL,NULL),(795,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w',81,0,'external',667,NULL,NULL,NULL,NULL,NULL,NULL),(796,'mailto:?subject=%5BShared%20Post%5D%20Paper%20People&body=https%3A%2F%2Fwww.monicarenata.com%2Fpaper-people%2F&share=email',81,0,'external',667,NULL,NULL,NULL,NULL,NULL,NULL),(797,'https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRon86_KrsXGsoxb9fasflDHLDhs0Xwo7mjKZl0hilLNNjwBLnn7w',81,0,'image-ex',667,NULL,NULL,NULL,NULL,NULL,NULL),(798,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg',80,0,'external',166,NULL,NULL,NULL,NULL,NULL,NULL),(799,'mailto:?subject=%5BShared%20Post%5D%20The%20Trap&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-trap%2F&share=email',80,0,'external',166,NULL,NULL,NULL,NULL,NULL,NULL),(800,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/hanging-252520cliff.jpg?w=640',80,0,'image-ex',166,NULL,NULL,NULL,NULL,NULL,NULL),(801,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg',79,0,'external',414,NULL,NULL,NULL,NULL,NULL,NULL),(802,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Beautiful&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-beautiful%2F&share=email',79,0,'external',414,NULL,NULL,NULL,NULL,NULL,NULL),(803,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/You-Are-Beautiful.jpg?resize=320%2C240',79,0,'image-ex',414,NULL,NULL,NULL,NULL,NULL,NULL),(804,'mailto:?subject=%5BShared%20Post%5D%20It%27s%20hard%20for%20me%20to%20express%20my%20feelings&body=https%3A%2F%2Fwww.monicarenata.com%2Fits-hard-for-me-to-express-my-feelings%2F&share=email',78,0,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(805,'mailto:?subject=%5BShared%20Post%5D%20Transform&body=https%3A%2F%2Fwww.monicarenata.com%2Ftransform%2F&share=email',77,0,'external',30,NULL,NULL,NULL,NULL,NULL,NULL),(806,'mailto:?subject=%5BShared%20Post%5D%20Don%27t%20get%20TOO%20Comfortable&body=https%3A%2F%2Fwww.monicarenata.com%2Fdont-get-too-comfortable%2F&share=email',76,0,'external',59,NULL,NULL,NULL,NULL,NULL,NULL),(807,'mailto:?subject=%5BShared%20Post%5D%20Just%20Give%20It%20Your%20All.........Or%20Maybe%20Not&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-give-it-your-all-or-maybe-not%2F&share=email',75,0,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(808,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png',74,0,'external',286,NULL,NULL,NULL,NULL,NULL,NULL),(809,'mailto:?subject=%5BShared%20Post%5D%20No%20Exceptions&body=https%3A%2F%2Fwww.monicarenata.com%2Fno-exceptions%2F&share=email',74,0,'external',286,NULL,NULL,NULL,NULL,NULL,NULL),(810,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/Personal-PAC-10-2-12-No-Exceptions-back-1.png?resize=400%2C253',74,0,'image-ex',286,NULL,NULL,NULL,NULL,NULL,NULL),(811,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg',73,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(812,'mailto:?subject=%5BShared%20Post%5D%20Winter%20to%20Spring&body=https%3A%2F%2Fwww.monicarenata.com%2Fwinter-to-spring%2F&share=email',73,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(813,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/02/winter-to-spring.jpg?w=640',73,0,'image-ex',187,NULL,NULL,NULL,NULL,NULL,NULL),(814,'mailto:?subject=%5BShared%20Post%5D%20Fly&body=https%3A%2F%2Fwww.monicarenata.com%2Ffly%2F&share=email',72,0,'external',256,NULL,NULL,NULL,NULL,NULL,NULL),(815,'mailto:?subject=%5BShared%20Post%5D%20They%20Said%20I%20wouldn%27t%20Make%20It&body=https%3A%2F%2Fwww.monicarenata.com%2Fthey-said-i-wouldnt-make-it%2F&share=email',71,0,'external',251,NULL,NULL,NULL,NULL,NULL,NULL),(816,'mailto:?subject=%5BShared%20Post%5D%20The%20Bricks%20They%20Shall%20Throw&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-bricks-they-shall-throw%2F&share=email',70,0,'external',671,NULL,NULL,NULL,NULL,NULL,NULL),(817,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg',69,0,'external',442,NULL,NULL,NULL,NULL,NULL,NULL),(818,'mailto:?subject=%5BShared%20Post%5D%20Insides&body=https%3A%2F%2Fwww.monicarenata.com%2Finsides%2F&share=email',69,0,'external',442,NULL,NULL,NULL,NULL,NULL,NULL),(819,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/dont-keep-your-feeling.jpg?resize=320%2C239',69,0,'image-ex',442,NULL,NULL,NULL,NULL,NULL,NULL),(820,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png',68,0,'external',297,NULL,NULL,NULL,NULL,NULL,NULL),(821,'mailto:?subject=%5BShared%20Post%5D%20The%20Wait&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-wait%2F&share=email',68,0,'external',297,NULL,NULL,NULL,NULL,NULL,NULL),(822,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/quote-about-dont-make-me-wait-just-because-you-know-i-will.png?resize=320%2C225',68,0,'image-ex',297,NULL,NULL,NULL,NULL,NULL,NULL),(823,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg',67,0,'external',381,NULL,NULL,NULL,NULL,NULL,NULL),(824,'mailto:?subject=%5BShared%20Post%5D%20Going%20it%20Alone&body=https%3A%2F%2Fwww.monicarenata.com%2Fgoing-it-alone%2F&share=email',67,0,'external',381,NULL,NULL,NULL,NULL,NULL,NULL),(825,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/2711405-506106-young-woman-sitting-alone-in-the-cinema-and-watching-a-movie.jpg?resize=320%2C212',67,0,'image-ex',381,NULL,NULL,NULL,NULL,NULL,NULL),(826,'mailto:?subject=%5BShared%20Post%5D%20Journey%20to%20the%20Mountain&body=https%3A%2F%2Fwww.monicarenata.com%2Fjourney-to-the-mountain%2F&share=email',66,0,'external',345,NULL,NULL,NULL,NULL,NULL,NULL),(827,'mailto:?subject=%5BShared%20Post%5D%20The%20Search%20For%20Happy&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-search-for-happy%2F&share=email',65,0,'external',791,NULL,NULL,NULL,NULL,NULL,NULL),(828,'https://www.createspace.com/4430912',64,0,'external',647,NULL,NULL,NULL,NULL,NULL,NULL),(829,'http://amzn.com/B00EP5A484',64,0,'external',647,NULL,NULL,NULL,NULL,NULL,NULL),(830,'http://facebook.com/TheAwkwardButterfly',64,0,'external',647,NULL,NULL,NULL,NULL,NULL,NULL),(831,'http://www.monicarenata.com/',64,0,'internal',647,1,NULL,NULL,NULL,NULL,NULL),(832,'mailto:?subject=%5BShared%20Post%5D%20Time%3A%20How%20much%20do%20you%20really%20have%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Ftime-how-much-do-you-really-have%2F&share=email',64,0,'external',647,NULL,NULL,NULL,NULL,NULL,NULL),(833,'https://www.createspace.com/4430912',63,0,'external',378,NULL,NULL,NULL,NULL,NULL,NULL),(834,'http://amzn.com/B00EP5A484',63,0,'external',378,NULL,NULL,NULL,NULL,NULL,NULL),(835,'http://facebook.com/TheAwkwardButterfly',63,0,'external',378,NULL,NULL,NULL,NULL,NULL,NULL),(836,'http://www.monicarenata.com/',63,0,'internal',378,1,NULL,NULL,NULL,NULL,NULL),(837,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg',63,0,'external',378,NULL,NULL,NULL,NULL,NULL,NULL),(838,'mailto:?subject=%5BShared%20Post%5D%20The%20Letter&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-letter%2F&share=email',63,0,'external',378,NULL,NULL,NULL,NULL,NULL,NULL),(839,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/letter.jpg?resize=320%2C213',63,0,'image-ex',378,NULL,NULL,NULL,NULL,NULL,NULL),(840,'https://www.createspace.com/4430912',62,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(841,'http://amzn.com/B00EP5A484',62,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(842,'http://facebook.com/TheAwkwardButterfly',62,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(843,'http://www.monicarenata.com/',62,0,'internal',311,1,NULL,NULL,NULL,NULL,NULL),(844,'mailto:?subject=%5BShared%20Post%5D%20Taste%20Your%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Ftaste-your-words%2F&share=email',62,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(845,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/35.jpg',61,0,'external',252,NULL,NULL,NULL,NULL,NULL,NULL),(846,'mailto:?subject=%5BShared%20Post%5D%20Porcelain%20Doll&body=https%3A%2F%2Fwww.monicarenata.com%2Fporcelain-doll%2F&share=email',61,0,'external',252,NULL,NULL,NULL,NULL,NULL,NULL),(847,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/35.jpg?w=640',61,0,'image-ex',252,NULL,NULL,NULL,NULL,NULL,NULL),(848,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg',60,0,'external',73,NULL,NULL,NULL,NULL,NULL,NULL),(849,'mailto:?subject=%5BShared%20Post%5D%20Fisherman%27s%20Treasure&body=https%3A%2F%2Fwww.monicarenata.com%2Ffishermans-treasure%2F&share=email',60,0,'external',73,NULL,NULL,NULL,NULL,NULL,NULL),(850,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/6493303807_a057536651_z.jpg?resize=320%2C213',60,0,'image-ex',73,NULL,NULL,NULL,NULL,NULL,NULL),(851,'mailto:?subject=%5BShared%20Post%5D%20The%20Unnoticed%20Bloom&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-unnoticed-bloom%2F&share=email',59,0,'external',243,NULL,NULL,NULL,NULL,NULL,NULL),(852,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg',58,0,'external',459,NULL,NULL,NULL,NULL,NULL,NULL),(853,'mailto:?subject=%5BShared%20Post%5D%20The%20Path%20to%20Victory&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-path-to-victory%2F&share=email',58,0,'external',459,NULL,NULL,NULL,NULL,NULL,NULL),(854,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/victory-02.jpg?resize=320%2C180',58,0,'image-ex',459,NULL,NULL,NULL,NULL,NULL,NULL),(855,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg',57,0,'external',428,NULL,NULL,NULL,NULL,NULL,NULL),(856,'mailto:?subject=%5BShared%20Post%5D%20Hero%27s%20Curse&body=https%3A%2F%2Fwww.monicarenata.com%2Fheros-curse%2F&share=email',57,0,'external',428,NULL,NULL,NULL,NULL,NULL,NULL),(857,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/lonely-warrior.jpg?resize=320%2C226',57,0,'image-ex',428,NULL,NULL,NULL,NULL,NULL,NULL),(858,'mailto:?subject=%5BShared%20Post%5D%20Promises%3A%20Are%20they%20really%20made%20to%20be%20broken%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fpromises-are-they-really-made-to-be-broken%2F&share=email',56,0,'external',792,NULL,NULL,NULL,NULL,NULL,NULL),(859,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg',55,0,'external',255,NULL,NULL,NULL,NULL,NULL,NULL),(860,'mailto:?subject=%5BShared%20Post%5D%20I%20Dreamed%20A%20Dream&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-dreamed-a-dream%2F&share=email',55,0,'external',255,NULL,NULL,NULL,NULL,NULL,NULL),(861,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/10838428-256-k757623.jpg?resize=204%2C320',55,0,'image-ex',255,NULL,NULL,NULL,NULL,NULL,NULL),(862,'https://www.createspace.com/4430912',54,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(863,'http://amzn.com/B00EP5A484',54,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(864,'http://facebook.com/TheAwkwardButterfly',54,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(865,'http://www.monicarenata.com/',54,0,'internal',312,1,NULL,NULL,NULL,NULL,NULL),(866,'mailto:?subject=%5BShared%20Post%5D%20Cadaver%27s%20Dream&body=https%3A%2F%2Fwww.monicarenata.com%2Fcadavers-dream%2F&share=email',54,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(867,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg',53,0,'external',385,NULL,NULL,NULL,NULL,NULL,NULL),(868,'https://www.createspace.com/4430912',53,0,'external',385,NULL,NULL,NULL,NULL,NULL,NULL),(869,'http://amzn.com/B00EP5A484',53,0,'external',385,NULL,NULL,NULL,NULL,NULL,NULL),(870,'http://facebook.com/TheAwkwardButterfly',53,0,'external',385,NULL,NULL,NULL,NULL,NULL,NULL),(871,'http://www.monicarenata.com/',53,0,'internal',385,1,NULL,NULL,NULL,NULL,NULL),(872,'mailto:?subject=%5BShared%20Post%5D%20Feather&body=https%3A%2F%2Fwww.monicarenata.com%2Ffeather%2F&share=email',53,0,'external',385,NULL,NULL,NULL,NULL,NULL,NULL),(873,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/03/feathers-in-the-wind.jpg?resize=248%2C320',53,0,'image-ex',385,NULL,NULL,NULL,NULL,NULL,NULL),(874,'mailto:?subject=%5BShared%20Post%5D%20Full%20Circle&body=https%3A%2F%2Fwww.monicarenata.com%2Ffull-circle%2F&share=email',52,0,'external',751,NULL,NULL,NULL,NULL,NULL,NULL),(875,'https://i0.wp.com/4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg',51,0,'external',527,NULL,NULL,NULL,NULL,NULL,NULL),(876,'https://www.createspace.com/4430912',51,0,'external',527,NULL,NULL,NULL,NULL,NULL,NULL),(877,'http://amzn.com/B00EP5A484',51,0,'external',527,NULL,NULL,NULL,NULL,NULL,NULL),(878,'http://facebook.com/TheAwkwardButterfly',51,0,'external',527,NULL,NULL,NULL,NULL,NULL,NULL),(879,'http://www.monicarenata.com/',51,0,'internal',527,1,NULL,NULL,NULL,NULL,NULL),(880,'mailto:?subject=%5BShared%20Post%5D%20Bubble&body=https%3A%2F%2Fwww.monicarenata.com%2Fbubble%2F&share=email',51,0,'external',527,NULL,NULL,NULL,NULL,NULL,NULL),(881,'https://i0.wp.com/4photos.net/photosv5/soap_bubble__flare_starswaterdropfalling_particleweldingburn_1351577559.jpg?resize=320%2C212',51,0,'image-ex',527,NULL,NULL,NULL,NULL,NULL,NULL),(882,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg',50,0,'external',456,NULL,NULL,NULL,NULL,NULL,NULL),(883,'https://www.createspace.com/4430912',50,0,'external',456,NULL,NULL,NULL,NULL,NULL,NULL),(884,'http://amzn.com/B00EP5A484',50,0,'external',456,NULL,NULL,NULL,NULL,NULL,NULL),(885,'http://facebook.com/TheAwkwardButterfly',50,0,'external',456,NULL,NULL,NULL,NULL,NULL,NULL),(886,'http://www.monicarenata.com/',50,0,'internal',456,1,NULL,NULL,NULL,NULL,NULL),(887,'mailto:?subject=%5BShared%20Post%5D%20Holding%20On&body=https%3A%2F%2Fwww.monicarenata.com%2Fholding-on%2F&share=email',50,0,'external',456,NULL,NULL,NULL,NULL,NULL,NULL),(888,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/holding-on-letting-go.jpg?resize=320%2C214',50,0,'image-ex',456,NULL,NULL,NULL,NULL,NULL,NULL),(889,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg',49,0,'external',331,NULL,NULL,NULL,NULL,NULL,NULL),(890,'mailto:?subject=%5BShared%20Post%5D%20Standing%20Up%20Is%20the%20Hard%20Part&body=https%3A%2F%2Fwww.monicarenata.com%2Fstanding-up-is-the-hard-part%2F&share=email',49,0,'external',331,NULL,NULL,NULL,NULL,NULL,NULL),(891,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/rise-up-and-be-the-best-you-can-be-because-your-world-is-waiting-for-you.jpg?resize=294%2C320',49,0,'image-ex',331,NULL,NULL,NULL,NULL,NULL,NULL),(892,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg',48,0,'external',197,NULL,NULL,NULL,NULL,NULL,NULL),(893,'mailto:?subject=%5BShared%20Post%5D%20The%20Sun%20After%20the%20Storm&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-sun-after-the-storm%2F&share=email',48,0,'external',197,NULL,NULL,NULL,NULL,NULL,NULL),(894,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/after-the-storm.jpg?resize=320%2C212',48,0,'image-ex',197,NULL,NULL,NULL,NULL,NULL,NULL),(895,'https://www.createspace.com/4430912',47,0,'external',118,NULL,NULL,NULL,NULL,NULL,NULL),(896,'http://amzn.com/B00EP5A484',47,0,'external',118,NULL,NULL,NULL,NULL,NULL,NULL),(897,'http://facebook.com/TheAwkwardButterfly',47,0,'external',118,NULL,NULL,NULL,NULL,NULL,NULL),(898,'http://www.monicarenata.com/',47,0,'internal',118,1,NULL,NULL,NULL,NULL,NULL),(899,'mailto:?subject=%5BShared%20Post%5D%20I%20Thought.....&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-thought%2F&share=email',47,0,'external',118,NULL,NULL,NULL,NULL,NULL,NULL),(900,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg',46,0,'external',369,NULL,NULL,NULL,NULL,NULL,NULL),(901,'https://www.createspace.com/4430912',46,0,'external',369,NULL,NULL,NULL,NULL,NULL,NULL),(902,'http://amzn.com/B00EP5A484',46,0,'external',369,NULL,NULL,NULL,NULL,NULL,NULL),(903,'http://facebook.com/TheAwkwardButterfly',46,0,'external',369,NULL,NULL,NULL,NULL,NULL,NULL),(904,'http://www.monicarenata.com/',46,0,'internal',369,1,NULL,NULL,NULL,NULL,NULL),(905,'mailto:?subject=%5BShared%20Post%5D%20Appreciate%20The%20Night%20Sky&body=https%3A%2F%2Fwww.monicarenata.com%2Fappreciate-the-night-sky%2F&share=email',46,0,'external',369,NULL,NULL,NULL,NULL,NULL,NULL),(906,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/beautiful-night-sky-moonouranos-our-farther-sky-cursed-lukt7irk.jpg?resize=320%2C256',46,0,'image-ex',369,NULL,NULL,NULL,NULL,NULL,NULL),(907,'https://www.createspace.com/4430912',45,0,'external',730,NULL,NULL,NULL,NULL,NULL,NULL),(908,'http://amzn.com/B00EP5A484',45,0,'external',730,NULL,NULL,NULL,NULL,NULL,NULL),(909,'http://facebook.com/TheAwkwardButterfly',45,0,'external',730,NULL,NULL,NULL,NULL,NULL,NULL),(910,'http://www.monicarenata.com/',45,0,'internal',730,1,NULL,NULL,NULL,NULL,NULL),(911,'mailto:?subject=%5BShared%20Post%5D%20I%20am%20TOO%20nice&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-am-too-nice%2F&share=email',45,0,'external',730,NULL,NULL,NULL,NULL,NULL,NULL),(912,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(913,'https://www.createspace.com/4430912',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(914,'http://amzn.com/B00EP5A484',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(915,'http://facebook.com/TheAwkwardButterfly',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(916,'http://www.monicarenata.com/',44,0,'internal',245,1,NULL,NULL,NULL,NULL,NULL),(917,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/e505355f36634704486fae0eebaba121.jpg',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(918,'mailto:?subject=%5BShared%20Post%5D%20Kissed%20the%20Midnight%20Moon&body=https%3A%2F%2Fwww.monicarenata.com%2Fkissed-the-midnight-moon%2F&share=email',44,0,'external',245,NULL,NULL,NULL,NULL,NULL,NULL),(919,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/When-There-Are-Footprints-On-The-Moon.jpg?resize=320%2C275',44,0,'image-ex',245,NULL,NULL,NULL,NULL,NULL,NULL),(920,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/e505355f36634704486fae0eebaba121.jpg?resize=238%2C320',44,0,'image-ex',245,NULL,NULL,NULL,NULL,NULL,NULL),(921,'https://www.createspace.com/4430912',43,0,'external',729,NULL,NULL,NULL,NULL,NULL,NULL),(922,'http://amzn.com/B00EP5A484',43,0,'external',729,NULL,NULL,NULL,NULL,NULL,NULL),(923,'http://facebook.com/TheAwkwardButterfly',43,0,'external',729,NULL,NULL,NULL,NULL,NULL,NULL),(924,'http://www.monicarenata.com/',43,0,'internal',729,1,NULL,NULL,NULL,NULL,NULL),(925,'mailto:?subject=%5BShared%20Post%5D%20Life%2C%20Purpose%20%26%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Flife-purpose-love%2F&share=email',43,0,'external',729,NULL,NULL,NULL,NULL,NULL,NULL),(926,'https://www.createspace.com/4430912',42,0,'external',619,NULL,NULL,NULL,NULL,NULL,NULL),(927,'http://amzn.com/B00EP5A484',42,0,'external',619,NULL,NULL,NULL,NULL,NULL,NULL),(928,'http://facebook.com/TheAwkwardButterfly',42,0,'external',619,NULL,NULL,NULL,NULL,NULL,NULL),(929,'http://www.monicarenata.com/',42,0,'internal',619,1,NULL,NULL,NULL,NULL,NULL),(930,'mailto:?subject=%5BShared%20Post%5D%20Overlooked%20Birth&body=https%3A%2F%2Fwww.monicarenata.com%2Foverlooked-birth%2F&share=email',42,0,'external',619,NULL,NULL,NULL,NULL,NULL,NULL),(931,'http://scm-l3.technorati.com/11/02/05/25519/valentine\'sday.jpg',41,0,'external',710,NULL,NULL,NULL,NULL,NULL,NULL),(932,'https://www.createspace.com/4430912',41,0,'external',710,NULL,NULL,NULL,NULL,NULL,NULL),(933,'http://amzn.com/B00EP5A484',41,0,'external',710,NULL,NULL,NULL,NULL,NULL,NULL),(934,'http://facebook.com/TheAwkwardButterfly',41,0,'external',710,NULL,NULL,NULL,NULL,NULL,NULL),(935,'http://www.monicarenata.com/',41,0,'internal',710,1,NULL,NULL,NULL,NULL,NULL),(936,'mailto:?subject=%5BShared%20Post%5D%20Dreadful%20Holiday&body=https%3A%2F%2Fwww.monicarenata.com%2Fdreadful-holiday%2F&share=email',41,0,'external',710,NULL,NULL,NULL,NULL,NULL,NULL),(937,'http://scm-l3.technorati.com/11/02/05/25519/valentine'sday.jpg',41,0,'image-ex',710,NULL,NULL,NULL,NULL,NULL,NULL),(938,'https://www.createspace.com/4430912',40,0,'external',470,NULL,NULL,NULL,NULL,NULL,NULL),(939,'http://amzn.com/B00EP5A484',40,0,'external',470,NULL,NULL,NULL,NULL,NULL,NULL),(940,'http://facebook.com/TheAwkwardButterfly',40,0,'external',470,NULL,NULL,NULL,NULL,NULL,NULL),(941,'http://www.monicarenata.com/',40,0,'internal',470,1,NULL,NULL,NULL,NULL,NULL),(942,'mailto:?subject=%5BShared%20Post%5D%20Moon%20Love%3A%20Stop%20overvaluing%20fainting%20stars&body=https%3A%2F%2Fwww.monicarenata.com%2Fmoon-love-stop-overvaluing-fainting-stars%2F&share=email',40,0,'external',470,NULL,NULL,NULL,NULL,NULL,NULL),(943,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg',39,0,'external',194,NULL,NULL,NULL,NULL,NULL,NULL),(944,'https://www.createspace.com/4430912',39,0,'external',194,NULL,NULL,NULL,NULL,NULL,NULL),(945,'http://amzn.com/B00EP5A484',39,0,'external',194,NULL,NULL,NULL,NULL,NULL,NULL),(946,'http://facebook.com/TheAwkwardButterfly',39,0,'external',194,NULL,NULL,NULL,NULL,NULL,NULL),(947,'http://www.monicarenata.com/',39,0,'internal',194,1,NULL,NULL,NULL,NULL,NULL),(948,'mailto:?subject=%5BShared%20Post%5D%20Summer%20Days&body=https%3A%2F%2Fwww.monicarenata.com%2Fsummer-days%2F&share=email',39,0,'external',194,NULL,NULL,NULL,NULL,NULL,NULL),(949,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/04/flipflops__1282149259_0040.jpg?resize=320%2C239',39,0,'image-ex',194,NULL,NULL,NULL,NULL,NULL,NULL),(950,'https://www.createspace.com/4430912',38,0,'external',636,NULL,NULL,NULL,NULL,NULL,NULL),(951,'http://amzn.com/B00EP5A484',38,0,'external',636,NULL,NULL,NULL,NULL,NULL,NULL),(952,'http://facebook.com/TheAwkwardButterfly',38,0,'external',636,NULL,NULL,NULL,NULL,NULL,NULL),(953,'http://www.monicarenata.com/',38,0,'internal',636,1,NULL,NULL,NULL,NULL,NULL),(954,'mailto:?subject=%5BShared%20Post%5D%20Patience%20is%20a%20Virtue&body=https%3A%2F%2Fwww.monicarenata.com%2Fpatience-is-a-virtue%2F&share=email',38,0,'external',636,NULL,NULL,NULL,NULL,NULL,NULL),(955,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg',37,0,'external',244,NULL,NULL,NULL,NULL,NULL,NULL),(956,'https://www.createspace.com/4430912',37,0,'external',244,NULL,NULL,NULL,NULL,NULL,NULL),(957,'http://amzn.com/B00EP5A484',37,0,'external',244,NULL,NULL,NULL,NULL,NULL,NULL),(958,'http://facebook.com/TheAwkwardButterfly',37,0,'external',244,NULL,NULL,NULL,NULL,NULL,NULL),(959,'http://www.monicarenata.com/',37,0,'internal',244,1,NULL,NULL,NULL,NULL,NULL),(960,'mailto:?subject=%5BShared%20Post%5D%20SandMan&body=https%3A%2F%2Fwww.monicarenata.com%2Fsandman%2F&share=email',37,0,'external',244,NULL,NULL,NULL,NULL,NULL,NULL),(961,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/sand-2.jpg?resize=320%2C240',37,0,'image-ex',244,NULL,NULL,NULL,NULL,NULL,NULL),(962,'https://www.createspace.com/4430912',36,0,'external',362,NULL,NULL,NULL,NULL,NULL,NULL),(963,'http://amzn.com/B00EP5A484',36,0,'external',362,NULL,NULL,NULL,NULL,NULL,NULL),(964,'http://facebook.com/TheAwkwardButterfly',36,0,'external',362,NULL,NULL,NULL,NULL,NULL,NULL),(965,'http://www.monicarenata.com/',36,0,'internal',362,1,NULL,NULL,NULL,NULL,NULL),(966,'mailto:?subject=%5BShared%20Post%5D%20You%20Can%27t%20Let%20the%20Same%20Thing%20Keep%20Hurting%20You%20Over%20and%20Over%20Again.....&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-cant-let-the-same-thing-keep-hurting-you-over-and-over-again%2F&share=emai',36,0,'external',362,NULL,NULL,NULL,NULL,NULL,NULL),(967,'https://www.createspace.com/4430912',35,0,'external',726,NULL,NULL,NULL,NULL,NULL,NULL),(968,'http://amzn.com/B00EP5A484',35,0,'external',726,NULL,NULL,NULL,NULL,NULL,NULL),(969,'http://facebook.com/TheAwkwardButterfly',35,0,'external',726,NULL,NULL,NULL,NULL,NULL,NULL),(970,'http://www.monicarenata.com/',35,0,'internal',726,1,NULL,NULL,NULL,NULL,NULL),(971,'mailto:?subject=%5BShared%20Post%5D%20Words%20Vs%20Actions&body=https%3A%2F%2Fwww.monicarenata.com%2Fwords-vs-actions%2F&share=email',35,0,'external',726,NULL,NULL,NULL,NULL,NULL,NULL),(972,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg',34,0,'external',501,NULL,NULL,NULL,NULL,NULL,NULL),(973,'https://www.createspace.com/4430912',34,0,'external',501,NULL,NULL,NULL,NULL,NULL,NULL),(974,'http://amzn.com/B00EP5A484',34,0,'external',501,NULL,NULL,NULL,NULL,NULL,NULL),(975,'http://facebook.com/TheAwkwardButterfly',34,0,'external',501,NULL,NULL,NULL,NULL,NULL,NULL),(976,'http://www.monicarenata.com/',34,0,'internal',501,1,NULL,NULL,NULL,NULL,NULL),(977,'mailto:?subject=%5BShared%20Post%5D%20I%20Can%27t%20Make%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-cant-make-you%2F&share=email',34,0,'external',501,NULL,NULL,NULL,NULL,NULL,NULL),(978,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/03bbe07ed579a83b7865d23ab1768fe4.jpg?resize=308%2C400',34,0,'image-ex',501,NULL,NULL,NULL,NULL,NULL,NULL),(979,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg',33,0,'external',366,NULL,NULL,NULL,NULL,NULL,NULL),(980,'https://www.createspace.com/4430912',33,0,'external',366,NULL,NULL,NULL,NULL,NULL,NULL),(981,'http://amzn.com/B00EP5A484',33,0,'external',366,NULL,NULL,NULL,NULL,NULL,NULL),(982,'http://facebook.com/TheAwkwardButterfly',33,0,'external',366,NULL,NULL,NULL,NULL,NULL,NULL),(983,'http://www.monicarenata.com/',33,0,'internal',366,1,NULL,NULL,NULL,NULL,NULL),(984,'mailto:?subject=%5BShared%20Post%5D%20Every%20Ounce%20of%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fevery-ounce-of-me%2F&share=email',33,0,'external',366,NULL,NULL,NULL,NULL,NULL,NULL),(985,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Love-Wallpapers-love-33002134-1920-1200.jpg?resize=200%2C125',33,0,'image-ex',366,NULL,NULL,NULL,NULL,NULL,NULL),(986,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg',32,0,'external',689,NULL,NULL,NULL,NULL,NULL,NULL),(987,'https://www.createspace.com/4430912',32,0,'external',689,NULL,NULL,NULL,NULL,NULL,NULL),(988,'http://amzn.com/B00EP5A484',32,0,'external',689,NULL,NULL,NULL,NULL,NULL,NULL),(989,'http://facebook.com/TheAwkwardButterfly',32,0,'external',689,NULL,NULL,NULL,NULL,NULL,NULL),(990,'http://www.monicarenata.com/',32,0,'internal',689,1,NULL,NULL,NULL,NULL,NULL),(991,'mailto:?subject=%5BShared%20Post%5D%20The%20Thrill%20is%20Gone&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-thrill-is-gone%2F&share=email',32,0,'external',689,NULL,NULL,NULL,NULL,NULL,NULL),(992,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/Sad-couple-losing-love-good-bye-letting-go-sad-love-wallpaper-leaving-quotes-photos-fanzwave-net.jpg?resize=320%2C278',32,0,'image-ex',689,NULL,NULL,NULL,NULL,NULL,NULL),(993,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg',31,0,'external',449,NULL,NULL,NULL,NULL,NULL,NULL),(994,'https://www.createspace.com/4430912',31,0,'external',449,NULL,NULL,NULL,NULL,NULL,NULL),(995,'http://amzn.com/B00EP5A484',31,0,'external',449,NULL,NULL,NULL,NULL,NULL,NULL),(996,'http://facebook.com/TheAwkwardButterfly',31,0,'external',449,NULL,NULL,NULL,NULL,NULL,NULL),(997,'http://www.monicarenata.com/',31,0,'internal',449,1,NULL,NULL,NULL,NULL,NULL),(998,'mailto:?subject=%5BShared%20Post%5D%20Endless%20Echoes&body=https%3A%2F%2Fwww.monicarenata.com%2Fendless-echoes%2F&share=email',31,0,'external',449,NULL,NULL,NULL,NULL,NULL,NULL),(999,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/hear-me-now.jpg?resize=320%2C224',31,0,'image-ex',449,NULL,NULL,NULL,NULL,NULL,NULL),(1000,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg',30,0,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(1001,'https://www.createspace.com/4430912',30,0,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(1002,'http://amzn.com/B00EP5A484',30,0,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(1003,'http://facebook.com/TheAwkwardButterfly',30,0,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(1004,'http://www.monicarenata.com/',30,0,'internal',29,1,NULL,NULL,NULL,NULL,NULL),(1005,'mailto:?subject=%5BShared%20Post%5D%20Stormy%20Day&body=https%3A%2F%2Fwww.monicarenata.com%2Fstormy-day%2F&share=email',30,0,'external',29,NULL,NULL,NULL,NULL,NULL,NULL),(1006,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/stormy-day-carol-mclagan.jpg?resize=320%2C238',30,0,'image-ex',29,NULL,NULL,NULL,NULL,NULL,NULL),(1007,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png',29,0,'external',112,NULL,NULL,NULL,NULL,NULL,NULL),(1008,'https://www.createspace.com/4430912',29,0,'external',112,NULL,NULL,NULL,NULL,NULL,NULL),(1009,'http://amzn.com/B00EP5A484',29,0,'external',112,NULL,NULL,NULL,NULL,NULL,NULL),(1010,'http://facebook.com/TheAwkwardButterfly',29,0,'external',112,NULL,NULL,NULL,NULL,NULL,NULL),(1011,'http://www.monicarenata.com/',29,0,'internal',112,1,NULL,NULL,NULL,NULL,NULL),(1012,'mailto:?subject=%5BShared%20Post%5D%20Let%20Freedom%20Ring&body=https%3A%2F%2Fwww.monicarenata.com%2Flet-freedom-ring%2F&share=email',29,0,'external',112,NULL,NULL,NULL,NULL,NULL,NULL),(1013,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/1038.png?resize=320%2C192',29,0,'image-ex',112,NULL,NULL,NULL,NULL,NULL,NULL),(1014,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg',28,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(1015,'https://www.createspace.com/4430912',28,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(1016,'http://amzn.com/B00EP5A484',28,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(1017,'http://facebook.com/TheAwkwardButterfly',28,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(1018,'http://www.monicarenata.com/',28,0,'internal',108,1,NULL,NULL,NULL,NULL,NULL),(1019,'mailto:?subject=%5BShared%20Post%5D%20Waiting%20For%20Others%20to%20Hold%20My%20Hand&body=https%3A%2F%2Fwww.monicarenata.com%2Fwaiting-for-others-to-hold-my-hand%2F&share=email',28,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(1020,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/tumblr_mde3v9UaLP1qf01fko1_500.jpg?resize=214%2C320',28,0,'image-ex',108,NULL,NULL,NULL,NULL,NULL,NULL),(1021,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png',27,0,'external',196,NULL,NULL,NULL,NULL,NULL,NULL),(1022,'https://www.createspace.com/4430912',27,0,'external',196,NULL,NULL,NULL,NULL,NULL,NULL),(1023,'http://amzn.com/B00EP5A484',27,0,'external',196,NULL,NULL,NULL,NULL,NULL,NULL),(1024,'http://facebook.com/TheAwkwardButterfly',27,0,'external',196,NULL,NULL,NULL,NULL,NULL,NULL),(1025,'http://www.monicarenata.com/',27,0,'internal',196,1,NULL,NULL,NULL,NULL,NULL),(1026,'mailto:?subject=%5BShared%20Post%5D%20The%20Rock&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-rock%2F&share=email',27,0,'external',196,NULL,NULL,NULL,NULL,NULL,NULL),(1027,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/05/4261206112_544d39afa2_o.png?resize=257%2C400',27,0,'image-ex',196,NULL,NULL,NULL,NULL,NULL,NULL),(1028,'https://www.createspace.com/4430912',26,0,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(1029,'http://amzn.com/B00EP5A484',26,0,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(1030,'http://facebook.com/TheAwkwardButterfly',26,0,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(1031,'http://www.monicarenata.com/',26,0,'internal',797,1,NULL,NULL,NULL,NULL,NULL),(1032,'mailto:?subject=%5BShared%20Post%5D%20Finding%20Happy&body=https%3A%2F%2Fwww.monicarenata.com%2Ffinding-happy%2F&share=email',26,0,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(1033,'https://www.createspace.com/4430912',25,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(1034,'http://amzn.com/B00EP5A484',25,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(1035,'http://facebook.com/TheAwkwardButterfly',25,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(1036,'http://www.monicarenata.com/',25,0,'internal',69,1,NULL,NULL,NULL,NULL,NULL),(1037,'mailto:?subject=%5BShared%20Post%5D%20I%20feel%20sorry%20for%20no%20one%E2%80%A6%E2%80%A6%E2%80%A6%E2%80%A6.&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-feel-sorry-for-no-one%2F&share=email',25,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(1038,'https://www.blogger.com/stopbullying.gov',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1039,'https://www.blogger.com/blogger.g?blogID=64832133018470584',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1040,'https://www.createspace.com/4430912',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1041,'http://amzn.com/B00EP5A484',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1042,'http://facebook.com/TheAwkwardButterfly',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1043,'http://www.monicarenata.com/',24,0,'internal',732,1,NULL,NULL,NULL,NULL,NULL),(1044,'mailto:?subject=%5BShared%20Post%5D%20The%20Bully%3A%20Does%20it%20Exist%20in%20the%20Adult%20World%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-bully-does-it-exist-in-the-adult-world%2F&share=email',24,0,'external',732,NULL,NULL,NULL,NULL,NULL,NULL),(1045,'https://www.createspace.com/4430912',23,0,'external',796,NULL,NULL,NULL,NULL,NULL,NULL),(1046,'http://amzn.com/B00EP5A484',23,0,'external',796,NULL,NULL,NULL,NULL,NULL,NULL),(1047,'http://facebook.com/TheAwkwardButterfly',23,0,'external',796,NULL,NULL,NULL,NULL,NULL,NULL),(1048,'http://www.monicarenata.com/',23,0,'internal',796,1,NULL,NULL,NULL,NULL,NULL),(1049,'mailto:?subject=%5BShared%20Post%5D%20The%20Sun%20Can%27t%20Shine%20the%20Same&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-sun-cant-shine-the-same%2F&share=email',23,0,'external',796,NULL,NULL,NULL,NULL,NULL,NULL),(1050,'https://www.createspace.com/4430912',22,0,'external',473,NULL,NULL,NULL,NULL,NULL,NULL),(1051,'http://amzn.com/B00EP5A484',22,0,'external',473,NULL,NULL,NULL,NULL,NULL,NULL),(1052,'http://facebook.com/TheAwkwardButterfly',22,0,'external',473,NULL,NULL,NULL,NULL,NULL,NULL),(1053,'http://www.monicarenata.com/',22,0,'internal',473,1,NULL,NULL,NULL,NULL,NULL),(1054,'mailto:?subject=%5BShared%20Post%5D%20Falling%20In%20Love%20with%20Potential&body=https%3A%2F%2Fwww.monicarenata.com%2Ffalling-in-love-with-potential%2F&share=email',22,0,'external',473,NULL,NULL,NULL,NULL,NULL,NULL),(1055,'https://www.createspace.com/4430912',21,0,'external',702,NULL,NULL,NULL,NULL,NULL,NULL),(1056,'http://amzn.com/B00EP5A484',21,0,'external',702,NULL,NULL,NULL,NULL,NULL,NULL),(1057,'http://facebook.com/TheAwkwardButterfly',21,0,'external',702,NULL,NULL,NULL,NULL,NULL,NULL),(1058,'http://www.monicarenata.com/',21,0,'internal',702,1,NULL,NULL,NULL,NULL,NULL),(1059,'mailto:?subject=%5BShared%20Post%5D%20Thanks%20for%20Being%20A%20Great%20Friend&body=https%3A%2F%2Fwww.monicarenata.com%2Fthanks-for-being-a-great-friend%2F&share=email',21,0,'external',702,NULL,NULL,NULL,NULL,NULL,NULL),(1060,'https://www.createspace.com/4430912',20,0,'external',654,NULL,NULL,NULL,NULL,NULL,NULL),(1061,'http://amzn.com/B00EP5A484',20,0,'external',654,NULL,NULL,NULL,NULL,NULL,NULL),(1062,'http://facebook.com/TheAwkwardButterfly',20,0,'external',654,NULL,NULL,NULL,NULL,NULL,NULL),(1063,'http://www.monicarenata.com/',20,0,'internal',654,1,NULL,NULL,NULL,NULL,NULL),(1064,'mailto:?subject=%5BShared%20Post%5D%20Beautiful%20Lies&body=https%3A%2F%2Fwww.monicarenata.com%2Fbeautiful-lies%2F&share=email',20,0,'external',654,NULL,NULL,NULL,NULL,NULL,NULL),(1065,'https://www.createspace.com/4430912',19,0,'external',746,NULL,NULL,NULL,NULL,NULL,NULL),(1066,'http://amzn.com/B00EP5A484',19,0,'external',746,NULL,NULL,NULL,NULL,NULL,NULL),(1067,'http://facebook.com/TheAwkwardButterfly',19,0,'external',746,NULL,NULL,NULL,NULL,NULL,NULL),(1068,'http://www.monicarenata.com/',19,0,'internal',746,1,NULL,NULL,NULL,NULL,NULL),(1069,'mailto:?subject=%5BShared%20Post%5D%20To%20Decode%20A%20Riddle&body=https%3A%2F%2Fwww.monicarenata.com%2Fto-decode-a-riddle%2F&share=email',19,0,'external',746,NULL,NULL,NULL,NULL,NULL,NULL),(1070,'https://www.createspace.com/4430912',18,0,'external',674,NULL,NULL,NULL,NULL,NULL,NULL),(1071,'http://amzn.com/B00EP5A484',18,0,'external',674,NULL,NULL,NULL,NULL,NULL,NULL),(1072,'http://facebook.com/TheAwkwardButterfly',18,0,'external',674,NULL,NULL,NULL,NULL,NULL,NULL),(1073,'http://www.monicarenata.com/',18,0,'internal',674,1,NULL,NULL,NULL,NULL,NULL),(1074,'mailto:?subject=%5BShared%20Post%5D%20Thanks%20For%20Believing%20in%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fthanks-for-believing-in-me%2F&share=email',18,0,'external',674,NULL,NULL,NULL,NULL,NULL,NULL),(1075,'https://www.createspace.com/4430912',17,0,'external',734,NULL,NULL,NULL,NULL,NULL,NULL),(1076,'http://amzn.com/B00EP5A484',17,0,'external',734,NULL,NULL,NULL,NULL,NULL,NULL),(1077,'http://facebook.com/TheAwkwardButterfly',17,0,'external',734,NULL,NULL,NULL,NULL,NULL,NULL),(1078,'http://www.monicarenata.com/',17,0,'internal',734,1,NULL,NULL,NULL,NULL,NULL),(1079,'mailto:?subject=%5BShared%20Post%5D%20Mistakes&body=https%3A%2F%2Fwww.monicarenata.com%2Fmistakes%2F&share=email',17,0,'external',734,NULL,NULL,NULL,NULL,NULL,NULL),(1080,'https://www.createspace.com/4430912',16,0,'external',328,NULL,NULL,NULL,NULL,NULL,NULL),(1081,'http://amzn.com/B00EP5A484',16,0,'external',328,NULL,NULL,NULL,NULL,NULL,NULL),(1082,'http://facebook.com/TheAwkwardButterfly',16,0,'external',328,NULL,NULL,NULL,NULL,NULL,NULL),(1083,'http://www.monicarenata.com/',16,0,'internal',328,1,NULL,NULL,NULL,NULL,NULL),(1084,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Not%20Your%20________________&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-not-your-________________%2F&share=email',16,0,'external',328,NULL,NULL,NULL,NULL,NULL,NULL),(1085,'https://www.createspace.com/4430912',15,0,'external',350,NULL,NULL,NULL,NULL,NULL,NULL),(1086,'http://amzn.com/B00EP5A484',15,0,'external',350,NULL,NULL,NULL,NULL,NULL,NULL),(1087,'http://facebook.com/TheAwkwardButterfly',15,0,'external',350,NULL,NULL,NULL,NULL,NULL,NULL),(1088,'http://www.monicarenata.com/',15,0,'internal',350,1,NULL,NULL,NULL,NULL,NULL),(1089,'mailto:?subject=%5BShared%20Post%5D%20If%20I%20Didn%27t%20Care&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-i-didnt-care%2F&share=email',15,0,'external',350,NULL,NULL,NULL,NULL,NULL,NULL),(1090,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg',14,0,'external',795,NULL,NULL,NULL,NULL,NULL,NULL),(1091,'https://www.createspace.com/4430912',14,0,'external',795,NULL,NULL,NULL,NULL,NULL,NULL),(1092,'http://amzn.com/B00EP5A484',14,0,'external',795,NULL,NULL,NULL,NULL,NULL,NULL),(1093,'http://facebook.com/TheAwkwardButterfly',14,0,'external',795,NULL,NULL,NULL,NULL,NULL,NULL),(1094,'http://www.monicarenata.com/',14,0,'internal',795,1,NULL,NULL,NULL,NULL,NULL),(1095,'mailto:?subject=%5BShared%20Post%5D%20The%20Tears%20of%20the%20Willow&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-tears-of-the-willow%2F&share=email',14,0,'external',795,NULL,NULL,NULL,NULL,NULL,NULL),(1096,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2014/06/weepingwillow-jpg.jpg?resize=232%2C320',14,0,'image-ex',795,NULL,NULL,NULL,NULL,NULL,NULL),(1097,'https://www.createspace.com/4430912',13,0,'external',755,NULL,NULL,NULL,NULL,NULL,NULL),(1098,'http://amzn.com/B00EP5A484',13,0,'external',755,NULL,NULL,NULL,NULL,NULL,NULL),(1099,'http://facebook.com/TheAwkwardButterfly',13,0,'external',755,NULL,NULL,NULL,NULL,NULL,NULL),(1100,'http://www.monicarenata.com/',13,0,'internal',755,1,NULL,NULL,NULL,NULL,NULL),(1101,'mailto:?subject=%5BShared%20Post%5D%20HappyTown%3A%20The%20Train%20Stop&body=https%3A%2F%2Fwww.monicarenata.com%2Fhappytown-the-train-stop%2F&share=email',13,0,'external',755,NULL,NULL,NULL,NULL,NULL,NULL),(1102,'https://www.createspace.com/4430912',12,0,'external',637,NULL,NULL,NULL,NULL,NULL,NULL),(1103,'http://amzn.com/B00EP5A484',12,0,'external',637,NULL,NULL,NULL,NULL,NULL,NULL),(1104,'http://facebook.com/TheAwkwardButterfly',12,0,'external',637,NULL,NULL,NULL,NULL,NULL,NULL),(1105,'http://www.monicarenata.com/',12,0,'internal',637,1,NULL,NULL,NULL,NULL,NULL),(1106,'mailto:?subject=%5BShared%20Post%5D%20I%20Have%20Been%20Thinking&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-have-been-thinking%2F&share=email',12,0,'external',637,NULL,NULL,NULL,NULL,NULL,NULL),(1107,'https://www.createspace.com/4430912',11,0,'external',471,NULL,NULL,NULL,NULL,NULL,NULL),(1108,'http://amzn.com/B00EP5A484',11,0,'external',471,NULL,NULL,NULL,NULL,NULL,NULL),(1109,'http://facebook.com/TheAwkwardButterfly',11,0,'external',471,NULL,NULL,NULL,NULL,NULL,NULL),(1110,'http://www.monicarenata.com/',11,0,'internal',471,1,NULL,NULL,NULL,NULL,NULL),(1111,'mailto:?subject=%5BShared%20Post%5D%20Mr.%20Care%20Too%20Much&body=https%3A%2F%2Fwww.monicarenata.com%2Fmr-care-too-much%2F&share=email',11,0,'external',471,NULL,NULL,NULL,NULL,NULL,NULL),(1112,'https://www.createspace.com/4430912',10,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(1113,'http://amzn.com/B00EP5A484',10,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(1114,'http://facebook.com/TheAwkwardButterfly',10,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(1115,'http://www.monicarenata.com/',10,0,'internal',74,1,NULL,NULL,NULL,NULL,NULL),(1116,'mailto:?subject=%5BShared%20Post%5D%20Never-Ending%20Time&body=https%3A%2F%2Fwww.monicarenata.com%2Fnever-ending-time%2F&share=email',10,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(1117,'https://www.createspace.com/4430912',9,0,'external',233,NULL,NULL,NULL,NULL,NULL,NULL),(1118,'http://amzn.com/B00EP5A484',9,0,'external',233,NULL,NULL,NULL,NULL,NULL,NULL),(1119,'http://facebook.com/TheAwkwardButterfly',9,0,'external',233,NULL,NULL,NULL,NULL,NULL,NULL),(1120,'http://www.monicarenata.com/',9,0,'internal',233,1,NULL,NULL,NULL,NULL,NULL),(1121,'mailto:?subject=%5BShared%20Post%5D%20Confessions%20of%20the%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Fconfessions-of-the-heart%2F&share=email',9,0,'external',233,NULL,NULL,NULL,NULL,NULL,NULL),(1122,'http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=',8,0,'external',63,NULL,NULL,NULL,NULL,NULL,NULL),(1123,'mailto:?subject=%5BShared%20Post%5D%20Pretty%20Flowers&body=https%3A%2F%2Fwww.monicarenata.com%2Fpretty-flowers%2F&share=email',8,0,'external',63,NULL,NULL,NULL,NULL,NULL,NULL),(1124,'http://s7d2.scene7.com/is/image/Teleflora/200374?&wid=445&hei=550&fmt=jpeg&qlt=80,0&op_sharpen=0&resMode=bilin&op_usm=1.0,0.5,1.0,0&iccEmbed=0&layer=1&opac=0&layer=2&opac=55&layer=5&opac=0&layer=',8,0,'image-ex',63,NULL,NULL,NULL,NULL,NULL,NULL),(1125,'https://www.createspace.com/4430912',7,0,'external',58,NULL,NULL,NULL,NULL,NULL,NULL),(1126,'http://amzn.com/B00EP5A484',7,0,'external',58,NULL,NULL,NULL,NULL,NULL,NULL),(1127,'http://facebook.com/TheAwkwardButterfly',7,0,'external',58,NULL,NULL,NULL,NULL,NULL,NULL),(1128,'http://www.monicarenata.com/',7,0,'internal',58,1,NULL,NULL,NULL,NULL,NULL),(1129,'mailto:?subject=%5BShared%20Post%5D%20Some%20things%20will%20never%20change&body=https%3A%2F%2Fwww.monicarenata.com%2Fsome-things-will-never-change%2F&share=email',7,0,'external',58,NULL,NULL,NULL,NULL,NULL,NULL),(1130,'https://www.createspace.com/4430912',6,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(1131,'http://amzn.com/B00EP5A484',6,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(1132,'http://facebook.com/TheAwkwardButterfly',6,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(1133,'http://www.monicarenata.com/',6,0,'internal',49,1,NULL,NULL,NULL,NULL,NULL),(1134,'mailto:?subject=%5BShared%20Post%5D%20Pretty%20Little%20Picture&body=https%3A%2F%2Fwww.monicarenata.com%2Fpretty-little-picture%2F&share=email',6,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(1135,'mailto:?subject=%5BShared%20Post%5D%20Sadness%20is%20Born&body=https%3A%2F%2Fwww.monicarenata.com%2Fsadness-is-born%2F&share=email',5,0,'external',725,NULL,NULL,NULL,NULL,NULL,NULL),(1136,'mailto:?subject=%5BShared%20Post%5D%20The%20Cannots%20of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-cannots-of-life%2F&share=email',4,0,'external',794,NULL,NULL,NULL,NULL,NULL,NULL),(1137,'http://monicarenata.blogspot.com',1,0,'external',241,NULL,NULL,NULL,NULL,NULL,NULL),(1138,'http://www.monicarenata.com',1,0,'internal',241,NULL,NULL,NULL,NULL,NULL,NULL),(1139,'mailto:?subject=%5BShared%20Post%5D%20Welcome%20To%20My%20Site&body=https%3A%2F%2Fwww.monicarenata.com%2Fhello-world%2F&share=email',1,0,'external',241,NULL,NULL,NULL,NULL,NULL,NULL),(1140,'mailto:?subject=%5BShared%20Post%5D%20My%20Moment%20&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-moment%2F&share=email',585,0,'external',84,NULL,NULL,NULL,NULL,NULL,NULL),(1141,'http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1142,'http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1143,'http://www.amazon.com/The-Awkward-Butterfly-Monica-Renata-ebook/dp/B00EP5A484',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1144,'http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1145,'http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1146,'http://www.amazon.com/Monica-Renata-Keyword-Love-Volume/dp/1492724211',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1147,'http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1148,'http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1149,'http://www.amazon.com/Keyword-Inner-Strength-Monica-Renata/dp/1492834149/ref=la_B00J69UZBK_1_2?s=books&ie=UTF8&qid=1409061818&sr=1-2',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1150,'mailto:?subject=%5BShared%20Post%5D%20The%20Rose%27s%20Thorn&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-roses-thorn%2F&share=email',596,0,'external',93,NULL,NULL,NULL,NULL,NULL,NULL),(1151,'mailto:?subject=%5BShared%20Post%5D%20The%20Cauldron%20of%20Deceit&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-cauldron-of-deceit%2F&share=email',611,0,'external',676,NULL,NULL,NULL,NULL,NULL,NULL),(1152,'mailto:?subject=%5BShared%20Post%5D%20I%20Try%20To%20Write%20a%20Happy%20Poem&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-try-to-write-a-happy-poem%2F&share=email',613,0,'external',421,NULL,NULL,NULL,NULL,NULL,NULL),(1153,'mailto:?subject=%5BShared%20Post%5D%20Secret&body=https%3A%2F%2Fwww.monicarenata.com%2Fsecret%2F&share=email',621,0,'external',558,NULL,NULL,NULL,NULL,NULL,NULL),(1154,'mailto:?subject=%5BShared%20Post%5D%20Be%20Kind&body=https%3A%2F%2Fwww.monicarenata.com%2Fbe-kind%2F&share=email',626,0,'external',552,NULL,NULL,NULL,NULL,NULL,NULL),(1155,'mailto:?subject=%5BShared%20Post%5D%20Just%20In%20Case&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-in-case%2F&share=email',628,0,'external',227,NULL,NULL,NULL,NULL,NULL,NULL),(1156,'mailto:?subject=%5BShared%20Post%5D%20Unbothered&body=https%3A%2F%2Fwww.monicarenata.com%2Funbothered%2F&share=email',630,0,'external',155,NULL,NULL,NULL,NULL,NULL,NULL),(1157,'mailto:?subject=%5BShared%20Post%5D%20Three%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Fthree-words%2F&share=email',633,0,'external',561,NULL,NULL,NULL,NULL,NULL,NULL),(1158,'mailto:?subject=%5BShared%20Post%5D%20To%20Say%20It%20Doesn%27t%20Bother%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fto-say-it-doesnt-bother-me%2F&share=email',636,0,'external',806,NULL,NULL,NULL,NULL,NULL,NULL),(1159,'mailto:?subject=%5BShared%20Post%5D%20Gone&body=https%3A%2F%2Fwww.monicarenata.com%2Fgone%2F&share=email',639,0,'external',519,NULL,NULL,NULL,NULL,NULL,NULL),(1160,'mailto:?subject=%5BShared%20Post%5D%20Lessons%20of%20Past%20Yesterdays&body=https%3A%2F%2Fwww.monicarenata.com%2Flessons-of-past-yesterdays%2F&share=email',643,0,'external',807,NULL,NULL,NULL,NULL,NULL,NULL),(1161,'mailto:?subject=%5BShared%20Post%5D%20Todays%20and%20Yesterdays&body=https%3A%2F%2Fwww.monicarenata.com%2Ftodays-and-yesterdays%2F&share=email',646,0,'external',555,NULL,NULL,NULL,NULL,NULL,NULL),(1162,'mailto:?subject=%5BShared%20Post%5D%20Sunday%20Morning&body=https%3A%2F%2Fwww.monicarenata.com%2Fsunday-morning%2F&share=email',648,0,'external',556,NULL,NULL,NULL,NULL,NULL,NULL),(1163,'mailto:?subject=%5BShared%20Post%5D%20Raising%20Royalty%3A%20Princess%2C%20Queen%2C%20Prince%2C%20King&body=https%3A%2F%2Fwww.monicarenata.com%2Fraising-royalty-princess-queen-prince-king%2F&share=email',652,0,'external',562,NULL,NULL,NULL,NULL,NULL,NULL),(1164,'mailto:?subject=%5BShared%20Post%5D%20Spoken%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Fspoken-words%2F&share=email',668,0,'external',563,NULL,NULL,NULL,NULL,NULL,NULL),(1165,'mailto:?subject=%5BShared%20Post%5D%20Working%20on%20A%20Project&body=https%3A%2F%2Fwww.monicarenata.com%2Fworking-on-a-project%2F&share=email',675,0,'external',559,NULL,NULL,NULL,NULL,NULL,NULL),(1166,'mailto:?subject=%5BShared%20Post%5D%20Set%20You%20Free&body=https%3A%2F%2Fwww.monicarenata.com%2Fset-you-free%2F&share=email',678,0,'external',645,NULL,NULL,NULL,NULL,NULL,NULL),(1167,'mailto:?subject=%5BShared%20Post%5D%20Please%20Don%27t%20Fall%20In%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Fplease-dont-fall-in-love%2F&share=email',680,0,'external',111,NULL,NULL,NULL,NULL,NULL,NULL),(1168,'mailto:?subject=%5BShared%20Post%5D%20In%20Your%20Sleep&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-your-sleep%2F&share=email',682,0,'external',715,NULL,NULL,NULL,NULL,NULL,NULL),(1169,'mailto:?subject=%5BShared%20Post%5D%20Ill%20Today&body=https%3A%2F%2Fwww.monicarenata.com%2Fill-today%2F&share=email',684,0,'external',306,NULL,NULL,NULL,NULL,NULL,NULL),(1170,'mailto:?subject=%5BShared%20Post%5D%20Reminders&body=https%3A%2F%2Fwww.monicarenata.com%2Freminders%2F&share=email',688,0,'external',557,NULL,NULL,NULL,NULL,NULL,NULL),(1171,'mailto:?subject=%5BShared%20Post%5D%20Forever%20Just%20You%20and%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fforever-just-you-and-me%2F&share=email',690,0,'external',560,NULL,NULL,NULL,NULL,NULL,NULL),(1172,'mailto:?subject=%5BShared%20Post%5D%20Sitting%20Among%20Flowers&body=https%3A%2F%2Fwww.monicarenata.com%2Fsitting-among-flowers%2F&share=email',692,0,'external',553,NULL,NULL,NULL,NULL,NULL,NULL),(1173,'mailto:?subject=%5BShared%20Post%5D%20Freaking%20Fantastic&body=https%3A%2F%2Fwww.monicarenata.com%2Ffreaking-fantastic%2F&share=email',694,0,'external',550,NULL,NULL,NULL,NULL,NULL,NULL),(1174,'mailto:?subject=%5BShared%20Post%5D%20Fruit%20of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Ffruit-of-life%2F&share=email',696,0,'external',551,NULL,NULL,NULL,NULL,NULL,NULL),(1175,'mailto:?subject=%5BShared%20Post%5D%20Stay%20In%20Character&body=https%3A%2F%2Fwww.monicarenata.com%2Fstay-in-character%2F&share=email',698,0,'external',554,NULL,NULL,NULL,NULL,NULL,NULL),(1176,'mailto:?subject=%5BShared%20Post%5D%20Something%20Real&body=https%3A%2F%2Fwww.monicarenata.com%2Fsomething-real%2F&share=email',686,0,'external',533,NULL,NULL,NULL,NULL,NULL,NULL),(1177,'mailto:?subject=%5BShared%20Post%5D%20Well%20runs%20dry%20&body=https%3A%2F%2Fwww.monicarenata.com%2Fwell-runs-dry%2F&share=email',706,0,'external',472,NULL,NULL,NULL,NULL,NULL,NULL),(1178,'mailto:?subject=%5BShared%20Post%5D%20Fruit&body=https%3A%2F%2Fwww.monicarenata.com%2Ffruit%2F&share=email',710,0,'external',535,NULL,NULL,NULL,NULL,NULL,NULL),(1179,'mailto:?subject=%5BShared%20Post%5D%20Life%20is%20SWEET&body=https%3A%2F%2Fwww.monicarenata.com%2Flife-is-sweet%2F&share=email',713,0,'external',536,NULL,NULL,NULL,NULL,NULL,NULL),(1180,'mailto:?subject=%5BShared%20Post%5D%20Poison&body=https%3A%2F%2Fwww.monicarenata.com%2Fpoison%2F&share=email',716,0,'external',534,NULL,NULL,NULL,NULL,NULL,NULL),(1181,'mailto:?subject=%5BShared%20Post%5D%20Return%20to%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Freturn-to-love%2F&share=email',720,0,'external',532,NULL,NULL,NULL,NULL,NULL,NULL),(1182,'mailto:?subject=%5BShared%20Post%5D%20The%20Kindest%20Ones&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-kindest-ones%2F&share=email',723,0,'external',708,NULL,NULL,NULL,NULL,NULL,NULL),(1183,'mailto:?subject=%5BShared%20Post%5D%20Can%20You%20Wake%20Me%20Up&body=https%3A%2F%2Fwww.monicarenata.com%2Fcan-you-wake-me-up%2F&share=email',725,0,'external',718,NULL,NULL,NULL,NULL,NULL,NULL),(1184,'mailto:?subject=%5BShared%20Post%5D%20Storm%3A%20We%27ll%20Make%20It%20Through&body=https%3A%2F%2Fwww.monicarenata.com%2Fstorm-well-make-it-through%2F&share=email',728,0,'external',733,NULL,NULL,NULL,NULL,NULL,NULL),(1185,'mailto:?subject=%5BShared%20Post%5D%20Stranger...&body=https%3A%2F%2Fwww.monicarenata.com%2Fstranger%2F&share=email',734,0,'external',249,NULL,NULL,NULL,NULL,NULL,NULL),(1186,'mailto:?subject=%5BShared%20Post%5D%20Love%20Blind&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-blind%2F&share=email',736,0,'external',82,NULL,NULL,NULL,NULL,NULL,NULL),(1187,'mailto:?subject=%5BShared%20Post%5D%20Please%20Don%27t%20Break%20My%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Fplease-dont-break-my-heart%2F&share=email',739,0,'external',365,NULL,NULL,NULL,NULL,NULL,NULL),(1188,'mailto:?subject=%5BShared%20Post%5D%20Shard%20of%20Trust&body=https%3A%2F%2Fwww.monicarenata.com%2Fshard-of-trust%2F&share=email',742,0,'external',123,NULL,NULL,NULL,NULL,NULL,NULL),(1189,'mailto:?subject=%5BShared%20Post%5D%20Book%20of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fbook-of-life%2F&share=email',750,0,'external',511,NULL,NULL,NULL,NULL,NULL,NULL),(1190,'mailto:?subject=%5BShared%20Post%5D%20What%20was%20it%20like%20to%20lose%20you%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhat-was-it-like-to-lose-you%2F&share=email',752,0,'external',692,NULL,NULL,NULL,NULL,NULL,NULL),(1191,'mailto:?subject=%5BShared%20Post%5D%20Days%20of%20the%20Week&body=https%3A%2F%2Fwww.monicarenata.com%2Fdays-of-the-week%2F&share=email',756,0,'external',242,NULL,NULL,NULL,NULL,NULL,NULL),(1192,'mailto:?subject=%5BShared%20Post%5D%20Please%20Stop%20Texting%20My%20Phone&body=https%3A%2F%2Fwww.monicarenata.com%2Fplease-stop-texting-my-phone%2F&share=email',758,0,'external',743,NULL,NULL,NULL,NULL,NULL,NULL),(1193,'mailto:?subject=%5BShared%20Post%5D%20The%20Grand%20Piano&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-grand-piano%2F&share=email',761,0,'external',716,NULL,NULL,NULL,NULL,NULL,NULL),(1194,'mailto:?subject=%5BShared%20Post%5D%20Pebbles%20in%20the%20Sand&body=https%3A%2F%2Fwww.monicarenata.com%2Fpebbles-in-the-sand%2F&share=email',763,0,'external',777,NULL,NULL,NULL,NULL,NULL,NULL),(1195,'mailto:?subject=%5BShared%20Post%5D%20Painting%20Forever&body=https%3A%2F%2Fwww.monicarenata.com%2Fpainting-forever%2F&share=email',765,0,'external',45,NULL,NULL,NULL,NULL,NULL,NULL),(1196,'mailto:?subject=%5BShared%20Post%5D%20I%20Will%20Not%20Fall%20in%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-will-not-fall-in-love%2F&share=email',770,0,'external',649,NULL,NULL,NULL,NULL,NULL,NULL),(1197,'mailto:?subject=%5BShared%20Post%5D%20I%20Shall%20Love%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-shall-love-you%2F&share=email',773,0,'external',254,NULL,NULL,NULL,NULL,NULL,NULL),(1198,'mailto:?subject=%5BShared%20Post%5D%20The%20Mind%20is%20A%20Beautiful%20Thing&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-mind-is-a-beautiful-thing%2F&share=email',776,0,'external',678,NULL,NULL,NULL,NULL,NULL,NULL),(1199,'mailto:?subject=%5BShared%20Post%5D%20The%20Heartbreak%20Song&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-heartbreak-song%2F&share=email',779,0,'external',202,NULL,NULL,NULL,NULL,NULL,NULL),(1200,'mailto:?subject=%5BShared%20Post%5D%20You%20Never%20Buy%20Me%20Flowers&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-never-buy-me-flowers%2F&share=email',781,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(1201,'mailto:?subject=%5BShared%20Post%5D%20Can%20I%20Get%20A%20Second&body=https%3A%2F%2Fwww.monicarenata.com%2Fcan-i-get-a-second%2F&share=email',783,0,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(1202,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Human&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-human%2F&share=email',785,0,'external',522,NULL,NULL,NULL,NULL,NULL,NULL),(1203,'mailto:?subject=%5BShared%20Post%5D%20If%20Heaven&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-heaven%2F&share=email',788,0,'external',714,NULL,NULL,NULL,NULL,NULL,NULL),(1204,'mailto:?subject=%5BShared%20Post%5D%20You%20Say%20You%20Miss%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-say-you-miss-me%2F&share=email',791,0,'external',778,NULL,NULL,NULL,NULL,NULL,NULL),(1205,'mailto:?subject=%5BShared%20Post%5D%2021%20Days&body=https%3A%2F%2Fwww.monicarenata.com%2F21-days%2F&share=email',793,0,'external',547,NULL,NULL,NULL,NULL,NULL,NULL),(1206,'mailto:?subject=%5BShared%20Post%5D%20Invincible&body=https%3A%2F%2Fwww.monicarenata.com%2Finvincible%2F&share=email',795,0,'external',14,NULL,NULL,NULL,NULL,NULL,NULL),(1207,'mailto:?subject=%5BShared%20Post%5D%20Just%20a%20Thought&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-a-thought%2F&share=email',798,0,'external',546,NULL,NULL,NULL,NULL,NULL,NULL),(1208,'mailto:?subject=%5BShared%20Post%5D%20Case%20of%20the%20Don%27t%20Wants&body=https%3A%2F%2Fwww.monicarenata.com%2Fcase-of-the-dont-wants%2F&share=email',801,0,'external',548,NULL,NULL,NULL,NULL,NULL,NULL),(1209,'mailto:?subject=%5BShared%20Post%5D%20Better%20Days%20Are%20Coming&body=https%3A%2F%2Fwww.monicarenata.com%2Fbetter-days-are-coming%2F&share=email',804,0,'external',790,NULL,NULL,NULL,NULL,NULL,NULL),(1210,'mailto:?subject=%5BShared%20Post%5D%20I%20Miss%20You%20So&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-miss-you-so%2F&share=email',808,0,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(1211,'mailto:?subject=%5BShared%20Post%5D%20The%20Test&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-test%2F&share=email',813,0,'external',721,NULL,NULL,NULL,NULL,NULL,NULL),(1212,'mailto:?subject=%5BShared%20Post%5D%20Is%20This%20Love%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fis-this-love%2F&share=email',816,0,'external',549,NULL,NULL,NULL,NULL,NULL,NULL),(1213,'mailto:?subject=%5BShared%20Post%5D%20Flesh&body=https%3A%2F%2Fwww.monicarenata.com%2Fflesh%2F&share=email',818,0,'external',545,NULL,NULL,NULL,NULL,NULL,NULL),(1214,'mailto:?subject=%5BShared%20Post%5D%20Just%20BE&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-be%2F&share=email',821,0,'external',469,NULL,NULL,NULL,NULL,NULL,NULL),(1215,'mailto:?subject=%5BShared%20Post%5D%20Baby%20Count%20Your%20Blessings&body=https%3A%2F%2Fwww.monicarenata.com%2Fbaby-count-your-blessings%2F&share=email',823,0,'external',141,NULL,NULL,NULL,NULL,NULL,NULL),(1216,'mailto:?subject=%5BShared%20Post%5D%20Hello&body=https%3A%2F%2Fwww.monicarenata.com%2Fhello-2%2F&share=email',825,0,'external',177,NULL,NULL,NULL,NULL,NULL,NULL),(1217,'mailto:?subject=%5BShared%20Post%5D%20White%20Picket%20Fence%20Family&body=https%3A%2F%2Fwww.monicarenata.com%2Fwhite-picket-fence-family%2F&share=email',827,0,'external',510,NULL,NULL,NULL,NULL,NULL,NULL),(1218,'mailto:?subject=%5BShared%20Post%5D%20I%20lost%20my%20dream&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-lost-my-dream%2F&share=email',832,0,'external',25,NULL,NULL,NULL,NULL,NULL,NULL),(1219,'mailto:?subject=%5BShared%20Post%5D%20Lies%3A%20Thinking%20Out%20Loud&body=https%3A%2F%2Fwww.monicarenata.com%2Flies-thinking-out-loud%2F&share=email',835,0,'external',543,NULL,NULL,NULL,NULL,NULL,NULL),(1220,'mailto:?subject=%5BShared%20Post%5D%20I%20Can%27t%20Think&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-cant-think%2F&share=email',839,0,'external',279,NULL,NULL,NULL,NULL,NULL,NULL),(1221,'mailto:?subject=%5BShared%20Post%5D%20Everyday%20Today&body=https%3A%2F%2Fwww.monicarenata.com%2Feveryday-today%2F&share=email',841,0,'external',544,NULL,NULL,NULL,NULL,NULL,NULL),(1222,'mailto:?subject=%5BShared%20Post%5D%20Palm%20Of%20My%20Hand&body=https%3A%2F%2Fwww.monicarenata.com%2Fpalm-of-my-hand%2F&share=email',843,0,'external',56,NULL,NULL,NULL,NULL,NULL,NULL),(1223,'mailto:?subject=%5BShared%20Post%5D%20I%20lived&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-lived%2F&share=email',845,0,'external',330,NULL,NULL,NULL,NULL,NULL,NULL),(1224,'mailto:?subject=%5BShared%20Post%5D%20More%20Than%20You%20Know&body=https%3A%2F%2Fwww.monicarenata.com%2Fmore-than-you-know%2F&share=email',847,0,'external',348,NULL,NULL,NULL,NULL,NULL,NULL),(1225,'mailto:?subject=%5BShared%20Post%5D%20Love%20Without%20Brakes&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-without-brakes%2F&share=email',850,0,'external',288,NULL,NULL,NULL,NULL,NULL,NULL),(1226,'mailto:?subject=%5BShared%20Post%5D%20Irresistible&body=https%3A%2F%2Fwww.monicarenata.com%2Firresistible%2F&share=email',857,0,'external',122,NULL,NULL,NULL,NULL,NULL,NULL),(1227,'mailto:?subject=%5BShared%20Post%5D%20Pretty%20Pictures&body=https%3A%2F%2Fwww.monicarenata.com%2Fpretty-pictures%2F&share=email',859,0,'external',542,NULL,NULL,NULL,NULL,NULL,NULL),(1228,'mailto:?subject=%5BShared%20Post%5D%20My%20Day%20and%20Night&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-day-and-night%2F&share=email',861,0,'external',239,NULL,NULL,NULL,NULL,NULL,NULL),(1229,'mailto:?subject=%5BShared%20Post%5D%20Relax&body=https%3A%2F%2Fwww.monicarenata.com%2Frelax%2F&share=email',863,0,'external',268,NULL,NULL,NULL,NULL,NULL,NULL),(1230,'mailto:?subject=%5BShared%20Post%5D%20Unattainable&body=https%3A%2F%2Fwww.monicarenata.com%2Funattainable%2F&share=email',868,0,'external',739,NULL,NULL,NULL,NULL,NULL,NULL),(1231,'mailto:?subject=%5BShared%20Post%5D%20Simplicity&body=https%3A%2F%2Fwww.monicarenata.com%2Fsimplicity%2F&share=email',872,0,'external',682,NULL,NULL,NULL,NULL,NULL,NULL),(1232,'mailto:?subject=%5BShared%20Post%5D%20Fast%20Money&body=https%3A%2F%2Fwww.monicarenata.com%2Ffast-money%2F&share=email',875,0,'external',219,NULL,NULL,NULL,NULL,NULL,NULL),(1233,'mailto:?subject=%5BShared%20Post%5D%20Paint%20My%20Picture&body=https%3A%2F%2Fwww.monicarenata.com%2Fpaint-my-picture%2F&share=email',877,0,'external',113,NULL,NULL,NULL,NULL,NULL,NULL),(1234,'mailto:?subject=%5BShared%20Post%5D%20Laugh&body=https%3A%2F%2Fwww.monicarenata.com%2Flaugh%2F&share=email',879,0,'external',709,NULL,NULL,NULL,NULL,NULL,NULL),(1235,'mailto:?subject=%5BShared%20Post%5D%20A%20Trillion%20Dollars&body=https%3A%2F%2Fwww.monicarenata.com%2Fa-trillion-dollars%2F&share=email',881,0,'external',477,NULL,NULL,NULL,NULL,NULL,NULL),(1236,'mailto:?subject=%5BShared%20Post%5D%20The%20Jaunt&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-jaunt%2F&share=email',884,0,'external',458,NULL,NULL,NULL,NULL,NULL,NULL),(1237,'mailto:?subject=%5BShared%20Post%5D%20The%20Opposite%20of%20Honesty&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-opposite-of-honesty%2F&share=email',886,0,'external',324,NULL,NULL,NULL,NULL,NULL,NULL),(1238,'mailto:?subject=%5BShared%20Post%5D%20No%20Longer%20Disappointed&body=https%3A%2F%2Fwww.monicarenata.com%2Fno-longer-disappointed%2F&share=email',888,0,'external',586,NULL,NULL,NULL,NULL,NULL,NULL),(1239,'mailto:?subject=%5BShared%20Post%5D%20You%27re%20Gonna%20Miss%20Me%20When%20I%27m%20Gone&body=https%3A%2F%2Fwww.monicarenata.com%2Fyoure-gonna-miss-me-when-im-gone%2F&share=email',890,0,'external',276,NULL,NULL,NULL,NULL,NULL,NULL),(1240,'mailto:?subject=%5BShared%20Post%5D%20Dreaming%20Out%20Loud&body=https%3A%2F%2Fwww.monicarenata.com%2Fdreaming-out-loud%2F&share=email',894,0,'external',811,NULL,NULL,NULL,NULL,NULL,NULL),(1241,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/236x/1c/13/12/1c13122708c42cec763b188f8d3ad514.jpg?w=640&ssl=1',894,0,'image-ex',811,NULL,NULL,NULL,NULL,NULL,NULL),(1242,'mailto:?subject=%5BShared%20Post%5D%20A%20Piece%20of%20Happy&body=https%3A%2F%2Fwww.monicarenata.com%2Fa-piece-of-happy%2F&share=email',897,0,'external',579,NULL,NULL,NULL,NULL,NULL,NULL),(1243,'https://i0.wp.com/4.bp.blogspot.com/-tKc31N9O6x4/UaaU0aFCFxI/AAAAAAAACvU/eUjCcdo8AJI/s1600/Banner1.jpg?w=640',897,0,'image-ex',579,NULL,NULL,NULL,NULL,NULL,NULL),(1244,'mailto:?subject=%5BShared%20Post%5D%20At%20The%20Top%20Of%20The%20Mountain&body=https%3A%2F%2Fwww.monicarenata.com%2Fat-the-top-of-the-mountain%2F&share=email',899,0,'external',616,NULL,NULL,NULL,NULL,NULL,NULL),(1245,'mailto:?subject=%5BShared%20Post%5D%20Love%20Me%20With%20The%20Lights%20On&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-me-with-the-lights-on%2F&share=email',902,0,'external',178,NULL,NULL,NULL,NULL,NULL,NULL),(1246,'mailto:?subject=%5BShared%20Post%5D%20With%20All%20My%20Heart&body=https%3A%2F%2Fwww.monicarenata.com%2Fwith-all-my-heart%2F&share=email',904,0,'external',814,NULL,NULL,NULL,NULL,NULL,NULL),(1247,'mailto:?subject=%5BShared%20Post%5D%20I%20Fear%20My%20Friend&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-fear-my-friend%2F&share=email',906,0,'external',183,NULL,NULL,NULL,NULL,NULL,NULL),(1248,'mailto:?subject=%5BShared%20Post%5D%20Teardrops%20In%20The%20Rain&body=https%3A%2F%2Fwww.monicarenata.com%2Fteardrops-in-the-rain%2F&share=email',909,0,'external',756,NULL,NULL,NULL,NULL,NULL,NULL),(1249,'mailto:?subject=%5BShared%20Post%5D%20Dream%3A%20Eyes%20Open&body=https%3A%2F%2Fwww.monicarenata.com%2Fdream-eyes-open%2F&share=email',911,0,'external',513,NULL,NULL,NULL,NULL,NULL,NULL),(1250,'mailto:?subject=%5BShared%20Post%5D%20Sitting%20Silently&body=https%3A%2F%2Fwww.monicarenata.com%2Fsitting-silently%2F&share=email',914,0,'external',816,NULL,NULL,NULL,NULL,NULL,NULL),(1251,'mailto:?subject=%5BShared%20Post%5D%20Not%20Enough&body=https%3A%2F%2Fwww.monicarenata.com%2Fnot-enough%2F&share=email',916,0,'external',812,NULL,NULL,NULL,NULL,NULL,NULL),(1252,'mailto:?subject=%5BShared%20Post%5D%20Do%20You%20Know%20How%20I%20Feel%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fdo-you-know-how-i-feel%2F&share=email',918,0,'external',817,NULL,NULL,NULL,NULL,NULL,NULL),(1253,'mailto:?subject=%5BShared%20Post%5D%20Hold%20Your%20Breathe&body=https%3A%2F%2Fwww.monicarenata.com%2Fhold-your-breathe%2F&share=email',920,0,'external',351,NULL,NULL,NULL,NULL,NULL,NULL),(1254,'mailto:?subject=%5BShared%20Post%5D%20All%20Or%20Nothing&body=https%3A%2F%2Fwww.monicarenata.com%2Fall-or-nothing%2F&share=email',923,0,'external',608,NULL,NULL,NULL,NULL,NULL,NULL),(1255,'mailto:?subject=%5BShared%20Post%5D%20Misery&body=https%3A%2F%2Fwww.monicarenata.com%2Fmisery%2F&share=email',925,0,'external',168,NULL,NULL,NULL,NULL,NULL,NULL),(1256,'mailto:?subject=%5BShared%20Post%5D%20Blocks%20Of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fblocks-of-life%2F&share=email',928,0,'external',712,NULL,NULL,NULL,NULL,NULL,NULL),(1257,'mailto:?subject=%5BShared%20Post%5D%20Convenient&body=https%3A%2F%2Fwww.monicarenata.com%2Fconvenient%2F&share=email',931,0,'external',722,NULL,NULL,NULL,NULL,NULL,NULL),(1258,'mailto:?subject=%5BShared%20Post%5D%20Definition%3A%20Disappointed&body=https%3A%2F%2Fwww.monicarenata.com%2Fdefinition-disappointed%2F&share=email',933,0,'external',805,NULL,NULL,NULL,NULL,NULL,NULL),(1259,'mailto:?subject=%5BShared%20Post%5D%20Taste%20of%20Success&body=https%3A%2F%2Fwww.monicarenata.com%2Ftaste-of-success%2F&share=email',935,0,'external',248,NULL,NULL,NULL,NULL,NULL,NULL),(1260,'mailto:?subject=%5BShared%20Post%5D%20Absense&body=https%3A%2F%2Fwww.monicarenata.com%2Fabsense%2F&share=email',941,0,'external',695,NULL,NULL,NULL,NULL,NULL,NULL),(1261,'mailto:?subject=%5BShared%20Post%5D%20You%20Remind%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-remind-me%2F&share=email',943,0,'external',186,NULL,NULL,NULL,NULL,NULL,NULL),(1262,'mailto:?subject=%5BShared%20Post%5D%20Sammy%20Storm&body=https%3A%2F%2Fwww.monicarenata.com%2Fsammy-storm%2F&share=email',945,0,'external',662,NULL,NULL,NULL,NULL,NULL,NULL),(1263,'mailto:?subject=%5BShared%20Post%5D%20Unapologetic&body=https%3A%2F%2Fwww.monicarenata.com%2Funapologetic%2F&share=email',949,0,'external',367,NULL,NULL,NULL,NULL,NULL,NULL),(1264,'mailto:?subject=%5BShared%20Post%5D%20Katy%20Kicker&body=https%3A%2F%2Fwww.monicarenata.com%2Fkaty-kicker%2F&share=email',951,0,'external',707,NULL,NULL,NULL,NULL,NULL,NULL),(1265,'mailto:?subject=%5BShared%20Post%5D%20Paula%20The%20Performer&body=https%3A%2F%2Fwww.monicarenata.com%2Fpaula-the-performer%2F&share=email',953,0,'external',810,NULL,NULL,NULL,NULL,NULL,NULL),(1266,'mailto:?subject=%5BShared%20Post%5D%20Fear%20To%20Live&body=https%3A%2F%2Fwww.monicarenata.com%2Ffear-to-live%2F&share=email',957,0,'external',813,NULL,NULL,NULL,NULL,NULL,NULL),(1267,'mailto:?subject=%5BShared%20Post%5D%20Puzzle%20Pieces&body=https%3A%2F%2Fwww.monicarenata.com%2Fpuzzle-pieces%2F&share=email',959,0,'external',361,NULL,NULL,NULL,NULL,NULL,NULL),(1268,'mailto:?subject=%5BShared%20Post%5D%20Forward&body=https%3A%2F%2Fwww.monicarenata.com%2Fforward%2F&share=email',961,0,'external',736,NULL,NULL,NULL,NULL,NULL,NULL),(1269,'mailto:?subject=%5BShared%20Post%5D%20Love%20Always&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-always%2F&share=email',963,0,'external',76,NULL,NULL,NULL,NULL,NULL,NULL),(1270,'mailto:?subject=%5BShared%20Post%5D%20Reign&body=https%3A%2F%2Fwww.monicarenata.com%2Freign%2F&share=email',970,0,'external',683,NULL,NULL,NULL,NULL,NULL,NULL),(1271,'mailto:?subject=%5BShared%20Post%5D%20Asking%20Annie&body=https%3A%2F%2Fwww.monicarenata.com%2Fasking-annie%2F&share=email',972,0,'external',520,NULL,NULL,NULL,NULL,NULL,NULL),(1272,'mailto:?subject=%5BShared%20Post%5D%20As%20We%20Lay&body=https%3A%2F%2Fwww.monicarenata.com%2Fas-we-lay%2F&share=email',974,0,'external',263,NULL,NULL,NULL,NULL,NULL,NULL),(1273,'mailto:?subject=%5BShared%20Post%5D%20Don%27t%20Stop%20Believing&body=https%3A%2F%2Fwww.monicarenata.com%2Fdont-stop-believing%2F&share=email',977,0,'external',793,NULL,NULL,NULL,NULL,NULL,NULL),(1274,'mailto:?subject=%5BShared%20Post%5D%20I%20Found%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-found-me%2F&share=email',979,0,'external',612,NULL,NULL,NULL,NULL,NULL,NULL),(1275,'mailto:?subject=%5BShared%20Post%5D%20Thank%20You%20For%20Hurting%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fthank-you-for-hurting-me%2F&share=email',983,0,'external',660,NULL,NULL,NULL,NULL,NULL,NULL),(1276,'mailto:?subject=%5BShared%20Post%5D%20I%20Miss%20The%20Way...&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-miss-the-way%2F&share=email',985,0,'external',338,NULL,NULL,NULL,NULL,NULL,NULL),(1277,'mailto:?subject=%5BShared%20Post%5D%20Better%20Day&body=https%3A%2F%2Fwww.monicarenata.com%2Fbetter-day%2F&share=email',988,0,'external',360,NULL,NULL,NULL,NULL,NULL,NULL),(1278,'mailto:?subject=%5BShared%20Post%5D%20I%20Understand%20the%20Lyrics&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-understand-the-lyrics%2F&share=email',990,0,'external',615,NULL,NULL,NULL,NULL,NULL,NULL),(1279,'mailto:?subject=%5BShared%20Post%5D%20You%20Are&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-are%2F&share=email',996,0,'external',341,NULL,NULL,NULL,NULL,NULL,NULL),(1280,'mailto:?subject=%5BShared%20Post%5D%20If%20You%20Want%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-you-want-me%2F&share=email',998,0,'external',568,NULL,NULL,NULL,NULL,NULL,NULL),(1281,'mailto:?subject=%5BShared%20Post%5D%20Keep%20It%20To%20Yourself&body=https%3A%2F%2Fwww.monicarenata.com%2Fkeep-it-to-yourself%2F&share=email',1001,0,'external',567,NULL,NULL,NULL,NULL,NULL,NULL),(1282,'mailto:?subject=%5BShared%20Post%5D%20Decisions%20Decisions&body=https%3A%2F%2Fwww.monicarenata.com%2Fdecisions-decisions%2F&share=email',1003,0,'external',483,NULL,NULL,NULL,NULL,NULL,NULL),(1283,'mailto:?subject=%5BShared%20Post%5D%20Afraid%20To%20Have%20Feelings&body=https%3A%2F%2Fwww.monicarenata.com%2Fafraid-to-have-feelings%2F&share=email',1005,0,'external',610,NULL,NULL,NULL,NULL,NULL,NULL),(1284,'mailto:?subject=%5BShared%20Post%5D%20I%20called&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-called%2F&share=email',1007,0,'external',46,NULL,NULL,NULL,NULL,NULL,NULL),(1285,'mailto:?subject=%5BShared%20Post%5D%20Poor&body=https%3A%2F%2Fwww.monicarenata.com%2Fpoor%2F&share=email',1010,0,'external',282,NULL,NULL,NULL,NULL,NULL,NULL),(1286,'mailto:?subject=%5BShared%20Post%5D%20Daily%20Motivation%3A%20Don%27t%20Sweat%20The%20Small%20Stuff&body=https%3A%2F%2Fwww.monicarenata.com%2Fdaily-motivation-dont-sweat-the-small-stuff%2F&share=email',1012,0,'external',720,NULL,NULL,NULL,NULL,NULL,NULL),(1287,'mailto:?subject=%5BShared%20Post%5D%20Time%20Stops&body=https%3A%2F%2Fwww.monicarenata.com%2Ftime-stops%2F&share=email',1015,0,'external',565,NULL,NULL,NULL,NULL,NULL,NULL),(1288,'mailto:?subject=%5BShared%20Post%5D%20B.P.L.Y&body=https%3A%2F%2Fwww.monicarenata.com%2Fb-p-l-y%2F&share=email',1018,0,'external',54,NULL,NULL,NULL,NULL,NULL,NULL),(1289,'mailto:?subject=%5BShared%20Post%5D%20Conscientious%20Carla&body=https%3A%2F%2Fwww.monicarenata.com%2Fconscientious-carla%2F&share=email',1020,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(1290,'mailto:?subject=%5BShared%20Post%5D%20Brave%20Beyond%20Imagine&body=https%3A%2F%2Fwww.monicarenata.com%2Fbrave-beyond-imagine%2F&share=email',1022,0,'external',564,NULL,NULL,NULL,NULL,NULL,NULL),(1291,'mailto:?subject=%5BShared%20Post%5D%20Live%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Flive-life%2F&share=email',1024,0,'external',95,NULL,NULL,NULL,NULL,NULL,NULL),(1292,'mailto:?subject=%5BShared%20Post%5D%20FLESH%3A%20You%20don%27t%20see%20me&body=https%3A%2F%2Fwww.monicarenata.com%2Fflesh-you-dont-see-me%2F&share=email',1026,0,'external',566,NULL,NULL,NULL,NULL,NULL,NULL),(1293,'mailto:?subject=%5BShared%20Post%5D%20Happiness%3A%20It%20is%20in%20YOUR%20hands&body=https%3A%2F%2Fwww.monicarenata.com%2Fhappiness-it-is-in-your-hands%2F&share=email',1029,0,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(1294,'mailto:?subject=%5BShared%20Post%5D%20Don%27t%20Care&body=https%3A%2F%2Fwww.monicarenata.com%2Fdont-care%2F&share=email',1031,0,'external',723,NULL,NULL,NULL,NULL,NULL,NULL),(1295,'mailto:?subject=%5BShared%20Post%5D%20Love%20Circles&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-circles%2F&share=email',1034,0,'external',728,NULL,NULL,NULL,NULL,NULL,NULL),(1296,'mailto:?subject=%5BShared%20Post%5D%20Candles&body=https%3A%2F%2Fwww.monicarenata.com%2Fcandles%2F&share=email',1037,0,'external',693,NULL,NULL,NULL,NULL,NULL,NULL),(1297,'mailto:?subject=%5BShared%20Post%5D%20Patiently%3A%20The%20Wait&body=https%3A%2F%2Fwww.monicarenata.com%2Fpatiently-the-wait%2F&share=email',1039,0,'external',774,NULL,NULL,NULL,NULL,NULL,NULL),(1298,'mailto:?subject=%5BShared%20Post%5D%20Words%20of%20Gold&body=https%3A%2F%2Fwww.monicarenata.com%2Fwords-of-gold%2F&share=email',1041,0,'external',773,NULL,NULL,NULL,NULL,NULL,NULL),(1299,'mailto:?subject=%5BShared%20Post%5D%20Kiss%20Me%20In%20The%20Morning&body=https%3A%2F%2Fwww.monicarenata.com%2Fkiss-me-in-the-morning%2F&share=email',1044,0,'external',771,NULL,NULL,NULL,NULL,NULL,NULL),(1300,'mailto:?subject=%5BShared%20Post%5D%20Band-Aid&body=https%3A%2F%2Fwww.monicarenata.com%2Fband-aid%2F&share=email',1046,0,'external',669,NULL,NULL,NULL,NULL,NULL,NULL),(1301,'mailto:?subject=%5BShared%20Post%5D%20Love%20While%20Blind&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-while-blind%2F&share=email',1048,0,'external',52,NULL,NULL,NULL,NULL,NULL,NULL),(1302,'mailto:?subject=%5BShared%20Post%5D%20I%20Fell%20In%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-fell-in-love%2F&share=email',1051,0,'external',107,NULL,NULL,NULL,NULL,NULL,NULL),(1303,'mailto:?subject=%5BShared%20Post%5D%20Those%20Three%20Words&body=https%3A%2F%2Fwww.monicarenata.com%2Fthose-three-words%2F&share=email',1055,0,'external',772,NULL,NULL,NULL,NULL,NULL,NULL),(1304,'mailto:?subject=%5BShared%20Post%5D%20The%20Race&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-race%2F&share=email',1060,0,'external',740,NULL,NULL,NULL,NULL,NULL,NULL),(1305,'mailto:?subject=%5BShared%20Post%5D%20Hi%2C%20My%20Name%20Is%20Lovely&body=https%3A%2F%2Fwww.monicarenata.com%2Fhi-my-name-is-lovely%2F&share=email',1062,0,'external',691,NULL,NULL,NULL,NULL,NULL,NULL),(1306,'mailto:?subject=%5BShared%20Post%5D%20Love%20Me%20Through%20The%20Storm&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-me-through-the-storm%2F&share=email',1064,0,'external',332,NULL,NULL,NULL,NULL,NULL,NULL),(1307,'mailto:?subject=%5BShared%20Post%5D%20Fireflies&body=https%3A%2F%2Fwww.monicarenata.com%2Ffireflies%2F&share=email',1073,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(1308,'mailto:?subject=%5BShared%20Post%5D%20I%20am%20Lovely&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-am-lovely%2F&share=email',1075,0,'external',44,NULL,NULL,NULL,NULL,NULL,NULL),(1309,'mailto:?subject=%5BShared%20Post%5D%20Curiosity&body=https%3A%2F%2Fwww.monicarenata.com%2Fcuriosity%2F&share=email',1077,0,'external',747,NULL,NULL,NULL,NULL,NULL,NULL),(1310,'mailto:?subject=%5BShared%20Post%5D%20Your%20Burning%20Light&body=https%3A%2F%2Fwww.monicarenata.com%2Fyour-burning-light%2F&share=email',1080,0,'external',39,NULL,NULL,NULL,NULL,NULL,NULL),(1311,'mailto:?subject=%5BShared%20Post%5D%20Toxic%20Air&body=https%3A%2F%2Fwww.monicarenata.com%2Ftoxic-air%2F&share=email',1083,0,'external',719,NULL,NULL,NULL,NULL,NULL,NULL),(1312,'mailto:?subject=%5BShared%20Post%5D%20Rally%20On&body=https%3A%2F%2Fwww.monicarenata.com%2Frally-on%2F&share=email',1066,0,'external',528,NULL,NULL,NULL,NULL,NULL,NULL),(1313,'mailto:?subject=%5BShared%20Post%5D%20Petals%20In%20The%20Wind&body=https%3A%2F%2Fwww.monicarenata.com%2Fpetals-in-the-wind%2F&share=email',1088,0,'external',801,NULL,NULL,NULL,NULL,NULL,NULL),(1314,'https://i0.wp.com/i.istockimg.com/file_thumbview_approve/57320766/3/stock-photo-57320766-silhouettes-of-two-lovers-kissing-by-the-lake.jpg?resize=126%2C190',1088,0,'image-ex',801,NULL,NULL,NULL,NULL,NULL,NULL),(1315,'mailto:?subject=%5BShared%20Post%5D%20Beautiful%20Music%3A%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fbeautiful-music-life%2F&share=email',1092,0,'external',309,NULL,NULL,NULL,NULL,NULL,NULL),(1316,'mailto:?subject=%5BShared%20Post%5D%20Afterthought&body=https%3A%2F%2Fwww.monicarenata.com%2Fafterthought%2F&share=email',1095,0,'external',650,NULL,NULL,NULL,NULL,NULL,NULL),(1317,'mailto:?subject=%5BShared%20Post%5D%20You%20Miss%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-miss-me%2F&share=email',1098,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(1318,'mailto:?subject=%5BShared%20Post%5D%20Dancing%20In%20The%20Rain&body=https%3A%2F%2Fwww.monicarenata.com%2Fdancing-in-the-rain%2F&share=email',1100,0,'external',260,NULL,NULL,NULL,NULL,NULL,NULL),(1319,'mailto:?subject=%5BShared%20Post%5D%20Fairy%20Tales%20Aren%27t%20Real&body=https%3A%2F%2Fwww.monicarenata.com%2Ffairy-tales-arent-real%2F&share=email',1107,0,'external',748,NULL,NULL,NULL,NULL,NULL,NULL),(1320,'mailto:?subject=%5BShared%20Post%5D%20Atmosphere&body=https%3A%2F%2Fwww.monicarenata.com%2Fatmosphere%2F&share=email',1109,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(1321,'mailto:?subject=%5BShared%20Post%5D%20Woman&body=https%3A%2F%2Fwww.monicarenata.com%2Fwoman%2F&share=email',1112,0,'external',686,NULL,NULL,NULL,NULL,NULL,NULL),(1322,'mailto:?subject=%5BShared%20Post%5D%20The%20Letter%3A%20You%27re%20Going%20To%20Love%20Me%20When%20It%27s%20Too%20Late&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-letter-youre-going-to-love-me-when-its-too-late%2F&share=email',1114,0,'external',323,NULL,NULL,NULL,NULL,NULL,NULL),(1323,'mailto:?subject=%5BShared%20Post%5D%20Rock%20Bottom&body=https%3A%2F%2Fwww.monicarenata.com%2Frock-bottom%2F&share=email',1118,0,'external',731,NULL,NULL,NULL,NULL,NULL,NULL),(1324,'mailto:?subject=%5BShared%20Post%5D%20Masquerade&body=https%3A%2F%2Fwww.monicarenata.com%2Fmasquerade%2F&share=email',1123,0,'external',37,NULL,NULL,NULL,NULL,NULL,NULL),(1325,'mailto:?subject=%5BShared%20Post%5D%20HER&body=https%3A%2F%2Fwww.monicarenata.com%2Fher%2F&share=email',1127,0,'external',81,NULL,NULL,NULL,NULL,NULL,NULL),(1326,'mailto:?subject=%5BShared%20Post%5D%20Carbon%20Copy%20of%20Your%20Dream&body=https%3A%2F%2Fwww.monicarenata.com%2Fcarbon-copy-of-your-dream%2F&share=email',1130,0,'external',75,NULL,NULL,NULL,NULL,NULL,NULL),(1327,'mailto:?subject=%5BShared%20Post%5D%20Florescent%20Lights&body=https%3A%2F%2Fwww.monicarenata.com%2Fflorescent-lights%2F&share=email',1132,0,'external',620,NULL,NULL,NULL,NULL,NULL,NULL),(1328,'mailto:?subject=%5BShared%20Post%5D%20The%20Night%20Knows%20Me%20Well&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-night-knows-me-well%2F&share=email',1135,0,'external',600,NULL,NULL,NULL,NULL,NULL,NULL),(1329,'mailto:?subject=%5BShared%20Post%5D%20Petals%20on%20the%20Flower&body=https%3A%2F%2Fwww.monicarenata.com%2Fpetals-on-the-flower%2F&share=email',1139,0,'external',524,NULL,NULL,NULL,NULL,NULL,NULL),(1330,'mailto:?subject=%5BShared%20Post%5D%20If%20You%20Ever%20Find%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-you-ever-find-me%2F&share=email',1141,0,'external',800,NULL,NULL,NULL,NULL,NULL,NULL),(1331,'mailto:?subject=%5BShared%20Post%5D%20Don%27t%20Ever&body=https%3A%2F%2Fwww.monicarenata.com%2Fdont-ever%2F&share=email',1146,0,'external',735,NULL,NULL,NULL,NULL,NULL,NULL),(1332,'mailto:?subject=%5BShared%20Post%5D%20Ceiling%20Fan&body=https%3A%2F%2Fwww.monicarenata.com%2Fceiling-fan%2F&share=email',1148,0,'external',106,NULL,NULL,NULL,NULL,NULL,NULL),(1333,'mailto:?subject=%5BShared%20Post%5D%20My%20Heart%20Used%20to%20Beat%20For%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-heart-used-to-beat-for-you%2F&share=email',1150,0,'external',601,NULL,NULL,NULL,NULL,NULL,NULL),(1334,'mailto:?subject=%5BShared%20Post%5D%20He%20Danced&body=https%3A%2F%2Fwww.monicarenata.com%2Fhe-danced%2F&share=email',1152,0,'external',526,NULL,NULL,NULL,NULL,NULL,NULL),(1335,'mailto:?subject=%5BShared%20Post%5D%20Combination&body=https%3A%2F%2Fwww.monicarenata.com%2Fcombination%2F&share=email',1154,0,'external',621,NULL,NULL,NULL,NULL,NULL,NULL),(1336,'mailto:?subject=%5BShared%20Post%5D%20BlackHole&body=https%3A%2F%2Fwww.monicarenata.com%2Fblackhole%2F&share=email',1156,0,'external',587,NULL,NULL,NULL,NULL,NULL,NULL),(1337,'mailto:?subject=%5BShared%20Post%5D%20Cigar%20Man&body=https%3A%2F%2Fwww.monicarenata.com%2Fcigar-man%2F&share=email',1158,0,'external',588,NULL,NULL,NULL,NULL,NULL,NULL),(1338,'mailto:?subject=%5BShared%20Post%5D%20He%20Will%20Never%20Leave%20Me%20Alone&body=https%3A%2F%2Fwww.monicarenata.com%2Fhe-will-never-leave-me-alone%2F&share=email',1160,0,'external',150,NULL,NULL,NULL,NULL,NULL,NULL),(1339,'mailto:?subject=%5BShared%20Post%5D%20Bittersweet&body=https%3A%2F%2Fwww.monicarenata.com%2Fbittersweet%2F&share=email',1162,0,'external',623,NULL,NULL,NULL,NULL,NULL,NULL),(1340,'mailto:?subject=%5BShared%20Post%5D%20Clown&body=https%3A%2F%2Fwww.monicarenata.com%2Fclown%2F&share=email',1164,0,'external',626,NULL,NULL,NULL,NULL,NULL,NULL),(1341,'mailto:?subject=%5BShared%20Post%5D%20One%20Day%20You%27ll%20Love%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fone-day-youll-love-me%2F&share=email',1166,0,'external',635,NULL,NULL,NULL,NULL,NULL,NULL),(1342,'mailto:?subject=%5BShared%20Post%5D%20Best%20Friend%2C%20Best%20Friend&body=https%3A%2F%2Fwww.monicarenata.com%2Fbest-friend-best-friend%2F&share=email',1171,0,'external',640,NULL,NULL,NULL,NULL,NULL,NULL),(1343,'mailto:?subject=%5BShared%20Post%5D%20Mischief%3A%20Wedding%20Band%20Astray&body=https%3A%2F%2Fwww.monicarenata.com%2Fmischief-wedding-band-astray%2F&share=email',1173,0,'external',347,NULL,NULL,NULL,NULL,NULL,NULL),(1344,'mailto:?subject=%5BShared%20Post%5D%20I%27m%20Broken&body=https%3A%2F%2Fwww.monicarenata.com%2Fim-broken%2F&share=email',1176,0,'external',523,NULL,NULL,NULL,NULL,NULL,NULL),(1345,'mailto:?subject=%5BShared%20Post%5D%20Make%20You%20Weak&body=https%3A%2F%2Fwww.monicarenata.com%2Fmake-you-weak%2F&share=email',1181,0,'external',480,NULL,NULL,NULL,NULL,NULL,NULL),(1346,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2015/12/26152610-cute-young-sad-suspicious-or-seductive-girl-looking-at-camera-easy-editable-layered-illustration.jpg?resize=300%2C300',1181,0,'image-ex',480,NULL,NULL,NULL,NULL,NULL,NULL),(1347,'mailto:?subject=%5BShared%20Post%5D%20Selective%20Hearing&body=https%3A%2F%2Fwww.monicarenata.com%2Fselective-hearing%2F&share=email',1206,0,'external',357,NULL,NULL,NULL,NULL,NULL,NULL),(1348,'mailto:?subject=%5BShared%20Post%5D%20Turned%20The%20Page&body=https%3A%2F%2Fwww.monicarenata.com%2Fturned-the-page%2F&share=email',1208,0,'external',738,NULL,NULL,NULL,NULL,NULL,NULL),(1349,'mailto:?subject=%5BShared%20Post%5D%20Turn%20Off%20Everything&body=https%3A%2F%2Fwww.monicarenata.com%2Fturn-off-everything%2F&share=email',1211,0,'external',529,NULL,NULL,NULL,NULL,NULL,NULL),(1350,'https://i0.wp.com/s2.favim.com/orig/32/beautiful-couple-dark-follow-foolme-kiss-Favim.com-254908.jpg?resize=400%2C267',1211,0,'image-ex',529,NULL,NULL,NULL,NULL,NULL,NULL),(1351,'mailto:?subject=%5BShared%20Post%5D%20Just%20Come%20Home%3A%20I%20Miss%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fjust-come-home-i-miss-you%2F&share=email',1213,0,'external',127,NULL,NULL,NULL,NULL,NULL,NULL),(1352,'https://i0.wp.com/images6.fanpop.com/image/photos/35600000/Just-Come-Home-tiva-35696368-500-333.jpg?resize=500%2C333',1213,0,'image-ex',127,NULL,NULL,NULL,NULL,NULL,NULL),(1353,'mailto:?subject=%5BShared%20Post%5D%20Your%20Heart%20Is%20In%20A%20Closet&body=https%3A%2F%2Fwww.monicarenata.com%2Fyour-heart-is-in-a-closet%2F&share=email',1215,0,'external',26,NULL,NULL,NULL,NULL,NULL,NULL),(1354,'https://i0.wp.com/love.catchsmile.com/wp-content/uploads/Love-Hurts-40.jpg?resize=640%2C479',1215,0,'image-ex',26,NULL,NULL,NULL,NULL,NULL,NULL),(1355,'mailto:?subject=%5BShared%20Post%5D%20Sand%20Is%20Sand&body=https%3A%2F%2Fwww.monicarenata.com%2Fsand-is-sand%2F&share=email',1217,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(1356,'https://i0.wp.com/static1.squarespace.com/static/54049c81e4b04db10d1df10d/54102715e4b04939fb5c02a2/54102753e4b04939fb5c02ec/1410344789961/Sand+in+Hair,+Lopes+Mendez.JPG?resize=640%2C429',1217,0,'image-ex',762,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'mailto:?subject=%5BShared%20Post%5D%20I%27d%20Love%20to%20Really%20Love%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fid-love-to-really-love-you%2F&share=email',1222,0,'external',61,NULL,NULL,NULL,NULL,NULL,NULL),(1358,'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxAQEBAPDxIPDxANDg0ODw8NDw8NDQ0PFREWFhURFRUYHSggGBolGxUVLTUhJSkrLi4uFx82OTMtNygtLisBCgoKDg0OFxAQFysdHR8tKy0rLS0tLS0rKy0tLS0tLS0rKy0tLS0rLSstLS0rLS0tLS0tKy0rKy0tLS01LSstLf/AABEIALcBEwMBIgACEQEDEQH/',1222,0,'image-ex',61,NULL,NULL,NULL,NULL,NULL,NULL),(1359,'mailto:?subject=%5BShared%20Post%5D%20Feel%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Ffeel-me%2F&share=email',1226,0,'external',157,NULL,NULL,NULL,NULL,NULL,NULL),(1360,'https://i0.wp.com/i.ytimg.com/vi/VOdCTNTjXOY/hqdefault.jpg?resize=480%2C360&ssl=1',1226,0,'image-ex',157,NULL,NULL,NULL,NULL,NULL,NULL),(1361,'mailto:?subject=%5BShared%20Post%5D%20I%20Can%27t%20Help%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-cant-help-you%2F&share=email',1228,0,'external',156,NULL,NULL,NULL,NULL,NULL,NULL),(1362,'https://i0.wp.com/www.diannesvegankitchen.com/wp-content/uploads/2015/06/Help-Me-Help-You1.jpg?resize=576%2C315',1228,0,'image-ex',156,NULL,NULL,NULL,NULL,NULL,NULL),(1363,'mailto:?subject=%5BShared%20Post%5D%20I%20Hate%20How%20Much%20I%20Like%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-hate-how-much-i-like-you%2F&share=email',1231,0,'external',158,NULL,NULL,NULL,NULL,NULL,NULL),(1364,'https://i0.wp.com/data.whicdn.com/images/15419150/original.jpg?resize=362%2C275',1231,0,'image-ex',158,NULL,NULL,NULL,NULL,NULL,NULL),(1365,'mailto:?subject=%5BShared%20Post%5D%20My%20Wait%20Doesn%27t%20Last&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-wait-doesnt-last%2F&share=email',1233,0,'external',159,NULL,NULL,NULL,NULL,NULL,NULL),(1366,'https://austinblevins.files.wordpress.com/2014/10/img_8780.jpg?w=625&resize=600%2C422',1233,0,'image-ex',159,NULL,NULL,NULL,NULL,NULL,NULL),(1367,'mailto:?subject=%5BShared%20Post%5D%20Stranger%20In%20My%20Bed&body=https%3A%2F%2Fwww.monicarenata.com%2Fstranger-in-my-bed%2F&share=email',1235,0,'external',163,NULL,NULL,NULL,NULL,NULL,NULL),(1368,'https://i0.wp.com/c2.staticflickr.com/2/1253/5099707442_4f29b5abe8_b.jpg?resize=324%2C432&ssl=1',1235,0,'image-ex',163,NULL,NULL,NULL,NULL,NULL,NULL),(1369,'mailto:?subject=%5BShared%20Post%5D%20I%20Saw%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-saw-you%2F&share=email',1238,0,'external',775,NULL,NULL,NULL,NULL,NULL,NULL),(1370,'https://i0.wp.com/i.ytimg.com/vi/wBRa5S8DfBk/maxresdefault.jpg?resize=512%2C288&ssl=1',1238,0,'image-ex',775,NULL,NULL,NULL,NULL,NULL,NULL),(1371,'mailto:?subject=%5BShared%20Post%5D%20Dig%20My%20Hole&body=https%3A%2F%2Fwww.monicarenata.com%2Fdig-my-hole%2F&share=email',1241,0,'external',776,NULL,NULL,NULL,NULL,NULL,NULL),(1372,'https://i0.wp.com/img.thesun.co.uk/aidemitlum/archive/01845/Grave_1845254a.jpg?resize=393%2C489',1241,0,'image-ex',776,NULL,NULL,NULL,NULL,NULL,NULL),(1373,'mailto:?subject=%5BShared%20Post%5D%20Black%20Dove&body=https%3A%2F%2Fwww.monicarenata.com%2Fblack-dove%2F&share=email',1243,0,'external',203,NULL,NULL,NULL,NULL,NULL,NULL),(1374,'https://i0.wp.com/i.ytimg.com/vi/CcD70S2CTb4/hqdefault.jpg?resize=387%2C290&ssl=1',1243,0,'image-ex',203,NULL,NULL,NULL,NULL,NULL,NULL),(1375,'mailto:?subject=%5BShared%20Post%5D%20In%20God%27s%20Eyes&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-gods-eyes%2F&share=email',1252,0,'external',257,NULL,NULL,NULL,NULL,NULL,NULL),(1376,'mailto:?subject=%5BShared%20Post%5D%20Look%20And%20You%20Shall%20Find&body=https%3A%2F%2Fwww.monicarenata.com%2Flook-and-you-shall-find%2F&share=email',1259,0,'external',664,NULL,NULL,NULL,NULL,NULL,NULL),(1377,'mailto:?subject=%5BShared%20Post%5D%20Let%20The%20Sun%20Shine&body=https%3A%2F%2Fwww.monicarenata.com%2Flet-the-sun-shine%2F&share=email',1261,0,'external',205,NULL,NULL,NULL,NULL,NULL,NULL),(1378,'mailto:?subject=%5BShared%20Post%5D%20My%20Time%20Is%20Very%20Precious&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-time-is-very-precious%2F&share=email',1263,0,'external',787,NULL,NULL,NULL,NULL,NULL,NULL),(1379,'mailto:?subject=%5BShared%20Post%5D%20Trust%20The%20Cup&body=https%3A%2F%2Fwww.monicarenata.com%2Ftrust-the-cup%2F&share=email',1265,0,'external',517,NULL,NULL,NULL,NULL,NULL,NULL),(1380,'mailto:?subject=%5BShared%20Post%5D%20Wednesday%27s%20Test&body=https%3A%2F%2Fwww.monicarenata.com%2Fwednesdays-test%2F&share=email',1266,0,'external',339,NULL,NULL,NULL,NULL,NULL,NULL),(1381,'mailto:?subject=%5BShared%20Post%5D%20Trust%3A%20Loyalty%20Is%20Hard%20To%20Find&body=https%3A%2F%2Fwww.monicarenata.com%2Ftrust-loyalty-is-hard-to-find%2F&share=email',1267,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(1382,'mailto:?subject=%5BShared%20Post%5D%20PlayGround&body=https%3A%2F%2Fwww.monicarenata.com%2Fplayground%2F&share=email',1271,0,'external',153,NULL,NULL,NULL,NULL,NULL,NULL),(1383,'mailto:?subject=%5BShared%20Post%5D%20I%20Wish%20You%20Didn%27t%20Call%20Me%20Beautiful&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-wish-you-didnt-call-me-beautiful%2F&share=email',1273,0,'external',336,NULL,NULL,NULL,NULL,NULL,NULL),(1384,'mailto:?subject=%5BShared%20Post%5D%20Sitting%20In%20a%20Box&body=https%3A%2F%2Fwww.monicarenata.com%2Fsitting-in-a-box%2F&share=email',1275,0,'external',633,NULL,NULL,NULL,NULL,NULL,NULL),(1385,'mailto:?subject=%5BShared%20Post%5D%20Battling%20Miss%20T&body=https%3A%2F%2Fwww.monicarenata.com%2Fbattling-miss-t%2F&share=email',1278,0,'external',627,NULL,NULL,NULL,NULL,NULL,NULL),(1386,'mailto:?subject=%5BShared%20Post%5D%20Have%20You%20Ever%20Been%20Afraid%20To%20Be%20Happy%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fhave-you-ever-been-afraid-to-be-happy%2F&share=email',1280,0,'external',622,NULL,NULL,NULL,NULL,NULL,NULL),(1387,'mailto:?subject=%5BShared%20Post%5D%20Isn%27t%20It%20Funny%3A%20Tables%20Turned&body=https%3A%2F%2Fwww.monicarenata.com%2Fisnt-it-funny-tables-turned%2F&share=email',1281,0,'external',611,NULL,NULL,NULL,NULL,NULL,NULL),(1388,'mailto:?subject=%5BShared%20Post%5D%20Unrequited%20Misfortune&body=https%3A%2F%2Fwww.monicarenata.com%2Funrequited-misfortune%2F&share=email',1282,0,'external',334,NULL,NULL,NULL,NULL,NULL,NULL),(1389,'mailto:?subject=%5BShared%20Post%5D%20Locket&body=https%3A%2F%2Fwww.monicarenata.com%2Flocket%2F&share=email',1286,0,'external',575,NULL,NULL,NULL,NULL,NULL,NULL),(1390,'https://i0.wp.com/www.heartsmith.com/blog/wp-content/uploads/2012/05/IMG_20120204_22626414455-1.jpg?w=640',1286,0,'image-ex',575,NULL,NULL,NULL,NULL,NULL,NULL),(1391,'mailto:?subject=%5BShared%20Post%5D%20The%20Key%20Doesn%27t%20Fit&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-key-doesnt-fit%2F&share=email',1288,0,'external',750,NULL,NULL,NULL,NULL,NULL,NULL),(1392,'mailto:?subject=%5BShared%20Post%5D%20Not%20Meant%20for%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fnot-meant-for-me%2F&share=email',1291,0,'external',303,NULL,NULL,NULL,NULL,NULL,NULL),(1393,'mailto:?subject=%5BShared%20Post%5D%20Fated%20Dissolution&body=https%3A%2F%2Fwww.monicarenata.com%2Ffated-dissolution%2F&share=email',1292,0,'external',479,NULL,NULL,NULL,NULL,NULL,NULL),(1394,'mailto:?subject=%5BShared%20Post%5D%20Unspoken%20Candor&body=https%3A%2F%2Fwww.monicarenata.com%2Funspoken-candor%2F&share=email',1293,0,'external',525,NULL,NULL,NULL,NULL,NULL,NULL),(1395,'mailto:?subject=%5BShared%20Post%5D%20Black&body=https%3A%2F%2Fwww.monicarenata.com%2Fblack%2F&share=email',1294,0,'external',264,NULL,NULL,NULL,NULL,NULL,NULL),(1396,'https://i0.wp.com/grandpasart.com/images/dayonewomen.jpg?resize=314%2C316',1294,0,'image-ex',264,NULL,NULL,NULL,NULL,NULL,NULL),(1397,'mailto:?subject=%5BShared%20Post%5D%20The%20Decision%3A%20Should%20I%20Stay%20or%20Should%20I%20Leave&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-decision-should-i-stay-or-should-i-leave%2F&share=email',1295,0,'external',688,NULL,NULL,NULL,NULL,NULL,NULL),(1398,'mailto:?subject=%5BShared%20Post%5D%20I%20Hope%20You%20Never%20Lose%20That%20Smile&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-hope-you-never-lose-that-smile%2F&share=email',1296,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(1399,'mailto:?subject=%5BShared%20Post%5D%20Pernicious%20Recollection&body=https%3A%2F%2Fwww.monicarenata.com%2Fpernicious-recollection%2F&share=email',1297,0,'external',32,NULL,NULL,NULL,NULL,NULL,NULL),(1400,'mailto:?subject=%5BShared%20Post%5D%20I%20Pray%20You%20Catch%20Me%20When%20I%20Fall&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-pray-you-catch-me-when-i-fall%2F&share=email',1310,0,'external',799,NULL,NULL,NULL,NULL,NULL,NULL),(1401,'https://i0.wp.com/img09.deviantart.net/3107/i/2010/320/c/5/catch_me_if_i_fall_by_amethyst_raindrops-d330axz.jpg?resize=309%2C406',1310,0,'image-ex',799,NULL,NULL,NULL,NULL,NULL,NULL),(1402,'mailto:?subject=%5BShared%20Post%5D%20Agony%20of%20Asphyxiation&body=https%3A%2F%2Fwww.monicarenata.com%2Fagony-of-asphyxiation%2F&share=email',1311,0,'external',484,NULL,NULL,NULL,NULL,NULL,NULL),(1403,'https://hotrfm.files.wordpress.com/2014/08/rollercoaster.jpg?resize=264%2C267',1311,0,'image-ex',484,NULL,NULL,NULL,NULL,NULL,NULL),(1404,'mailto:?subject=%5BShared%20Post%5D%20Limitless%20Love&body=https%3A%2F%2Fwww.monicarenata.com%2Flimitless-love%2F&share=email',1312,0,'external',798,NULL,NULL,NULL,NULL,NULL,NULL),(1405,'https://i0.wp.com/www.mariasfarmcountrykitchen.com/wp-content/uploads/2015/06/The-Flip-Side-of-Love.jpg?resize=352%2C220',1312,0,'image-ex',798,NULL,NULL,NULL,NULL,NULL,NULL),(1406,'mailto:?subject=%5BShared%20Post%5D%20If%20You%20Knew&body=https%3A%2F%2Fwww.monicarenata.com%2Fif-you-knew%2F&share=email',1316,0,'external',335,NULL,NULL,NULL,NULL,NULL,NULL),(1407,'mailto:?subject=%5BShared%20Post%5D%20Stuck%20Like%20Glue&body=https%3A%2F%2Fwww.monicarenata.com%2Fstuck-like-glue%2F&share=email',1317,0,'external',274,NULL,NULL,NULL,NULL,NULL,NULL),(1408,'mailto:?subject=%5BShared%20Post%5D%20Trust%20In%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Ftrust-in-me%2F&share=email',1320,0,'external',353,NULL,NULL,NULL,NULL,NULL,NULL),(1409,'mailto:?subject=%5BShared%20Post%5D%20Grow&body=https%3A%2F%2Fwww.monicarenata.com%2Fgrow%2F&share=email',1321,0,'external',694,NULL,NULL,NULL,NULL,NULL,NULL),(1410,'https://i0.wp.com/www.soulseeds.com/wp-content/uploads/2013/05/plant-heart.jpg?resize=276%2C276',1321,0,'image-ex',694,NULL,NULL,NULL,NULL,NULL,NULL),(1411,'mailto:?subject=%5BShared%20Post%5D%2088%20Keys&body=https%3A%2F%2Fwww.monicarenata.com%2F88-keys%2F&share=email',1322,0,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(1412,'https://i0.wp.com/www.mychristianpsychic.com/wp-content/uploads/2013/12/lovers-piano.jpg?resize=412%2C275',1322,0,'image-ex',50,NULL,NULL,NULL,NULL,NULL,NULL),(1413,'mailto:?subject=%5BShared%20Post%5D%20You%20Don%27t%20Know%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-dont-know-me%2F&share=email',1324,0,'external',599,NULL,NULL,NULL,NULL,NULL,NULL),(1414,'https://lh3.googleusercontent.com/ma2BNBynPXn_SU0EVDSAC743y2XWihtZQwO6j1HfD1kz6mc3Kh4Q-uasrkNVD90yh9E0NoY=s630-fcrop64=1,000013fcffffec02',1324,0,'image-ex',599,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'mailto:?subject=%5BShared%20Post%5D%20The%20Art%20of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-art-of-life%2F&share=email',1334,0,'external',819,NULL,NULL,NULL,NULL,NULL,NULL),(1416,'https://i0.wp.com/www.success.com/sites/default/files/styles/article_main/public/main/articles/CanMoneyBuyHappiness.jpg?resize=278%2C203',1334,0,'image-ex',819,NULL,NULL,NULL,NULL,NULL,NULL),(1417,'mailto:?subject=%5BShared%20Post%5D%20Wrong&body=https%3A%2F%2Fwww.monicarenata.com%2Fwrong%2F&share=email',1335,0,'external',537,NULL,NULL,NULL,NULL,NULL,NULL),(1418,'https://i0.wp.com/2.bp.blogspot.com/-oqRlQYHvwI4/T9Ng9lkb4wI/AAAAAAAABJY/vRYYBEELQTA/s640/walking+alone+in+rain+(2).jpg?resize=370%2C253',1335,0,'image-ex',537,NULL,NULL,NULL,NULL,NULL,NULL),(1419,'mailto:?subject=%5BShared%20Post%5D%20Dagger%27s%20Kiss&body=https%3A%2F%2Fwww.monicarenata.com%2Fdaggers-kiss%2F&share=email',1340,0,'external',10,NULL,NULL,NULL,NULL,NULL,NULL),(1420,'mailto:?subject=%5BShared%20Post%5D%20Invaluable%20Camaraderie&body=https%3A%2F%2Fwww.monicarenata.com%2Finvaluable-camaraderie%2F&share=email',1342,0,'external',825,NULL,NULL,NULL,NULL,NULL,NULL),(1421,'https://i0.wp.com/az616578.vo.msecnd.net/files/2016/05/23/635996432757898094-39361363_pinky%20promise.jpg?resize=338%2C225',1342,0,'image-ex',825,NULL,NULL,NULL,NULL,NULL,NULL),(1422,'mailto:?subject=%5BShared%20Post%5D%20Exception&body=https%3A%2F%2Fwww.monicarenata.com%2Fexception%2F&share=email',1344,0,'external',824,NULL,NULL,NULL,NULL,NULL,NULL),(1423,'mailto:?subject=%5BShared%20Post%5D%20Dirty%20Mirror%20-%20Self-Esteem&body=https%3A%2F%2Fwww.monicarenata.com%2Fdirty-mirror-self-esteem%2F&share=email',1347,0,'external',167,NULL,NULL,NULL,NULL,NULL,NULL),(1424,'https://i0.wp.com/img08.deviantart.net/7a22/i/2011/152/6/f/dirty_mirror_by_threa-d3hrj4i.jpg?resize=241%2C341',1347,0,'image-ex',167,NULL,NULL,NULL,NULL,NULL,NULL),(1425,'mailto:?subject=%5BShared%20Post%5D%20Open%20Messages&body=https%3A%2F%2Fwww.monicarenata.com%2Fopen-messages%2F&share=email',1351,0,'external',31,NULL,NULL,NULL,NULL,NULL,NULL),(1426,'https://i0.wp.com/media.npr.org/assets/img/2015/12/12/hires_wide-cd29614e6762006fcececc39b131dcf9475ebddd-s900-c85.jpg?resize=385%2C216',1351,0,'image-ex',31,NULL,NULL,NULL,NULL,NULL,NULL),(1427,'mailto:?subject=%5BShared%20Post%5D%20I%20Write%20My%20Wrongs%20In%20Color&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-write-my-wrongs-in-color%2F&share=email',1360,0,'external',151,NULL,NULL,NULL,NULL,NULL,NULL),(1428,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/600x315/b1/19/d3/b119d32616c2ec48c05de7ef55b44082.jpg?resize=591%2C310&ssl=1',1360,0,'image-ex',151,NULL,NULL,NULL,NULL,NULL,NULL),(1429,'mailto:?subject=%5BShared%20Post%5D%20Inordinate%20Contemplation&body=https%3A%2F%2Fwww.monicarenata.com%2Finordinate-contemplation%2F&share=email',1368,0,'external',651,NULL,NULL,NULL,NULL,NULL,NULL),(1430,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2016/12/fall.png?resize=300%2C252',1368,0,'image-ex',651,NULL,NULL,NULL,NULL,NULL,NULL),(1431,'mailto:?subject=%5BShared%20Post%5D%20I%20See%20You&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-see-you%2F&share=email',1378,0,'external',488,NULL,NULL,NULL,NULL,NULL,NULL),(1432,'https://i0.wp.com/data.whicdn.com/images/236722809/large.jpg?resize=332%2C332',1378,0,'image-ex',488,NULL,NULL,NULL,NULL,NULL,NULL),(1433,'mailto:?subject=%5BShared%20Post%5D%20Optical%20Interpretation&body=https%3A%2F%2Fwww.monicarenata.com%2Foptical-interpretation%2F&share=email',1388,0,'external',259,NULL,NULL,NULL,NULL,NULL,NULL),(1434,'https://i0.wp.com/picsoverflow.com/wp-content/uploads/2015/02/Eyes-of-Sadness.jpg?resize=496%2C310',1388,0,'image-ex',259,NULL,NULL,NULL,NULL,NULL,NULL),(1435,'mailto:?subject=%5BShared%20Post%5D%20Before%20You%20Touched%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fbefore-you-touched-me%2F&share=email',1392,0,'external',665,NULL,NULL,NULL,NULL,NULL,NULL),(1436,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/564x/78/8c/07/788c0724cd9c672db06ad2a3a04a39cf.jpg?resize=340%2C511&ssl=1',1392,0,'image-ex',665,NULL,NULL,NULL,NULL,NULL,NULL),(1437,'mailto:?subject=%5BShared%20Post%5D%20Lover%27s%20Remorse&body=https%3A%2F%2Fwww.monicarenata.com%2Flovers-remorse%2F&share=email',1399,0,'external',531,NULL,NULL,NULL,NULL,NULL,NULL),(1438,'https://i0.wp.com/www.chinahush.com/wp-content/uploads/2011/02/200942311342227.jpg?resize=300%2C337',1399,0,'image-ex',531,NULL,NULL,NULL,NULL,NULL,NULL),(1439,'mailto:?subject=%5BShared%20Post%5D%20Aspiration%27s%20Misfortune&body=https%3A%2F%2Fwww.monicarenata.com%2Faspirations-misfortune%2F&share=email',1406,0,'external',67,NULL,NULL,NULL,NULL,NULL,NULL),(1440,'https://i0.wp.com/i265.photobucket.com/albums/ii226/meon8/ChristmasMorning.jpg?resize=561%2C346',1406,0,'image-ex',67,NULL,NULL,NULL,NULL,NULL,NULL),(1441,'mailto:?subject=%5BShared%20Post%5D%20In%20The%20Meantime&body=https%3A%2F%2Fwww.monicarenata.com%2Fin-the-meantime%2F&share=email',1413,0,'external',530,NULL,NULL,NULL,NULL,NULL,NULL),(1442,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/236x/48/db/c3/48dbc3452bdb636e017924fb2038a607.jpg?resize=236%2C314&ssl=1',1413,0,'image-ex',530,NULL,NULL,NULL,NULL,NULL,NULL),(1443,'mailto:?subject=%5BShared%20Post%5D%20Strength%20Personified&body=https%3A%2F%2Fwww.monicarenata.com%2Fstrength-personified%2F&share=email',1470,0,'external',181,NULL,NULL,NULL,NULL,NULL,NULL),(1444,'https://i0.wp.com/2.bp.blogspot.com/-e4Xo5jGynlU/VMP3hf6UpfI/AAAAAAAAAug/2w3nehmjQ1c/s1600/strength.jpg?resize=604%2C370',1470,0,'image-ex',181,NULL,NULL,NULL,NULL,NULL,NULL),(1445,'mailto:?subject=%5BShared%20Post%5D%20Who%20Am%20I%3F&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-am-i%2F&share=email',1471,0,'external',475,NULL,NULL,NULL,NULL,NULL,NULL),(1446,'https://i0.wp.com/img.clipartfest.com/7ae29d851a10ec172a32bed9d47feb16_395855b08cea1c02d517adaae6ac04-two-people-talking-clip-art_649-495.jpeg?resize=477%2C364&ssl=1',1471,0,'image-ex',475,NULL,NULL,NULL,NULL,NULL,NULL),(1447,'mailto:?subject=%5BShared%20Post%5D%20I%20Do%20Not%20Fear%20The%20Gallows&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-do-not-fear-the-gallows%2F&share=email',1479,0,'external',21,NULL,NULL,NULL,NULL,NULL,NULL),(1448,'https://i0.wp.com/thewisdomdaily.com/wp-content/uploads/2016/05/15775540288_4c8e54dbef_b.jpg?resize=482%2C361',1479,0,'image-ex',21,NULL,NULL,NULL,NULL,NULL,NULL),(1449,'mailto:?subject=%5BShared%20Post%5D%20The%20Art%20of%20Persuasion&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-art-of-persuasion%2F&share=email',1483,0,'external',634,NULL,NULL,NULL,NULL,NULL,NULL),(1450,'https://i0.wp.com/content.artofmanliness.com/uploads/2010/11/cicero.jpg?w=640&ssl=1',1483,0,'image-ex',634,NULL,NULL,NULL,NULL,NULL,NULL),(1451,'mailto:?subject=%5BShared%20Post%5D%20Cold%20As%20Ice&body=https%3A%2F%2Fwww.monicarenata.com%2Fcold-as-ice%2F&share=email',1488,0,'external',641,NULL,NULL,NULL,NULL,NULL,NULL),(1452,'https://i0.wp.com/img14.deviantart.net/4e0d/i/2008/041/6/b/harsh_words_by_xr3drum.jpg?resize=407%2C357',1488,0,'image-ex',641,NULL,NULL,NULL,NULL,NULL,NULL),(1453,'mailto:?subject=%5BShared%20Post%5D%20Pause&body=https%3A%2F%2Fwww.monicarenata.com%2Fpause%2F&share=email',1491,0,'external',18,NULL,NULL,NULL,NULL,NULL,NULL),(1454,'https://epicvelocity.files.wordpress.com/2010/04/pause-screen-1.jpg?w=640',1491,0,'image-ex',18,NULL,NULL,NULL,NULL,NULL,NULL),(1455,'mailto:?subject=%5BShared%20Post%5D%20Your%20Walk&body=https%3A%2F%2Fwww.monicarenata.com%2Fyour-walk%2F&share=email',1502,0,'external',23,NULL,NULL,NULL,NULL,NULL,NULL),(1456,'https://i0.wp.com/i.ytimg.com/vi/W6o6m0wmsKk/maxresdefault.jpg?resize=640%2C359&ssl=1',1502,0,'image-ex',23,NULL,NULL,NULL,NULL,NULL,NULL),(1457,'mailto:?subject=%5BShared%20Post%5D%20You%20Missed&body=https%3A%2F%2Fwww.monicarenata.com%2Fyou-missed%2F&share=email',1505,0,'external',22,NULL,NULL,NULL,NULL,NULL,NULL),(1458,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/736x/0d/51/81/0d5181525d5a83b764cbf8c2b22dafbe.jpg?resize=270%2C404&ssl=1',1505,0,'image-ex',22,NULL,NULL,NULL,NULL,NULL,NULL),(1459,'mailto:?subject=%5BShared%20Post%5D%20I%20Wish%20You%20Could%20See&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-wish-you-could-see%2F&share=email',1509,0,'external',821,NULL,NULL,NULL,NULL,NULL,NULL),(1460,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/originals/44/93/0f/44930f59f9c3574067c1a2d0bfd35969.jpg?resize=326%2C180&ssl=1',1509,0,'image-ex',821,NULL,NULL,NULL,NULL,NULL,NULL),(1461,'mailto:?subject=%5BShared%20Post%5D%20Braids&body=https%3A%2F%2Fwww.monicarenata.com%2Fbraids%2F&share=email',1522,0,'external',16,NULL,NULL,NULL,NULL,NULL,NULL),(1462,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Little-Black-Girl.jpg?w=640',1522,0,'image-ex',16,NULL,NULL,NULL,NULL,NULL,NULL),(1463,'https://en.wikipedia.org/wiki/Squaring_the_circle',1540,0,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(1464,'mailto:?subject=%5BShared%20Post%5D%20Circling%20The%20Square&body=https%3A%2F%2Fwww.monicarenata.com%2Fcircling-the-square%2F&share=email',1540,0,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(1465,'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe3ChedvWgqAkr-4oEtTarpZPCsv-xL9s-w_bA0T_Mv3OrJOBbBw',1540,0,'image-ex',17,NULL,NULL,NULL,NULL,NULL,NULL),(1466,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg',1560,0,'external',20,NULL,NULL,NULL,NULL,NULL,NULL),(1467,'https://zedity.com',1560,0,'external',20,NULL,NULL,NULL,NULL,NULL,NULL),(1468,'mailto:?subject=%5BShared%20Post%5D%20The%20Blooming%20Tree&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-blooming-tree%2F&share=email',1560,0,'external',20,NULL,NULL,NULL,NULL,NULL,NULL),(1469,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/Tree-Woman.jpg?w=640',1560,0,'image-ex',20,NULL,NULL,NULL,NULL,NULL,NULL),(1470,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/h.jpg',1567,0,'external',142,NULL,NULL,NULL,NULL,NULL,NULL),(1471,'https://zedity.com',1567,0,'external',142,NULL,NULL,NULL,NULL,NULL,NULL),(1472,'mailto:?subject=%5BShared%20Post%5D%20Helping%20Hands&body=https%3A%2F%2Fwww.monicarenata.com%2Fhelping-hands%2F&share=email',1567,0,'external',142,NULL,NULL,NULL,NULL,NULL,NULL),(1473,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/h.jpg?w=640',1567,0,'image-ex',142,NULL,NULL,NULL,NULL,NULL,NULL),(1474,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg',1572,0,'external',190,NULL,NULL,NULL,NULL,NULL,NULL),(1475,'https://zedity.com',1572,0,'external',190,NULL,NULL,NULL,NULL,NULL,NULL),(1476,'mailto:?subject=%5BShared%20Post%5D%20NightTime%20Dilemma&body=https%3A%2F%2Fwww.monicarenata.com%2Fnighttime-dilemma%2F&share=email',1572,0,'external',190,NULL,NULL,NULL,NULL,NULL,NULL),(1477,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/03/wpid-spooning.jpg?w=640',1572,0,'image-ex',190,NULL,NULL,NULL,NULL,NULL,NULL),(1478,'https://zedity.com',1576,0,'external',258,NULL,NULL,NULL,NULL,NULL,NULL),(1479,'mailto:?subject=%5BShared%20Post%5D%20People%20Willows&body=https%3A%2F%2Fwww.monicarenata.com%2Fpeople-willows%2F&share=email',1576,0,'external',258,NULL,NULL,NULL,NULL,NULL,NULL),(1480,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/736x/71/fb/d3/71fbd30d02f956c62f89363ab65ef743.jpg?w=640&ssl=1',1576,0,'image-ex',258,NULL,NULL,NULL,NULL,NULL,NULL),(1481,'https://zedity.com',1581,0,'external',100,NULL,NULL,NULL,NULL,NULL,NULL),(1482,'mailto:?subject=%5BShared%20Post%5D%20The%20Undervalued%20Crusader&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-undervalued-crusader%2F&share=email',1581,0,'external',100,NULL,NULL,NULL,NULL,NULL,NULL),(1483,'https://i0.wp.com/images.gr-assets.com/hostedimages/1380222758ra/517106.gif?w=640&ssl=1',1581,0,'image-ex',100,NULL,NULL,NULL,NULL,NULL,NULL),(1484,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png',1588,0,'external',216,NULL,NULL,NULL,NULL,NULL,NULL),(1485,'https://zedity.com',1588,0,'external',216,NULL,NULL,NULL,NULL,NULL,NULL),(1486,'mailto:?subject=%5BShared%20Post%5D%20Someone%20to%20Someone&body=https%3A%2F%2Fwww.monicarenata.com%2Fsomeone-to-someone%2F&share=email',1588,0,'external',216,NULL,NULL,NULL,NULL,NULL,NULL),(1487,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/dfb4747662a90cfac64a3ccebe138cec_cartoon-people-clip-art-free-free-clipart-of-different-people_550-277.png?w=640',1588,0,'image-ex',216,NULL,NULL,NULL,NULL,NULL,NULL),(1488,'https://zedity.com',1594,0,'external',541,NULL,NULL,NULL,NULL,NULL,NULL),(1489,'mailto:?subject=%5BShared%20Post%5D%20Forgotten%20Me&body=https%3A%2F%2Fwww.monicarenata.com%2Fforgotten-me%2F&share=email',1594,0,'external',541,NULL,NULL,NULL,NULL,NULL,NULL),(1490,'https://i0.wp.com/jacquelicious.com/wp-content/uploads/2010/11/Playing-in-the-Rain.jpg?w=640',1594,0,'image-ex',541,NULL,NULL,NULL,NULL,NULL,NULL),(1491,'mailto:?subject=%5BShared%20Post%5D%20Be%20Happy%20and%20Get%20Paid&body=https%3A%2F%2Fwww.monicarenata.com%2Fbe-happy-and-get-paid%2F&share=email',1608,0,'external',321,NULL,NULL,NULL,NULL,NULL,NULL),(1492,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1487686393988.png?resize=283%2C283',1608,0,'image-ex',321,NULL,NULL,NULL,NULL,NULL,NULL),(1493,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/PhotoGrid_1491998479062.jpg?resize=317%2C317',1608,0,'image-ex',321,NULL,NULL,NULL,NULL,NULL,NULL),(1494,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg',1621,0,'external',70,NULL,NULL,NULL,NULL,NULL,NULL),(1495,'https://zedity.com',1621,0,'external',70,NULL,NULL,NULL,NULL,NULL,NULL),(1496,'mailto:?subject=%5BShared%20Post%5D%20Stationary%20Traveler&body=https%3A%2F%2Fwww.monicarenata.com%2Fstationary-traveler%2F&share=email',1621,0,'external',70,NULL,NULL,NULL,NULL,NULL,NULL),(1497,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Traveler.jpg?w=640',1621,0,'image-ex',70,NULL,NULL,NULL,NULL,NULL,NULL),(1498,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg',1634,0,'external',225,NULL,NULL,NULL,NULL,NULL,NULL),(1499,'https://zedity.com',1634,0,'external',225,NULL,NULL,NULL,NULL,NULL,NULL),(1500,'mailto:?subject=%5BShared%20Post%5D%20Heavy%20Fog&body=https%3A%2F%2Fwww.monicarenata.com%2Fheavy-fog%2F&share=email',1634,0,'external',225,NULL,NULL,NULL,NULL,NULL,NULL),(1501,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/Postive-Thoughts.jpg?w=640',1634,0,'image-ex',225,NULL,NULL,NULL,NULL,NULL,NULL),(1502,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg',1639,0,'external',617,NULL,NULL,NULL,NULL,NULL,NULL),(1503,'https://zedity.com',1639,0,'external',617,NULL,NULL,NULL,NULL,NULL,NULL),(1504,'mailto:?subject=%5BShared%20Post%5D%20It%27s%20Easy%20To%20Breathe%20If%20You%20Aren%27t%20Underwater&body=https%3A%2F%2Fwww.monicarenata.com%2Feasy-breathe-arent-underwater%2F&share=email',1639,0,'external',617,NULL,NULL,NULL,NULL,NULL,NULL),(1505,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/04/The-Grieving-Cycle_art.jpg?w=640',1639,0,'image-ex',617,NULL,NULL,NULL,NULL,NULL,NULL),(1506,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png',1644,0,'external',192,NULL,NULL,NULL,NULL,NULL,NULL),(1507,'https://zedity.com',1644,0,'external',192,NULL,NULL,NULL,NULL,NULL,NULL),(1508,'mailto:?subject=%5BShared%20Post%5D%20Fallen%20Son&body=https%3A%2F%2Fwww.monicarenata.com%2Ffallen-son%2F&share=email',1644,0,'external',192,NULL,NULL,NULL,NULL,NULL,NULL),(1509,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Fallen-son.png?w=640',1644,0,'image-ex',192,NULL,NULL,NULL,NULL,NULL,NULL),(1510,'https://zedity.com',1649,0,'external',301,NULL,NULL,NULL,NULL,NULL,NULL),(1511,'mailto:?subject=%5BShared%20Post%5D%20To%20the%20Brim&body=https%3A%2F%2Fwww.monicarenata.com%2Fto-the-brim%2F&share=email',1649,0,'external',301,NULL,NULL,NULL,NULL,NULL,NULL),(1512,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg',1654,0,'external',644,NULL,NULL,NULL,NULL,NULL,NULL),(1513,'https://zedity.com',1654,0,'external',644,NULL,NULL,NULL,NULL,NULL,NULL),(1514,'mailto:?subject=%5BShared%20Post%5D%20My%20Color%20Friend&body=https%3A%2F%2Fwww.monicarenata.com%2Fmy-color-friend%2F&share=email',1654,0,'external',644,NULL,NULL,NULL,NULL,NULL,NULL),(1515,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/Black-White-Friend.jpg?w=640',1654,0,'image-ex',644,NULL,NULL,NULL,NULL,NULL,NULL),(1516,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg',1658,0,'external',128,NULL,NULL,NULL,NULL,NULL,NULL),(1517,'https://zedity.com',1658,0,'external',128,NULL,NULL,NULL,NULL,NULL,NULL),(1518,'mailto:?subject=%5BShared%20Post%5D%20Ice%20Ice&body=https%3A%2F%2Fwww.monicarenata.com%2Fice-ice%2F&share=email',1658,0,'external',128,NULL,NULL,NULL,NULL,NULL,NULL),(1519,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/05/bottle-of-water.jpg?w=640',1658,0,'image-ex',128,NULL,NULL,NULL,NULL,NULL,NULL),(1520,'mailto:?subject=%5BShared%20Post%5D%20Roots&body=https%3A%2F%2Fwww.monicarenata.com%2Froots%2F&share=email',1665,0,'external',639,NULL,NULL,NULL,NULL,NULL,NULL),(1521,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg',1666,0,'external',281,NULL,NULL,NULL,NULL,NULL,NULL),(1522,'mailto:?subject=%5BShared%20Post%5D%20Reward%20for%20The%20Wait&body=https%3A%2F%2Fwww.monicarenata.com%2Freward-for-the-wait%2F&share=email',1666,0,'external',281,NULL,NULL,NULL,NULL,NULL,NULL),(1523,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/6f36aa13fffbab6aa7c2d178c0373213.jpg?resize=640%2C640',1666,0,'image-ex',281,NULL,NULL,NULL,NULL,NULL,NULL),(1524,'https://zedity.com',1670,0,'external',98,NULL,NULL,NULL,NULL,NULL,NULL),(1525,'mailto:?subject=%5BShared%20Post%5D%20Night%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Fnight-life%2F&share=email',1670,0,'external',98,NULL,NULL,NULL,NULL,NULL,NULL),(1526,'https://i0.wp.com/www.clubantietam.com/wp-content/uploads/2016/07/IMG_4104m-800x534.jpg?resize=640%2C427',1670,0,'image-ex',98,NULL,NULL,NULL,NULL,NULL,NULL),(1527,'mailto:?subject=%5BShared%20Post%5D%20To%20the%20Wind&body=https%3A%2F%2Fwww.monicarenata.com%2Fto-the-wind%2F&share=email',1673,0,'external',514,NULL,NULL,NULL,NULL,NULL,NULL),(1528,'https://i0.wp.com/s-media-cache-ak0.pinimg.com/736x/66/82/08/6682086881a4d38c6dbbce0916cce769.jpg?resize=422%2C336&ssl=1',1673,0,'image-ex',514,NULL,NULL,NULL,NULL,NULL,NULL),(1529,'mailto:?subject=%5BShared%20Post%5D%20Late%20Day&body=https%3A%2F%2Fwww.monicarenata.com%2Flate-day%2F&share=email',1676,0,'external',603,NULL,NULL,NULL,NULL,NULL,NULL),(1530,'https://i0.wp.com/40.media.tumblr.com/5fb7f6d6155e123107ab0e9ef78a1f5f/tumblr_nxgq87zD2J1r7eta3o1_500.jpg?resize=317%2C317',1676,0,'image-ex',603,NULL,NULL,NULL,NULL,NULL,NULL),(1531,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif',1679,0,'external',590,NULL,NULL,NULL,NULL,NULL,NULL),(1532,'https://zedity.com',1679,0,'external',590,NULL,NULL,NULL,NULL,NULL,NULL),(1533,'mailto:?subject=%5BShared%20Post%5D%20Late%20Night%20Truths&body=https%3A%2F%2Fwww.monicarenata.com%2Flate-night-truths%2F&share=email',1679,0,'external',590,NULL,NULL,NULL,NULL,NULL,NULL),(1534,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/06/tenor.gif?w=640',1679,0,'image-ex',590,NULL,NULL,NULL,NULL,NULL,NULL),(1535,'mailto:?subject=%5BShared%20Post%5D%20Paper%20Pusher&body=https%3A%2F%2Fwww.monicarenata.com%2Fpaper-pusher%2F&share=email',1683,0,'external',589,NULL,NULL,NULL,NULL,NULL,NULL),(1536,'https://i0.wp.com/thebackbencher.co.uk/wp-content/uploads/2013/04/Money-no-enough-525x250.jpg?resize=525%2C250',1683,0,'image-ex',589,NULL,NULL,NULL,NULL,NULL,NULL),(1537,'mailto:?subject=%5BShared%20Post%5D%20The%20Day%20The%20Inner%20Bark%20Turned%20Brown&body=https%3A%2F%2Fwww.monicarenata.com%2Fday-inner-bark-turned-brown%2F&share=email',1686,0,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(1538,'https://zedity.com',1692,0,'external',764,NULL,NULL,NULL,NULL,NULL,NULL),(1539,'mailto:?subject=%5BShared%20Post%5D%20Closed%20Mouth&body=https%3A%2F%2Fwww.monicarenata.com%2Fclosed-mouth%2F&share=email',1692,0,'external',764,NULL,NULL,NULL,NULL,NULL,NULL),(1540,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg',1698,0,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(1541,'https://zedity.com',1698,0,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(1542,'mailto:?subject=%5BShared%20Post%5D%20Chemistry&body=https%3A%2F%2Fwww.monicarenata.com%2Fchemistry%2F&share=email',1698,0,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(1543,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/07/Valentines-Day-Kissing-Shadow-Couple-Wide.jpg?w=640',1698,0,'image-ex',19,NULL,NULL,NULL,NULL,NULL,NULL),(1544,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/07/image.png',1702,0,'external',33,NULL,NULL,NULL,NULL,NULL,NULL),(1545,'mailto:?subject=%5BShared%20Post%5D%20The%20Broken%20Man&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-broken-man%2F&share=email',1702,0,'external',33,NULL,NULL,NULL,NULL,NULL,NULL),(1546,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/07/image.png?resize=640%2C640',1702,0,'image-ex',33,NULL,NULL,NULL,NULL,NULL,NULL),(1547,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image.png',1709,0,'external',344,NULL,NULL,NULL,NULL,NULL,NULL),(1548,'mailto:?subject=%5BShared%20Post%5D%20Deep%20Dive&body=https%3A%2F%2Fwww.monicarenata.com%2Fdeep-dive%2F&share=email',1709,0,'external',344,NULL,NULL,NULL,NULL,NULL,NULL),(1549,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image.png?resize=640%2C640',1709,0,'image-ex',344,NULL,NULL,NULL,NULL,NULL,NULL),(1550,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-1.png',1714,0,'external',160,NULL,NULL,NULL,NULL,NULL,NULL),(1551,'mailto:?subject=%5BShared%20Post%5D%20Seasons%20Change&body=https%3A%2F%2Fwww.monicarenata.com%2Fseasons-change%2F&share=email',1714,0,'external',160,NULL,NULL,NULL,NULL,NULL,NULL),(1552,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-1.png?resize=640%2C640',1714,0,'image-ex',160,NULL,NULL,NULL,NULL,NULL,NULL),(1553,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-2.png',1718,0,'external',116,NULL,NULL,NULL,NULL,NULL,NULL),(1554,'mailto:?subject=%5BShared%20Post%5D%20Puppeteer%27s%20Demise&body=https%3A%2F%2Fwww.monicarenata.com%2Fpuppeteers-demise%2F&share=email',1718,0,'external',116,NULL,NULL,NULL,NULL,NULL,NULL),(1555,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-2.png?resize=640%2C640',1718,0,'image-ex',116,NULL,NULL,NULL,NULL,NULL,NULL),(1556,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-3.png',1722,0,'external',235,NULL,NULL,NULL,NULL,NULL,NULL),(1557,'mailto:?subject=%5BShared%20Post%5D%20Fire%20to%20Smoke&body=https%3A%2F%2Fwww.monicarenata.com%2Ffire-to-smoke%2F&share=email',1722,0,'external',235,NULL,NULL,NULL,NULL,NULL,NULL),(1558,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2017/08/image-3.png?resize=640%2C640',1722,0,'image-ex',235,NULL,NULL,NULL,NULL,NULL,NULL),(1560,'mailto:?subject=%5BShared%20Post%5D%20Daisies%20in%20the%20Desert&body=https%3A%2F%2Fwww.monicarenata.com%2Fdaisies-in-the-desert%2F&share=email',1737,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(1561,'https://i0.wp.com/4.bp.blogspot.com/-BfmIm4VR1Ug/UYW69U7CLeI/AAAAAAAAAKY/DjlbEfTVqic/s1600/flower-in-desert.jpg?w=640',1737,0,'image-ex',85,NULL,NULL,NULL,NULL,NULL,NULL),(1563,'mailto:?subject=%5BShared%20Post%5D%20The%20Revivification&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-revivification%2F&share=email',1747,0,'external',131,NULL,NULL,NULL,NULL,NULL,NULL),(1564,'https://i0.wp.com/i.ytimg.com/vi/KPj_62l4ch0/maxresdefault.jpg?w=640&ssl=1',1747,0,'image-ex',131,NULL,NULL,NULL,NULL,NULL,NULL),(1566,'mailto:?subject=%5BShared%20Post%5D%20Observation%20Of%20Betrayal&body=https%3A%2F%2Fwww.monicarenata.com%2Fobservation-of-betrayal%2F&share=email',1753,0,'external',154,NULL,NULL,NULL,NULL,NULL,NULL),(1568,'mailto:?subject=%5BShared%20Post%5D%20Random%20Photos&body=https%3A%2F%2Fwww.monicarenata.com%2Frandom-photos%2F&share=email',1755,0,'external',593,NULL,NULL,NULL,NULL,NULL,NULL),(1569,'http://www.clipartpanda.com/clipart_images/photo-album-clipart-61815623/download',1755,0,'image-ex',593,NULL,NULL,NULL,NULL,NULL,NULL),(1571,'mailto:?subject=%5BShared%20Post%5D%20Stream%20of%20Lethe&body=https%3A%2F%2Fwww.monicarenata.com%2Fstream-of-lethe%2F&share=email',1759,0,'external',135,NULL,NULL,NULL,NULL,NULL,NULL),(1572,'mailto:?subject=%5BShared%20Post%5D%20Commitment%20Dilemma&body=https%3A%2F%2Fwww.monicarenata.com%2Fcommitment-dilemma%2F&share=email',1768,0,'external',300,NULL,NULL,NULL,NULL,NULL,NULL),(1573,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg',1770,0,'external',318,NULL,NULL,NULL,NULL,NULL,NULL),(1574,'mailto:?subject=%5BShared%20Post%5D%20Be%20Good&body=https%3A%2F%2Fwww.monicarenata.com%2Fbe-good%2F&share=email',1770,0,'external',318,NULL,NULL,NULL,NULL,NULL,NULL),(1575,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/tumblr_mgujaf5mqs1rikdvro1_500.jpg?resize=640%2C640',1770,0,'image-ex',318,NULL,NULL,NULL,NULL,NULL,NULL),(1576,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/image.png',1773,0,'external',316,NULL,NULL,NULL,NULL,NULL,NULL),(1577,'mailto:?subject=%5BShared%20Post%5D%20The%20Keys&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-keys%2F&share=email',1773,0,'external',316,NULL,NULL,NULL,NULL,NULL,NULL),(1578,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/image.png?resize=640%2C640',1773,0,'image-ex',316,NULL,NULL,NULL,NULL,NULL,NULL),(1580,'mailto:?subject=%5BShared%20Post%5D%20One%20Day&body=https%3A%2F%2Fwww.monicarenata.com%2Fone-day%2F&share=email',1776,0,'external',119,NULL,NULL,NULL,NULL,NULL,NULL),(1581,'https://i0.wp.com/www.monicarenata.com/wp-content/uploads/2018/04/sad-girl-lying-in-bed-picture-id493155910.jpg?resize=640%2C640',1776,0,'image-ex',119,NULL,NULL,NULL,NULL,NULL,NULL),(1583,'mailto:?subject=%5BShared%20Post%5D%20Stand%20Still&body=https%3A%2F%2Fwww.monicarenata.com%2Fstand-still%2F&share=email',1784,0,'external',315,NULL,NULL,NULL,NULL,NULL,NULL),(1584,'https://lh4.googleusercontent.com/rqCHPr27d2gsWWbpwrvQQjObY0W9bX20A6q2fHok9zY8CxGvbynWHA8XAX6TzgrGsuk7E3TpS_reCQgXI05SFT8E2Yirxpf7Z0auv1l0I24Sa2RrlITcVDC_-dlHsY4H6fD5uBxs',1784,0,'image-ex',315,NULL,NULL,NULL,NULL,NULL,NULL),(1586,'mailto:?subject=%5BShared%20Post%5D%20I%20Do%20Not%20Care&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-do-not-care%2F&share=email',1787,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(1587,'mailto:?subject=%5BShared%20Post%5D%20Mirror%20Motivation&body=https%3A%2F%2Fwww.monicarenata.com%2Fmirror-motivation%2F&share=email',1797,0,'external',162,NULL,NULL,NULL,NULL,NULL,NULL),(1588,'https://i0.wp.com/i.ytimg.com/vi/eNSj0wqqYD4/maxresdefault.jpg?w=640&ssl=1',1797,0,'image-ex',162,NULL,NULL,NULL,NULL,NULL,NULL),(1589,'mailto:?subject=%5BShared%20Post%5D%20The%20Journey%20To%20The%20Win&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-journey-to-the-win%2F&share=email',1804,0,'external',101,NULL,NULL,NULL,NULL,NULL,NULL),(1590,'https://i0.wp.com/steemitimages.com/DQmTAEwNK6KEv4MfvThBjsnuB91U5ZbLdVmhjZ3JNcQAKP6/Journey_Horizon.jpg?resize=640%2C450&ssl=1',1804,0,'image-ex',101,NULL,NULL,NULL,NULL,NULL,NULL),(1591,'mailto:?subject=%5BShared%20Post%5D%20His&body=https%3A%2F%2Fwww.monicarenata.com%2Fhis%2F&share=email',1811,0,'external',41,NULL,NULL,NULL,NULL,NULL,NULL),(1592,'https://i0.wp.com/pixel.nymag.com/imgs/fashion/daily/2018/03/12/seo/ex-dreams-1.w710.h473.jpg?resize=640%2C426&ssl=1',1811,0,'image-ex',41,NULL,NULL,NULL,NULL,NULL,NULL),(1593,'mailto:?subject=%5BShared%20Post%5D%20Love%20Stop&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-stop%2F&share=email',1813,0,'external',146,NULL,NULL,NULL,NULL,NULL,NULL),(1594,'https://i0.wp.com/ih0.redbubble.net/image.450382435.6727/clkc,bamboo,white,x650-bg,f2f2f6.1.jpg?resize=640%2C640&ssl=1',1813,0,'image-ex',146,NULL,NULL,NULL,NULL,NULL,NULL),(1596,'mailto:?subject=%5BShared%20Post%5D%20Unseeable%20Descent&body=https%3A%2F%2Fwww.monicarenata.com%2Funseeable-descent%2F&share=email',1816,0,'external',618,NULL,NULL,NULL,NULL,NULL,NULL),(1597,'https://lh6.googleusercontent.com/LEpcLBUGNnIJLMlg0ZGPlxINrr9YOONlegYYpHSVgWKcbFkZcoky_b_8vNHjdIRymmpwDyvDXRZjr79QzdtkVnIHr2qjDXbwg6zW4YQrQhQUm53-8hQ-HwVfmBYW_3p394JjmaT9',1816,0,'image-ex',618,NULL,NULL,NULL,NULL,NULL,NULL),(1599,'mailto:?subject=%5BShared%20Post%5D%20Thin%20Skin%20Society&body=https%3A%2F%2Fwww.monicarenata.com%2Fthin-skin-society%2F&share=email',1821,0,'external',103,NULL,NULL,NULL,NULL,NULL,NULL),(1601,'mailto:?subject=%5BShared%20Post%5D%20It%20has%20been%20a%20while......%20Let%20me%20write.....&body=https%3A%2F%2Fwww.monicarenata.com%2Fit-has-been-a-while-let-me-write%2F&share=email',1824,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(1602,'mailto:?subject=%5BShared%20Post%5D%20Can%20You%20Feel%20the%20Raindrops&body=https%3A%2F%2Fwww.monicarenata.com%2Fcan-you-feel-the-raindrops%2F&share=email',1834,0,'external',102,NULL,NULL,NULL,NULL,NULL,NULL),(1603,'mailto:?subject=%5BShared%20Post%5D%20Keep%20Going%20On&body=https%3A%2F%2Fwww.monicarenata.com%2Fkeep-going-on%2F&share=email',1851,0,'external',661,NULL,NULL,NULL,NULL,NULL,NULL),(1604,'mailto:?subject=%5BShared%20Post%5D%20Who%20You%20Are&body=https%3A%2F%2Fwww.monicarenata.com%2Fwho-you-are%2F&share=email',1853,0,'external',487,NULL,NULL,NULL,NULL,NULL,NULL),(1605,'mailto:?subject=%5BShared%20Post%5D%20Estrangement&body=https%3A%2F%2Fwww.monicarenata.com%2Festrangement%2F&share=email',1856,0,'external',57,NULL,NULL,NULL,NULL,NULL,NULL),(1606,'https://i0.wp.com/assets.considerable.com/wp-content/uploads/2019/03/14155648/estrangement.jpg?resize=408%2C230&ssl=1',1856,0,'image-ex',57,NULL,NULL,NULL,NULL,NULL,NULL),(1607,'mailto:?subject=%5BShared%20Post%5D%20Coffee&body=https%3A%2F%2Fwww.monicarenata.com%2Fcoffee%2F&share=email',1865,0,'external',182,NULL,NULL,NULL,NULL,NULL,NULL),(1608,'mailto:?subject=%5BShared%20Post%5D%20Angel%20Wings&body=https%3A%2F%2Fwww.monicarenata.com%2Fangel-wings%2F&share=email',1872,0,'external',208,NULL,NULL,NULL,NULL,NULL,NULL),(1609,'mailto:?subject=%5BShared%20Post%5D%20Living%20Dilemma&body=https%3A%2F%2Fwww.monicarenata.com%2Fliving-dilemma%2F&share=email',1886,0,'external',144,NULL,NULL,NULL,NULL,NULL,NULL),(1610,'mailto:?subject=%5BShared%20Post%5D%20Dear%20Friend.%20Move%20On.&body=https%3A%2F%2Fwww.monicarenata.com%2Fdear-friend-move-on%2F&share=email',1891,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(1611,'mailto:?subject=%5BShared%20Post%5D%20Love%20Different&body=https%3A%2F%2Fwww.monicarenata.com%2Flove-different%2F&share=email',1894,0,'external',291,NULL,NULL,NULL,NULL,NULL,NULL),(1612,'mailto:?subject=%5BShared%20Post%5D%20Fear%20of%20Life&body=https%3A%2F%2Fwww.monicarenata.com%2Ffear-of-life%2F&share=email',1897,0,'external',68,NULL,NULL,NULL,NULL,NULL,NULL),(1613,'mailto:?subject=%5BShared%20Post%5D%20I%20Will%20Be%20Light&body=https%3A%2F%2Fwww.monicarenata.com%2Fi-will-be-light%2F&share=email',1901,0,'external',175,NULL,NULL,NULL,NULL,NULL,NULL),(1614,'mailto:?subject=%5BShared%20Post%5D%20Desensitized&body=https%3A%2F%2Fwww.monicarenata.com%2Fdesensitized%2F&share=email',1903,0,'external',231,NULL,NULL,NULL,NULL,NULL,NULL),(1615,'mailto:?subject=%5BShared%20Post%5D%20Lost%20and%20Found&body=https%3A%2F%2Fwww.monicarenata.com%2Flost-and-found%2F&share=email',1906,0,'external',72,NULL,NULL,NULL,NULL,NULL,NULL),(1616,'mailto:?subject=%5BShared%20Post%5D%20Repressed%20Emotions&body=https%3A%2F%2Fwww.monicarenata.com%2Frepressed-emotions%2F&share=email',1909,0,'external',354,NULL,NULL,NULL,NULL,NULL,NULL),(1617,'mailto:?subject=%5BShared%20Post%5D%20The%20Final%20Viewing&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-final-viewing%2F&share=email',1911,0,'external',213,NULL,NULL,NULL,NULL,NULL,NULL),(1618,'mailto:?subject=%5BShared%20Post%5D%20The%20Last%20Fight&body=https%3A%2F%2Fwww.monicarenata.com%2Fthe-last-fight%2F&share=email',1915,0,'external',173,NULL,NULL,NULL,NULL,NULL,NULL),(1619,'mailto:?subject=%5BShared%20Post%5D%20Reflecting%20Views&body=https%3A%2F%2Fwww.monicarenata.com%2Freflecting-views%2F&share=email',1919,0,'external',212,NULL,NULL,NULL,NULL,NULL,NULL),(1620,'mailto:?subject=%5BShared%20Post%5D%20Deep%20Gaze&body=https%3A%2F%2Fwww.monicarenata.com%2Fdeep-gaze%2F&share=email',1926,0,'external',238,NULL,NULL,NULL,NULL,NULL,NULL),(1621,'mailto:?subject=%5BShared%20Post%5D%20Sprinkles%20of%20White&body=https%3A%2F%2Fwww.monicarenata.com%2Fsprinkles-of-white%2F&share=email',1930,0,'external',289,NULL,NULL,NULL,NULL,NULL,NULL),(1622,'mailto:?subject=%5BShared%20Post%5D%20Prisoner%20with%20the%20Open%20Door&body=https%3A%2F%2Fwww.monicarenata.com%2Fprisoner-with-the-open-door%2F&share=email',1933,0,'external',140,NULL,NULL,NULL,NULL,NULL,NULL),(1623,'https://comeintotheword.com/faith-and-the-rope-of-hope/',1948,0,'external',997,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_xwml_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_xwml_yoast_seo_meta`
--
DROP TABLE IF EXISTS `wp_xwml_yoast_seo_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xwml_yoast_seo_meta` (
`object_id` bigint(20) unsigned NOT NULL,
`internal_link_count` int(10) unsigned DEFAULT NULL,
`incoming_link_count` int(10) unsigned DEFAULT NULL,
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_xwml_yoast_seo_meta`
--
LOCK TABLES `wp_xwml_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_xwml_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_xwml_yoast_seo_meta` VALUES (1737,0,0),(1747,0,0),(1753,0,0),(1755,0,0),(1759,0,0),(1768,0,0),(1776,0,0),(1784,0,0),(1787,0,0),(1792,0,0),(1745,0,0),(1743,0,0),(1744,0,0),(1791,0,0),(1797,0,0),(1796,0,0),(1804,0,0),(1811,0,0),(1813,0,0),(1801,0,0),(1802,0,0),(1803,0,0),(1810,0,0),(1816,0,0),(1820,0,0),(1821,0,0),(1817,0,0),(1824,0,0),(1823,0,0),(1828,0,0),(1617,0,0),(1834,0,0),(1835,0,0),(1827,0,0),(1829,0,0),(1795,0,0),(1793,0,0),(1794,0,0),(1826,0,0),(1842,0,0),(1841,0,0),(1843,0,0),(1846,0,0),(1851,0,0),(1853,0,0),(1847,0,0),(1848,0,0),(1849,0,0),(1850,0,0),(1856,0,0),(1861,0,0),(1855,0,0),(1863,0,0),(1865,0,0),(1869,0,0),(1862,0,0),(1864,0,0),(1868,0,0),(1872,0,0),(1876,0,0),(1871,0,0),(1875,0,0),(1879,0,0),(1878,0,0),(1880,0,0),(1832,0,0),(1830,0,0),(1831,0,0),(1886,0,0),(1884,0,0),(1885,0,0),(1891,0,0),(1894,0,0),(1897,0,0),(1889,0,0),(1890,0,0),(1893,0,0),(1896,0,0),(1901,0,0),(1903,0,0),(1900,0,0),(1906,0,0),(1905,0,0),(1909,0,0),(1911,0,0),(1908,0,0),(1913,0,0),(1915,0,0),(1914,0,0),(1919,0,0),(1921,0,0),(1918,0,0),(1883,0,0),(1881,0,0),(1882,0,0),(1926,0,0),(1925,0,0),(1930,0,0),(1933,0,0),(1929,0,0),(1932,0,0),(1938,0,0);
/*!40000 ALTER TABLE `wp_xwml_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!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 2026-07-06 22:36:59